/* BOTÃO WHATSAPP FIXO */
.whatsapp-fixo {
    position: fixed;          /* NÃO SOME AO ROLAR */
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    z-index: 9999;            /* FICA ACIMA DE TUDO */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: pulse 1.5s infinite;
}

.whatsapp-fixo img {
    width: 32px;
    height: 32px;
}

.texto-whatsapp {
    white-space: nowrap;
}

/* Animação pulsando */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* 📱 AJUSTE PARA CELULAR */
@media (max-width: 768px) {
    .texto-whatsapp {
        display: none; /* some o texto no celular */
    }

    .whatsapp-fixo {
        padding: 12px;
        border-radius: 50%;
    }
}

@keyframes pulse-whats {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
