/* ============================================================
   GinecoLab :: Landing comercial / Editorial Clinico Maximalismo
   Paleta: gn-ink-abyss + gn-rose-deep + gn-jade + gn-bone + gn-gold
   Tipografia: Cormorant Garamond (display) + Spectral (body)
               + Manrope (UI) + JetBrains Mono (numerico)
   Inspiracao: revistas medicas de prestigio, sobriedade cientifica.
   PT-BR. Sem emoji. Sem travessao.
   ============================================================ */

:root {
    /* Paleta editorial */
    --gn-ink-abyss:   #1A1418;
    --gn-ink-deep:    #2A2024;
    --gn-ink-soft:    #3A2F33;
    --gn-bone:        #F8F4EE;
    --gn-bone-soft:   #EFE7DC;
    --gn-bone-deep:   #DCCFBC;
    --gn-sand:        #C9B79A;
    --gn-rose-deep:   #B4566C;
    --gn-rose-soft:   #D08092;
    --gn-rose-glow:   rgba(180, 86, 108, 0.35);
    --gn-jade:        #5A8F7B;
    --gn-jade-deep:   #406F5E;
    --gn-gold:        #B8924A;
    --gn-gold-soft:   #D7B26D;

    /* Tipografia */
    --ff-display: "Cormorant Garamond", "Cormorant", "Times New Roman", Georgia, serif;
    --ff-body:    "Spectral", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    --ff-ui:      "Manrope", "Inter", -apple-system, "Segoe UI", sans-serif;
    --ff-mono:    "JetBrains Mono", "Cascadia Code", "SF Mono", Consolas, monospace;

    /* Ritmo */
    --space-1:  4px;
    --space-2:  8px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 40px;
    --space-6: 64px;
    --space-7: 96px;
    --space-8: 144px;

    --max-w: 1320px;
    --max-w-narrow: 900px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--ff-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--gn-ink-abyss);
    background: var(--gn-bone);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

::selection { background: var(--gn-rose-deep); color: var(--gn-bone); }

/* ------- Cursor custom (desktop, opt-in) ----------- */
@media (hover: hover) and (pointer: fine) {
    body.cursor-custom { cursor: none; }
    body.cursor-custom .gn-cursor {
        position: fixed; top: 0; left: 0; z-index: 9999;
        width: 16px; height: 16px; border-radius: 50%;
        background: var(--gn-bone); pointer-events: none;
        mix-blend-mode: difference;
        transition: width .2s ease, height .2s ease, transform .08s linear;
        transform: translate(-50%, -50%);
    }
    body.cursor-custom .gn-cursor.is-active {
        width: 38px; height: 38px;
        background: var(--gn-jade);
    }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    body.cursor-custom { cursor: auto; }
    body.cursor-custom .gn-cursor { display: none; }
    .gn-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* ------- Container ----------- */
.gn-wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-4); }
.gn-wrap--narrow { max-width: var(--max-w-narrow); }

/* ------- Tipografia editorial ----------- */
.gn-display {
    font-family: var(--ff-display);
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.025em;
    line-height: 0.98;
}
.gn-display--giant { font-size: clamp(58px, 9.5vw, 124px); }
.gn-display--big   { font-size: clamp(46px, 7vw, 92px); }
.gn-display--mid   { font-size: clamp(38px, 5vw, 64px); }
.gn-display--small { font-size: clamp(28px, 3.4vw, 44px); }

.gn-eyebrow {
    font-family: var(--ff-ui);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gn-rose-deep);
}
.gn-eyebrow.on-dark { color: var(--gn-rose-soft); }

.gn-lede {
    font-family: var(--ff-body);
    font-size: clamp(18px, 1.4vw, 22px);
    line-height: 1.55;
    color: var(--gn-ink-soft);
    max-width: 560px;
}
.gn-lede.on-dark { color: var(--gn-bone-soft); }

.gn-num {
    font-family: var(--ff-mono);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}

.gn-mark {
    font-family: var(--ff-display);
    font-style: italic;
    color: var(--gn-rose-deep);
}

