:root {
  --ink: #0d182a;
  --ink-soft: #42536d;
  --muted: #71809a;
  --line: #dce7f4;
  --line-strong: #c9d9eb;
  --surface: #ffffff;
  --surface-soft: #f5f9fe;
  --surface-blue: #eaf5ff;
  --blue: #087ff5;
  --blue-dark: #0564d7;
  --cyan: #02a7df;
  --green: #28c76f;
  --green-dark: #129555;
  --orange: #ff9f2d;
  --red: #e9485f;
  --navy: #071a36;
  --navy-2: #0b2b56;
  --shadow-sm: 0 10px 28px rgba(21, 58, 96, .08);
  --shadow-md: 0 22px 60px rgba(15, 53, 94, .14);
  --shadow-lg: 0 35px 95px rgba(6, 47, 91, .22);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* height:auto é OBRIGATÓRIO: os <img> levam width/height como atributo, e
   quando o CSS sobrescreve só a largura o atributo vira altura FIXA — foi o
   que esticou o celular do hero (520x900 em vez de 520x650). */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.section-shell { position: relative; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; padding: 10px 14px; background: var(--ink); color: white; border-radius: 8px; transform: translateY(-140%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.announcement { background: var(--navy); color: white; font-size: 13px; }
.announcement-inner { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 9px; }
.announcement-inner > span:not(.announcement-dot) { color: #b9cae2; }
.announcement-inner a { color: #7de4ff; font-weight: 800; text-decoration: none; margin-left: 5px; }
.announcement-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(40,199,111,.13); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.88); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(210,224,239,.75); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-name { font-size: 21px; letter-spacing: .02em; color: #054985; font-weight: 650; white-space: nowrap; }
.brand-name b { color: var(--blue); }
/* wordmark oficial (gradiente azul→verde) — a marca em texto ficava azul
   chapado, fora da paleta do lockup. `.brand .brand-word` para VENCER o
   `.brand img` de 44x44 logo acima. */
.brand .brand-word { height: 24px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 27px; margin-left: auto; }
.main-nav a { color: #3f5069; font-size: 14px; font-weight: 650; text-decoration: none; transition: color .2s; }
.main-nav a:hover { color: var(--blue); }
.nav-cta { margin-left: 4px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 10px; padding: 10px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 3px; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 21px; border: 1px solid transparent; border-radius: 14px; font-weight: 800; font-size: 15px; text-decoration: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; height: 19px; }
.button-primary { background: linear-gradient(135deg, #0787ff 0%, #056ce7 100%); color: white; box-shadow: 0 15px 32px rgba(5,116,237,.25); }
.button-primary:hover { box-shadow: 0 20px 38px rgba(5,116,237,.32); }
.button-secondary { background: white; color: var(--ink); border-color: var(--line-strong); box-shadow: 0 8px 20px rgba(14,58,100,.05); }
.button-secondary:hover { border-color: #91bce8; }
.button-small { min-height: 43px; border-radius: 12px; padding-inline: 17px; font-size: 14px; background: var(--blue); color: white; box-shadow: 0 10px 24px rgba(8,127,245,.22); }

.hero { background: radial-gradient(circle at 82% 23%, rgba(0,168,229,.12), transparent 28%), linear-gradient(180deg, #f8fbff 0%, #fff 92%); }
.hero-grid { min-height: 720px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 54px; padding-top: 56px; padding-bottom: 65px; position: relative; z-index: 2; }
.hero-copy { max-width: 650px; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-dark); text-transform: uppercase; letter-spacing: .115em; font-size: 12px; font-weight: 850; }
.eyebrow { padding: 9px 12px; background: #eaf5ff; border: 1px solid #d6eafd; border-radius: 999px; }
.eyebrow svg { width: 17px; height: 17px; }
.hero h1 { margin: 25px 0 23px; font-size: clamp(44px, 5.1vw, 68px); line-height: 1.02; letter-spacing: -.045em; max-width: 690px; }
.hero h1 span { color: var(--blue); }
.hero-lead { max-width: 635px; margin: 0; color: var(--ink-soft); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.microcopy { margin: 12px 0 0; color: var(--muted); font-size: 12px; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.trust-chips span { display: inline-flex; align-items: center; gap: 8px; color: #354861; font-size: 13px; font-weight: 700; }
.trust-icon { width: 18px; height: 18px; border-radius: 50%; background: #e5f9ef; border: 1px solid #aee9c9; position: relative; }
.trust-icon::after { content: ""; position: absolute; width: 6px; height: 3px; border: solid var(--green-dark); border-width: 0 0 2px 2px; transform: rotate(-45deg); left: 5px; top: 5px; }
.hero-visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.hero-phone { position: relative; z-index: 3; width: min(100%, 520px); filter: drop-shadow(0 33px 48px rgba(6,42,82,.24)); }
.phone-glow { position: absolute; z-index: 0; width: 470px; height: 470px; border-radius: 50%; background: radial-gradient(circle, rgba(54,220,171,.22), rgba(9,126,245,.10) 45%, transparent 70%); filter: blur(10px); }
.hero-crest { position: absolute; right: -70px; top: 34px; opacity: .055; width: 390px; transform: rotate(7deg); }
.floating-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 11px; min-width: 230px; padding: 13px 15px; border: 1px solid rgba(204,220,237,.9); background: rgba(255,255,255,.94); backdrop-filter: blur(10px); border-radius: 16px; box-shadow: var(--shadow-md); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 13px; line-height: 1.3; }
.floating-card small { margin-top: 4px; color: var(--muted); font-size: 11px; }
.risk-card { top: 116px; left: -34px; }
.privacy-card { right: -45px; bottom: 94px; }
.floating-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; flex: 0 0 auto; }
.floating-icon svg { width: 20px; height: 20px; }
.floating-icon.danger { color: var(--red); background: #fff0f2; }
.floating-icon.safe { color: var(--green-dark); background: #e8fbf1; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); }
.hero-orb-one { width: 360px; height: 360px; background: rgba(6,127,245,.06); left: -190px; top: 115px; }
.hero-orb-two { width: 280px; height: 280px; background: rgba(40,199,111,.07); right: -140px; bottom: 30px; }

.capability-strip { position: relative; z-index: 3; margin-top: -28px; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-md); overflow: hidden; }
.capability-grid > div { position: relative; padding: 23px 24px; display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; }
.capability-grid > div:not(:last-child) { border-right: 1px solid var(--line); }
.capability-grid span { grid-row: 1 / span 2; color: #9eb1c7; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.capability-grid strong { font-size: 14px; }
.capability-grid small { color: var(--muted); font-size: 12px; margin-top: 4px; }

.section-heading { max-width: 760px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .how-copy h2, .privacy-copy h2, .comparison-copy h2, .founders-copy h2, .faq-intro h2, .cta-copy h2 { margin: 14px 0 18px; font-size: clamp(35px, 4vw, 50px); line-height: 1.08; letter-spacing: -.035em; }
.section-heading p, .how-copy > p, .comparison-copy > p, .founders-copy > p, .faq-intro > p { margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.problem-section { background: white; }
.risk-grid { margin-top: 55px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.risk-feature { padding: 31px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(180deg, #fff, #fbfdff); box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s, border-color .25s; }
.risk-feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #bed8f2; }
.feature-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; margin-bottom: 28px; }
.feature-icon svg { width: 24px; height: 24px; }
.feature-icon.blue { color: var(--blue); background: #eaf4ff; }
.feature-icon.cyan { color: #058abf; background: #e9faff; }
.feature-icon.green { color: var(--green-dark); background: #e8faef; }
.feature-label { color: var(--blue-dark); font-size: 11px; text-transform: uppercase; font-weight: 850; letter-spacing: .1em; }
.risk-feature h3 { margin: 9px 0 12px; font-size: 23px; letter-spacing: -.02em; }
.risk-feature p { margin: 0; color: var(--ink-soft); line-height: 1.65; font-size: 15px; }
.check-list { list-style: none; padding: 0; margin: 23px 0 0; display: grid; gap: 11px; }
.check-list li { position: relative; padding-left: 26px; color: #34475f; font-size: 14px; font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; color: var(--green-dark); background: #e6f8ee; font-size: 11px; font-weight: 900; }

.how-section { background: var(--surface-soft); }
.how-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: center; }
.how-copy { max-width: 450px; }
.text-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; color: var(--blue-dark); font-size: 14px; font-weight: 850; text-decoration: none; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.steps-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; counter-reset: steps; }
.steps-list li { display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: center; padding: 25px 28px; border: 1px solid var(--line); background: white; border-radius: 19px; box-shadow: 0 8px 24px rgba(17,56,93,.05); }
.step-number { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; color: var(--blue); background: #eaf5ff; font-size: 17px; font-weight: 900; }
.steps-list h3 { margin: 0 0 7px; font-size: 19px; }
.steps-list p { margin: 0; color: var(--ink-soft); line-height: 1.55; font-size: 14px; }

.privacy-section { position: relative; overflow: hidden; background: radial-gradient(circle at 88% 20%, rgba(2,167,223,.22), transparent 26%), linear-gradient(135deg, #071a36 0%, #0b2d58 100%); color: white; }
.privacy-section::before { content: ""; position: absolute; width: 400px; height: 400px; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; left: -210px; bottom: -230px; box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.012); }
.privacy-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .88fr; gap: 85px; align-items: center; }
.kicker.light { color: #7de4ff; }
.privacy-copy p { color: #c2d1e5; line-height: 1.75; font-size: 17px; }
.privacy-points { display: grid; gap: 14px; margin-top: 30px; }
.privacy-points > div { display: flex; gap: 13px; align-items: flex-start; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.11); }
.privacy-points svg { width: 23px; height: 23px; color: #60dbff; flex: 0 0 auto; }
.privacy-points strong, .privacy-points small { display: block; }
.privacy-points strong { font-size: 15px; }
.privacy-points small { margin-top: 5px; color: #9fb2ca; line-height: 1.5; }
.privacy-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 25px; }
.privacy-links a { color: #7de4ff; font-size: 13px; font-weight: 800; }
.privacy-flow { padding: 25px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.055); backdrop-filter: blur(8px); border-radius: 26px; box-shadow: 0 26px 55px rgba(0,0,0,.2); }
.flow-item { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: center; padding: 15px; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.045); border-radius: 15px; }
.flow-item.active { background: linear-gradient(135deg, rgba(8,127,245,.28), rgba(3,190,211,.16)); border-color: rgba(98,218,255,.42); }
.flow-number { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; color: #7de4ff; background: rgba(255,255,255,.08); font-size: 11px; font-weight: 900; }
.flow-item strong, .flow-item small { display: block; }
.flow-item strong { font-size: 14px; }
.flow-item small { margin-top: 4px; color: #9fb2ca; font-size: 12px; }
.flow-arrow { display: block; text-align: center; color: rgba(125,228,255,.5); line-height: 22px; }

.app-section { background: white; }
.app-showcase { margin-top: 55px; min-height: 620px; display: grid; grid-template-columns: .7fr 1.3fr; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(135deg, #f8fbff, #eef7ff); overflow: hidden; box-shadow: var(--shadow-md); }
.app-tabs { padding: 45px 30px; background: white; border-right: 1px solid var(--line); display: grid; align-content: center; gap: 12px; }
.app-tab { width: 100%; display: block; text-align: left; padding: 20px 21px; border: 1px solid transparent; border-radius: 16px; background: transparent; cursor: pointer; transition: background .2s, border-color .2s, transform .2s; }
.app-tab:hover { background: #f6faff; }
.app-tab.active { background: #eaf5ff; border-color: #cce5fb; transform: translateX(5px); }
.app-tab span, .app-tab small { display: block; }
.app-tab span { font-size: 16px; font-weight: 850; }
.app-tab small { margin-top: 6px; color: var(--muted); line-height: 1.4; }
.screen-stage { position: relative; overflow: hidden; display: grid; place-items: center; padding: 35px 35px 0; }
.screen-stage > img { position: relative; z-index: 2; height: 560px; width: auto; border-radius: 26px 26px 0 0; box-shadow: 0 28px 70px rgba(12,54,99,.24); border: 7px solid #12243b; border-bottom: 0; transition: opacity .2s, transform .28s; }
.screen-stage > img.swapping { opacity: .2; transform: translateY(10px) scale(.985); }
.screen-halo { position: absolute; width: 530px; height: 530px; border-radius: 50%; background: radial-gradient(circle, rgba(37,199,149,.22), rgba(7,132,255,.12) 42%, transparent 68%); }
.screen-caption { position: absolute; z-index: 3; right: 35px; top: 42px; width: 230px; padding: 15px 17px; border: 1px solid rgba(201,218,236,.88); border-radius: 15px; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); }
.screen-caption strong, .screen-caption small { display: block; margin-left: 17px; }
.screen-caption strong { font-size: 13px; }
.screen-caption small { color: var(--muted); margin-top: 5px; font-size: 11px; line-height: 1.4; }
.status-dot { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--green); top: 18px; left: 16px; box-shadow: 0 0 0 4px rgba(40,199,111,.14); }

.comparison-section { background: var(--surface-soft); }
.comparison-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: center; }
.comparison-copy { max-width: 460px; }
.comparison-copy .button { margin-top: 28px; }
.comparison-card { background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-md); overflow: hidden; }
.comparison-row { display: grid; grid-template-columns: 1.65fr .72fr .72fr; align-items: center; min-height: 59px; border-bottom: 1px solid var(--line); }
.comparison-row:last-child { border-bottom: 0; }
.comparison-row > * { padding: 13px 18px; }
.comparison-row > *:not(:first-child) { text-align: center; border-left: 1px solid var(--line); height: 100%; display: grid; place-items: center; }
.comparison-head { min-height: 72px; background: #f8fbff; }
.comparison-head span, .comparison-head strong { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.comparison-head .armor-col { color: var(--blue-dark); grid-template-columns: 25px auto; gap: 7px; }
.comparison-head img { width: 24px; height: 24px; object-fit: contain; }
.comparison-row > span { color: #35475f; font-size: 13px; font-weight: 650; }
.comparison-row i { font-style: normal; font-weight: 900; font-size: 16px; }
.comparison-row i.yes { color: var(--green-dark); }
.comparison-row i.no { color: #abb8c7; }
.comparison-row i.partial { color: var(--orange); font-size: 24px; }
.comparison-row > *:last-child { background: rgba(234,245,255,.35); }

.plans-section { background: white; }
.plans-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; min-height: 500px; padding: 28px 23px 24px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow-sm); }
.plan-card.recommended { border: 2px solid var(--blue); transform: translateY(-10px); box-shadow: 0 25px 60px rgba(5,116,237,.19); }
.recommended-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); white-space: nowrap; padding: 7px 14px; border-radius: 999px; background: var(--blue); color: white; text-transform: uppercase; letter-spacing: .07em; font-size: 10px; font-weight: 900; }
.plan-title span, .plan-title small { display: block; }
.plan-title span { font-size: 20px; font-weight: 900; }
.plan-title small { margin-top: 5px; color: var(--muted); font-size: 12px; }
.price { min-height: 74px; display: flex; align-items: flex-end; gap: 4px; padding: 20px 0 17px; border-bottom: 1px solid var(--line); }
.price strong { font-size: 28px; letter-spacing: -.04em; }
.price small { color: var(--muted); font-size: 12px; margin-bottom: 5px; }
.plan-card ul { list-style: none; padding: 0; margin: 22px 0 25px; display: grid; gap: 13px; }
.plan-card li { position: relative; padding-left: 23px; color: #3e5067; font-size: 13px; line-height: 1.45; }
.plan-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green-dark); font-weight: 900; }
.plan-button { width: 100%; min-height: 46px; margin-top: auto; font-size: 13px; padding-inline: 12px; }
.plans-note { text-align: center; margin: 27px 0 0; color: var(--muted); font-size: 12px; }

.founders-section { padding-top: 20px; background: white; }
.founders-wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: 55px; align-items: center; padding: 55px; background: linear-gradient(135deg, #f6faff, #edf7ff); border: 1px solid var(--line); border-radius: 30px; }
.founders-copy h2 { font-size: clamp(30px, 3.3vw, 43px); }
.founder-cards { display: grid; gap: 13px; }
.founder-card { display: grid; grid-template-columns: 82px 1fr; gap: 17px; align-items: center; padding: 15px; background: rgba(255,255,255,.87); border: 1px solid #dce8f4; border-radius: 17px; box-shadow: 0 10px 25px rgba(20,63,105,.07); }
.founder-card img { width: 82px; height: 82px; object-fit: cover; border-radius: 14px; }
.founder-card span, .founder-card strong, .founder-card small { display: block; }
.founder-card span { color: var(--blue); text-transform: uppercase; letter-spacing: .08em; font-size: 10px; font-weight: 900; }
.founder-card strong { margin-top: 5px; font-size: 18px; }
.founder-card small { margin-top: 5px; color: var(--muted); font-size: 12px; }

.faq-section { background: white; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 75px; align-items: start; }
.faq-intro { position: sticky; top: 125px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; list-style: none; cursor: pointer; padding: 24px 45px 24px 0; font-weight: 850; font-size: 17px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 5px; top: 20px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #edf5fd; color: var(--blue); font-size: 19px; }
details[open] summary::after { content: "−"; }
details p { margin: -4px 0 24px; color: var(--ink-soft); line-height: 1.7; font-size: 14px; padding-right: 40px; }

.cta-section { position: relative; overflow: hidden; padding: 95px 0; background: linear-gradient(135deg, #071a36 0%, #0d3a70 100%); color: white; }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: center; }
.cta-copy p { color: #c0d1e6; font-size: 17px; line-height: 1.7; }
.cta-assurance { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 25px; }
.cta-assurance span { color: #9fb7d2; font-size: 12px; font-weight: 700; }
.cta-orb { position: absolute; width: 540px; height: 540px; border-radius: 50%; right: -200px; top: -250px; background: radial-gradient(circle, rgba(35,207,164,.25), rgba(7,137,255,.08) 50%, transparent 70%); }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 28px; background: white; color: var(--ink); border-radius: 23px; box-shadow: var(--shadow-lg); }
.lead-form label { display: grid; gap: 7px; }
.lead-form label:nth-child(3), .lead-form button, .lead-form > p, .form-success { grid-column: 1 / -1; }
.lead-form label span { font-size: 12px; font-weight: 800; color: #42536b; }
.lead-form label em { color: var(--muted); font-style: normal; font-weight: 500; }
.lead-form input { width: 100%; height: 50px; padding: 0 14px; border: 1px solid var(--line-strong); border-radius: 12px; outline: none; color: var(--ink); background: #fbfdff; transition: border-color .2s, box-shadow .2s; }
.lead-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(8,127,245,.12); }
.lead-form button { width: 100%; border: 0; margin-top: 3px; }
.lead-form > p { margin: 0; color: var(--muted); font-size: 10px; text-align: center; line-height: 1.5; }
.lead-form > p a { color: var(--blue-dark); }
.form-success { display: none; padding: 12px; border-radius: 10px; background: #e9f9ef; color: #14683e; font-size: 12px; text-align: center; }
.form-success.show { display: block; }

.site-footer { padding: 65px 0 95px; background: #06152b; color: white; }
.footer-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; }
.footer-brand .brand-name { color: white; }
.footer-brand p { max-width: 330px; color: #9eb1ca; line-height: 1.6; font-size: 14px; margin: 18px 0 28px; }
.footer-brand small { color: #7188a3; font-size: 11px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-links > div { display: grid; align-content: start; gap: 12px; }
.footer-links strong { margin-bottom: 3px; color: #dce9f8; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.footer-links a { color: #8fa7c3; font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: #7de4ff; }
.mobile-sticky-cta { display: none; }

/* O estado escondido SÓ existe quando o JS marcou html.js: sem JS (ou com
   IntersectionObserver quebrado) a página inteira nasce visível. */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
html.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  /* precisa VENCER o html.js .reveal{opacity:0}: sem movimento não existe
     estado escondido, com ou sem JS */
  .reveal, html.js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 13px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
  .risk-card { left: -10px; }
  .privacy-card { right: -10px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .plan-card.recommended { transform: none; }
}

@media (max-width: 900px) {
  .section { padding: 85px 0; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav { position: absolute; top: 78px; left: 15px; right: 15px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 12px; background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 12px; border-radius: 10px; }
  .main-nav a:hover { background: var(--surface-soft); }
  .nav-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 65px; text-align: center; }
  .hero-copy { margin-inline: auto; }
  .hero-actions, .trust-chips { justify-content: center; }
  .hero-visual { min-height: 570px; }
  .risk-card { left: 7%; }
  .privacy-card { right: 7%; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid > div:nth-child(2) { border-right: 0; }
  .capability-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .risk-grid { grid-template-columns: 1fr; }
  .how-grid, .privacy-grid, .comparison-grid, .founders-wrap, .faq-grid, .cta-grid, .footer-grid { grid-template-columns: 1fr; gap: 45px; }
  .how-copy, .comparison-copy { max-width: 680px; }
  .app-showcase { grid-template-columns: 1fr; }
  .app-tabs { grid-template-columns: repeat(3, 1fr); padding: 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .app-tab { padding: 15px; text-align: center; }
  .app-tab.active { transform: none; }
  .app-tab small { display: none; }
  .screen-stage { min-height: 610px; }
  .founders-wrap { padding: 40px; }
  .faq-intro { position: static; }
}

@media (max-width: 620px) {
  body { padding-bottom: 67px; }
  .announcement-inner { min-height: 42px; gap: 6px; font-size: 11px; }
  .announcement-inner > span:not(.announcement-dot) { display: none; }
  .site-header .nav-wrap { min-height: 69px; }
  .main-nav { top: 69px; }
  .brand img { width: 39px; height: 39px; }
  .brand .brand-word { width: auto; height: 20px; }
  .brand-name { font-size: 18px; }
  .hero-grid { min-height: auto; padding-top: 45px; padding-bottom: 20px; }
  .hero h1 { font-size: clamp(39px, 12vw, 53px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-chips { gap: 10px 15px; }
  .trust-chips span { font-size: 11px; }
  .hero-visual { min-height: 470px; margin-top: 10px; }
  .hero-phone { width: 430px; max-width: 112%; }
  .floating-card { min-width: 0; padding: 10px 11px; }
  .floating-card strong { font-size: 11px; }
  .floating-card small { font-size: 9px; }
  .floating-icon { width: 32px; height: 32px; }
  .risk-card { top: 68px; left: 0; }
  .privacy-card { right: 0; bottom: 47px; }
  .capability-strip { margin-top: 0; padding: 0 15px; }
  .capability-grid { width: 100%; grid-template-columns: 1fr; border-radius: 18px; }
  .capability-grid > div { padding: 18px 20px; border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .capability-grid > div:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
  .section-heading h2, .how-copy h2, .privacy-copy h2, .comparison-copy h2, .founders-copy h2, .faq-intro h2, .cta-copy h2 { font-size: 34px; }
  .risk-grid { margin-top: 38px; }
  .risk-feature { padding: 26px; }
  .steps-list li { grid-template-columns: 49px 1fr; padding: 20px; gap: 14px; }
  .step-number { width: 44px; height: 44px; }
  .privacy-flow { padding: 16px; }
  .flow-item { grid-template-columns: 40px 1fr; padding: 13px; }
  .app-showcase { margin-top: 38px; min-height: auto; }
  .app-tabs { grid-template-columns: 1fr; gap: 7px; }
  .app-tab { text-align: left; padding: 12px 14px; }
  .app-tab small { display: block; }
  .screen-stage { min-height: 525px; padding: 72px 16px 0; }
  .screen-stage > img { height: 455px; border-width: 5px; }
  .screen-caption { top: 15px; right: 15px; left: 15px; width: auto; }
  .comparison-row { grid-template-columns: 1.45fr .75fr .75fr; }
  .comparison-row > * { padding: 11px 9px; }
  .comparison-row > span { font-size: 11px; }
  .comparison-head .armor-col { grid-template-columns: 1fr; }
  .comparison-head img { display: none; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: auto; }
  .founders-wrap { padding: 28px 22px; }
  .founder-card { grid-template-columns: 68px 1fr; }
  .founder-card img { width: 68px; height: 68px; }
  .lead-form { grid-template-columns: 1fr; padding: 22px; }
  .lead-form label, .lead-form label:nth-child(3), .lead-form button, .lead-form > p, .form-success { grid-column: 1; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .mobile-sticky-cta { position: fixed; z-index: 150; display: flex; align-items: center; justify-content: center; left: 10px; right: 10px; bottom: 10px; min-height: 49px; border-radius: 14px; color: white; background: linear-gradient(135deg, #0787ff, #056ce7); box-shadow: 0 15px 32px rgba(5,83,174,.38); text-decoration: none; font-size: 14px; font-weight: 850; opacity: 0; transform: translateY(135%); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
  .mobile-sticky-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
}
