/* Programa de Parceiros · landing */

:root {
  --amarelo: #FFE600;
  --amarelo-hd: #FFF159;
  --amarelo-100: #FFF9C4;
  --ouro: #F5B400;
  --azul: #3483FA;
  --azul-600: #2968C8;
  --azul-700: #1F4E96;
  --azul-100: #E3EDFB;
  --marinho: #2D3277;
  --marinho-900: #1B1E4B;
  --noite: #14163A;
  --creme: #FAF8F2;
  --fundo: #EDEDED;
  --linha: #E8E6E0;
  --tinta-1: #15173A;
  --tinta-2: #3A3C55;
  --tinta-3: #6B6D80;
  --verde: #00A650;
  --verde-100: #E5F6ED;
  --laranja: #FF7733;

  --font: 'Figtree', 'Helvetica Neue', Arial, sans-serif;
  --font-num: 'Nunito', 'Figtree', sans-serif;

  --r-8: 8px;
  --r-12: 12px;
  --r-16: 16px;
  --r-20: 20px;
  --r-24: 24px;
  --r-32: 32px;

  --sh-1: 0 1px 2px rgba(21, 23, 58, .06), 0 1px 1px rgba(21, 23, 58, .04);
  --sh-2: 0 2px 4px rgba(21, 23, 58, .04), 0 12px 28px -8px rgba(21, 23, 58, .14);
  --sh-3: 0 4px 10px rgba(21, 23, 58, .06), 0 32px 64px -20px rgba(21, 23, 58, .28);

  --ease: cubic-bezier(.2, .7, .2, 1);
  --wrap: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--tinta-2);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--azul-600); text-decoration: none; }
h1, h2, h3, h4 { color: var(--tinta-1); margin: 0; line-height: 1.1; letter-spacing: -.025em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--azul); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* ---------- Tipografia de seção ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--azul-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: currentColor; }
.eyebrow--night { color: var(--amarelo); }

