﻿:root {
    --navy: #0a2247;
    --navy-deep: #061735;
    --blue: #2461E8;
    --blue-glow: #6c9aff;
    --gold: #E4B45A;
    --gold-soft: #f1cd84;
    /* neutros claros */
    --page: #f4f6fb;
    --surface: #ffffff;
    --line: #e6eaf3;
    --line-soft: #eef1f8;
    --ink: #0a2247;
    --ink-2: #41506b;
    --ink-3: #7c89a3;
    --radius-card: 20px;
    --radius-sm: 12px;
    --shadow-card: 0 1px 2px rgba(10,34,71,.04), 0 12px 32px rgba(10,34,71,.06);
    --shadow-hover: 0 2px 4px rgba(10,34,71,.06), 0 22px 48px rgba(10,34,71,.12);
    --font-body: 'Inter',system-ui,sans-serif;
    --font-display: 'Anton',sans-serif;
    --font-script: 'Parisienne',cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

a {
    color: var(--blue);
    text-decoration: none
}

    a:hover {
        color: var(--navy)
    }

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
   
}

/* ---------------- Hero ---------------- */
.hero {
    background: radial-gradient(120% 90% at 50% -20%, rgba(36,97,232,.22) 0%, transparent 55%), linear-gradient(180deg,var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff;
    padding: 76px 0 96px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero .kicker {
        font-family: var(--font-display);
        letter-spacing: .14em;
        font-size: 14px;
        color: var(--gold-soft);
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-family: var(--font-body);
        font-weight: 800;
        font-size: clamp(32px,5vw,52px);
        letter-spacing: -.02em;
        line-height: 1.08;
        color: white;
    }

        .hero h1 .script {
            font-family: var(--font-script);
            font-weight: 400;
            color: var(--gold-soft);
            font-size: 1.15em;
            letter-spacing: 0;
        }

    .hero p {
        max-width: 560px;
        margin: 22px auto 0;
        font-size: 18px;
        color: rgba(255,255,255,.72);
        font-weight: 400;
    }

/* jump nav */
.jump {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 38px;
}

    .jump a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.16);
        color: #fff;
        padding: 12px 20px;
        border-radius: 999px;
        font-size: 15px;
        font-weight: 600;
        transition: .2s;
    }

        .jump a:hover {
            background: rgba(255,255,255,.16);
            color: #fff;
            transform: translateY(-1px)
        }

        .jump a svg {
            width: 18px;
            height: 18px
        }

/* pull hero down into content */
.stage {
    margin-top: 12px;
    position: relative;
    z-index: 2;
    padding-bottom: 100px;
   
}

.fondo {
    background: var(--page);
    color: var(--ink);
}

/* ---------------- Section header ---------------- */
.section {
    margin-top: 64px
}

    .section:first-of-type {
        margin-top: 0
    }

.sec-head {
    margin-bottom: 28px
}

.sec-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    color: var(--blue);
    background: #eaf0ff;
    border: 1px solid #d9e4ff;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

    .sec-eyebrow svg {
        width: 15px;
        height: 15px
    }

.sec-head h2 {
    font-size: clamp(26px,3.4vw,34px);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.12;
}

.sec-head .lead {
    margin-top: 10px;
    color: var(--ink-2);
    font-size: 16.5px;
    max-width: 620px;
}

/* ---------------- Purchase guide (vertical, written) ---------------- */
.guide {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 14px 34px 20px;
}

.g-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    padding: 24px 0;
    position: relative;
}

    .g-item + .g-item {
        border-top: 1px solid var(--line-soft)
    }
/* continuous rail behind the nodes */
.g-rail {
    position: relative;
    display: flex;
    justify-content: center
}

.g-item:not(:last-child) .g-rail::before {
    content: "";
    position: absolute;
    top: 44px;
    bottom: -24px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg,#dbe5fb,#eef2fa);
}

.g-node {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg,#eaf0ff,#f6f9ff);
    border: 1px solid #dde7fb;
    color: var(--blue);
}

    .g-node svg {
        width: 26px;
        height: 26px
    }

.g-content {
    padding-top: 3px
}

    .g-content h3 {
        font-size: 19px;
        font-weight: 700;
        letter-spacing: -.01em;
        margin-bottom: 8px
    }

    .g-content p {
        color: var(--ink-2);
        font-size: 15.5px;
        margin-bottom: 7px;
        max-width: 60ch
    }

        .g-content p:last-child {
            margin-bottom: 0
        }

    .g-content .hint {
        color: var(--ink-3);
        font-size: 14.5px
    }

    .g-content .tag {
        font-weight: 600;
        color: var(--navy)
    }

    .g-content b {
        color: var(--navy);
        font-weight: 600
    }
/* inline written chips for options / complexes */
.g-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 4px 0 7px
}

    .g-chips span {
        background: #f2f5fc;
        border: 1px solid var(--line);
        color: var(--ink-2);
        font-size: 13.5px;
        font-weight: 500;
        padding: 5px 12px;
        border-radius: 999px;
    }