/* ------- Topbar ----------- */
.gn-topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 0;
    transition: background .25s ease, padding .25s ease, border-color .25s ease;
    border-bottom: 1px solid transparent;
}
.gn-topbar.is-scrolled {
    background: rgba(26, 20, 24, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 0;
    border-bottom-color: rgba(248, 244, 238, 0.08);
}
.gn-topbar__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.gn-logo {
    font-family: var(--ff-display);
    font-style: italic;
    font-weight: 600;
    font-size: 26px;
    color: var(--gn-bone);
    letter-spacing: -0.01em;
}
.gn-logo b { color: var(--gn-rose-soft); font-weight: 600; }

.gn-nav { display: flex; align-items: center; gap: 28px; }
.gn-nav a {
    font-family: var(--ff-ui);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--gn-bone-soft);
    transition: color .2s ease;
}
.gn-nav a:hover { color: var(--gn-rose-soft); }

/* ------- Botoes ----------- */
.gn-btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--ff-ui);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
    white-space: nowrap;
}
.gn-btn--rose {
    background: var(--gn-rose-deep);
    color: var(--gn-bone);
    box-shadow: 0 14px 32px var(--gn-rose-glow);
}
.gn-btn--rose:hover {
    background: #C46A7D;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px var(--gn-rose-glow);
}
.gn-btn--ghost {
    background: transparent;
    color: var(--gn-bone);
    border-color: rgba(248, 244, 238, 0.4);
}
.gn-btn--ghost:hover { border-color: var(--gn-bone); background: rgba(248, 244, 238, 0.08); }
.gn-btn--ink {
    background: var(--gn-ink-abyss);
    color: var(--gn-bone);
}
.gn-btn--ink:hover { background: var(--gn-ink-deep); }
.gn-btn--sm { padding: 12px 22px; font-size: 12px; }
.gn-btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* ------- Hero ----------- */
.gn-hero {
    position: relative;
    min-height: 100vh;
    background: var(--gn-ink-abyss);
    color: var(--gn-bone);
    overflow: hidden;
    display: flex; align-items: center;
    padding: 140px 0 80px;
}
.gn-hero::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 22% 18%, rgba(180, 86, 108, 0.22), transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(90, 143, 123, 0.18), transparent 70%);
    pointer-events: none;
}
.gn-hero__grid {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.9fr;
    gap: var(--space-6);
    align-items: center;
}
.gn-hero__eyebrow { margin-bottom: 28px; display: inline-flex; align-items: center; gap: 14px; }
.gn-hero__eyebrow::before {
    content: ""; width: 36px; height: 1px;
    background: var(--gn-rose-soft);
}
.gn-hero h1 { color: var(--gn-bone); margin-bottom: 30px; max-width: 14ch; }
.gn-hero h1 .gn-gold-italic { color: var(--gn-gold-soft); }
.gn-hero__lede { margin-bottom: 40px; }
.gn-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.gn-hero__meta {
    margin-top: 56px;
    display: flex; gap: 48px; flex-wrap: wrap;
}
.gn-hero__meta-item .lbl {
    font-family: var(--ff-ui); font-weight: 500;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gn-bone-deep); margin-bottom: 6px;
}
.gn-hero__meta-item .val {
    font-family: var(--ff-display); font-style: italic;
    font-size: 28px; color: var(--gn-bone);
}

/* Watermark numerico atras das secoes */
.gn-watermark {
    position: absolute; pointer-events: none; user-select: none;
    font-family: var(--ff-display); font-style: italic; font-weight: 600;
    font-size: clamp(180px, 28vw, 360px);
    line-height: 0.85;
    color: var(--gn-ink-abyss);
    opacity: 0.06;
    z-index: 0;
}
.gn-hero .gn-watermark {
    color: var(--gn-bone);
    opacity: 0.04;
    right: -20px; bottom: -40px;
}

/* Card de prova lateral do hero */
.gn-hero__card {
    position: relative; z-index: 2;
    background: linear-gradient(155deg, rgba(248, 244, 238, 0.05) 0%, rgba(248, 244, 238, 0.01) 100%);
    border: 1px solid rgba(248, 244, 238, 0.12);
    border-radius: 4px;
    padding: 36px;
    backdrop-filter: blur(8px);
}
.gn-hero__card-eyebrow {
    font-family: var(--ff-ui); font-weight: 500;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gn-bone-deep); margin-bottom: 18px;
}
.gn-hero__card h3 {
    font-family: var(--ff-display); font-style: italic; font-weight: 600;
    font-size: 30px; color: var(--gn-bone); line-height: 1.15;
    margin-bottom: 22px;
}
.gn-hero__card ul { list-style: none; }
.gn-hero__card li {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 14px 0;
    border-top: 1px solid rgba(248, 244, 238, 0.08);
    font-family: var(--ff-body); font-size: 15px;
    color: var(--gn-bone-soft);
}
.gn-hero__card li:first-child { border-top: 0; }
.gn-hero__card li .nm { font-style: italic; }
.gn-hero__card li .vl { font-family: var(--ff-mono); font-weight: 700; font-size: 13px; color: var(--gn-gold-soft); }

