:root {
  --navy: #05233d;
  --navy-2: #0b3659;
  --orange: #ff7a1a;
  --orange-dark: #d95500;
  --orange-soft: #fff0e5;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --ink-soft: #41566a;
  --line: #dbe1e7;
  --success: #147d57;
  --shadow: 0 20px 50px rgba(5, 35, 61, 0.14);
  --shadow-raised: 0 28px 70px rgba(5, 35, 61, 0.2);
  --radius: 14px;
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px;
  caret-color: var(--orange-dark);
  scrollbar-color: var(--orange) var(--off-white);
  scrollbar-width: thin;
}
body::selection { color: var(--white); background: var(--orange-dark); }
body::-webkit-scrollbar { width: 11px; }
body::-webkit-scrollbar-track { background: var(--off-white); }
body::-webkit-scrollbar-thumb { background: var(--orange); border: 3px solid var(--off-white); border-radius: 999px; }
body::-webkit-scrollbar-thumb:hover { background: var(--orange-dark); }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button { color: inherit; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 14px; color: var(--white); background: var(--navy); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #ff9d57; outline-offset: 3px; }
.section-shell { width: min(100% - 40px, 1180px); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); border-bottom: 1px solid transparent; transition: box-shadow .25s ease, border-color .25s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 24px rgba(5,35,61,.06); }
.nav-shell { min-height: 72px; width: min(100% - 32px, 1240px); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand-logo { position: relative; display: block; flex: 0 0 auto; overflow: hidden; background: #000; border-radius: 9px; text-decoration: none; }
.brand-logo img { position: absolute; max-width: none; height: auto; }
.brand-logo-header { width: 220px; height: 54px; }
.brand-logo-header img { top: -46px; left: -13px; width: 245px; }
.desktop-nav, .header-cta { display: none; }
.menu-toggle { width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 10px; background: var(--off-white); cursor: pointer; }
.menu-toggle svg { width: 22px; height: 22px; }
.menu-toggle .close-icon { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon { display: none; }
.menu-toggle[aria-expanded="true"] .close-icon { display: block; }
.mobile-menu { position: absolute; top: 100%; right: 0; left: 0; display: grid; padding: 8px 20px 22px; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 18px 35px rgba(5,35,61,.1); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px); transition: opacity .22s ease, transform .3s cubic-bezier(.16,1,.3,1), visibility .22s ease; }
.mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.mobile-menu a { padding: 13px 2px; border-bottom: 1px solid var(--line); font-weight: 700; text-decoration: none; }
.mobile-menu a:last-child { margin-top: 10px; padding: 13px 18px; color: var(--white); text-align: center; background: var(--orange-dark); border: 0; border-radius: 10px; }

.hero { overflow: hidden; }
.hero-copy { padding: 56px 20px 44px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(2.55rem, 11vw, 5.6rem); line-height: .98; letter-spacing: -0.038em; text-wrap: balance; }
h1 em { color: var(--orange-dark); font-style: normal; }
.hero-lead { max-width: 620px; margin-bottom: 28px; color: var(--ink-soft); font-size: 1.04rem; line-height: 1.72; }
.hero-actions { display: flex; flex-direction: column; align-items: stretch; gap: 18px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 22px; border: 0; border-radius: 10px; font-size: .88rem; font-weight: 800; letter-spacing: .015em; text-decoration: none; text-transform: uppercase; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg, .text-link svg, .header-cta svg, .mobile-sticky-cta svg, .pass-button svg { transition: transform .2s ease; }
.button:hover svg, .text-link:hover svg, .header-cta:hover svg, .mobile-sticky-cta:hover svg { transform: translateX(4px); }
.button-primary { color: #17110c; background: var(--orange); box-shadow: 0 12px 28px rgba(217,85,0,.22); }
.button-primary:hover { background: #ff8b38; box-shadow: 0 15px 34px rgba(217,85,0,.3); }
.button-dark { color: var(--white); background: var(--navy); }
.text-link { display: inline-flex; align-items: center; justify-content: center; gap: 7px; color: var(--navy); font-weight: 800; text-underline-offset: 5px; text-decoration-thickness: 2px; }
.microcopy { display: flex; align-items: flex-start; gap: 9px; margin: 24px 0 0; color: var(--ink-soft); font-size: .78rem; line-height: 1.5; }
.microcopy span { flex: 0 0 auto; width: 8px; height: 8px; margin-top: 5px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px var(--orange-soft); }

.hero-visual { position: relative; min-height: 570px; background: var(--navy); }
.hero-visual::before { content: ""; position: absolute; inset: 0 0 auto; z-index: 1; height: 120px; background: linear-gradient(to bottom, var(--white), transparent); }
.hero-visual img { width: 100%; height: 570px; object-fit: cover; object-position: 58% 38%; }
.photo-caption { position: absolute; top: 52px; left: 18px; z-index: 2; display: flex; flex-direction: column; padding: 9px 12px; color: var(--navy); background: rgba(255,255,255,.92); border-radius: 8px; box-shadow: 0 10px 25px rgba(5,35,61,.1); }
.photo-caption span { font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.photo-caption strong { font-size: 12px; }
.opportunity-pass { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-raised); }
.hero-pass { position: absolute; right: 16px; bottom: 22px; z-index: 3; width: min(88%, 348px); padding: 18px; animation: pass-arrive .8s cubic-bezier(.16,1,.3,1) .12s both; }
.hero-pass::before, .hero-pass::after { content: ""; position: absolute; top: 64.5%; width: 18px; height: 18px; background: var(--navy); border-radius: 50%; }
.hero-pass::before { left: -9px; }
.hero-pass::after { right: -9px; }
.pass-topline { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 9px; color: var(--orange-dark); font-size: .67rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.status-dot { display: flex; align-items: center; gap: 6px; color: var(--success); letter-spacing: 0; text-transform: none; }
.status-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.hero-pass h2 { margin-bottom: 16px; font-size: 1.32rem; letter-spacing: -.02em; }
.pass-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 0; }
.pass-details div:last-child { grid-column: 1 / -1; }
.pass-details dt { display: flex; align-items: center; gap: 5px; margin-bottom: 2px; color: var(--ink-soft); font-size: .64rem; }
.pass-details dt svg { width: 13px; }
.pass-details dd { margin: 0; font-size: .8rem; font-weight: 800; }
.pass-tear { position: relative; height: 20px; margin: 10px -18px 2px; overflow: hidden; }
.pass-tear span { position: absolute; top: 10px; left: 15px; right: 15px; border-top: 1px dashed #cbd3da; }
.pass-value { display: flex; align-items: end; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.pass-value span { color: var(--ink-soft); font-size: .68rem; }
.pass-value strong { color: var(--orange-dark); font-family: var(--display); font-size: 1.9rem; line-height: 1; letter-spacing: -.03em; }
.pass-button { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px; color: var(--white); background: var(--navy); border-radius: 8px; font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.hero-pass > small { display: block; margin-top: 8px; color: #6a7d8f; font-size: .58rem; text-align: center; }

@keyframes pass-arrive {
  from { clip-path: inset(0 0 13% 0 round 14px); filter: blur(3px); transform: translateY(24px) rotate(-1.2deg); box-shadow: 0 10px 24px rgba(5,35,61,.08); }
  to { clip-path: inset(0 0 0 0 round 14px); filter: blur(0); transform: translateY(0) rotate(0); box-shadow: var(--shadow-raised); }
}

.benefit-rail { display: grid; background: var(--off-white); border-block: 1px solid var(--line); }
.benefit-rail article { display: flex; gap: 15px; padding: 24px 22px; border-bottom: 1px solid var(--line); }
.benefit-rail article:last-child { border-bottom: 0; }
.benefit-rail > article > svg { flex: 0 0 auto; width: 25px; height: 25px; margin-top: 2px; color: var(--orange-dark); }
.benefit-rail h2 { margin-bottom: 4px; font-size: .98rem; }
.benefit-rail p { margin-bottom: 0; color: var(--ink-soft); font-size: .79rem; line-height: 1.5; }

.central-message { padding: 50px 20px; color: var(--white); background: var(--orange-dark); }
.central-message p { max-width: 920px; margin: 0 auto; font-family: var(--display); font-size: clamp(1.65rem, 7vw, 3.4rem); font-weight: 650; line-height: 1.08; letter-spacing: -.03em; text-wrap: balance; }
.central-message strong { display: block; color: var(--white); font-weight: 800; }

.section-intro { margin-bottom: 40px; }
.section-intro h2, .reality h2, .opportunity-copy h2, .availability-copy h2, .value-copy h2, .reputation-copy h2, .documents-copy h2, .goiania-copy h2, .signup-copy h2 { margin-bottom: 16px; font-size: clamp(2rem, 8vw, 3.9rem); line-height: 1.04; letter-spacing: -.035em; text-wrap: balance; }
.section-intro p { max-width: 560px; margin-bottom: 0; color: var(--ink-soft); }
.reality { padding-block: 88px; }
.wide-intro h2 { max-width: 880px; }
.wide-intro > p { color: var(--orange-dark); font-weight: 800; }
.reality-layout { display: grid; gap: 46px; }
.reality-quote { position: relative; min-height: 300px; display: flex; flex-direction: column; justify-content: end; overflow: hidden; padding: 32px 26px; color: var(--white); background: var(--navy); border-radius: var(--radius); }
.reality-quote::after { content: ""; position: absolute; right: -90px; top: -100px; width: 260px; height: 260px; border: 72px solid var(--orange); border-radius: 50%; opacity: .92; }
.reality-quote span, .reality-quote strong { position: relative; z-index: 1; max-width: 330px; }
.reality-quote span { margin-bottom: 8px; color: #d7e4ef; font-size: .8rem; font-weight: 700; }
.reality-quote strong { font-family: var(--display); font-size: 1.65rem; line-height: 1.12; }
.quote-line { position: absolute; left: 26px; top: 28px; z-index: 1; width: 64px; height: 7px; background: var(--orange); }
.situation-list { display: grid; }
.situation-list article { padding: 22px 0; border-bottom: 1px solid var(--line); }
.situation-list article:first-child { padding-top: 0; }
.situation-list span { display: block; margin-bottom: 6px; font-family: var(--display); font-size: 1.15rem; font-weight: 750; }
.situation-list p { margin: 0; color: var(--ink-soft); font-size: .92rem; }

.manifesto { overflow: hidden; color: var(--white); background: var(--navy); }
.manifesto-inner { position: relative; width: min(100% - 40px, 1180px); margin-inline: auto; padding-block: 86px; }
.manifesto-inner::before { content: ""; position: absolute; right: -160px; top: -190px; width: 380px; height: 380px; border: 85px solid rgba(255,122,26,.13); border-radius: 50%; }
.manifesto-small { max-width: 540px; margin-bottom: 32px; color: #c8d8e5; font-size: .96rem; }
.manifesto h2 { position: relative; margin-bottom: 48px; font-size: clamp(2.8rem, 12vw, 6rem); line-height: .94; letter-spacing: -.04em; }
.manifesto h2 span { color: var(--orange); }
.manifesto-statement { position: relative; display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 18px; max-width: 700px; }
.manifesto-mark { width: 42px; height: 42px; display: grid; place-items: center; color: var(--navy); background: var(--orange); border-radius: 50%; font-family: var(--display); font-weight: 800; }
.manifesto-statement p { margin: 0; color: #e3edf4; font-size: 1.08rem; line-height: 1.65; }
.manifesto-statement strong { color: var(--white); }

.process { padding-block: 96px; }
.process-line { position: relative; display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.process-line::before { content: ""; position: absolute; left: 22px; top: 26px; bottom: 26px; width: 1px; background: var(--line); }
.process-line li { position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 0 0 32px; }
.process-line li:last-child { padding-bottom: 0; }
.process-line > li > span { z-index: 1; width: 46px; height: 46px; display: grid; place-items: center; color: var(--white); background: var(--navy); border: 5px solid var(--white); border-radius: 50%; font-family: var(--display); font-size: .72rem; font-weight: 800; }
.process-line li:nth-child(4) > span, .process-line li:nth-child(8) > span { color: #1c120b; background: var(--orange); }
.process-line h3 { margin: 4px 0 4px; font-size: 1.03rem; }
.process-line p { max-width: 470px; margin: 0; color: var(--ink-soft); font-size: .84rem; line-height: 1.55; }

.opportunity-section { padding-block: 88px; background: var(--orange-soft); }
.opportunity-grid { display: grid; gap: 42px; }
.opportunity-copy > p { margin: 28px 0 0; font-weight: 800; }
.known-list { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.known-list li { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.known-list svg { width: 21px; height: 21px; padding: 3px; color: var(--white); background: var(--orange-dark); border-radius: 50%; }
.full-pass { position: relative; overflow: hidden; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.full-pass::before, .full-pass::after { content: ""; position: absolute; top: 59%; z-index: 2; width: 28px; height: 28px; border-radius: 50%; background: var(--orange-soft); }
.full-pass::before { left: -14px; }
.full-pass::after { right: -14px; }
.full-pass-head { display: flex; align-items: start; justify-content: space-between; gap: 18px; padding: 24px 22px; color: var(--white); background: var(--navy); }
.full-pass-head span { color: #cbdce9; font-size: .7rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.full-pass-head h3 { margin: 4px 0 0; font-size: 1.45rem; }
.full-pass-head .pass-id { color: #ffbd8c; font-family: var(--display); }
.full-pass-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 15px; margin: 0; padding: 24px 22px; }
.full-pass-meta dt { display: flex; align-items: center; gap: 7px; margin-bottom: 4px; color: var(--ink-soft); font-size: .68rem; }
.full-pass-meta dt svg { width: 15px; }
.full-pass-meta dd { margin: 0; font-size: .82rem; font-weight: 800; line-height: 1.4; }
.full-pass-meta .money { grid-column: 1 / -1; display: flex; align-items: end; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); }
.full-pass-meta .money dd { color: var(--orange-dark); font-family: var(--display); font-size: 2.1rem; line-height: 1; }
.full-pass-meta .money small { color: var(--ink-soft); font-family: var(--body); font-size: .65rem; }
.pass-content { display: grid; gap: 18px; padding: 24px 22px; border-top: 1px dashed #bdc8d1; }
.pass-content h4 { margin: 0 0 5px; font-family: var(--display); font-size: .85rem; }
.pass-content p { margin: 0; color: var(--ink-soft); font-size: .8rem; }
.full-pass-footer { display: flex; flex-direction: column; gap: 9px; padding: 0 22px 22px; text-align: center; }
.full-pass-footer small { color: #687c8e; font-size: .62rem; }

.availability { padding-block: 96px; }
.availability-panel { display: grid; gap: 42px; }
.availability-copy > p { color: var(--ink-soft); }
.availability-copy > strong { display: block; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 1.03rem; line-height: 1.6; }
.week-picker { padding: 24px 18px; background: var(--off-white); border-radius: var(--radius); box-shadow: var(--shadow); }
.week-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 18px; }
.week-head span { font-family: var(--display); font-size: 1.1rem; font-weight: 800; }
.week-head small { color: var(--ink-soft); font-size: .68rem; }
.days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; }
.days button { min-width: 0; min-height: 96px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 8px; padding: 13px 3px 10px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.days button:hover { transform: translateY(-2px); }
.days button.available { color: var(--white); background: var(--navy); border-color: var(--navy); }
.days button span { font-family: var(--display); font-weight: 800; }
.days button strong { max-width: 100%; overflow: hidden; color: #52687a; font-size: .65rem; text-overflow: ellipsis; }
.days button.available strong { color: #bcd1e1; }
.week-picker > p { display: flex; align-items: start; gap: 8px; margin: 17px 0 0; color: var(--ink-soft); font-size: .69rem; line-height: 1.45; }
.week-picker > p span { flex: 0 0 auto; width: 8px; height: 8px; margin-top: 3px; border-radius: 50%; background: var(--orange); }

.value-section { color: var(--white); background: var(--navy); }
.value-inner { display: grid; gap: 46px; padding-block: 84px; }
.value-figure { position: relative; padding: 30px 26px; color: var(--navy); background: var(--orange); border-radius: var(--radius); overflow: hidden; }
.value-figure::after { content: ""; position: absolute; right: -38px; bottom: -66px; width: 170px; height: 170px; border: 40px solid rgba(5,35,61,.12); border-radius: 50%; }
.value-figure > span { font-size: .74rem; font-weight: 800; text-transform: uppercase; }
.value-figure > strong { position: relative; z-index: 1; display: block; margin: 10px 0 4px; font-family: var(--display); font-size: clamp(4.5rem, 22vw, 7.8rem); line-height: .85; letter-spacing: -.045em; }
.value-figure > strong small { font-size: .26em; vertical-align: top; }
.value-figure p { position: relative; z-index: 1; margin: 14px 0 0; font-size: .78rem; font-weight: 700; }
.value-copy p { color: #c9d9e6; }
.value-note { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.2); font-size: .78rem; }

.trust { padding-block: 96px; }
.trust-list { display: grid; }
.trust-list article { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.trust-list article:first-child { border-top: 1px solid var(--line); }
.trust-list article > span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--orange-dark); background: var(--orange-soft); border-radius: 12px; }
.trust-list h3 { margin: 0 0 4px; font-size: 1rem; }
.trust-list p { margin: 0; color: var(--ink-soft); font-size: .82rem; }

.reputation { padding-block: 88px; background: var(--off-white); }
.reputation-grid { display: grid; gap: 44px; }
.profile-ticket { position: relative; overflow: hidden; padding: 22px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.profile-ticket::after { content: ""; position: absolute; right: -42px; bottom: -42px; width: 120px; height: 120px; border: 30px solid var(--orange-soft); border-radius: 50%; }
.profile-head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px dashed #bbc6cf; }
.profile-head > svg { color: var(--success); }
.avatar { width: 46px; height: 46px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; font-family: var(--display); font-weight: 800; }
.profile-head div { display: flex; flex-direction: column; }
.profile-head strong { font-size: .9rem; }
.profile-head div span { color: var(--ink-soft); font-size: .68rem; }
.rating-row { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.stars { display: flex; gap: 2px; color: var(--orange); }
.stars svg { width: 18px; fill: currentColor; stroke-width: 1.2; }
.rating-row > strong { font-family: var(--display); font-size: 2.3rem; line-height: 1; }
.profile-stats { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.profile-stats div { display: flex; flex-direction: column; padding: 14px; background: var(--off-white); border-radius: 10px; }
.profile-stats strong { font-family: var(--display); font-size: 1.55rem; }
.profile-stats span { color: var(--ink-soft); font-size: .64rem; }
.profile-ticket > small { position: relative; z-index: 1; display: block; margin-top: 14px; color: #6c7f90; font-size: .6rem; }
.reputation-copy p { color: var(--ink-soft); }
.reputation-copy > strong { display: block; margin: 22px 0; color: var(--orange-dark); font-family: var(--display); font-size: 1.35rem; line-height: 1.3; }
.reputation-copy .moderation-note { margin-bottom: 0; padding-top: 20px; border-top: 1px solid var(--line); font-size: .76rem; }

.documents { display: grid; gap: 32px; padding-block: 92px; }
.documents-icon { position: relative; width: 116px; height: 116px; display: grid; place-items: center; color: var(--navy); background: var(--orange-soft); border-radius: var(--radius); }
.documents-icon > svg { width: 56px; height: 56px; stroke-width: 1.4; }
.documents-icon span { position: absolute; right: -10px; bottom: -10px; width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); background: var(--success); border: 5px solid var(--white); border-radius: 50%; }
.documents-icon span svg { width: 18px; }
.documents-copy p { color: var(--ink-soft); }
.documents-copy strong { display: block; margin: 22px 0 12px; color: var(--orange-dark); }
.documents-copy p:last-child { margin-bottom: 0; font-size: .8rem; }

.goiania { overflow: hidden; color: var(--white); background: var(--navy); }
.goiania-inner { position: relative; display: grid; gap: 44px; padding-block: 88px; }
.location-mark { position: relative; width: 190px; height: 230px; display: grid; place-items: center; color: var(--navy); background: var(--orange); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 22px 60px rgba(0,0,0,.22); }
.location-mark::after { content: ""; width: 76px; height: 76px; background: var(--navy); border-radius: 50%; }
.location-mark span { position: absolute; z-index: 1; color: var(--white); font-family: var(--display); font-size: 1.2rem; font-weight: 800; transform: rotate(45deg); }
.goiania-copy { position: relative; z-index: 1; }
.goiania-copy > p { color: #ccdae5; }
.early-note { display: flex; flex-direction: column; gap: 8px; margin: 30px 0; padding: 20px 0; border-block: 1px solid rgba(255,255,255,.18); }
.early-note span { color: var(--orange); font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.early-note strong { max-width: 580px; font-size: .92rem; }

.signup { display: grid; gap: 42px; padding-block: 96px; }
.signup-copy > p { color: var(--ink-soft); }
.form-sequence { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.form-sequence span { padding: 7px 10px; color: var(--ink-soft); background: var(--off-white); border-radius: 999px; font-size: .67rem; font-weight: 700; }
.form-sequence span.is-current { color: var(--white); background: var(--navy); }
.signup-assurance { display: flex; align-items: flex-start; gap: 9px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .76rem; }
.signup-assurance svg { flex: 0 0 auto; width: 18px; color: var(--success); }
.signup-form { min-width: 0; padding: 24px 20px; background: var(--off-white); border-radius: var(--radius); box-shadow: var(--shadow); }
.honey-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }
.form-status-head { display: flex; justify-content: space-between; margin-bottom: 13px; }
.form-status-head > span { font-family: var(--display); font-size: 1.1rem; font-weight: 800; }
.form-status-head > strong { color: var(--orange-dark); font-size: .72rem; font-variant-numeric: tabular-nums; }
.progress-track { height: 5px; margin-bottom: 24px; overflow: hidden; background: #dfe5e9; border-radius: 99px; }
.progress-track span { display: block; width: 100%; height: 100%; background: var(--orange); transform: scaleX(.1666); transform-origin: left center; transition: transform .35s cubic-bezier(.16,1,.3,1); }
.form-message { margin-bottom: 20px; padding: 12px 14px; color: #7a271a; background: #ffebe7; border-radius: 10px; font-size: .78rem; font-weight: 700; }
.form-step[hidden] { display: none; }
.step-heading { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; margin-bottom: 24px; }
.step-heading > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; font-family: var(--display); font-size: .78rem; font-weight: 800; }
.step-heading h3 { margin: 0 0 2px; font-size: 1.25rem; letter-spacing: -.02em; }
.step-heading p { margin: 0; color: var(--ink-soft); font-size: .75rem; line-height: 1.45; }
.field-grid { display: grid; gap: 16px; }
.field { display: block; min-width: 0; margin-bottom: 18px; color: var(--navy); font-size: .78rem; font-weight: 800; }
.field input, .field select { width: 100%; min-height: 54px; margin-top: 7px; padding: 13px 14px; color: var(--navy); background: var(--white); border: 1px solid #b9c5ce; border-radius: 9px; font-size: 1rem; transition: border-color .2s ease, box-shadow .2s ease; }
.field select { padding-right: 42px; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%); background-position: calc(100% - 19px) 23px, calc(100% - 14px) 23px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.field input::placeholder { color: #52687a; opacity: 1; }
.field input:focus, .field select:focus { border-color: var(--orange-dark); outline: none; box-shadow: 0 0 0 3px rgba(255,122,26,.22); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #b42318; }
.field small { display: block; margin-top: 6px; color: var(--ink-soft); font-size: .68rem; font-weight: 500; line-height: 1.45; }
.conditional-field { margin-top: -4px; }
.choice-group { min-width: 0; margin: 0 0 25px; padding: 0; border: 0; }
.choice-group legend { width: 100%; margin-bottom: 13px; padding: 0; font-size: .78rem; font-weight: 800; line-height: 1.45; }
.choice-group legend span { display: block; margin-top: 2px; color: var(--ink-soft); font-size: .67rem; font-weight: 600; }
.choice-grid { display: grid; grid-template-columns: 1fr; gap: 8px; }
.choice-grid label { position: relative; min-width: 0; cursor: pointer; }
.choice-grid input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.choice-grid label > span { position: relative; min-height: 46px; display: flex; align-items: center; padding: 10px 36px 10px 12px; color: var(--ink-soft); background: var(--white); border: 1px solid #c7d0d7; border-radius: 10px; font-size: .76rem; font-weight: 700; line-height: 1.35; overflow-wrap: anywhere; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.choice-grid label > span::after { content: ""; position: absolute; right: 13px; width: 14px; height: 8px; border-bottom: 2px solid transparent; border-left: 2px solid transparent; transform: rotate(-45deg); }
.choice-grid label:hover > span { border-color: #8596a4; transform: translateY(-1px); }
.choice-grid input:focus-visible + span { outline: 3px solid #ff9d57; outline-offset: 2px; }
.choice-grid input:checked + span { color: var(--white); background: var(--navy); border-color: var(--navy); }
.choice-grid input:checked + span::after { border-color: var(--orange); }
.choice-grid input:disabled + span { opacity: .45; cursor: not-allowed; transform: none; }
.group-error { margin: 9px 0 0; color: #b42318; font-size: .7rem; font-weight: 800; }
.selection-counter { margin: 10px 0 0; color: var(--ink-soft); font-size: .68rem; }
.selection-counter strong { color: var(--navy); font-variant-numeric: tabular-nums; }
.consent-field { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; margin-top: 4px; font-size: .73rem; font-weight: 700; line-height: 1.5; cursor: pointer; }
.consent-field input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--navy); }
.consent-field input:focus-visible { outline: 3px solid #ff9d57; outline-offset: 3px; }
.privacy-note { margin: 16px 0 0; color: var(--ink-soft); font-size: .65rem; line-height: 1.5; }
.privacy-note a { color: var(--navy); font-weight: 800; text-underline-offset: 3px; }
.form-actions { display: flex; flex-direction: column-reverse; gap: 10px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.form-actions .button { width: 100%; }
.button-back { color: var(--navy); background: transparent; border: 1px solid #aebbc5; }
.button-back:hover { background: var(--white); }
.submit-button { position: relative; }
.submit-button.is-loading { color: transparent; pointer-events: none; }
.submit-button.is-loading::after { content: ""; position: absolute; width: 20px; height: 20px; border: 2px solid rgba(5,35,61,.35); border-top-color: var(--navy); border-radius: 50%; animation: form-spin .7s linear infinite; }
@keyframes form-spin { to { transform: rotate(360deg); } }
.form-success { padding: 28px 0 4px; text-align: center; }
.form-success .success-mark { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 18px; color: var(--white); background: var(--success); border-radius: 50%; }
.form-success .success-mark svg { width: 29px; height: 29px; }
.form-success h3 { margin-bottom: 10px; font-size: 1.65rem; }
.form-success > p { max-width: 460px; margin: 0 auto 24px; color: var(--ink-soft); font-size: .84rem; }
.next-steps { display: grid; gap: 10px; margin: 0; padding: 0; text-align: left; list-style: none; }
.next-steps li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; padding: 12px; background: var(--white); border-radius: 10px; font-size: .74rem; }
.next-steps span { width: 28px; height: 28px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; font-family: var(--display); font-size: .68rem; font-weight: 800; }

.faq { padding-block: 96px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 2px; font-family: var(--display); font-size: .98rem; font-weight: 750; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { flex: 0 0 auto; transition: transform .25s ease; }
.faq-list details[open] summary svg { transform: rotate(180deg); }
.faq-list details p { max-width: 720px; margin: -4px 0 22px; padding-right: 30px; color: var(--ink-soft); font-size: .84rem; }

.final-cta { position: relative; min-height: 620px; display: flex; align-items: end; overflow: hidden; color: var(--white); background: var(--navy); }
.final-cta > img, .final-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.final-cta > img { object-fit: cover; object-position: 64% 30%; }
.final-overlay { background: linear-gradient(0deg, rgba(5,35,61,.98) 12%, rgba(5,35,61,.78) 58%, rgba(5,35,61,.18)); }
.final-content { position: relative; z-index: 1; padding-block: 70px; }
.final-content h2 { max-width: 720px; margin-bottom: 18px; font-size: clamp(2.5rem, 10vw, 5.3rem); line-height: .98; letter-spacing: -.04em; }
.final-content p { max-width: 530px; color: #dbe7ef; }
.final-content .button { margin-top: 12px; }
.final-content > strong { display: block; margin-top: 28px; color: #ffb681; font-family: var(--display); font-size: .95rem; }

.site-footer { color: #d6e3ec; background: #03192c; }
.footer-main { display: grid; gap: 25px; padding-block: 48px 34px; }
.brand-logo-footer { width: 250px; height: 76px; }
.brand-logo-footer img { top: -65px; left: -18px; width: 345px; }
.footer-main p { max-width: 400px; margin: 0; font-size: .8rem; }
.footer-main nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-main nav a { font-size: .77rem; font-weight: 700; text-underline-offset: 5px; }
.footer-base { display: flex; justify-content: space-between; gap: 20px; padding-block: 18px 94px; border-top: 1px solid rgba(255,255,255,.12); color: #9fb3c2; font-size: .67rem; }
.mobile-sticky-cta { position: fixed; left: 12px; right: 12px; bottom: 10px; z-index: 90; min-height: 56px; display: flex; align-items: center; justify-content: center; gap: 9px; color: #18110d; background: var(--orange); border-radius: 12px; box-shadow: 0 14px 36px rgba(5,35,61,.32); font-size: .82rem; font-weight: 800; letter-spacing: .02em; text-decoration: none; text-transform: uppercase; transition: opacity .2s ease, transform .3s cubic-bezier(.16,1,.3,1); }
.mobile-sticky-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(120%); }

@media (min-width: 680px) {
  body { padding-bottom: 0; }
  .section-shell { width: min(100% - 64px, 1180px); }
  .hero-copy { padding-inline: 44px; }
  .hero-actions { flex-direction: row; align-items: center; }
  .hero-actions .button { min-width: 240px; }
  .hero-visual { min-height: 700px; }
  .hero-visual img { height: 700px; }
  .hero-pass { right: 38px; bottom: 36px; width: 370px; padding: 22px; }
  .pass-tear { margin-inline: -22px; }
  .benefit-rail { grid-template-columns: 1fr 1fr; }
  .central-message { padding-inline: 32px; }
  .benefit-rail article:nth-child(odd) { border-right: 1px solid var(--line); }
  .benefit-rail article:nth-last-child(-n+2) { border-bottom: 0; }
  .process-line { grid-template-columns: 1fr 1fr; column-gap: 44px; }
  .process-line::before { display: none; }
  .process-line li { grid-template-columns: 50px 1fr; padding: 28px 0; border-top: 1px solid var(--line); }
  .process-line li:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-line > li > span { border-width: 0; }
  .full-pass-meta { grid-template-columns: 1fr 1fr 1.3fr; }
  .full-pass-meta .money { grid-column: 1 / -1; }
  .full-pass::before, .full-pass::after { top: 55%; }
  .pass-content { grid-template-columns: 1.25fr 1fr; }
  .documents { grid-template-columns: 150px 1fr; align-items: start; }
  .goiania-inner { grid-template-columns: 250px 1fr; align-items: center; }
  .signup { grid-template-columns: .9fr 1.1fr; align-items: center; }
  .field-grid { grid-template-columns: 1fr 1fr; }
  .field-wide { grid-column: 1 / -1; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .three-options { grid-template-columns: repeat(3, 1fr); }
  .form-actions { flex-direction: row; justify-content: flex-end; }
  .form-actions .button { width: auto; min-width: 150px; }
  .final-content { padding-block: 100px; }
  .footer-main { grid-template-columns: 1fr 1.3fr 1fr; align-items: start; }
  .footer-main nav { justify-content: flex-end; }
  .footer-base { padding-bottom: 22px; }
  .mobile-sticky-cta { display: none; }
}

@media (min-width: 960px) {
  .nav-shell { min-height: 80px; }
  .desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
  .desktop-nav a { position: relative; padding: 8px 0; font-size: .78rem; font-weight: 700; text-decoration: none; }
  .desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 2px; background: var(--orange); transition: right .2s ease; }
  .desktop-nav a:hover::after { right: 0; }
  .header-cta { min-height: 42px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 15px; color: var(--white); background: var(--navy); border-radius: 9px; font-size: .7rem; font-weight: 800; text-decoration: none; text-transform: uppercase; }
  .menu-toggle, .mobile-menu { display: none; }
  .hero { min-height: calc(100vh - 80px); display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr); }
  .hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px clamp(42px, 5vw, 90px); }
  .hero-lead { font-size: 1.08rem; }
  .hero-visual, .hero-visual img { min-height: calc(100vh - 80px); height: 100%; }
  .hero-visual::before { inset: 0 auto 0 0; width: 130px; height: auto; background: linear-gradient(to right, var(--white), transparent); }
  .hero-pass { right: auto; left: -48px; bottom: 46px; }
  .photo-caption { top: 34px; right: 32px; left: auto; }
  .benefit-rail { grid-template-columns: repeat(4, 1fr); }
  .benefit-rail article { min-height: 142px; align-items: flex-start; padding: 30px 26px; border-right: 1px solid var(--line); border-bottom: 0; }
  .benefit-rail article:last-child { border-right: 0; }
  .reality { padding-block: 124px; }
  .reality-layout { grid-template-columns: .85fr 1.15fr; gap: 92px; align-items: center; }
  .reality-quote { min-height: 470px; padding: 42px; }
  .reality-quote::after { right: -80px; top: -70px; width: 350px; height: 350px; border-width: 95px; }
  .reality-quote strong { font-size: 2.25rem; }
  .quote-line { left: 42px; top: 42px; }
  .situation-list { grid-template-columns: 1fr 1fr; gap: 0 42px; }
  .situation-list article { padding: 28px 0; }
  .situation-list article:nth-child(2) { padding-top: 0; }
  .manifesto-inner { padding-block: 120px; }
  .manifesto-small { margin-left: 50%; }
  .manifesto h2 { margin-bottom: 64px; }
  .manifesto-statement { margin-left: 34%; }
  .process { padding-block: 126px; }
  .process > .section-intro { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; }
  .process > .section-intro p { justify-self: end; }
  .process-line { grid-template-columns: repeat(4, 1fr); column-gap: 26px; }
  .process-line li { grid-template-columns: 1fr; gap: 18px; padding: 28px 0 36px; }
  .process-line li:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
  .process-line > li > span { width: 52px; height: 52px; }
  .opportunity-section { padding-block: 120px; }
  .opportunity-grid { grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: center; }
  .full-pass-head { padding: 30px 34px; }
  .full-pass-meta, .pass-content { padding-inline: 34px; }
  .full-pass-footer { padding-inline: 34px; padding-bottom: 30px; }
  .full-pass-footer .button { align-self: start; min-width: 280px; }
  .availability { padding-block: 124px; }
  .availability-panel { grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
  .week-picker { padding: 30px; }
  .days { gap: 10px; }
  .days button { min-height: 130px; padding-block: 18px 14px; }
  .days button strong { font-size: .65rem; }
  .value-inner { grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; padding-block: 112px; }
  .value-figure { padding: 42px; }
  .trust { padding-block: 122px; }
  .trust > .section-intro { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; }
  .trust-list { grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
  .trust-list article { padding: 32px; border-top: 0; }
  .trust-list article:nth-child(odd) { padding-left: 0; border-right: 1px solid var(--line); }
  .trust-list article:nth-child(even) { padding-right: 0; }
  .trust-list article:nth-last-child(-n+2) { border-bottom: 0; }
  .reputation { padding-block: 120px; }
  .reputation-grid { grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
  .profile-ticket { padding: 32px; transform: rotate(-1.5deg); }
  .documents { grid-template-columns: 220px 1fr; gap: 70px; padding-block: 124px; }
  .documents-icon { width: 160px; height: 160px; }
  .documents-icon > svg { width: 74px; height: 74px; }
  .goiania-inner { grid-template-columns: 360px 1fr; gap: 100px; padding-block: 115px; }
  .location-mark { width: 250px; height: 300px; }
  .signup { grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; padding-block: 126px; }
  .signup-copy { position: sticky; top: 112px; }
  .signup-form { padding: 34px; }
  .roles-grid, .difficulties-grid { grid-template-columns: 1fr 1fr; }
  .faq { padding-block: 120px; }
  .faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
  .faq-list { margin-top: 6px; }
  .final-cta { min-height: 760px; align-items: center; }
  .final-cta > img { object-position: 72% 33%; }
  .final-overlay { background: linear-gradient(90deg, rgba(5,35,61,.98) 0%, rgba(5,35,61,.86) 42%, rgba(5,35,61,.22) 75%); }
  .final-content { padding-block: 110px; }
  .final-content h2 { max-width: 700px; }
}

@media (min-width: 1280px) {
  .hero-copy { padding-left: max(64px, calc((100vw - 1240px) / 2)); }
  .hero h1 { font-size: clamp(4.4rem, 5.7vw, 5.8rem); }
  .benefit-rail { padding-inline: max(0px, calc((100vw - 1440px) / 2)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media (forced-colors: active) {
  .button, .mobile-sticky-cta, .status-dot, .coming-soon { border: 1px solid ButtonText; }
}