/* retiro — final item, gold-tinted written block */
.g-item.retiro {
    margin-top: 8px;
    background: linear-gradient(150deg,#fffaf0,#fff 65%);
    border: 1px solid #f0e2c2;
    border-top: 1px solid #f0e2c2;
    border-radius: 16px;
    padding: 26px 24px;
}

    .g-item.retiro .g-node {
        background: linear-gradient(150deg,var(--gold),var(--gold-soft));
        border-color: transparent;
        color: #fff;
        box-shadow: 0 8px 20px rgba(228,180,90,.35);
    }

    .g-item.retiro .g-rail::before {
        display: none
    }

    .g-item.retiro .tag {
        color: #a86f1f
    }

.g-note {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-top: 12px;
    background: rgba(228,180,90,.12);
    border: 1px solid rgba(228,180,90,.3);
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 14px;
    color: #8a5d18;
}

    .g-note svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        margin-top: 1px;
        color: var(--gold)
    }

    .g-note b {
        color: #7a4f12
    }

/* ---------------- FAQ accordions ---------------- */
.faq {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.acc {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

    .acc.open {
        border-color: #cddbf7;
        box-shadow: var(--shadow-hover)
    }

.acc-q {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--ink);
}

    .acc-q:hover {
        color: var(--blue)
    }

    .acc-q .chev {
        margin-left: auto;
        flex-shrink: 0;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #f0f3fa;
        color: var(--blue);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .28s;
    }

.acc.open .acc-q .chev {
    transform: rotate(180deg);
    background: var(--blue);
    color: #fff
}

.acc-q .chev svg {
    width: 16px;
    height: 16px
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease;
}

.acc-inner {
    padding: 0 22px 22px 60px;
    color: var(--ink-2);
    font-size: 15.5px
}

    .acc-inner p {
        margin-bottom: 10px
    }

        .acc-inner p:last-child {
            margin-bottom: 0
        }

    .acc-inner .yes {
        color: var(--navy);
        font-weight: 700
    }

    .acc-inner ul {
        list-style: none;
        margin: 4px 0 10px
    }

        .acc-inner ul li {
            position: relative;
            padding-left: 18px;
            margin-bottom: 5px
        }

            .acc-inner ul li::before {
                content: "";
                position: absolute;
                left: 2px;
                top: 9px;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: var(--blue-glow);
            }

    .acc-inner .fine {
        font-size: 13.5px;
        color: var(--ink-3);
        margin-top: 8px
    }

/* points program highlighted card */
.points {
    margin-top: 26px;
    background: linear-gradient(155deg,#fffaf0 0%, #fff 60%);
    border: 1px solid #f0e2c2;
    border-radius: 24px;
    padding: 32px 30px 30px;
    box-shadow: 0 20px 50px rgba(228,180,90,.14);
}

.points-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px
}

.points-badge {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    flex-shrink: 0;
    background: linear-gradient(150deg,var(--gold),var(--gold-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 20px rgba(228,180,90,.4);
}

    .points-badge svg {
        width: 28px;
        height: 28px
    }

.points-head h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.01em
}

.points-head .sub {
    color: var(--ink-2);
    font-size: 14.5px;
    margin-top: 2px
}

.points .faq {
    margin-top: 0
}

.points .acc {
    border-color: #f0e6d0
}

    .points .acc.open {
        border-color: #e6cf9a
    }

.points .acc-q .chev {
    background: #faf1dc;
    color: #b9812a
}

.points .acc.open .acc-q .chev {
    background: var(--gold);
    color: #fff
}

.points .acc-q:hover {
    color: #b9812a
}

.points .acc-inner .yes {
    color: #a86f1f
}

.points .acc-inner a {
    color: #a86f1f
}

    .points .acc-inner a:hover {
        color: var(--navy)
    }

/* footer note */
.footnote {
    text-align: center;
    margin-top: 64px;
    color: var(--ink-3);
    font-size: 14px;
}

    .footnote .script {
        font-family: var(--font-script);
        color: var(--gold);
        font-size: 22px
    }

/* ---------------- Responsive ---------------- */
@media (max-width:560px) {
    .hero {
        padding: 60px 0 84px
    }

    .guide {
        padding: 8px 18px 16px
    }

    .g-item {
        grid-template-columns: 44px 1fr;
        gap: 16px
    }

    .g-node {
        width: 44px;
        height: 44px;
        border-radius: 13px
    }

        .g-node svg {
            width: 22px;
            height: 22px
        }

    .g-item:not(:last-child) .g-rail::before {
        top: 40px
    }

    .g-item.retiro {
        padding: 22px 16px
    }

    .acc-inner {
        padding-left: 22px
    }

    .points {
        padding: 26px 20px
    }
}