/* Stagger reveal */
.gn-stagger > * {
    opacity: 0;
    transform: translateY(12px);
    animation: gn-fade-up 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@keyframes gn-fade-up { to { opacity: 1; transform: translateY(0); } }

/* ------- Marquee social proof ----------- */
.gn-marquee {
    background: var(--gn-ink-abyss);
    color: var(--gn-bone-soft);
    padding: 32px 0;
    border-top: 1px solid rgba(248, 244, 238, 0.08);
    overflow: hidden;
}
.gn-marquee__track {
    display: flex; gap: 64px;
    width: max-content;
    animation: gn-marquee 50s linear infinite;
}
.gn-marquee__item {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--ff-display); font-style: italic;
    font-size: 22px;
    color: var(--gn-bone-soft);
    opacity: 0.75;
    transition: opacity .2s ease;
    white-space: nowrap;
}
.gn-marquee__item:hover { opacity: 1; }
.gn-marquee__item svg { width: 22px; height: 22px; color: var(--gn-rose-soft); }
@keyframes gn-marquee { to { transform: translateX(-50%); } }

/* ------- Secoes ----------- */
.gn-sec {
    position: relative;
    padding: var(--space-7) 0;
    overflow: hidden;
}
.gn-sec--bone { background: var(--gn-bone); }
.gn-sec--bone-soft { background: var(--gn-bone-soft); }
.gn-sec--ink { background: var(--gn-ink-abyss); color: var(--gn-bone); }
.gn-sec--ink .gn-eyebrow { color: var(--gn-rose-soft); }
.gn-sec--ink .gn-lede { color: var(--gn-bone-soft); }
.gn-sec__head { max-width: 760px; margin-bottom: var(--space-6); position: relative; z-index: 2; }
.gn-sec__head .gn-eyebrow { display: block; margin-bottom: 16px; }
.gn-sec__head h2 { margin-bottom: 22px; }

/* ------- Features asymmetric ----------- */
.gn-feat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: center;
    padding: var(--space-6) 0;
    border-top: 1px solid var(--gn-bone-deep);
    position: relative; z-index: 2;
}
.gn-feat:first-of-type { border-top: 0; }
.gn-feat--reverse .gn-feat__txt { order: 2; }
.gn-feat__no {
    font-family: var(--ff-display); font-style: italic;
    font-size: 18px; color: var(--gn-rose-deep);
    margin-bottom: 16px;
    display: inline-flex; align-items: center; gap: 12px;
}
.gn-feat__no::after { content: ""; width: 32px; height: 1px; background: var(--gn-rose-deep); }
.gn-feat__txt h3 { margin-bottom: 18px; }
.gn-feat__txt p {
    font-size: 17px; line-height: 1.7;
    color: var(--gn-ink-soft);
    max-width: 50ch;
    margin-bottom: 24px;
}
.gn-feat__bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.gn-feat__bullets li {
    font-family: var(--ff-ui); font-weight: 500;
    font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--gn-ink-deep);
    display: flex; align-items: center; gap: 12px;
}
.gn-feat__bullets li::before {
    content: ""; width: 6px; height: 6px;
    background: var(--gn-jade); border-radius: 50%;
}
.gn-feat__art {
    background: var(--gn-bone-soft);
    border: 1px solid var(--gn-bone-deep);
    padding: var(--space-5);
    min-height: 320px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}
.gn-feat__art svg, .gn-feat__art .gn-art-glyph {
    width: 100%; max-width: 280px;
    color: var(--gn-rose-deep);
    opacity: 0.85;
}
.gn-feat__art .gn-art-glyph {
    font-family: var(--ff-display); font-style: italic; font-weight: 600;
    font-size: 180px; line-height: 1; color: var(--gn-rose-deep);
    text-align: center;
}