.sec-head { max-width: 760px; margin: 0 auto 64px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.sec-head h2 { font-size: clamp(32px, 4.2vw, 50px); font-weight: 800; }
.sec-head p { font-size: 19px; color: var(--tinta-3); max-width: 620px; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .7); border: 1px solid rgba(27, 30, 75, .1);
  font-size: 14px; font-weight: 600; color: var(--marinho-900);
  backdrop-filter: blur(6px);
}
.kicker--night { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .14); color: #fff; }
.kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--verde); box-shadow: 0 0 0 4px rgba(0, 166, 80, .18); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(0, 166, 80, .18); } 50% { box-shadow: 0 0 0 8px rgba(0, 166, 80, 0); } }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 26px; border-radius: var(--r-8);
  font-weight: 700; font-size: 16px; letter-spacing: -.005em;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform 160ms var(--ease), background 160ms var(--ease), box-shadow 160ms var(--ease), color 160ms;
}
.btn i, .btn svg { width: 18px; height: 18px; transition: transform 160ms var(--ease); }
.btn:hover i:last-child, .btn:hover svg:last-child { transform: translateX(2px); }
.btn--sm { height: 42px; padding: 0 18px; font-size: 15px; }
.btn--lg { height: 58px; padding: 0 30px; font-size: 17px; }
.btn--primary { background: var(--azul); color: #fff; box-shadow: 0 1px 0 rgba(255, 255, 255, .25) inset, 0 8px 20px -6px rgba(52, 131, 250, .55); }
.btn--primary:hover { background: var(--azul-600); transform: translateY(-1px); }
.btn--primary:active { background: var(--azul-700); transform: none; }
.btn--yellow { background: var(--amarelo); color: var(--marinho-900); box-shadow: 0 10px 28px -8px rgba(255, 230, 0, .55); }
.btn--yellow:hover { background: var(--amarelo-hd); transform: translateY(-1px); }
.btn--ghost { background: #fff; color: var(--tinta-1); border-color: var(--linha); box-shadow: var(--sh-1); }
.btn--ghost:hover { border-color: #cfccc3; transform: translateY(-1px); }
.btn--link { background: none; color: var(--marinho-900); padding: 0 8px; }
.btn--link:hover { color: var(--azul-700); }
.btn--link i, .btn--link svg { width: 22px; height: 22px; }

/* ---------- Header ---------- */
.lp-header { position: fixed; inset: 0 0 auto; z-index: 60; transition: background 220ms var(--ease), box-shadow 220ms var(--ease); }
.lp-header-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.lp-header.is-scrolled { background: rgba(255, 255, 255, .86); backdrop-filter: saturate(1.6) blur(14px); -webkit-backdrop-filter: saturate(1.6) blur(14px); box-shadow: 0 1px 0 rgba(21, 23, 58, .08); }
.lp-logo img { height: 40px; width: auto; display: block; }
.lp-nav { display: flex; align-items: center; gap: 34px; }
.lp-nav a:not(.btn) { position: relative; color: var(--tinta-1); font-weight: 600; font-size: 15px; }
.lp-nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--marinho-900); transform: scaleX(0); transform-origin: left; transition: transform 200ms var(--ease); }
.lp-nav a:not(.btn):hover::after { transform: scaleX(1); }
.lp-nav-cta { display: none; }
.lp-header-cta { display: flex; align-items: center; gap: 12px; }
.lp-burger { display: none; width: 44px; height: 44px; border-radius: 10px; background: #fff; border: 1px solid var(--linha); color: var(--tinta-1); place-items: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 148px 0 112px;
  background:
    radial-gradient(60% 70% at 88% 18%, rgba(255, 255, 255, .55), transparent 60%),
    linear-gradient(180deg, #FFF159 0%, var(--amarelo) 55%, #FFE000 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(27, 30, 75, .09) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.hero-rings { position: absolute; right: -180px; top: 50%; transform: translateY(-50%); width: 900px; height: 620px; pointer-events: none; }
.hero-rings span { position: absolute; inset: 0; border: 2px solid rgba(27, 30, 75, .08); border-radius: 50%; }
.hero-rings span:nth-child(2) { inset: 80px 110px; }
.hero-rings span:nth-child(3) { inset: 160px 220px; border-color: rgba(27, 30, 75, .06); }

.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 64px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.hero h1 { font-size: clamp(40px, 5.6vw, 68px); font-weight: 800; letter-spacing: -.035em; line-height: 1.02; margin: 26px 0 24px; color: var(--noite); }
.hl { position: relative; white-space: nowrap; z-index: 0; }
.hl::after { content: ""; position: absolute; left: -4px; right: -4px; bottom: .06em; height: .34em; background: #fff; border-radius: 4px; z-index: -1; transform: skewX(-8deg); }
.hero-sub { font-size: 20px; line-height: 1.6; color: #2c2f55; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin: 36px 0 44px; }
.hero-facts { display: flex; gap: 0; border-top: 1px solid rgba(27, 30, 75, .14); padding-top: 26px; width: 100%; max-width: 560px; }
.hero-facts li { flex: 1; padding-right: 20px; }
.hero-facts li + li { padding-left: 22px; border-left: 1px solid rgba(27, 30, 75, .14); }
/* ---------- Contador ---------- */
.countdown {
  --cd-tile: #1B1E4B;
  --cd-ink: #fff;
  margin-top: 30px; width: 100%; max-width: 440px;
  padding: 18px 20px 16px; border-radius: var(--r-20);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(27, 30, 75, .1);
  box-shadow: var(--sh-2);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.cd-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.cd-flag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--erro, #D93042);
}
.cd-pulse { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: cdpulse 1.8s ease-out infinite; }
@keyframes cdpulse { 0% { box-shadow: 0 0 0 0 rgba(217, 48, 66, .45); } 70%, 100% { box-shadow: 0 0 0 7px rgba(217, 48, 66, 0); } }
.cd-date { font-size: 13px; font-weight: 700; color: var(--tinta-1); letter-spacing: -.01em; text-align: right; }
.cd-date span { font-weight: 500; color: var(--tinta-3); }

.cd-clock { --cd-w: 46px; display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.cd-unit { display: flex; flex-direction: column; align-items: center; gap: 9px; min-width: 0; }
.cd-digits { display: flex; gap: 5px; }
.cd-digits span {
  position: relative; overflow: hidden;
  width: var(--cd-w); height: calc(var(--cd-w) * 1.26); border-radius: calc(var(--cd-w) * .28);
  display: grid; place-items: center;
  background: linear-gradient(170deg, #2A2F6B 0%, var(--cd-tile) 58%, #14163A 100%);
  color: var(--cd-ink);
  font-family: var(--font-num); font-weight: 900; font-size: calc(var(--cd-w) * .7); line-height: 1;
  font-variant-numeric: tabular-nums; letter-spacing: -.02em;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .16) inset, 0 8px 16px -8px rgba(21, 23, 58, .7);
}
.cd-digits span::after {
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  height: 1px; background: rgba(0, 0, 0, .28);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}
.cd-digits span.is-tick { animation: cdtick 420ms var(--ease); }
@keyframes cdtick {
  0% { transform: translateY(-42%) scale(.96); opacity: 0; filter: blur(2px); }
  55% { opacity: 1; filter: blur(0); }
  100% { transform: none; opacity: 1; }
}
.cd-unit small { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--tinta-3); }

.cd-sep { flex: none; display: flex; flex-direction: column; justify-content: center; gap: 7px; height: calc(var(--cd-w) * 1.26); padding: 0 1px; }
.cd-sep i { width: 5px; height: 5px; border-radius: 50%; background: var(--marinho); opacity: .45; animation: cdblink 1s steps(1, end) infinite; }
@keyframes cdblink { 0%, 49% { opacity: .5; } 50%, 100% { opacity: .14; } }

.cd-bar { margin-top: 16px; height: 5px; border-radius: 99px; background: rgba(27, 30, 75, .12); overflow: hidden; }
.cd-bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--marinho), #4B51A8 70%, var(--azul)); transition: width 1s linear; }

.countdown--night {
  --cd-ink: #fff;
  max-width: none; margin-top: 0;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .13);
  box-shadow: none;
}
.countdown--night .cd-flag { color: var(--amarelo); }
@keyframes cdpulse-night { 0% { box-shadow: 0 0 0 0 rgba(255, 230, 0, .45); } 70%, 100% { box-shadow: 0 0 0 7px rgba(255, 230, 0, 0); } }
.countdown--night .cd-pulse { animation-name: cdpulse-night; }
.countdown--night .cd-date { color: #fff; }
.countdown--night .cd-date span { color: rgba(255, 255, 255, .6); }
.countdown--night .cd-digits span { background: linear-gradient(170deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .07)); box-shadow: 0 1px 0 rgba(255, 255, 255, .2) inset, 0 8px 18px -10px rgba(0, 0, 0, .8); }
.countdown--night .cd-digits span::after { background: rgba(0, 0, 0, .22); box-shadow: 0 1px 0 rgba(255, 255, 255, .08); }
.countdown--night .cd-unit small { color: rgba(255, 255, 255, .55); }
.countdown--night .cd-sep i { background: var(--amarelo); }
.countdown--night .cd-bar { background: rgba(255, 255, 255, .12); }
.countdown--night .cd-bar i { background: linear-gradient(90deg, #FFD200, var(--amarelo)); }

.hero-facts strong { display: block; font-family: var(--font-num); font-weight: 900; font-size: 32px; line-height: 1; color: var(--marinho-900); letter-spacing: -.02em; }
.hero-facts span { display: block; margin-top: 6px; font-size: 14px; color: #3f4266; line-height: 1.35; }

.hero-stage { position: relative; padding: 28px 0 28px 40px; }
.hero-photo { position: relative; border-radius: var(--r-32); overflow: hidden; box-shadow: var(--sh-3); aspect-ratio: 4 / 4.6; background: #e9e2cc; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.hero-photo::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25); }

.float-card { position: absolute; background: rgba(255, 255, 255, .96); border-radius: var(--r-16); box-shadow: var(--sh-3); padding: 16px; backdrop-filter: blur(8px); }
.fc-review { left: -8px; bottom: 44px; width: 250px; }
.fc-head { display: flex; gap: 12px; align-items: center; }
.fc-head img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; border: 1px solid var(--linha); }
.fc-head strong { display: block; font-size: 14px; color: var(--tinta-1); line-height: 1.25; }
.fc-head span { font-size: 12px; color: var(--tinta-3); }
.fc-stars { margin: 12px 0 10px; }
.fc-lines { display: grid; gap: 6px; }
.fc-lines i { display: block; height: 6px; border-radius: 4px; background: #EFEDE6; }
.fc-lines i.short { width: 60%; }
.fc-btn { margin-top: 14px; height: 34px; border-radius: 7px; background: var(--azul); color: #fff; font-size: 13px; font-weight: 700; display: grid; place-items: center; }

.fc-level { right: -18px; top: 70px; width: 220px; }
.fc-level-top { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; color: var(--tinta-3); }
.fc-level-top strong { font-size: 14px; color: var(--tinta-1); }
.fc-bar { height: 8px; border-radius: 99px; background: #EFEDE6; margin: 10px 0; overflow: hidden; }
.fc-bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--azul), #5FA0FF); }
.fc-level-note { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--azul-700); }
.fc-level-note svg { width: 14px; height: 14px; }

.fc-ok { right: 28px; bottom: -6px; display: flex; align-items: center; gap: 12px; padding: 12px 16px; }
.fc-ok-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--verde); color: #fff; display: grid; place-items: center; }
.fc-ok-icon svg { width: 18px; height: 18px; stroke-width: 3; }
.fc-ok strong { display: block; font-size: 14px; color: var(--tinta-1); line-height: 1.2; }
.fc-ok div span { font-size: 12px; color: var(--tinta-3); }

/* estrelas (padrão do design system) */
.pp-stars { display: inline-flex; align-items: center; gap: 2px; color: var(--ouro); }
.pp-star { fill: currentColor; }
.pp-star.is-empty { fill: #E3E0D6; }
.pp-stars-score, .pp-stars-count { display: none; }

/* ---------- Categorias ---------- */
.cats { border-bottom: 1px solid var(--linha); background: #fff; }
.cats-row { display: flex; align-items: center; gap: 36px; padding-top: 26px; padding-bottom: 26px; }
.cats-label { flex: none; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--tinta-3); }
.cats ul { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 28px; flex: 1; }
.cats li { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; color: var(--tinta-1); }
.cats li svg { width: 20px; height: 20px; color: var(--marinho); stroke-width: 1.75; }

/* ---------- Seções ---------- */
.section { position: relative; padding: 120px 0; }
.section--tight { padding: 40px 0 120px; }
.section--warm { background: var(--creme); }
.section--night { background: var(--noite); color: rgba(255, 255, 255, .78); overflow: hidden; }
.section--night::before { content: ""; position: absolute; width: 720px; height: 720px; left: -260px; top: -300px; border-radius: 50%; background: radial-gradient(circle, rgba(52, 131, 250, .22), transparent 65%); pointer-events: none; }
.section--night::after { content: ""; position: absolute; width: 620px; height: 620px; right: -200px; bottom: -320px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 230, 0, .12), transparent 65%); pointer-events: none; }
.section--night h2, .section--night h3 { color: #fff; }

/* ---------- Timeline ---------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.timeline::before { content: ""; position: absolute; top: 27px; left: 28px; right: 28px; height: 2px; background: repeating-linear-gradient(90deg, #D9D6CC 0 8px, transparent 8px 16px); }
.tl-step { position: relative; }
.tl-marker { position: relative; width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 2px solid var(--marinho-900); display: grid; place-items: center; margin-bottom: 28px; }
.tl-marker span { font-family: var(--font-num); font-weight: 900; font-size: 18px; color: var(--marinho-900); }
.tl-step:first-child .tl-marker { background: var(--amarelo); }
.tl-icon { width: 40px; height: 40px; color: var(--azul-600); margin-bottom: 14px; }
.tl-icon svg { width: 28px; height: 28px; stroke-width: 1.6; }
.tl-step h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.tl-step p { font-size: 16px; color: var(--tinta-3); }

/* ---------- Sistema ---------- */
.sys { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: center; }
.sys-copy h2 { font-size: clamp(32px, 4vw, 46px); font-weight: 800; margin: 18px 0 20px; }
.sys-lead { font-size: 19px; color: rgba(255, 255, 255, .72); margin-bottom: 36px; }
.sys-list { display: grid; gap: 22px; }
.sys-list li { display: flex; gap: 16px; }
.sys-list li > svg { flex: none; width: 44px; height: 44px; padding: 11px; border-radius: 12px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .1); color: var(--amarelo); stroke-width: 1.75; }
.sys-list strong { display: block; color: #fff; font-size: 17px; margin-bottom: 2px; }
.sys-list span { font-size: 15px; color: rgba(255, 255, 255, .62); }

.mock-window { background: #fff; border-radius: var(--r-24); box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .08); overflow: hidden; transform: perspective(1600px) rotateY(-6deg) rotateX(2deg); transform-origin: left center; transition: transform 600ms var(--ease); }
.sys-mock:hover .mock-window { transform: perspective(1600px) rotateY(-2deg) rotateX(0deg); }
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; background: #F6F5F1; border-bottom: 1px solid var(--linha); }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #DAD7CE; }
.mock-bar span { margin-left: 12px; font-size: 13px; color: var(--tinta-3); }
.mock-body { padding: 26px; color: var(--tinta-2); }
.mock-top { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-radius: var(--r-16); background: linear-gradient(135deg, var(--amarelo), #FFF159); margin-bottom: 18px; }
.mock-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(27, 30, 75, .6); }
.mock-tier { font-size: 22px; font-weight: 800; color: var(--marinho-900); letter-spacing: -.02em; }
.mock-ring { --p: 0; width: 64px; height: 64px; border-radius: 50%; background: conic-gradient(var(--marinho-900) calc(var(--p) * 1%), rgba(27, 30, 75, .14) 0); display: grid; place-items: center; }
.mock-ring span { width: 50px; height: 50px; border-radius: 50%; background: var(--amarelo-hd); display: grid; place-items: center; font-weight: 800; font-size: 14px; color: var(--marinho-900); }
.mock-rows { display: grid; gap: 10px; }
.mock-row { display: grid; grid-template-columns: 40px minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 12px 14px; border: 1px solid var(--linha); border-radius: var(--r-12); }
.mock-row img { width: 40px; height: 40px; border-radius: 9px; object-fit: cover; }
.mock-row strong { display: block; font-size: 14px; color: var(--tinta-1); line-height: 1.3; }
.mock-row span { font-size: 12px; color: var(--tinta-3); }
.mock-row.is-locked { background: #FAF9F6; border-style: dashed; }
.mock-lock { width: 40px; height: 40px; border-radius: 9px; background: #EFEDE6; display: grid; place-items: center; color: var(--tinta-3); }
.mock-lock svg { width: 18px; height: 18px; }
.chip { font-style: normal; font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 99px; background: #EFEDE6; color: var(--tinta-3); white-space: nowrap; }
.chip--ok { background: var(--verde-100); color: #007A3B; }
.chip--wait { background: var(--azul-100); color: var(--azul-700); }

/* ---------- Faixas ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.tier { position: relative; display: flex; flex-direction: column; padding: 32px; border-radius: var(--r-24); background: #fff; border: 1px solid var(--linha); box-shadow: var(--sh-1); transition: transform 240ms var(--ease), box-shadow 240ms var(--ease); }
.tier:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.tier-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.tier-n { font-family: var(--font-num); font-weight: 900; font-size: 15px; letter-spacing: .02em; color: var(--tinta-3); }
.tier-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 99px; background: var(--amarelo); color: var(--marinho-900); }
.tier-tag svg { width: 14px; height: 14px; }
.tier-tag--gold { background: rgba(245, 180, 0, .16); color: var(--ouro); }
.tier h3 { font-size: 30px; font-weight: 800; }
.tier-sub { margin-top: 6px; font-size: 15px; font-weight: 600; color: var(--azul-700); }
.tier-prods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 26px 0; }
.tier-prods span { aspect-ratio: 1; border-radius: var(--r-12); background: #F7F6F2; border: 1px solid var(--linha); overflow: hidden; display: grid; place-items: center; }
.tier-prods img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.tier ul { display: grid; gap: 12px; margin-bottom: 26px; }
.tier li { display: flex; gap: 10px; font-size: 15px; color: var(--tinta-2); }
.tier li svg { flex: none; width: 18px; height: 18px; margin-top: 3px; color: var(--verde); stroke-width: 2.5; }
.tier-req { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--linha); display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: var(--tinta-3); }
.tier-req svg { flex: none; width: 16px; height: 16px; margin-top: 2px; }

.tier--1 { border: 2px solid var(--marinho-900); box-shadow: var(--sh-2); }
.tier--3 { background: linear-gradient(160deg, #20245A 0%, var(--noite) 70%); border-color: transparent; color: rgba(255, 255, 255, .78); box-shadow: var(--sh-3); }
.tier--3 h3 { color: #fff; }
.tier--3 .tier-n { color: rgba(255, 255, 255, .55); }
.tier--3 .tier-sub { color: var(--amarelo); }
.tier--3 li { color: rgba(255, 255, 255, .82); }
.tier--3 li svg { color: var(--amarelo); }
.tier--3 .tier-prods span { background: #fff; border-color: transparent; }
.tier--3 .tier-req { border-color: rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .55); }
.tiers-cta { display: flex; justify-content: center; margin-top: 52px; }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: minmax(220px, auto); gap: 20px; }
.bento-card { position: relative; border-radius: var(--r-24); background: #fff; border: 1px solid var(--linha); padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; box-shadow: var(--sh-1); }
.bento-card > svg { width: 30px; height: 30px; color: var(--azul-600); stroke-width: 1.6; margin-bottom: auto; }
.bento-card h3 { font-size: 22px; font-weight: 700; margin: 26px 0 8px; }
.bento-card p { font-size: 15px; color: var(--tinta-3); }
.bento-card--photo { grid-column: span 2; grid-row: span 2; padding: 0; border: 0; }
.bento-card--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento-overlay { position: relative; margin-top: auto; padding: 120px 34px 34px; background: linear-gradient(180deg, transparent, rgba(14, 16, 44, .82)); }
.bento-overlay h3 { color: #fff; font-size: 30px; margin: 0 0 8px; }
.bento-overlay p { color: rgba(255, 255, 255, .82); font-size: 16px; max-width: 380px; }
.bento-card--yellow { grid-column: span 2; background: var(--amarelo); border-color: transparent; }
.bento-card--yellow > svg { color: var(--marinho-900); }
.bento-card--yellow p { color: #3f4266; }
.bento-card--night { grid-column: span 2; background: var(--noite); border-color: transparent; }
.bento-card--night > svg { color: var(--amarelo); }
.bento-card--night h3 { color: #fff; }
.bento-card--night p { color: rgba(255, 255, 255, .66); }
.bento-card--wide { grid-column: span 2; }
.bento-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: auto; }
.bento-steps span { height: 44px; border-radius: 10px; display: flex; align-items: center; padding: 0 12px; font-family: var(--font-num); font-weight: 900; font-size: 14px; }
.bento-steps span:nth-child(1) { background: var(--amarelo); color: var(--marinho-900); }
.bento-steps span:nth-child(2) { background: var(--azul-100); color: var(--azul-700); }
.bento-steps span:nth-child(3) { background: var(--noite); color: var(--amarelo); }

/* ---------- Perfis ---------- */
.perfis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.perfil { position: relative; border-radius: var(--r-24); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--sh-2); isolation: isolate; }
.perfil img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease); z-index: -1; }
.perfil:hover img { transform: scale(1.04); }
.perfil figcaption { position: absolute; inset: auto 0 0; padding: 90px 28px 28px; background: linear-gradient(180deg, transparent, rgba(14, 16, 44, .88)); }
.perfil h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.perfil p { color: rgba(255, 255, 255, .8); font-size: 15px; }

/* ---------- Compromissos ---------- */
.pledge { border-radius: var(--r-32); background: linear-gradient(180deg, #F2F7FE, #fff); border: 1px solid #DCE7F8; padding: 52px; }
.pledge-head { display: flex; align-items: center; gap: 22px; margin-bottom: 44px; }
.pledge-seal { flex: none; width: 72px; height: 72px; border-radius: 22px; background: var(--azul); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(52, 131, 250, .6); }
.pledge-seal svg { width: 34px; height: 34px; stroke-width: 1.75; }
.pledge-head h2 { font-size: clamp(28px, 3.4vw, 38px); font-weight: 800; margin-top: 10px; }
.pledge-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.pledge-item svg { width: 26px; height: 26px; color: var(--azul-600); stroke-width: 1.75; margin-bottom: 16px; }
.pledge-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pledge-item p { font-size: 15px; color: var(--tinta-3); }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 72px; align-items: start; }
.faq-side { position: sticky; top: 120px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.faq-side h2 { font-size: clamp(30px, 3.6vw, 42px); font-weight: 800; }
.faq-side p { font-size: 17px; color: var(--tinta-3); margin-bottom: 8px; }
.faq { display: grid; gap: 0; border-top: 1px solid #DDD9CE; }
.faq-item { border-bottom: 1px solid #DDD9CE; }
.faq-q { width: 100%; background: none; border: 0; text-align: left; padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-weight: 700; font-size: 19px; color: var(--tinta-1); letter-spacing: -.01em; }
.faq-q svg { flex: none; width: 36px; height: 36px; padding: 8px; border-radius: 50%; background: #fff; border: 1px solid var(--linha); color: var(--tinta-1); transition: transform 240ms var(--ease), background 200ms, color 200ms; }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); background: var(--marinho-900); color: #fff; border-color: transparent; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 320ms var(--ease); }
.faq-a p { padding: 0 60px 28px 0; font-size: 17px; color: var(--tinta-3); }

/* ---------- CTA ---------- */
.cta { padding: 0 0 120px; background: var(--creme); }
.cta-card { position: relative; overflow: hidden; border-radius: var(--r-32); background: linear-gradient(135deg, #22276A 0%, var(--noite) 60%); padding: 72px; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 48px; align-items: center; box-shadow: var(--sh-3); }
.hero-rings--cta { right: -260px; width: 760px; height: 520px; }
.hero-rings--cta span { border-color: rgba(255, 230, 0, .14); }
.hero-rings--cta span:nth-child(3) { border-color: rgba(255, 230, 0, .1); }
.cta-copy { position: relative; }
.cta-copy h2 { color: #fff; font-size: clamp(32px, 4vw, 48px); font-weight: 800; margin: 22px 0 16px; }
.cta-copy p { color: rgba(255, 255, 255, .72); font-size: 19px; }
.cta-actions { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.cta-note { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255, 255, 255, .62); }
.cta-note svg { width: 16px; height: 16px; color: var(--verde); }

/* ---------- Footer ---------- */
.lp-footer { background: var(--noite); color: rgba(255, 255, 255, .62); padding: 80px 0 36px; }
.lp-footer-top { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr); gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.lp-flogo img { height: 46px; width: auto; }
.lp-footer-brand p { margin-top: 20px; font-size: 15px; max-width: 360px; }
.lp-footer h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px; }
.lp-footer ul { display: grid; gap: 12px; }
.lp-footer a { color: rgba(255, 255, 255, .7); font-size: 15px; transition: color 160ms; }
.lp-footer a:hover { color: var(--amarelo); }
.lp-footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 28px; font-size: 13px; color: rgba(255, 255, 255, .45); }
.lp-footer-bottom span { display: inline-flex; align-items: center; gap: 8px; }
.lp-footer-bottom svg { width: 15px; height: 15px; color: var(--verde); }

/* ---------- Reveal (só com JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); transition-delay: var(--d, 0ms); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .kicker-dot, .cd-pulse, .cd-sep i { animation: none; }
  .cd-digits span.is-tick { animation: none; }
  .mock-window { transform: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1100px) {
  .lp-nav { gap: 24px; }
  .hero-grid { gap: 40px; }
  .fc-level { right: -8px; }
  .sys { gap: 48px; }
  .pledge-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-card { padding: 56px; }
}

@media (max-width: 960px) {
  .lp-nav {
    position: fixed; inset: 76px 0 auto; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 12px 28px 24px; box-shadow: 0 18px 30px -12px rgba(21, 23, 58, .2);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity 200ms, transform 200ms var(--ease);
  }
  .lp-nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--linha); font-size: 17px; }
  .lp-nav a:not(.btn)::after { display: none; }
  .lp-nav-cta { display: inline-flex; margin-top: 18px; }
  .lp-header.nav-open { background: #fff; }
  .lp-header.nav-open .lp-nav { opacity: 1; transform: none; pointer-events: auto; }
  .lp-burger { display: grid; }

  .hero { padding: 124px 0 88px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-stage { max-width: 520px; width: 100%; margin: 0 auto; padding-left: 0; }
  .hero-rings { right: -420px; }

  .cats-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cats ul { justify-content: flex-start; }

  .section { padding: 88px 0; }
  .sec-head { margin-bottom: 48px; }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 32px; }
  .timeline::before { display: none; }
  .sys { grid-template-columns: 1fr; }
  .mock-window { transform: none; }
  .tiers { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-card--photo { grid-column: span 2; grid-row: auto; min-height: 380px; }
  .bento-card--yellow, .bento-card--night, .bento-card--wide { grid-column: span 2; }
  .perfis { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .perfil { aspect-ratio: 4 / 3.6; }
  .pledge { padding: 40px 32px; }
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .faq-side { position: static; }
  .cta-card { grid-template-columns: 1fr; padding: 48px 36px; }
  .lp-footer-top { grid-template-columns: 1fr 1fr; }
  .lp-footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .lp-header-row { height: 68px; }
  .lp-nav { inset: 68px 0 auto; padding: 8px 20px 20px; }
  .lp-logo img { height: 34px; }
  .lp-header-cta .btn { display: none; }

  .hero { padding: 108px 0 72px; }
  .hero h1 { font-size: 40px; }
  .hl { white-space: normal; }
  .hero-sub { font-size: 18px; }
  .hero-cta { margin: 28px 0 34px; width: 100%; }
  .hero-cta .btn--primary { width: 100%; }
  .hero-facts strong { font-size: 26px; }
  .hero-facts li { padding-right: 12px; }
  .hero-facts li + li { padding-left: 14px; }
  .hero-facts span { font-size: 13px; }
  .countdown { padding: 16px; }
  .cd-head { flex-direction: column; align-items: flex-start; gap: 4px; }
  .cd-date { text-align: left; }
  .cd-clock { --cd-w: min(13.2vw, 46px); gap: 5px; }
  .cd-digits { gap: 4px; }
  .cd-unit small { font-size: 9px; letter-spacing: .08em; }
  .hero-stage { padding: 0 0 24px; }
  .fc-review { left: 12px; bottom: 30px; width: 220px; }
  .fc-level { right: 10px; top: 16px; width: 190px; }
  .fc-ok { display: none; }

  .cats li { font-size: 14px; }
  .section { padding: 72px 0; }
  .section--tight { padding: 16px 0 72px; }
  .sec-head h2 { font-size: 32px; }
  .sec-head p { font-size: 17px; }
  .timeline { grid-template-columns: 1fr; gap: 36px; }
  .tl-marker { margin-bottom: 20px; }
  .mock-body { padding: 16px; }
  .mock-top { padding: 14px 16px; }
  .mock-tier { font-size: 18px; }
  .mock-row { grid-template-columns: 36px minmax(0, 1fr); padding: 10px 12px; }
  .mock-row .chip { grid-column: 2; justify-self: start; }
  .tier { padding: 26px 22px; }
  .bento { grid-template-columns: 1fr; }
  .bento-card--photo, .bento-card--yellow, .bento-card--night, .bento-card--wide { grid-column: auto; }
  .bento-card--photo { min-height: 340px; }
  .pledge { padding: 32px 22px; border-radius: var(--r-24); }
  .pledge-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .pledge-grid { grid-template-columns: 1fr; gap: 26px; }
  .faq-q { font-size: 17px; padding: 22px 0; }
  .faq-a p { padding-right: 0; font-size: 16px; }
  .cta { padding-bottom: 72px; }
  .cta-card { padding: 40px 24px; border-radius: var(--r-24); }
  .cta-actions .btn { width: 100%; white-space: normal; text-align: center; }
  .lp-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .lp-footer-brand { grid-column: auto; }
}
