:root {
    --purple: #7B2FBE;
    --pink: #E91E8C;
    --yellow: #FFD93D;
    --teal: #00BFA5;
    --blue: #2979FF;
    --orange: #FF6B35;
    --neuro: #7B2FBE;
    --white: #FFFFFF;
    --bg: #F7F3FF;
    --dark: #1A1A2E;
    --text: #3D3D5C;
    --shadow: 0 8px 32px rgba(123,47,190,.13);
    --shadow-hover: 0 24px 56px rgba(123,47,190,.2);
}

body {
    background: var(--white);
}

/* ===== BASE ===== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.15;
}

.section-title .hl {
    color: var(--purple);
}

.section-title .hl2 {
    color: var(--teal);
}

.section-sub {
    color: var(--text);
    font-size: 1rem;
    max-width: 620px;
    line-height: 1.65;
    margin-bottom: 48px;
}

/* ===== HERO ===== */
.hero {
    background: var(--dark);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .3;
    pointer-events: none;
}

.blob-1 {
    width: 520px;
    height: 520px;
    background: var(--purple);
    top: -150px;
    left: -120px;
}

.blob-2 {
    width: 420px;
    height: 420px;
    background: var(--teal);
    bottom: -80px;
    right: -80px;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--pink);
    top: 40%;
    left: 45%;
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 36px 36px;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,217,61,.15);
    border: 1px solid rgba(255,217,61,.35);
    color: var(--yellow);
    padding: 7px 20px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero h1 .hl {
    color: var(--yellow);
}

.hero-desc {
    color: rgba(255,255,255,.78);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 24px;
}

.hero-quote {
    display: inline-block;
    background: rgba(255,255,255,.08);
    border: 2px dashed rgba(255,217,61,.4);
    border-radius: 999px;
    padding: 12px 32px;
    color: var(--yellow);
    font-size: 1rem;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 36px;
    backdrop-filter: blur(8px);
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-badge {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: white;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-wsp,
.btn-hero-sec {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-hero-wsp {
    background: #25D366;
    color: white;
    box-shadow: 0 8px 24px rgba(37,211,102,.4);
    border: 2px solid rgba(255,255,255,.2);
}

.btn-hero-sec {
    background: rgba(255,255,255,.1);
    color: white;
    border: 2px solid rgba(255,255,255,.3);
    backdrop-filter: blur(8px);
}

.btn-hero-wsp:hover,
.btn-hero-sec:hover {
    transform: translateY(-3px);
}

/* ===== DIAGONAL ===== */
.diag {
    height: 70px;
    background: var(--dark);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
    margin-bottom: -2px;
}

/* ===== QUÉ ES ===== */
.que-es {
    background: var(--bg);
    padding: 70px 0;
}

.que-es-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.que-es-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 16px;
}

.que-es-text p strong {
    color: var(--purple);
}

.neuro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.neuro-tag {
    background: white;
    border: 2px solid var(--purple);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: .88rem;
    font-weight: 900;
    color: var(--purple);
    transition: all .3s ease;
}

.neuro-tag:hover {
    background: var(--purple);
    color: white;
}

.que-es-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.qe-card {
    background: white;
    border-radius: 20px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid;
    transition: transform .3s ease;
}

.qe-card:hover {
    transform: translateY(-6px);
}

.qe-card:nth-child(1) {
    border-color: var(--purple);
}

.qe-card:nth-child(2) {
    border-color: var(--teal);
}

.qe-card:nth-child(3) {
    border-color: var(--pink);
}

.qe-card:nth-child(4) {
    border-color: var(--yellow);
}

.qe-card .qe-emoji {
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: block;
}

.qe-card h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    color: var(--dark);
}

/* ===== ZONA DE CALMA ===== */
.zona-calma {
    background: linear-gradient(135deg, var(--dark) 0%, #2D1B69 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.zona-calma::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(123,47,190,.3) 0%, transparent 60%);
}

.zona-calma .container {
    position: relative;
    z-index: 2;
}

.zona-calma .section-label {
    background: rgba(255,217,61,.15);
    border: 1px solid rgba(255,217,61,.3);
    color: var(--yellow);
}

.zona-title {
    color: white;
}

.zona-title .hl2 {
    color: #90CAF9;
}

.zona-sub {
    color: rgba(255,255,255,.72);
}

.calma-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.calma-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all .3s ease;
}

.calma-card:hover {
    background: rgba(255,255,255,.13);
    border-color: var(--yellow);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,.3);
}

.calma-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
}