/* ------- 3 perfis ----------- */
.gn-perfis { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--gn-bone-deep); border: 1px solid var(--gn-bone-deep); }
.gn-perfil {
    background: var(--gn-bone); padding: var(--space-5);
    display: flex; flex-direction: column; gap: 18px;
    transition: background .25s ease, color .25s ease;
}
.gn-perfil:hover { background: var(--gn-ink-abyss); color: var(--gn-bone); }
.gn-perfil:hover h3 { color: var(--gn-bone); }
.gn-perfil:hover p { color: var(--gn-bone-soft); }
.gn-perfil:hover .gn-perfil__cat { color: var(--gn-rose-soft); }
.gn-perfil__cat {
    font-family: var(--ff-ui); font-weight: 500;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gn-rose-deep);
}
.gn-perfil h3 {
    font-family: var(--ff-display); font-style: italic; font-weight: 600;
    font-size: 34px; line-height: 1.05;
    color: var(--gn-ink-abyss);
}
.gn-perfil p { color: var(--gn-ink-soft); font-size: 15px; line-height: 1.7; }
.gn-perfil ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.gn-perfil li { font-family: var(--ff-ui); font-size: 13px; color: inherit; opacity: 0.85; display: flex; gap: 8px; }
.gn-perfil li::before { content: "/"; color: var(--gn-rose-deep); font-weight: 700; }

/* ------- Como funciona ----------- */
.gn-passos {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    position: relative;
}
.gn-passos::before {
    content: ""; position: absolute;
    top: 28px; left: 28px; right: 28px;
    border-top: 1px dashed var(--gn-rose-deep);
    opacity: 0.6;
}
.gn-passo { position: relative; padding-top: 0; }
.gn-passo__num {
    width: 56px; height: 56px;
    background: var(--gn-bone); border: 1px solid var(--gn-rose-deep);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--ff-display); font-style: italic; font-weight: 600;
    font-size: 24px; color: var(--gn-rose-deep);
    position: relative; z-index: 2;
    margin-bottom: 22px;
}
.gn-passo h4 {
    font-family: var(--ff-display); font-style: italic; font-weight: 600;
    font-size: 26px; color: var(--gn-ink-abyss); margin-bottom: 10px; line-height: 1.15;
}
.gn-passo p { font-size: 15px; color: var(--gn-ink-soft); line-height: 1.65; }

/* ------- Pricing ----------- */
.gn-pricing { background: var(--gn-bone); }
.gn-pricing__toggle {
    display: inline-flex; align-items: center;
    background: var(--gn-bone-soft);
    border: 1px solid var(--gn-bone-deep);
    border-radius: 999px;
    padding: 5px;
    margin-bottom: var(--space-5);
    font-family: var(--ff-ui);
}
.gn-pricing__toggle button {
    background: transparent; border: 0; cursor: pointer;
    font-family: inherit; font-weight: 600;
    font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--gn-ink-soft);
    padding: 10px 22px; border-radius: 999px;
    transition: all .2s ease;
}
.gn-pricing__toggle button.is-active {
    background: var(--gn-ink-abyss); color: var(--gn-bone);
}
.gn-pricing__toggle .save {
    font-family: var(--ff-display); font-style: italic;
    color: var(--gn-jade-deep); margin-left: 10px;
    font-size: 14px; text-transform: none; letter-spacing: 0;
}
.gn-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); align-items: stretch; }
.gn-tier {
    background: var(--gn-bone);
    border: 1px solid var(--gn-bone-deep);
    padding: var(--space-5);
    display: flex; flex-direction: column;
    position: relative;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.gn-tier:hover { transform: translateY(-4px); }
.gn-tier--feat {
    border: 1.5px solid var(--gn-jade);
    background: linear-gradient(180deg, var(--gn-bone) 0%, #FBF6EF 100%);
    box-shadow: 0 28px 60px rgba(64, 111, 94, 0.12);
}
.gn-tier--feat .gn-tier__badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gn-jade); color: var(--gn-bone);
    font-family: var(--ff-ui); font-weight: 700;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 999px;
}
.gn-tier__nm {
    font-family: var(--ff-display); font-style: italic; font-weight: 600;
    font-size: 32px; color: var(--gn-ink-abyss);
    margin-bottom: 6px;
}
.gn-tier__sub {
    font-family: var(--ff-body); font-size: 14px;
    color: var(--gn-ink-soft); margin-bottom: 28px;
    min-height: 44px;
}
.gn-tier__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.gn-tier__price .cur {
    font-family: var(--ff-mono); font-weight: 700;
    font-size: 18px; color: var(--gn-ink-soft);
}
.gn-tier__price .vlr {
    font-family: var(--ff-display); font-style: italic; font-weight: 600;
    font-size: 64px; color: var(--gn-ink-abyss); line-height: 1;
}
.gn-tier__price .per {
    font-family: var(--ff-ui); font-weight: 500;
    font-size: 13px; color: var(--gn-ink-soft);
}
.gn-tier__price-anual {
    font-family: var(--ff-mono); font-size: 11px;
    color: var(--gn-jade-deep); margin-bottom: 24px;
    letter-spacing: 0.04em;
}
.gn-tier ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: var(--space-4); flex: 1; }
.gn-tier li {
    display: flex; gap: 10px; align-items: flex-start;
    font-family: var(--ff-body); font-size: 15px;
    color: var(--gn-ink-deep); line-height: 1.55;
}
.gn-tier li svg {
    flex-shrink: 0; width: 16px; height: 16px;
    color: var(--gn-jade); margin-top: 5px;
}
.gn-tier .gn-btn { width: 100%; justify-content: center; }

