/* Contenedor flotante */
.whatsapp-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1030;
}

/* Botón elegante y moderno */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4be2e8, #53b1bd);
    color: white;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn i {
    font-size: 1.4rem;
}

/* Hover */
.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #20c55b, #00ffc8);
}

/* Animación suave tipo pulsación */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

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