/* WhatsApp fixo */
.whatsapp-fixo {
    position: fixed;
    left: 1.2rem;
    bottom: 1.2rem;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #25d366;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsapp-pulse 2.5s infinite;
}

/* Imagem */
.whatsapp-fixo img {
    width: 90%;
    height: auto;
    display: block;
}

/* Hover */
.whatsapp-fixo:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
    animation-play-state: paused;
}

/* Animação pulse */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile ajuste */
@media (max-width: 480px) {
    .whatsapp-fixo {
        width: 56px;
        height: 56px;
        right: 1rem;
        bottom: 1rem;
    }
}
/* FIM DE WhatsApp fixo */





/* Container redes sociais fixo */
.social-fixo {
    position: fixed;
    right: 1.2rem;
    bottom: 80px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Links */
.social-fixo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover discreto */
.social-fixo a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* Imagens */
.social-fixo img {
    width: 70%;
    height: auto;
    display: block;
}

/* Ajuste mobile */
@media (max-width: 480px) {
    .social-fixo {
        bottom: 250px;
    }
}