/* ------- Testemunho ----------- */
.gn-quote {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.gn-quote__mark {
    font-family: var(--ff-display); font-style: italic;
    font-size: 220px; line-height: 0.6;
    color: var(--gn-rose-deep);
    opacity: 0.18;
    margin-bottom: -60px;
}
.gn-quote blockquote {
    font-family: var(--ff-display); font-style: italic; font-weight: 600;
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1.15;
    color: var(--gn-bone);
    margin-bottom: 36px;
    letter-spacing: -0.01em;
}
.gn-quote cite {
    font-family: var(--ff-ui); font-weight: 500;
    font-style: normal;
    font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gn-rose-soft);
    display: block;
}
.gn-quote cite b { color: var(--gn-bone); font-weight: 700; display: block; margin-bottom: 4px; font-size: 16px; letter-spacing: 0.06em; }

/* ------- FAQ ----------- */
.gn-faq { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.gn-faq details {
    border-top: 1px solid var(--gn-bone-deep);
    padding: 28px 0;
}
.gn-faq details:last-child { border-bottom: 1px solid var(--gn-bone-deep); }
.gn-faq summary {
    list-style: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
    font-family: var(--ff-display); font-style: italic; font-weight: 600;
    font-size: clamp(22px, 2.5vw, 30px);
    color: var(--gn-ink-abyss); line-height: 1.25;
}
.gn-faq summary::-webkit-details-marker { display: none; }
.gn-faq summary::after {
    content: "+"; flex-shrink: 0;
    font-family: var(--ff-display); font-style: italic;
    font-size: 36px; color: var(--gn-rose-deep);
    line-height: 0.6;
    transition: transform .25s ease;
}
.gn-faq details[open] summary::after { content: "\2013"; transform: rotate(0deg); }
.gn-faq .gn-faq__body {
    font-family: var(--ff-body); font-size: 16px; line-height: 1.7;
    color: var(--gn-ink-soft);
    padding: 18px 0 0;
    max-width: 70ch;
}

/* ------- Form ----------- */
.gn-form-wrap {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: start;
    position: relative; z-index: 2;
}
.gn-form-txt h2 { color: var(--gn-bone); margin-bottom: 24px; }
.gn-form-txt p { color: var(--gn-bone-soft); font-size: 17px; line-height: 1.7; margin-bottom: 24px; max-width: 50ch; }
.gn-form-txt ul { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.gn-form-txt li { display: flex; gap: 14px; font-family: var(--ff-ui); font-weight: 500; font-size: 14px; color: var(--gn-bone-soft); letter-spacing: 0.04em; }
.gn-form-txt li::before { content: "/"; color: var(--gn-rose-soft); font-family: var(--ff-display); font-style: italic; font-weight: 600; }

.gn-form {
    background: var(--gn-bone);
    color: var(--gn-ink-abyss);
    padding: var(--space-5);
    border: 1px solid var(--gn-bone-deep);
}
.gn-form h3 {
    font-family: var(--ff-display); font-style: italic; font-weight: 600;
    font-size: 30px; line-height: 1.1;
    margin-bottom: 6px;
}
.gn-form__sub {
    font-family: var(--ff-body); font-size: 14px;
    color: var(--gn-ink-soft); margin-bottom: 28px;
}
.gn-fld { margin-bottom: 18px; position: relative; }
.gn-fld label {
    display: block;
    font-family: var(--ff-ui); font-weight: 500;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gn-ink-soft); margin-bottom: 8px;
}
.gn-fld input, .gn-fld select, .gn-fld textarea {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--gn-bone-deep);
    font-family: var(--ff-body);
    font-size: 16px;
    color: var(--gn-ink-abyss);
    transition: border-color .2s ease;
}
.gn-fld input:focus, .gn-fld select:focus, .gn-fld textarea:focus {
    outline: none;
    border-bottom-color: var(--gn-rose-deep);
}
.gn-fld textarea { resize: vertical; min-height: 80px; }
.gn-fld--row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gn-hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.gn-form__msg {
    font-family: var(--ff-ui); font-size: 13px;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-left: 3px solid;
    display: none;
}
.gn-form__msg.ok { display: block; border-color: var(--gn-jade); background: rgba(90, 143, 123, 0.08); color: var(--gn-jade-deep); }
.gn-form__msg.err { display: block; border-color: var(--gn-rose-deep); background: rgba(180, 86, 108, 0.08); color: var(--gn-rose-deep); }
.gn-form .gn-btn { width: 100%; justify-content: center; margin-top: 6px; }
.gn-form__priv {
    font-family: var(--ff-ui); font-size: 11px; line-height: 1.6;
    color: var(--gn-ink-soft);
    margin-top: 18px; text-align: center;
    letter-spacing: 0.02em;
}

