:root {
    --lavanda: #b08acc;
    --verde-agua: #6fc3b2;
    --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

body {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.hero-glow {
    background: radial-gradient(800px 300px at 10% 10%, rgba(45, 212, 191, 0.08), transparent 10%),
        radial-gradient(600px 250px at 90% 90%, rgba(139, 92, 246, 0.06), transparent 10%);
}

.glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.72));
    backdrop-filter: blur(6px);
}

.btn-primary {
    background: linear-gradient(90deg, var(--lavanda), var(--verde-agua));
    color: white;
}

.feature-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--lavanda), var(--verde-agua));
    display: inline-block;
    margin-right: 8px;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
}

.pulse {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.12);
    animation: pulse 1.8s infinite;
    z-index: -1;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    /* Asegura que esté encima de otros elementos, incluso de WhatsApp flotante */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

/* subtle fade-in */
/*
.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: all .6s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ animation */
/*
.faq-open {
    max-height: 1000px;
    transition: max-height .5s ease;
}

.faq-close {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}*/