:root {
    --purple: #7B2FBE;
    --pink: #E91E8C;
    --yellow: #FFD93D;
    --teal: #00BFA5;
    --blue: #2979FF;
    --orange: #FF6B35;
    --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);
    color: var(--text);
    overflow-x: hidden;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HERO ===== */
.hero {
    background: var(--dark);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.baby-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #2D1B69 100%);
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .3;
    pointer-events: none;
}

.blob-1 {
    width: 520px;
    height: 520px;
    background: var(--pink);
    top: -150px;
    left: -100px;
}

.blob-2 {
    width: 420px;
    height: 420px;
    background: var(--purple);
    bottom: -100px;
    right: -80px;
}

.blob-3 {
    width: 280px;
    height: 280px;
    background: var(--yellow);
    top: 34%;
    left: 47%;
    opacity: .18;
}

.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: 16px;
}

.hero h1 span {
    color: var(--yellow);
}

.hero p {
    color: rgba(255,255,255,.76);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 34px;
}

.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);
}

.diag {
    height: 60px;
    background: var(--dark);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
    margin-bottom: -2px;
}

/* ===== TITLES ===== */
.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-sub {
    color: var(--text);
    font-size: 1rem;
    max-width: 620px;
    line-height: 1.65;
    margin-bottom: 48px;
}

/* ===== INTRO ===== */
.baby-intro {
    background: var(--bg);
    padding: 70px 0;
}

.baby-intro-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 42px;
    align-items: center;
}

.baby-intro-text p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 16px;
}

.baby-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.baby-tags span {
    background: white;
    border: 2px solid rgba(123,47,190,.25);
    color: var(--purple);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: .88rem;
    font-weight: 900;
}

.baby-highlight-card {
    background: white;
    border-radius: 26px;
    padding: 36px 30px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(123,47,190,.08);
    transition: all .35s ease;
}

.baby-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--purple);
}

.baby-card-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 18px;
}

.baby-highlight-card h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.baby-highlight-card p {
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 18px;
}

.baby-highlight-card ul {
    list-style: none;
}

.baby-highlight-card li {
    padding: 9px 0 9px 28px;
    position: relative;
    border-bottom: 1px solid #f2ecfb;
    font-size: .95rem;
}

.baby-highlight-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: 900;
}

/* ===== INCLUYE ===== */
.incluye-section {
    background: white;
    padding: 70px 0;
}

.incluye-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.incluye-card {
    background: var(--bg);
    border-radius: 22px;
    padding: 30px 22px;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: var(--shadow);
    transition: all .35s ease;
}

.incluye-card:hover {
    background: white;
    transform: translateY(-8px);
    border-color: var(--purple);
    box-shadow: var(--shadow-hover);
}

.incluye-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.7rem;
}

.incluye-icon.a { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.incluye-icon.b { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.incluye-icon.c { background: linear-gradient(135deg, var(--teal), var(--blue)); }
.incluye-icon.d { background: linear-gradient(135deg, #EC407A, var(--pink)); }
.incluye-icon.e { background: linear-gradient(135deg, var(--blue), #42A5F5); }
.incluye-icon.f { background: linear-gradient(135deg, #25D366, #128C7E); }

.incluye-card h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--dark);
    font-size: 1.18rem;
    margin-bottom: 8px;
}

.incluye-card p {
    color: var(--text);
    font-size: .9rem;
    line-height: 1.55;
}

/* ===== PLANES ===== */
.planes-baby-section {
    background: var(--bg);
    padding: 70px 0;
}

.planes-baby-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.baby-plan-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all .35s ease;
}

.baby-plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: var(--shadow-hover);
}

.baby-plan-card.featured {
    border-color: var(--yellow);
}

.baby-plan-top {
    padding: 32px 26px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.baby-plan-top::before {
    content: '';
    position: absolute;
    top: -35px;
    right: -35px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.baby-plan-top.basico {
    background: linear-gradient(135deg, var(--teal), var(--blue));
}

.baby-plan-top.intermedio {
    background: linear-gradient(135deg, var(--purple), var(--pink));
}

.baby-plan-top.premium {
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.baby-plan-top i {
    font-size: 2.2rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.baby-plan-top h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.65rem;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}

.baby-plan-top p {
    font-size: .9rem;
    opacity: .88;
    position: relative;
    z-index: 2;
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--yellow);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 0 0 12px 12px;
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.baby-plan-body {
    padding: 26px;
}

.baby-plan-body ul {
    list-style: none;
    margin-bottom: 24px;
}

.baby-plan-body li {
    padding: 9px 0 9px 28px;
    border-bottom: 1px solid #f2ecfb;
    position: relative;
    font-size: .94rem;
    color: var(--text);
}

.baby-plan-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: 900;
}

.btn-plan-wsp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #25D366;
    color: white;
    padding: 14px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    font-size: .96rem;
    transition: all .3s ease;
}

.btn-plan-wsp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* ===== 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);
}

/* ===== 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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .baby-intro-grid,
    .planes-baby-grid {
        grid-template-columns: 1fr;
    }

    .baby-highlight-card,
    .baby-plan-card {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .incluye-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .container {
        padding: 0 18px;
    }

    .hero {
        padding: 90px 0 64px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-hero-wsp,
    .btn-hero-sec,
    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .incluye-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .baby-intro,
    .incluye-section,
    .planes-baby-section,
    .cta-final {
        padding: 60px 0;
    }

    .baby-highlight-card,
    .incluye-card,
    .baby-plan-body {
        padding: 24px 18px;
    }

    .cta-btn {
        padding: 18px 28px;
        font-size: 1.05rem;
    }
}