/* ------- Footer ----------- */
.gn-foot {
    background: var(--gn-ink-abyss);
    color: var(--gn-bone-soft);
    padding: var(--space-6) 0 var(--space-4);
    border-top: 1px solid rgba(248, 244, 238, 0.08);
}
.gn-foot__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--space-5); margin-bottom: var(--space-5); }
.gn-foot__brand { font-family: var(--ff-display); font-style: italic; font-weight: 600; font-size: 38px; color: var(--gn-bone); margin-bottom: 16px; }
.gn-foot__brand b { color: var(--gn-rose-soft); }
.gn-foot p { font-family: var(--ff-body); font-size: 14px; line-height: 1.7; color: var(--gn-bone-deep); max-width: 38ch; }
.gn-foot__col h5 {
    font-family: var(--ff-ui); font-weight: 700;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gn-rose-soft); margin-bottom: 22px;
}
.gn-foot__col a {
    display: block;
    font-family: var(--ff-body); font-size: 15px;
    color: var(--gn-bone-deep); margin-bottom: 10px;
    transition: color .2s ease;
}
.gn-foot__col a:hover { color: var(--gn-bone); }
.gn-foot__bottom {
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(248, 244, 238, 0.08);
    font-family: var(--ff-ui); font-size: 12px; color: var(--gn-bone-deep);
    letter-spacing: 0.04em;
    flex-wrap: wrap;
}
.gn-foot__bottom a { color: var(--gn-bone-deep); margin-left: 22px; }
.gn-foot__bottom a:hover { color: var(--gn-bone); }

