:root {
  --color-green: #004b3f;
  --color-green-dark: #00382f;
  --color-green-soft: #0b5f50;
  --color-yellow: #ffd600;
  --color-yellow-light: #ffef00;
  --color-yellow-dark: #f5b700;
  --color-orange: #ff8a00;
  --color-white: #ffffff;
  --color-black: #050505;
  --color-text: #062f29;
  --color-muted: #6b746f;
  --color-bg: #f7f7f2;
  --color-bg-yellow: #ffd600;
  --color-border: rgba(0, 75, 63, 0.18);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 28px 80px rgba(0, 75, 63, 0.25);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
ul, ol { padding-left: 1.2rem; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 1000;
  background: var(--color-yellow); color: var(--color-green-dark);
  padding: 10px 16px; border-radius: 999px; font-weight: 800;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  min-height: var(--header-height);
  background: rgba(0, 56, 47, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.16);
}
.header__inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--color-white); font-weight: 900; letter-spacing: -0.03em; }
.brand__logo { width: 150px; height: auto; object-fit: contain; }
.brand__logo:not([src]), .brand__logo[src=""] { display: none; }
.brand__logo + .brand__fallback { display: none; }
.brand__logo.is-missing { display: none; }
.brand__logo[alt] { min-height: 38px; }
.brand__fallback {
  display: inline-flex; align-items: center; min-height: 38px;
  padding: 6px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.nav { display: flex; align-items: center; justify-content: center; gap: 22px; color: var(--color-white); font-size: 0.9rem; font-weight: 700; }
.nav a { opacity: .92; transition: opacity .2s ease, color .2s ease; }
.nav a:hover { opacity: 1; color: var(--color-yellow); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: rgba(255,255,255,.08); }
.menu-toggle span { display: block; width: 21px; height: 2px; margin: 5px auto; border-radius: 999px; background: var(--color-white); transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 14px 24px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 900; letter-spacing: -0.01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--header { background: var(--color-yellow); color: var(--color-green-dark); box-shadow: 0 10px 24px rgba(255, 214, 0, .25); white-space: nowrap; }
.btn--primary { background: var(--color-green); color: var(--color-white); box-shadow: var(--shadow-soft); }
.btn--secondary { background: transparent; color: var(--color-green-dark); border-color: var(--color-green); }
.btn--submit { width: 100%; background: var(--color-yellow); color: var(--color-green-dark); border: 0; box-shadow: 0 16px 36px rgba(255, 214, 0, .22); }

.section { padding: 96px 0; position: relative; }
.section-soft { background: linear-gradient(180deg, #fffdf0 0%, var(--color-bg) 100%); }
.section-yellow, .hero { background: var(--color-bg-yellow); }
.hero { position: relative; min-height: calc(100svh - var(--header-height)); overflow: hidden; display: flex; align-items: center; padding: 82px 0; }
.hero__pattern,
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .45; pointer-events: none;
  background-image: radial-gradient(rgba(0,75,63,.28) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, #000 35%, transparent 85%);
}
.hero__pattern { background-image: url("assets/img/pattern-dots.svg"), radial-gradient(rgba(0,75,63,.22) 1px, transparent 1px); background-size: 360px, 22px 22px; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .74fr); align-items: center; gap: 56px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--color-green-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.eyebrow::before { content: ""; width: 32px; height: 10px; border-radius: 999px; background: var(--color-orange); box-shadow: 16px 0 0 var(--color-green); }
.eyebrow--green { color: var(--color-green); }
.eyebrow--yellow { color: var(--color-yellow); }
.eyebrow--yellow::before { background: var(--color-yellow); box-shadow: 16px 0 0 var(--color-orange); }
.hero h1, .section-heading h2, .bonus-content h2, .prize-content h2, .form-intro h2, .final-cta h2 {
  margin: 0; line-height: .98; letter-spacing: -0.07em; font-weight: 950; color: var(--color-green-dark);
}
.hero h1 { font-size: clamp(3.2rem, 7vw, 6.7rem); max-width: 860px; }
.hero__subtitle { max-width: 700px; margin: 24px 0 26px; font-size: clamp(1.05rem, 1.9vw, 1.35rem); font-weight: 600; color: rgba(6,47,41,.9); }
.hero__highlight { display: inline-flex; align-items: baseline; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; padding: 12px 18px; border-radius: 999px; background: rgba(255,255,255,.55); border: 1px solid rgba(0,75,63,.18); }
.hero__highlight span { font-size: clamp(1.7rem, 4vw, 2.7rem); font-weight: 950; color: var(--color-green); letter-spacing: -0.05em; }
.hero__highlight strong { color: var(--color-green-dark); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.orb { position: absolute; border-radius: 50%; pointer-events: none; }
.orb--one { width: 180px; height: 180px; right: 5%; top: 12%; background: rgba(255,138,0,.35); filter: blur(1px); }
.orb--two { width: 90px; height: 90px; left: 48%; bottom: 10%; border: 18px solid rgba(0,75,63,.18); }
.sun-shape { position: absolute; right: -60px; bottom: -80px; width: 280px; height: 280px; background: url("assets/img/solar-shape.svg") center/contain no-repeat, radial-gradient(circle, rgba(255,138,0,.55), transparent 65%); opacity: .8; }

.simulator-card { position: relative; overflow: hidden; padding: 34px; border-radius: var(--radius-lg); background: var(--color-green-dark); color: var(--color-white); box-shadow: var(--shadow-strong); }
.simulator-card__decor { position: absolute; width: 220px; height: 220px; right: -90px; top: -90px; border-radius: 50%; background: rgba(255,214,0,.18); border: 28px solid rgba(255,214,0,.12); }
.simulator-card__header { position: relative; display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.icon-img { width: 46px; height: 46px; object-fit: contain; border-radius: 50%; background: var(--color-yellow); padding: 10px; }
.icon-img--team { width: 58px; height: 58px; padding: 6px; }
.icon-img:not([src]), .icon-img[src=""], .icon-img.is-missing { display: none; }
.icon-fallback { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--color-yellow); color: var(--color-green-dark); font-weight: 950; flex: none; }
.card-kicker { margin: 0; color: var(--color-yellow); font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.simulator-card h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.5rem); letter-spacing: -0.05em; line-height: 1; }
.simulator-card__text { color: rgba(255,255,255,.82); margin: 0 0 26px; }
.range-label { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 12px; color: rgba(255,255,255,.86); font-weight: 700; }
.range-label strong { color: var(--color-yellow); }
.range { width: 100%; accent-color: var(--color-yellow); }
.range::-webkit-slider-runnable-track { height: 12px; border-radius: 999px; background: rgba(255,255,255,.18); }
.range::-webkit-slider-thumb { appearance: none; width: 28px; height: 28px; margin-top: -8px; border-radius: 50%; background: var(--color-yellow); border: 5px solid var(--color-white); box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.simulator-progress { height: 12px; margin: 18px 0 22px; background: rgba(255,255,255,.12); border-radius: 999px; overflow: hidden; }
.simulator-progress span { display: block; width: 15%; height: 100%; background: linear-gradient(90deg, var(--color-yellow), var(--color-orange)); border-radius: inherit; transition: width .25s ease; }
.simulator-results { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.simulator-results div { padding: 18px; border-radius: var(--radius-md); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.simulator-results span { display: block; color: rgba(255,255,255,.68); font-size: .88rem; font-weight: 700; }
.simulator-results strong { display: block; color: var(--color-yellow); margin-top: 4px; font-size: 1.45rem; font-weight: 950; letter-spacing: -0.04em; }
.small-note { margin: 20px 0 0; color: rgba(255,255,255,.66); font-size: .86rem; }

.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading h2, .bonus-content h2, .prize-content h2, .form-intro h2, .final-cta h2 { font-size: clamp(2.3rem, 5vw, 4.4rem); }
.section-heading p { color: var(--color-muted); font-size: 1.08rem; font-weight: 600; }
.feature-grid, .steps-grid, .rules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card, .step-card, .rule-card, .eligibility-card, .tie-card, .form-note-card { border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.feature-card { min-height: 250px; padding: 28px; background: var(--color-white); border: 1px solid var(--color-border); }
.feature-card:nth-child(odd) { background: var(--color-green); color: var(--color-white); }
.feature-card:nth-child(odd) p { color: rgba(255,255,255,.78); }
.feature-card h3, .step-card h3, .eligibility-card h3, .rule-card p { margin-top: 16px; font-size: 1.35rem; line-height: 1.1; letter-spacing: -0.04em; }
.feature-card p, .step-card p { color: var(--color-muted); font-weight: 600; }
.feature-card__number { display: inline-flex; width: 56px; height: 56px; align-items: center; justify-content: center; border-radius: 50%; background: var(--color-yellow); color: var(--color-green-dark); font-weight: 950; }
.step-card { padding: 30px; background: var(--color-white); border: 1px solid var(--color-border); position: relative; overflow: hidden; }
.step-card::after { content: ""; position: absolute; right: -28px; bottom: -28px; width: 110px; height: 110px; border-radius: 50%; background: rgba(255,214,0,.32); }
.step-card span { display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center; border-radius: 18px; background: var(--color-green); color: var(--color-yellow); font-weight: 950; font-size: 1.35rem; }
.eligibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.eligibility-card { padding: 34px; border: 1px solid var(--color-border); }
.eligibility-card--yes { background: var(--color-green); color: var(--color-white); }
.eligibility-card--no { background: var(--color-white); }
.eligibility-card h3 { margin: 0 0 18px; font-size: 2rem; }
.eligibility-card li { margin-bottom: 10px; font-weight: 700; }

.section-green { overflow: hidden; background: var(--color-green-dark); color: var(--color-white); }
.section-green__shape { position: absolute; inset: 0; opacity: .16; background-image: radial-gradient(var(--color-yellow) 1.4px, transparent 1.4px); background-size: 28px 28px; }
.bonus-grid { position: relative; display: grid; grid-template-columns: 1fr 380px; gap: 50px; align-items: center; }
.bonus-content h2 { color: var(--color-white); }
.bonus-content p { color: rgba(255,255,255,.78); font-size: 1.1rem; font-weight: 600; }
.bonus-card { padding: 38px; border-radius: var(--radius-lg); background: var(--color-yellow); color: var(--color-green-dark); box-shadow: 0 28px 90px rgba(0,0,0,.26); text-align: center; }
.bonus-card span { display: block; font-size: clamp(3.2rem, 6vw, 5rem); font-weight: 950; letter-spacing: -0.08em; line-height: .9; }
.bonus-card strong { display: block; margin-top: 14px; font-size: 1.2rem; }
.prize-grid, .form-grid, .faq-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.prize-image { min-height: 390px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--color-yellow), var(--color-orange)); display: grid; place-items: center; box-shadow: var(--shadow-soft); position: relative; overflow: hidden; }
.prize-image::before { content: ""; position: absolute; inset: 24px; border-radius: var(--radius-lg); border: 2px dashed rgba(0,75,63,.32); }
.prize-image img { position: relative; z-index: 2; max-height: 310px; object-fit: contain; }
.prize-image img:not([src]), .prize-image img[src=""], .prize-image img.is-missing { display: none; }
.prize-placeholder { position: absolute; z-index: 1; text-align: center; color: var(--color-green-dark); }
.prize-placeholder span { font-size: 5rem; font-weight: 950; letter-spacing: -.08em; }
.prize-placeholder strong { display: block; font-size: 3rem; line-height: 1; }
.prize-content p { color: var(--color-muted); font-weight: 600; font-size: 1.08rem; }
.tie-card { margin-top: 24px; padding: 26px; background: var(--color-white); border: 1px solid var(--color-border); }
.tie-card h3 { margin: 0 0 10px; font-size: 1.35rem; }
.tie-card li { font-weight: 700; margin-bottom: 8px; }
.rules-grid { grid-template-columns: repeat(3, 1fr); }
.rule-card { background: var(--color-white); padding: 26px; border: 1px solid var(--color-border); }
.rule-card span { color: var(--color-orange); font-weight: 950; font-size: .85rem; letter-spacing: .12em; }
.rule-card p { margin-bottom: 0; }

.form-section { background: var(--color-green-dark); color: var(--color-white); overflow: hidden; }
.form-section::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(var(--color-yellow) 1px, transparent 1px); background-size: 24px 24px; }
.form-grid { position: relative; align-items: start; }
.form-intro { position: sticky; top: calc(var(--header-height) + 24px); }
.form-intro h2 { color: var(--color-white); }
.form-intro p { color: rgba(255,255,255,.78); font-weight: 600; font-size: 1.08rem; }
.form-note-card { margin-top: 26px; padding: 24px; background: rgba(255,214,0,.1); border: 1px solid rgba(255,214,0,.22); }
.form-note-card strong { color: var(--color-yellow); }
.referral-form { padding: 34px; background: var(--color-white); color: var(--color-text); border-radius: var(--radius-lg); box-shadow: var(--shadow-strong); }
fieldset { margin: 0 0 28px; padding: 0; border: 0; }
legend { margin-bottom: 18px; font-weight: 950; font-size: 1.35rem; color: var(--color-green); letter-spacing: -0.04em; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; font-weight: 800; color: var(--color-green-dark); }
.field input, .field textarea {
  width: 100%; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); background: #fbfbf8;
  padding: 14px 16px; color: var(--color-text); outline: none; transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--color-green); box-shadow: 0 0 0 4px rgba(0,75,63,.1); background: var(--color-white); }
.field.is-invalid input, .field.is-invalid textarea { border-color: #d92929; box-shadow: 0 0 0 4px rgba(217,41,41,.1); }
.error-message { display: block; min-height: 18px; margin-top: 5px; color: #d92929; font-size: .82rem; font-weight: 700; }
.checkbox-field { display: grid; grid-template-columns: 22px 1fr; gap: 10px 12px; align-items: start; margin-bottom: 24px; }
.checkbox-field input { width: 20px; height: 20px; accent-color: var(--color-green); margin-top: 3px; }
.checkbox-field .error-message { grid-column: 2; }
.form-feedback { margin-top: 16px; min-height: 24px; font-weight: 800; }
.form-feedback.is-success { color: var(--color-green); }
.form-feedback.is-error { color: #d92929; }

.faq-grid { grid-template-columns: .7fr 1.3fr; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border-radius: 20px; background: var(--color-white); border: 1px solid var(--color-border); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; border: 0; background: transparent; color: var(--color-green-dark); font-weight: 900; text-align: left; }
.faq-item button::after { content: "+"; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--color-yellow); color: var(--color-green-dark); flex: none; }
.faq-item button[aria-expanded="true"]::after { content: "−"; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer p { margin: 0; padding: 0 22px 20px; color: var(--color-muted); font-weight: 600; }
.final-cta { padding: 84px 0; background: var(--color-yellow); position: relative; overflow: hidden; }
.final-cta::after { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; border: 42px solid rgba(0,75,63,.12); }
.final-cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.final-cta p { margin: 14px 0 0; max-width: 680px; font-weight: 700; color: rgba(6,47,41,.82); }
.site-footer { background: var(--color-green-dark); color: var(--color-white); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr 1fr; gap: 40px; }
.site-footer p, .site-footer li, .site-footer a { color: rgba(255,255,255,.76); }
.site-footer h3 { color: var(--color-yellow); margin: 0 0 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a:hover { color: var(--color-yellow); }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .9rem; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .nav { gap: 14px; font-size: .82rem; }
  .feature-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .container { width: min(100% - 28px, var(--container)); }
  .btn--header { display: none; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-height) 0 auto 0; display: grid; gap: 0;
    padding: 18px 14px 28px; background: var(--color-green-dark); transform: translateY(-130%);
    transition: transform .28s ease; box-shadow: 0 24px 60px rgba(0,0,0,.28);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero { min-height: auto; padding: 56px 0 72px; }
  .hero__grid, .bonus-grid, .prize-grid, .form-grid, .faq-grid, .final-cta__inner { grid-template-columns: 1fr; }
  .simulator-card { order: 2; }
  .form-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  :root { --header-height: 66px; }
  .brand__logo { width: 126px; }
  .section { padding: 70px 0; }
  .hero h1 { font-size: clamp(2.7rem, 16vw, 4.2rem); }
  .hero__actions, .final-cta .btn { width: 100%; }
  .hero__actions .btn, .btn--primary, .btn--secondary { width: 100%; }
  .feature-grid, .steps-grid, .eligibility-grid, .rules-grid, .field-grid, .simulator-results { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .simulator-card, .referral-form { padding: 24px; border-radius: 28px; }
  .range-label { display: grid; }
  .section-heading h2, .bonus-content h2, .prize-content h2, .form-intro h2, .final-cta h2 { font-size: clamp(2.1rem, 11vw, 3.1rem); }
  .prize-image { min-height: 300px; }
  .checkbox-field { grid-template-columns: 22px 1fr; }
}

/* ==========================================================
   Ajuste NIO - Hierarquia visual e responsividade mobile
   ========================================================== */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

section,
header,
footer,
main,
.container,
.hero__grid,
.bonus-grid,
.prize-grid,
.form-grid,
.faq-grid,
.feature-grid,
.steps-grid,
.rules-grid,
.eligibility-grid,
.simulator-card,
.referral-form,
.feature-card,
.step-card,
.rule-card,
.eligibility-card,
.bonus-card,
.prize-image,
.final-cta__inner {
  max-width: 100%;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(var(--container), calc(100% - 48px));
}

.section {
  padding: clamp(64px, 7vw, 84px) 0;
}

.hero {
  min-height: auto;
  padding: clamp(58px, 7vw, 78px) 0;
}

.hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 5vw, 52px);
}

.hero h1,
.section-heading h2,
.bonus-content h2,
.prize-content h2,
.form-intro h2,
.final-cta h2 {
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero h1 {
  font-size: clamp(2.75rem, 5.4vw, 5.45rem);
  max-width: 780px;
}

.hero__subtitle {
  max-width: 650px;
  margin: 20px 0 22px;
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  line-height: 1.58;
}

.hero__highlight {
  margin-bottom: 24px;
  padding: 10px 16px;
}

.hero__highlight span {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.hero__highlight strong,
.btn,
.field label,
.checkbox-field label,
.nav {
  font-size: 0.92rem;
}

.btn {
  min-height: 46px;
  padding: 12px 20px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.section-heading h2,
.bonus-content h2,
.prize-content h2,
.form-intro h2,
.final-cta h2 {
  font-size: clamp(1.95rem, 4vw, 3.55rem);
}

.section-heading p,
.bonus-content p,
.prize-content p,
.form-intro p,
.final-cta p,
.feature-card p,
.step-card p,
.eligibility-card li,
.tie-card li,
.rule-card p,
.faq-answer p,
.site-footer p,
.site-footer li,
.site-footer a {
  font-size: 0.98rem;
  line-height: 1.58;
}

.feature-grid,
.steps-grid,
.rules-grid {
  gap: 18px;
}

.feature-card,
.step-card,
.rule-card,
.eligibility-card,
.tie-card,
.form-note-card {
  padding: 24px;
}

.feature-card {
  min-height: 220px;
}

.feature-card h3,
.step-card h3,
.eligibility-card h3,
.rule-card p,
.tie-card h3 {
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.eligibility-card h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
}

.simulator-card {
  padding: 28px;
  border-radius: 30px;
}

.simulator-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.05;
}

.simulator-card__text,
.range-label,
.small-note,
.simulator-results span,
.card-kicker {
  font-size: 0.9rem;
  line-height: 1.45;
}

.simulator-results {
  gap: 12px;
}

.simulator-results div {
  padding: 15px;
}

.simulator-results strong {
  font-size: clamp(1.12rem, 2.4vw, 1.32rem);
}

.bonus-grid {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 340px);
  gap: clamp(28px, 5vw, 46px);
}

.bonus-card {
  padding: 30px;
}

.bonus-card span {
  font-size: clamp(2.65rem, 4.8vw, 4.15rem);
}

.prize-grid,
.form-grid,
.faq-grid {
  gap: clamp(30px, 5vw, 48px);
}

.prize-image {
  min-height: 340px;
}

.prize-placeholder span {
  font-size: clamp(3.5rem, 8vw, 4.5rem);
}

.prize-placeholder strong {
  font-size: clamp(2.25rem, 5vw, 2.8rem);
}

.referral-form {
  padding: 30px;
}

legend {
  font-size: 1.18rem;
}

.field-grid {
  gap: 16px;
}

.field input,
.field textarea {
  min-width: 0;
  padding: 13px 14px;
  font-size: 0.95rem;
}

.faq-item button {
  padding: 17px 19px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.faq-item button::after {
  width: 28px;
  height: 28px;
}

.final-cta {
  padding: clamp(58px, 7vw, 74px) 0;
}

.footer-grid {
  gap: 30px;
}

.footer-bottom {
  font-size: 0.84rem;
}

@media (max-width: 1024px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 36px, var(--container));
  }

  .header__inner {
    gap: 14px;
  }

  .brand__logo {
    width: 136px;
  }

  .btn--header {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    position: relative;
    z-index: 102;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 12px;
    right: 12px;
    width: auto;
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - var(--header-height) - 20px);
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border-radius: 0 0 22px 22px;
    background: var(--color-green-dark);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
    transform: translateY(-125%);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .hero__grid,
  .bonus-grid,
  .prize-grid,
  .form-grid,
  .faq-grid,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 760px;
  }

  .simulator-card {
    width: min(100%, 620px);
    order: 2;
  }

  .form-intro {
    position: static;
  }

  .feature-grid,
  .steps-grid,
  .rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
    --radius-lg: 28px;
    --radius-md: 20px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 12px);
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    min-height: var(--header-height);
  }

  .header__inner {
    min-height: var(--header-height);
  }

  .brand__logo {
    width: 118px;
  }

  .brand__fallback {
    min-height: 34px;
    font-size: 0.9rem;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 46px 0 58px;
  }

  .hero__grid {
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.08rem, 9.2vw, 3.15rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  .hero__subtitle {
    margin: 16px 0 18px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero__highlight {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-radius: 20px;
  }

  .hero__highlight span {
    font-size: clamp(1.38rem, 7vw, 1.9rem);
  }

  .hero__highlight strong {
    font-size: 0.9rem;
  }

  .hero__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__actions .btn,
  .final-cta .btn {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
    letter-spacing: .075em;
  }

  .eyebrow::before {
    width: 24px;
    height: 8px;
    box-shadow: 12px 0 0 var(--color-green);
  }

  .eyebrow--yellow::before {
    box-shadow: 12px 0 0 var(--color-orange);
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .bonus-content h2,
  .prize-content h2,
  .form-intro h2,
  .final-cta h2 {
    font-size: clamp(1.72rem, 7.2vw, 2.45rem);
    line-height: 1.09;
    letter-spacing: -0.04em;
  }

  .section-heading p,
  .bonus-content p,
  .prize-content p,
  .form-intro p,
  .final-cta p,
  .feature-card p,
  .step-card p,
  .eligibility-card li,
  .tie-card li,
  .rule-card p,
  .faq-answer p,
  .site-footer p,
  .site-footer li,
  .site-footer a {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .feature-grid,
  .steps-grid,
  .eligibility-grid,
  .rules-grid,
  .field-grid,
  .simulator-results {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .feature-grid,
  .steps-grid,
  .rules-grid,
  .faq-list {
    gap: 12px;
  }

  .feature-card,
  .step-card,
  .rule-card,
  .eligibility-card,
  .tie-card,
  .form-note-card {
    padding: 20px;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-card h3,
  .step-card h3,
  .eligibility-card h3,
  .rule-card p,
  .tie-card h3 {
    margin-top: 12px;
    font-size: 1.08rem;
  }

  .feature-card__number,
  .step-card span,
  .icon-img,
  .icon-fallback {
    width: 44px;
    height: 44px;
  }

  .step-card span {
    border-radius: 14px;
    font-size: 1.1rem;
  }

  .simulator-card,
  .referral-form {
    width: 100%;
    padding: 22px;
    border-radius: 24px;
  }

  .simulator-card h2 {
    font-size: clamp(1.28rem, 5vw, 1.65rem);
  }

  .simulator-card__header {
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
  }

  .simulator-card__text,
  .range-label,
  .small-note,
  .simulator-results span,
  .card-kicker {
    font-size: 0.84rem;
  }

  .range-label {
    display: grid;
    gap: 4px;
  }

  .range {
    max-width: 100%;
  }

  .range::-webkit-slider-runnable-track {
    height: 10px;
  }

  .range::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    margin-top: -7px;
  }

  .simulator-progress {
    height: 10px;
    margin: 14px 0 16px;
  }

  .simulator-results div {
    padding: 13px;
  }

  .simulator-results strong {
    font-size: 1.14rem;
  }

  .bonus-card {
    padding: 24px;
    text-align: left;
  }

  .bonus-card span {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .bonus-card strong {
    font-size: 1rem;
  }

  .prize-image {
    min-height: 260px;
    border-radius: 24px;
  }

  .prize-image::before {
    inset: 16px;
    border-radius: 20px;
  }

  .prize-image img {
    max-height: 220px;
  }

  .referral-form fieldset {
    margin-bottom: 22px;
  }

  legend {
    margin-bottom: 14px;
    font-size: 1.08rem;
  }

  .field label,
  .checkbox-field label {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .field input,
  .field textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px 13px;
    font-size: 0.94rem;
  }

  .checkbox-field {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px 10px;
  }

  .checkbox-field input {
    width: 18px;
    height: 18px;
  }

  .btn--submit {
    width: 100%;
  }

  .faq-item button {
    padding: 15px 16px;
    gap: 10px;
    font-size: 0.92rem;
  }

  .faq-answer p {
    padding: 0 16px 16px;
  }

  .faq-item button::after {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }

  .final-cta {
    padding: 52px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer {
    padding: 42px 0 22px;
  }

  .footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
    font-size: 0.8rem;
  }

  .orb,
  .sun-shape,
  .simulator-card__decor,
  .final-cta::after {
    transform: scale(.65);
    opacity: .55;
  }

  .orb--one {
    right: -70px;
    top: 42px;
  }

  .orb--two {
    left: auto;
    right: -34px;
    bottom: 22px;
  }

  .sun-shape {
    right: -130px;
    bottom: -120px;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .nav {
    left: 10px;
    right: 10px;
    max-width: calc(100vw - 20px);
  }

  .hero {
    padding: 38px 0 50px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9.5vw, 2.55rem);
  }

  .hero__subtitle {
    font-size: 0.92rem;
  }

  .hero__highlight {
    display: grid;
    justify-content: stretch;
    text-align: left;
  }

  .hero__highlight span {
    font-size: 1.55rem;
  }

  .btn {
    min-height: 44px;
    padding: 11px 16px;
    font-size: 0.9rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-heading h2,
  .bonus-content h2,
  .prize-content h2,
  .form-intro h2,
  .final-cta h2 {
    font-size: clamp(1.56rem, 7.4vw, 2.05rem);
  }

  .section-heading p,
  .bonus-content p,
  .prize-content p,
  .form-intro p,
  .final-cta p,
  .feature-card p,
  .step-card p,
  .eligibility-card li,
  .tie-card li,
  .rule-card p,
  .faq-answer p,
  .site-footer p,
  .site-footer li,
  .site-footer a {
    font-size: 0.9rem;
  }

  .feature-card,
  .step-card,
  .rule-card,
  .eligibility-card,
  .tie-card,
  .form-note-card,
  .simulator-card,
  .referral-form {
    padding: 18px;
  }

  .feature-card h3,
  .step-card h3,
  .eligibility-card h3,
  .rule-card p,
  .tie-card h3 {
    font-size: 1rem;
  }

  .simulator-card__header {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .simulator-card h2 {
    font-size: 1.34rem;
  }

  .prize-image {
    min-height: 230px;
  }

  .field-grid {
    gap: 12px;
  }

  .faq-item button {
    padding: 14px;
  }

  .site-footer h3 {
    font-size: 1rem;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .brand__logo {
    width: 104px;
  }

  .brand__fallback {
    font-size: 0.82rem;
    padding: 5px 9px;
  }

  .hero h1 {
    font-size: clamp(1.72rem, 9.8vw, 2.18rem);
    letter-spacing: -0.035em;
  }

  .hero__subtitle,
  .section-heading p,
  .bonus-content p,
  .prize-content p,
  .form-intro p,
  .final-cta p {
    font-size: 0.88rem;
  }

  .hero__highlight {
    padding: 10px 12px;
  }

  .hero__highlight span {
    font-size: 1.36rem;
  }

  .hero__highlight strong {
    font-size: 0.84rem;
  }

  .section-heading h2,
  .bonus-content h2,
  .prize-content h2,
  .form-intro h2,
  .final-cta h2 {
    font-size: clamp(1.42rem, 7.8vw, 1.86rem);
  }

  .feature-card,
  .step-card,
  .rule-card,
  .eligibility-card,
  .tie-card,
  .form-note-card,
  .simulator-card,
  .referral-form {
    padding: 16px;
  }

  .field input,
  .field textarea {
    padding: 11px 12px;
  }

  .checkbox-field {
    grid-template-columns: 18px minmax(0, 1fr);
  }

  .faq-item button {
    font-size: 0.88rem;
  }

  .footer-bottom p {
    word-break: normal;
    overflow-wrap: anywhere;
  }
}

/* ==========================================================
   Revisao final NIO - refinamento visual e responsividade
   Mantem HTML e JavaScript intactos; ajustes somente via CSS
   ========================================================== */

:root {
  --container: 1120px;
  --header-height: 68px;
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.10);
  --shadow-strong: 0 22px 58px rgba(0, 75, 63, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-size: 16px;
  line-height: 1.55;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(100% - 44px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  isolation: isolate;
}

.header__inner {
  min-height: var(--header-height);
}

.brand__logo {
  width: 132px;
}

.nav {
  gap: 18px;
  font-size: 0.84rem;
  line-height: 1.2;
}

.btn {
  min-height: 44px;
  padding: 11px 19px;
  font-size: 0.92rem;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

.section {
  padding: clamp(52px, 6vw, 76px) 0;
}

.hero {
  min-height: auto;
  padding: clamp(54px, 6vw, 72px) 0 clamp(56px, 7vw, 80px);
}

.hero__grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(300px, 0.68fr);
  gap: clamp(30px, 4.5vw, 48px);
}

.hero h1,
.section-heading h2,
.bonus-content h2,
.prize-content h2,
.form-intro h2,
.final-cta h2 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 730px;
  font-size: clamp(2.65rem, 4.45vw, 3.95rem);
}

.hero__subtitle {
  max-width: 620px;
  margin: 18px 0 20px;
  font-size: clamp(0.96rem, 1.15vw, 1.06rem);
  line-height: 1.58;
  font-weight: 550;
}

.hero__highlight {
  max-width: max-content;
  margin-bottom: 22px;
  padding: 9px 15px;
  gap: 9px;
  border-radius: 18px;
}

.hero__highlight span {
  font-size: clamp(1.42rem, 2.35vw, 1.95rem);
  line-height: 1;
}

.hero__highlight strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.hero__actions {
  gap: 10px;
}

.eyebrow,
.section-eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-bottom: 12px;
  font-size: clamp(0.72rem, 0.8vw, 0.8rem);
  line-height: 1.2;
  letter-spacing: 0.075em;
  white-space: normal;
}

.eyebrow::before,
.section-eyebrow::before,
.section-tag::before {
  content: "";
  position: static;
  flex: 0 0 auto;
  width: 28px;
  height: 8px;
  margin: 0;
  border-radius: 999px;
  transform: none;
  background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
  box-shadow: none;
}

.eyebrow--green::before {
  background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
}

.eyebrow--yellow::before {
  background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
  box-shadow: none;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 30px;
}

.section-heading h2,
.bonus-content h2,
.prize-content h2,
.form-intro h2,
.final-cta h2 {
  font-size: clamp(1.82rem, 2.85vw, 2.45rem);
}

.section-heading p,
.bonus-content p,
.prize-content p,
.form-intro p,
.final-cta p,
.feature-card p,
.step-card p,
.eligibility-card li,
.tie-card li,
.rule-card p,
.faq-answer p,
.site-footer p,
.site-footer li,
.site-footer a {
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.55;
}

.feature-grid,
.steps-grid,
.rules-grid {
  gap: 16px;
}

.feature-card,
.step-card,
.rule-card,
.eligibility-card,
.tie-card,
.form-note-card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.feature-card {
  min-height: 190px;
}

.feature-card h3,
.step-card h3,
.eligibility-card h3,
.rule-card p,
.tie-card h3 {
  margin-top: 12px;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.eligibility-card h3 {
  margin-top: 0;
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
}

.feature-card__number,
.step-card span,
.icon-img,
.icon-fallback {
  width: 44px;
  height: 44px;
}

.feature-card__number {
  font-size: 0.86rem;
}

.step-card span {
  border-radius: 14px;
  font-size: 1.12rem;
}

.step-card::after {
  width: 84px;
  height: 84px;
  right: -26px;
  bottom: -26px;
}

.simulator-card {
  width: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.simulator-card__decor {
  width: 170px;
  height: 170px;
  right: -78px;
  top: -78px;
  border-width: 20px;
}

.simulator-card__header {
  gap: 11px;
  margin-bottom: 12px;
}

.card-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.075em;
}

.simulator-card h2 {
  font-size: clamp(1.28rem, 1.95vw, 1.75rem);
  line-height: 1.06;
}

.simulator-card__text,
.range-label,
.small-note,
.simulator-results span {
  font-size: 0.88rem;
  line-height: 1.45;
}

.range::-webkit-slider-runnable-track {
  height: 10px;
}

.range::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  margin-top: -7px;
  border-width: 4px;
}

.simulator-progress {
  height: 10px;
  margin: 14px 0 16px;
}

.simulator-results {
  gap: 10px;
}

.simulator-results div {
  padding: 13px;
  border-radius: 16px;
}

.simulator-results strong {
  font-size: clamp(1.08rem, 1.55vw, 1.24rem);
}

.bonus-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 310px);
  gap: clamp(24px, 4vw, 40px);
}

.bonus-card {
  padding: 26px 24px;
  border-radius: var(--radius-lg);
}

.bonus-card span {
  font-size: clamp(2.25rem, 4.1vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.bonus-card strong {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.25;
}

.prize-grid,
.form-grid,
.faq-grid {
  gap: clamp(26px, 4vw, 44px);
}

.prize-image {
  min-height: 300px;
  border-radius: var(--radius-lg);
}

.prize-image::before {
  inset: 18px;
  border-radius: 22px;
}

.prize-image img {
  max-height: 250px;
}

.prize-placeholder span {
  font-size: clamp(3rem, 6vw, 4rem);
}

.prize-placeholder strong {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.referral-form {
  padding: 26px;
  border-radius: var(--radius-lg);
}

fieldset {
  margin-bottom: 22px;
}

legend {
  margin-bottom: 14px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.field-grid {
  gap: 14px;
}

.field label,
.checkbox-field label {
  font-size: 0.9rem;
  line-height: 1.35;
}

.field input,
.field textarea {
  max-width: 100%;
  min-width: 0;
  padding: 12px 13px;
  font-size: 0.94rem;
  line-height: 1.35;
}

.checkbox-field {
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px 10px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
}

.error-message {
  font-size: 0.78rem;
}

.faq-grid {
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
}

.faq-list {
  gap: 10px;
}

.faq-item {
  border-radius: 16px;
}

.faq-item button {
  min-width: 0;
  padding: 15px 17px;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.35;
}

.faq-item button::after {
  width: 26px;
  height: 26px;
  min-width: 26px;
}

.faq-answer p {
  padding: 0 17px 16px;
}

.final-cta {
  padding: clamp(48px, 6vw, 64px) 0;
}

.final-cta::after {
  width: 220px;
  height: 220px;
  right: -80px;
  top: -80px;
  border-width: 34px;
}

.final-cta__inner {
  grid-template-columns: minmax(0, 1fr) auto;
}

.site-footer {
  padding: 44px 0 22px;
}

.footer-grid {
  gap: 28px;
}

.site-footer h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.2;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  font-size: 0.82rem;
}

@media (max-width: 1024px) {
  :root {
    --header-height: 66px;
  }

  .container {
    width: min(100% - 36px, var(--container));
  }

  .header__inner {
    gap: 12px;
  }

  .brand__logo {
    width: 124px;
  }

  .btn--header {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    position: relative;
    z-index: 1002;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    width: auto;
    max-width: calc(100vw - 28px);
    max-height: calc(100dvh - var(--header-height) - 18px);
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border-radius: 0 0 20px 20px;
    background: var(--color-green-dark);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
    transform: translateY(-125%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
    z-index: 1001;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero__grid,
  .bonus-grid,
  .prize-grid,
  .form-grid,
  .faq-grid,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .bonus-content,
  .prize-content,
  .form-intro,
  .section-heading {
    max-width: 720px;
  }

  .simulator-card {
    order: 2;
    width: min(100%, 560px);
  }

  .form-intro {
    position: static;
  }

  .feature-grid,
  .steps-grid,
  .rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  :root {
    --header-height: 62px;
    --radius-lg: 24px;
    --radius-md: 18px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 10px);
  }

  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header,
  .header__inner {
    min-height: var(--header-height);
  }

  .brand__logo {
    width: 112px;
  }

  .section {
    padding: 48px 0;
  }

  .hero {
    padding: 38px 0 50px;
  }

  .hero__grid {
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 7.4vw, 2.35rem);
    line-height: 1.1;
    letter-spacing: -0.038em;
  }

  .hero__subtitle {
    margin: 14px 0 16px;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .hero__highlight {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-radius: 16px;
  }

  .hero__highlight span {
    font-size: clamp(1.25rem, 6vw, 1.65rem);
  }

  .hero__highlight strong {
    font-size: 0.84rem;
  }

  .hero__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .btn,
  .final-cta .btn,
  .btn--submit {
    width: 100%;
  }

  .eyebrow,
  .section-eyebrow,
  .section-tag {
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }

  .eyebrow::before,
  .section-eyebrow::before,
  .section-tag::before {
    width: 24px;
    height: 7px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .bonus-content h2,
  .prize-content h2,
  .form-intro h2,
  .final-cta h2 {
    font-size: clamp(1.58rem, 6.2vw, 2rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .section-heading p,
  .bonus-content p,
  .prize-content p,
  .form-intro p,
  .final-cta p,
  .feature-card p,
  .step-card p,
  .eligibility-card li,
  .tie-card li,
  .rule-card p,
  .faq-answer p,
  .site-footer p,
  .site-footer li,
  .site-footer a {
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .feature-grid,
  .steps-grid,
  .eligibility-grid,
  .rules-grid,
  .field-grid,
  .simulator-results {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .feature-grid,
  .steps-grid,
  .rules-grid,
  .faq-list {
    gap: 11px;
  }

  .feature-card,
  .step-card,
  .rule-card,
  .eligibility-card,
  .tie-card,
  .form-note-card,
  .simulator-card,
  .referral-form {
    width: 100%;
    max-width: 100%;
    padding: 18px;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-card h3,
  .step-card h3,
  .eligibility-card h3,
  .rule-card p,
  .tie-card h3 {
    margin-top: 10px;
    font-size: 1rem;
  }

  .simulator-card__header {
    align-items: flex-start;
  }

  .simulator-card h2 {
    font-size: 1.28rem;
  }

  .simulator-card__text,
  .range-label,
  .small-note,
  .simulator-results span,
  .card-kicker {
    font-size: 0.82rem;
  }

  .range-label {
    display: grid;
    gap: 4px;
  }

  .range,
  .simulator-progress {
    max-width: 100%;
  }

  .simulator-results div {
    padding: 12px;
  }

  .simulator-results strong {
    font-size: 1.08rem;
  }

  .bonus-card {
    padding: 20px;
    text-align: left;
  }

  .bonus-card span {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .bonus-card strong {
    font-size: 0.94rem;
  }

  .prize-image {
    min-height: 230px;
  }

  .prize-image img {
    max-height: 190px;
  }

  legend {
    font-size: 1rem;
  }

  .field input,
  .field textarea {
    width: 100%;
    max-width: 100%;
    padding: 11px 12px;
    font-size: 0.9rem;
  }

  .faq-item button {
    padding: 13px 14px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 0 14px 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer {
    padding: 38px 0 20px;
  }

  .orb,
  .sun-shape,
  .simulator-card__decor,
  .final-cta::after,
  .section-green__shape {
    pointer-events: none;
  }

  .orb--one {
    width: 110px;
    height: 110px;
    right: -54px;
    top: 34px;
  }

  .orb--two {
    width: 62px;
    height: 62px;
    left: auto;
    right: -28px;
    bottom: 22px;
    border-width: 12px;
  }

  .sun-shape {
    width: 190px;
    height: 190px;
    right: -110px;
    bottom: -100px;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav {
    left: 10px;
    right: 10px;
    max-width: calc(100vw - 20px);
  }

  .hero {
    padding: 34px 0 46px;
  }

  .hero h1 {
    font-size: clamp(1.82rem, 8.8vw, 2.18rem);
  }

  .hero__subtitle {
    font-size: 0.9rem;
  }

  .hero__highlight {
    display: grid;
    justify-content: stretch;
    gap: 4px;
  }

  .hero__highlight span {
    font-size: 1.42rem;
  }

  .btn {
    min-height: 42px;
    padding: 10px 15px;
    font-size: 0.88rem;
  }

  .section {
    padding: 44px 0;
  }

  .section-heading h2,
  .bonus-content h2,
  .prize-content h2,
  .form-intro h2,
  .final-cta h2 {
    font-size: clamp(1.46rem, 6.8vw, 1.82rem);
  }

  .section-heading p,
  .bonus-content p,
  .prize-content p,
  .form-intro p,
  .final-cta p,
  .feature-card p,
  .step-card p,
  .eligibility-card li,
  .tie-card li,
  .rule-card p,
  .faq-answer p,
  .site-footer p,
  .site-footer li,
  .site-footer a {
    font-size: 0.87rem;
  }

  .feature-card,
  .step-card,
  .rule-card,
  .eligibility-card,
  .tie-card,
  .form-note-card,
  .simulator-card,
  .referral-form {
    padding: 16px;
  }

  .simulator-card__header {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 9px;
  }

  .feature-card__number,
  .step-card span,
  .icon-img,
  .icon-fallback {
    width: 40px;
    height: 40px;
  }

  .prize-image {
    min-height: 210px;
  }

  .field-grid {
    gap: 11px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .brand__logo {
    width: 100px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .hero h1 {
    font-size: clamp(1.68rem, 8.6vw, 2rem);
  }

  .hero__highlight span {
    font-size: 1.28rem;
  }

  .hero__highlight strong,
  .hero__subtitle,
  .section-heading p,
  .bonus-content p,
  .prize-content p,
  .form-intro p,
  .final-cta p {
    font-size: 0.84rem;
  }

  .section-heading h2,
  .bonus-content h2,
  .prize-content h2,
  .form-intro h2,
  .final-cta h2 {
    font-size: clamp(1.34rem, 6.9vw, 1.68rem);
  }

  .feature-card,
  .step-card,
  .rule-card,
  .eligibility-card,
  .tie-card,
  .form-note-card,
  .simulator-card,
  .referral-form {
    padding: 14px;
  }

  .faq-item button {
    font-size: 0.84rem;
  }

  .footer-bottom p,
  .site-footer li,
  .site-footer a {
    overflow-wrap: anywhere;
  }
}

/* ==========================================================
   Ajuste cirurgico NIO - somente Simulador de Ganhos
   Remove icone do topo e corrige range/preenchimento
   ========================================================== */
.simulator-card__header--clean {
  display: block;
  margin-bottom: 12px;
  gap: 0;
  grid-template-columns: none;
  align-items: start;
}

.simulator-card__header--clean .card-kicker {
  margin-bottom: 4px;
}

.simulator-card__header--clean h2 {
  margin: 0;
}

.simulator-card .range {
  --range-progress: 0%;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 26px;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  accent-color: var(--color-yellow);
}

.simulator-card .range:focus {
  outline: none;
}

.simulator-card .range::-webkit-slider-runnable-track {
  width: 100%;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--color-yellow) 0%,
    var(--color-yellow) var(--range-progress),
    rgba(255, 255, 255, 0.22) var(--range-progress),
    rgba(255, 255, 255, 0.22) 100%
  );
}

.simulator-card .range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  margin-top: calc((9px - 24px) / 2);
  border: 4px solid var(--color-green-soft);
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.simulator-card .range:hover::-webkit-slider-thumb {
  box-shadow:
    0 0 0 7px rgba(255, 214, 0, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.24);
}

.simulator-card .range:focus-visible::-webkit-slider-thumb {
  box-shadow:
    0 0 0 7px rgba(255, 214, 0, 0.24),
    0 8px 18px rgba(0, 0, 0, 0.24);
}

.simulator-card .range::-moz-range-track {
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.simulator-card .range::-moz-range-progress {
  height: 9px;
  border-radius: 999px;
  background: var(--color-yellow);
}

.simulator-card .range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 4px solid var(--color-green-soft);
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.simulator-card .range:hover::-moz-range-thumb {
  box-shadow:
    0 0 0 7px rgba(255, 214, 0, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.24);
}

.simulator-card .range:focus-visible::-moz-range-thumb {
  box-shadow:
    0 0 0 7px rgba(255, 214, 0, 0.24),
    0 8px 18px rgba(0, 0, 0, 0.24);
}

.simulator-card .simulator-progress {
  display: none;
}

@media (max-width: 540px) {
  .simulator-card__header--clean {
    display: block;
    grid-template-columns: none;
    gap: 0;
  }
}

/* ==========================================================
   Ajuste NIO - Imagem da TV na seção Premiação
   ========================================================== */

.prize-image .prize-tv-img {
  width: min(100%, 420px);
  max-height: 400px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .prize-image .prize-tv-img {
    width: min(100%, 300px);
    max-height: 300px;
  }
}
/* ==========================================================
   Ajuste final NIO - Correção do botão menu mobile
   Mantém desktop intacto e corrige hambúrguer/X no mobile
   ========================================================== */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--color-white);
  transform-origin: center;
  transition: transform 0.24s ease, opacity 0.18s ease, width 0.24s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    position: relative;
    z-index: 1002;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: var(--color-white);
    transform-origin: center;
    transition: transform 0.24s ease, opacity 0.18s ease, width 0.24s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 390px) {
  .menu-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}


/* ==========================================================
   Ajuste final NIO - Header sticky e logos no mobile
   Mantem layout desktop e demais secoes intactos
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

@media (max-width: 1024px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  body,
  main {
    overflow-x: clip;
  }
}


/* ==========================================================
   Ajuste final NIO - Menu mobile fixo abaixo do header sticky
   Corrige abertura apos rolagem sem alterar desktop
   ========================================================== */
@media (max-width: 1024px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    overflow: visible;
  }

  .header__inner {
    position: relative;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 18px;
    right: 18px;
    width: auto;
    max-width: calc(100vw - 36px);
    max-height: calc(100dvh - var(--header-height) - 18px);
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border-radius: 0 0 20px 20px;
    background: var(--color-green-dark);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease, visibility 0.24s ease;
    z-index: 1999;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 540px) {
  .nav {
    left: 12px;
    right: 12px;
    max-width: calc(100vw - 24px);
  }
}

/* ==========================================================
   Ajuste final NIO - Menu mobile fixo no viewport
   Corrige abertura apos rolagem sem alterar desktop
   ========================================================== */
@media (max-width: 1024px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    overflow: visible;
  }

  body {
    padding-top: var(--header-height);
  }

  body.nav-open {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .header__inner {
    position: relative;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 12px;
    right: 12px;
    width: auto;
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - var(--header-height) - 16px);
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border-radius: 0 0 20px 20px;
    background: var(--color-green-dark);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease, visibility 0.24s ease;
    z-index: 2999;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 540px) {
  .nav {
    left: 12px;
    right: 12px;
    max-width: calc(100vw - 24px);
  }
}