.calma-icon.a {
    background: linear-gradient(135deg, var(--purple), #9C4FD4);
    color: white;
}

.calma-icon.b {
    background: linear-gradient(135deg, var(--teal), #00E5CC);
    color: white;
}

.calma-icon.c {
    background: linear-gradient(135deg, var(--pink), #ff80c0);
    color: white;
}

.calma-icon.d {
    background: linear-gradient(135deg, var(--blue), #42A5F5);
    color: white;
}

.calma-icon.e {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: white;
}

.calma-icon.f {
    background: linear-gradient(135deg, #7B1FA2, var(--purple));
    color: white;
}

.calma-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 8px;
}

.calma-card p {
    font-size: .88rem;
    color: rgba(255,255,255,.68);
    line-height: 1.55;
}

/* ===== ESPACIOS ===== */
.espacios {
    background: white;
    padding: 70px 0;
}

.espacios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.espacios-grid-single {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: auto;
}

.espacio-card {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .35s ease;
    border: 2px solid transparent;
}

.espacio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--purple);
}

.ec-top {
    padding: 32px 24px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--purple), var(--pink));
}

.ec-top::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.ec-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
    display: block;
    position: relative;
    z-index: 2;
}

.ec-top h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.7rem;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}

.ec-top p {
    font-size: .88rem;
    opacity: .88;
    position: relative;
    z-index: 2;
}

.ec-body {
    background: white;
    padding: 24px;
}

.ec-features {
    list-style: none;
}

.ec-features li {
    padding: 9px 0 9px 26px;
    position: relative;
    border-bottom: 1px solid #f5f0fc;
    font-size: .93rem;
    color: var(--text);
}

.ec-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: 900;
}

.ec-features li:last-child {
    border-bottom: none;
}

/* ===== POR QUÉ ===== */
.por-que {
    background: var(--bg);
    padding: 70px 0;
}

.pq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.pq-card {
    background: white;
    border-radius: 22px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border-bottom: 4px solid;
    transition: transform .3s ease;
}

.pq-card:hover {
    transform: translateY(-7px);
}

.pq-card:nth-child(1) {
    border-color: var(--purple);
}

.pq-card:nth-child(2) {
    border-color: var(--teal);
}

.pq-card:nth-child(3) {
    border-color: var(--pink);
}

.pq-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.pq-icon.b {
    background: linear-gradient(135deg, var(--teal), #00E5CC);
    color: white;
}

.pq-icon.c {
    background: linear-gradient(135deg, var(--pink), #ff80c0);
    color: white;
}

.pq-icon.d {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: white;
}

.pq-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 7px;
}

.pq-card p {
    font-size: .87rem;
    color: var(--text);
    line-height: 1.5;
}

/* ===== TESTIMONIOS ===== */
.testi {
    background: white;
    padding: 70px 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
}

.testi-card {
    background: var(--bg);
    border-radius: 20px;
    padding: 26px;
    border-left: 4px solid var(--purple);
    transition: transform .3s ease;
}

.testi-card:hover {
    transform: translateY(-5px);
}

.testi-stars {
    color: var(--yellow);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.testi-text {
    font-style: italic;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 14px;
    font-size: .95rem;
}

.testi-autor {
    font-weight: 900;
    color: var(--purple);
    font-size: .88rem;
}

/* ===== CTA FINAL ===== */
.cta-final {
    background: linear-gradient(135deg, var(--dark) 0%, #2D1B69 100%);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(123,47,190,.3) 0%, transparent 70%);
}

.cta-final .container {
    position: relative;
    z-index: 2;
}

.cta-final h2 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 14px;
}

.cta-final p {
    color: rgba(255,255,255,.72);
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 20px 48px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 0 10px 32px rgba(37,211,102,.4);
    transition: all .3s ease;
    border: 3px solid rgba(255,255,255,.2);
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 48px rgba(37,211,102,.5);
}

/* ===== ANIMACIONES ===== */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-d1 { transition-delay: .1s; }
.fade-up-d2 { transition-delay: .2s; }
.fade-up-d3 { transition-delay: .3s; }
.fade-up-d4 { transition-delay: .4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .que-es-grid {
        grid-template-columns: 1fr;
    }

    .calma-grid,
    .pq-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .espacios-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .espacios-grid-single {
        max-width: 900px;
    }
}

@media (max-width: 700px) {
    .container {
        padding: 0 18px;
    }

    .hero {
        padding: 90px 0 64px;
    }

    .hero-quote {
        border-radius: 22px;
        padding: 14px 22px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-hero-wsp,
    .btn-hero-sec,
    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .que-es-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .que-es,
    .zona-calma,
    .espacios,
    .por-que,
    .testi,
    .cta-final {
        padding: 60px 0;
    }

    .que-es-cards {
        grid-template-columns: 1fr;
    }

    .calma-card,
    .pq-card,
    .testi-card {
        padding: 24px 18px;
    }

    .cta-btn {
        padding: 18px 28px;
        font-size: 1.05rem;
    }
}