/* ------- Erro 404/500 ----------- */
.gn-err {
    min-height: 100vh;
    background: var(--gn-ink-abyss);
    color: var(--gn-bone);
    display: flex; align-items: center; justify-content: center;
    padding: var(--space-5);
    text-align: left;
    position: relative; overflow: hidden;
}
.gn-err__num {
    font-family: var(--ff-display); font-style: italic; font-weight: 600;
    font-size: clamp(180px, 32vw, 360px);
    line-height: 0.85;
    background: linear-gradient(135deg, var(--gn-bone) 0%, var(--gn-rose-deep) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.gn-err__lede { color: var(--gn-bone-soft); margin-bottom: 32px; }

/* ------- Contato/Privacidade/Termos ----------- */
.gn-doc {
    background: var(--gn-bone);
    padding: 140px 0 var(--space-6);
}
.gn-doc__hero {
    padding-bottom: var(--space-5);
    border-bottom: 1px solid var(--gn-bone-deep);
    margin-bottom: var(--space-6);
}
.gn-doc__layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--space-6);
    align-items: start;
}
.gn-doc__nav {
    position: sticky; top: 100px;
    font-family: var(--ff-ui); font-size: 12px;
    line-height: 1.7;
    border-left: 1px solid var(--gn-bone-deep);
    padding-left: 16px;
}
.gn-doc__nav b {
    display: block;
    font-weight: 700;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gn-rose-deep); margin-bottom: 14px;
}
.gn-doc__nav a {
    display: block; color: var(--gn-ink-soft);
    padding: 4px 0;
    transition: color .2s ease;
}
.gn-doc__nav a:hover, .gn-doc__nav a.is-active { color: var(--gn-ink-abyss); }
.gn-doc__body h2 {
    font-family: var(--ff-display); font-style: italic; font-weight: 600;
    font-size: clamp(28px, 3.4vw, 42px);
    margin: var(--space-5) 0 18px;
    color: var(--gn-ink-abyss); line-height: 1.15;
    scroll-margin-top: 100px;
}
.gn-doc__body h3 {
    font-family: var(--ff-display); font-style: italic; font-weight: 600;
    font-size: 24px;
    margin: 30px 0 12px;
    color: var(--gn-ink-deep);
}
.gn-doc__body p, .gn-doc__body li {
    font-family: var(--ff-body); font-size: 16px; line-height: 1.75;
    color: var(--gn-ink-deep);
}
.gn-doc__body p { margin-bottom: 14px; max-width: 70ch; }
.gn-doc__body ul, .gn-doc__body ol { padding-left: 22px; margin: 12px 0 18px; }
.gn-doc__body li { margin-bottom: 8px; max-width: 68ch; }
.gn-doc__body strong { color: var(--gn-ink-abyss); }
.gn-doc__body a { color: var(--gn-rose-deep); border-bottom: 1px dotted var(--gn-rose-deep); }

/* ------- Contato grid ----------- */
.gn-contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.gn-contato-info ul { list-style: none; display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.gn-contato-info li {
    font-family: var(--ff-body); font-size: 16px;
    border-left: 2px solid var(--gn-rose-deep);
    padding-left: 18px;
}
.gn-contato-info li b {
    display: block;
    font-family: var(--ff-ui); font-weight: 700;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gn-rose-deep); margin-bottom: 6px;
}

/* ------- Responsivo ----------- */
@media (max-width: 1024px) {
    .gn-hero__grid { grid-template-columns: 1fr; gap: var(--space-5); }
    .gn-hero { padding: 120px 0 60px; min-height: auto; }
    .gn-feat { grid-template-columns: 1fr; gap: var(--space-4); padding: var(--space-5) 0; }
    .gn-feat--reverse .gn-feat__txt { order: 0; }
    .gn-perfis { grid-template-columns: 1fr; }
    .gn-passos { grid-template-columns: repeat(2, 1fr); }
    .gn-passos::before { display: none; }
    .gn-tiers { grid-template-columns: 1fr; }
    .gn-form-wrap { grid-template-columns: 1fr; gap: var(--space-5); }
    .gn-foot__top { grid-template-columns: 1fr 1fr; }
    .gn-contato-grid { grid-template-columns: 1fr; }
    .gn-doc__layout { grid-template-columns: 1fr; }
    .gn-doc__nav { position: static; border-left: 0; border-top: 1px solid var(--gn-bone-deep); padding: 16px 0 0; }
}
@media (max-width: 720px) {
    .gn-nav a:not(.gn-btn) { display: none; }
    .gn-passos { grid-template-columns: 1fr; }
    .gn-fld--row { grid-template-columns: 1fr; }
    .gn-foot__top { grid-template-columns: 1fr; }
    .gn-sec { padding: var(--space-6) 0; }
    .gn-hero h1 { max-width: none; }
    .gn-quote__mark { font-size: 140px; margin-bottom: -40px; }
}

/* ------- Utilitarios ----------- */
.gn-text-center { text-align: center; }
.gn-mt-0 { margin-top: 0; }
.gn-mb-0 { margin-bottom: 0; }
.is-hidden { display: none !important; }
