/**
 * WhatsApp Call to Action Fixo - Estilos
 * Botão fixo no canto inferior direito
 */

.whatsapp-cta-fixo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulseScale 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-cta-fixo:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    text-decoration: none;
    color: #ffffff;
    animation: none;
}

.whatsapp-cta-fixo svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

/* Animação de pulso */
@keyframes pulseScale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Responsividade para dispositivos móveis */
@media screen and (max-width: 768px) {
    .whatsapp-cta-fixo {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-cta-fixo svg {
        width: 26px;
        height: 26px;
    }
}

/* Para telas muito pequenas (celulares em modo retrato) */
@media screen and (max-width: 480px) {
    .whatsapp-cta-fixo {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-cta-fixo svg {
        width: 24px;
        height: 24px;
    }
}

/* Garantir que o botão fique por cima de outros elementos */
.whatsapp-cta-fixo {
    -webkit-tap-highlight-color: transparent;
}

/* Efeito de clique/toque */
.whatsapp-cta-fixo:active {
    transform: scale(0.95);
}