/* Botón flotante de WhatsApp (global, todos los templates) */

.boton-whatsapp-flotante-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9998;
}

.boton-whatsapp-flotante {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff;
    font-size: 2.8rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    animation: boton-whatsapp-flotante-pulso 2.5s infinite;
    text-decoration: none;
}

.boton-whatsapp-flotante:hover,
.boton-whatsapp-flotante:focus {
    color: #ffffff;
    background-color: #1ebe5b;
}

@keyframes boton-whatsapp-flotante-pulso {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    }
}

@media (max-width: 576px) {
    .boton-whatsapp-flotante-container {
        bottom: 15px;
        right: 15px;
    }

    .boton-whatsapp-flotante {
        width: 48px;
        height: 48px;
        font-size: 2.4rem;
    }
}
