:root {
  --navy-950: #07062f;
  --navy-900: #0c0958;
  --navy-800: #15116f;
  --navy-700: #201a86;
  --cyan-500: #3caad3;
  --cyan-400: #61c7e8;
  --cyan-300: #98e5f7;
  --cyan-100: #e5f8fd;
  --ink-900: #111a33;
  --ink-700: #33415f;
  --ink-500: #64718a;
  --ink-400: #59677f;
  --focus: #146c94;
  --paper: #f5f8fc;
  --surface: #ffffff;
  --surface-soft: #eef5fb;
  --success: #16866f;
  --warning: #b86118;
  --line: rgba(12, 9, 88, 0.11);
  --line-strong: rgba(12, 9, 88, 0.18);
  --shadow-xs: 0 8px 22px rgba(12, 9, 88, 0.06);
  --shadow-sm: 0 16px 38px rgba(12, 9, 88, 0.09);
  --shadow-md: 0 24px 64px rgba(12, 9, 88, 0.14);
  --shadow-lg: 0 36px 90px rgba(6, 5, 42, 0.30);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 100px;
  --header-height-condensed: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  color: var(--ink-900);
  background: var(--paper);
  font: 400 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.is-form-active .mobile-sticky { transform: translateY(120%); }
img, svg { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.035em; }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.sr-only {
  position: absolute !important;
  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; left: 16px; top: -100px; z-index: 1000; padding: 12px 18px; border-radius: 12px; background: #fff; color: var(--navy-900); font-weight: 800; box-shadow: var(--shadow-md); }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 850;
  letter-spacing: -0.012em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary { color: var(--navy-950); background: linear-gradient(180deg, #77d8f1, var(--cyan-500)); box-shadow: 0 15px 34px rgba(60, 170, 211, .28), inset 0 1px rgba(255,255,255,.55); }
.button-primary:hover { box-shadow: 0 19px 40px rgba(60, 170, 211, .36), inset 0 1px rgba(255,255,255,.55); }
.button-dark { color: #fff; background: linear-gradient(180deg, var(--navy-800), var(--navy-900)); box-shadow: 0 14px 30px rgba(12, 9, 88, .20); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-ghost:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.32); }
.button-small { min-height: 44px; padding: 10px 17px; border-radius: 13px; font-size: .92rem; }
.button-block { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, .91);
  border-bottom: 1px solid rgba(12, 9, 88, .08);
  backdrop-filter: blur(16px) saturate(1.3);
  transition: height .34s cubic-bezier(.22,.61,.36,1), box-shadow .34s ease;
}
.site-header.is-condensed { box-shadow: 0 10px 30px rgba(12,9,88,.07); height: var(--header-height-condensed); }
.header-inner { height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.brand { justify-self: start; display: inline-flex; align-items: center; padding: 4px 10px 4px 0; border-radius: 12px; }
.brand:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.brand img { display: block; width: auto; height: 64px; transition: height .34s cubic-bezier(.22,.61,.36,1); }
.site-header.is-condensed .brand img { height: 48px; }
.header-proof { display: flex; align-items: center; gap: 10px; color: var(--ink-700); }
.header-proof > span:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.header-proof strong { font-size: .88rem; }
.header-proof small { color: var(--ink-500); font-size: .76rem; }
.proof-dot { width: 9px; height: 9px; flex: 0 0 auto; border-radius: 50%; background: #2cb391; box-shadow: 0 0 0 5px rgba(44,179,145,.13); }
.header-cta { justify-self: end; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 740px;
  padding: 72px 0 92px;
  color: #fff;
  background:
    linear-gradient(112deg, rgba(7,6,47,.98) 0%, rgba(12,9,88,.98) 48%, rgba(21,35,108,.96) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 180px;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, rgba(5,5,35,.35));
}
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(12px); pointer-events: none; }
.hero-glow-a { width: 520px; height: 520px; top: -310px; right: 8%; background: rgba(60,170,211,.22); }
.hero-glow-b { width: 390px; height: 390px; left: -220px; bottom: -150px; background: rgba(103,83,220,.22); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .78fr); gap: clamp(44px, 6vw, 84px); align-items: center; }
.hero-copy { max-width: 660px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--cyan-300); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .105em; }
.eyebrow-mark { width: 22px; height: 2px; background: var(--cyan-400); border-radius: 2px; box-shadow: 0 0 16px var(--cyan-400); }
.hero h1 { max-width: 20ch; margin-top: 18px; font-size: clamp(2.55rem, 4.2vw, 4rem); font-weight: 930; letter-spacing: -.05em; }
.hero h1 span { color: var(--cyan-300); text-shadow: 0 0 42px rgba(97,199,232,.18); }
.hero-lead { max-width: 630px; margin-top: 22px; color: rgba(255,255,255,.80); font-size: clamp(1.05rem, 1.35vw, 1.18rem); line-height: 1.7; }
.hero-lead strong { color: #fff; }
.hero-bullets { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 27px; }
.hero-bullets div { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.86); font-size: .91rem; font-weight: 700; }
.hero-bullets svg { width: 19px; height: 19px; color: var(--cyan-300); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 34px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.13); }
.rating { display: flex; align-items: center; gap: 11px; }
.rating > span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.rating strong, .trust-stat strong { color: #fff; font-size: .95rem; }
.rating small { color: rgba(255,255,255,.59); font-size: .76rem; }
.stars { color: #ffc344; letter-spacing: .08em; white-space: nowrap; }
.trust-stat { display: flex; flex-direction: column; padding-left: 23px; border-left: 1px solid rgba(255,255,255,.15); line-height: 1.24; }
.trust-stat span { color: rgba(255,255,255,.58); font-size: .76rem; }

.lead-card { position: relative; padding: 24px; color: var(--ink-900); background: rgba(255,255,255,.985); border: 1px solid rgba(255,255,255,.65); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.lead-card::before { content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: linear-gradient(140deg, rgba(152,229,247,.55), rgba(255,255,255,.1), rgba(99,79,209,.25)); filter: blur(10px); opacity: .55; }
.lead-card-top { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.status-chip { display: inline-flex; align-items: center; gap: 7px; min-height: 30px; padding: 5px 10px; border-radius: 999px; color: #126c5b; background: #e8f8f3; font-size: .76rem; font-weight: 850; }
.status-chip span { width: 7px; height: 7px; border-radius: 50%; background: #2caf8e; }
.step-label { color: var(--ink-500); font-size: .77rem; font-weight: 800; }
.progress { width: 100%; height: 4px; margin-top: 13px; overflow: hidden; border-radius: 4px; background: #e6ebf3; }
.progress span { display: block; width: 50%; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--navy-900), var(--cyan-500)); transition: width .28s ease; }
.lead-card h2 { margin-top: 20px; color: var(--navy-900); font-size: clamp(1.7rem, 2.1vw, 2.08rem); font-weight: 900; }
.lead-intro { margin-top: 9px; color: var(--ink-500); font-size: .93rem; }
.lead-form { margin-top: 16px; }
.form-step[hidden] { display: none; }
.form-step.is-active { animation: formStep .24s ease both; }
@keyframes formStep { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: translateX(0); } }
.field { margin-bottom: 13px; }
.field label, .field-label { display: block; margin-bottom: 7px; color: var(--ink-900); font-size: .89rem; font-weight: 850; }
.field input, .field select {
  width: 100%; min-height: 52px; padding: 12px 14px;
  border: 1px solid #d9e0ea; border-radius: 13px;
  background: #f8fafc; color: var(--ink-900);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input:hover, .field select:hover { border-color: #c5cfdd; }
.field input:focus, .field select:focus { outline: 3px solid var(--focus); outline-offset: 2px; border-color: var(--focus); background: #fff; box-shadow: 0 0 0 5px rgba(20,108,148,.13); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #c84b55; box-shadow: 0 0 0 3px rgba(200,75,85,.09); }
.field input::placeholder { color: #98a3b5; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; padding-right: 42px; }
.select-wrap > svg { position: absolute; right: 14px; top: 50%; width: 18px; height: 18px; pointer-events: none; transform: translateY(-50%); fill: none; stroke: var(--ink-500); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; }
.choice { position: relative; margin: 0 !important; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: flex; min-height: 44px; align-items: center; justify-content: flex-start; gap: 8px; padding: 8px 10px; border: 1px solid #d9e0ea; border-radius: 12px; color: var(--ink-700); background: #f8fafc; font-size: .79rem; font-weight: 780; cursor: pointer; transition: .15s ease; }
.choice span:hover { border-color: #b9c6d8; background: #fff; }
.choice svg { width: 17px; height: 17px; flex: 0 0 auto; fill: none; stroke: var(--navy-700); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.choice input:checked + span { color: var(--navy-900); border-color: var(--cyan-500); background: var(--cyan-100); box-shadow: 0 0 0 3px rgba(60,170,211,.10); }
.choice input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 2px; }
.field-error { min-height: 0; margin-top: 5px; color: #af3542; font-size: .77rem; font-weight: 700; }
.field-error:not(:empty) { min-height: 18px; }
.form-reassurance { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 11px; color: var(--ink-500); font-size: .75rem; }
.form-reassurance svg { width: 16px; height: 16px; fill: none; stroke: var(--success); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.back-button { display: inline-flex; align-items: center; gap: 5px; margin: -2px 0 10px; padding: 4px 0; border: 0; color: var(--ink-500); background: none; font-size: .82rem; font-weight: 800; cursor: pointer; }
.back-button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin: 2px 0 0; color: var(--ink-500); font-size: .77rem; line-height: 1.5; }
.consent input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--navy-900); }
.consent a { color: var(--navy-700); text-decoration: underline; text-underline-offset: 2px; }
.form-meta { margin: 10px 4px 0; color: var(--ink-500); font-size: .73rem; text-align: center; line-height: 1.45; }
.form-status { display: none; margin-top: 14px; padding: 11px 13px; border-radius: 12px; font-size: .82rem; font-weight: 750; }
.form-status.is-visible { display: block; }
.form-status.is-success { color: #116553; background: #e8f8f3; }
.form-status.is-error { color: #a52d3a; background: #fff0f1; }
.form-status.is-info { color: var(--navy-800); background: #edf4ff; }
.lead-footer { display: flex; justify-content: center; gap: 17px; margin-top: 14px; padding-top: 13px; border-top: 1px solid #edf0f5; color: var(--ink-500); font-size: .70rem; }
.lead-footer span { display: flex; align-items: center; gap: 6px; }
.lead-footer svg { width: 15px; height: 15px; fill: none; stroke: var(--success); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.lead-card-top h2 { margin-top: 0; color: var(--navy-900); font-size: clamp(1.5rem, 1.9vw, 1.8rem); font-weight: 900; letter-spacing: -0.035em; }
.lead-assurance { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 12px 0 0; padding: 0; list-style: none; }
.lead-assurance li { display: flex; min-height: 30px; align-items: center; gap: 6px; padding: 5px 9px; border: 1px solid rgba(12,9,88,.09); border-radius: 11px; color: var(--ink-500); background: #f6f9fc; font-size: .70rem; font-weight: 650; line-height: 1.3; }
.lead-assurance strong { color: var(--navy-900); font-weight: 850; }
.lead-assurance svg { width: 14px; height: 14px; flex: 0 0 auto; fill: none; stroke: var(--cyan-500); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.choice-grid-vinculo .choice span { font-size: .77rem; }
.choice-grid-vinculo .choice:last-child { grid-column: 1 / -1; }
.field-range { padding: 12px 14px 11px; border: 1px solid rgba(12,9,88,.10); border-radius: 15px; background: linear-gradient(180deg,#f8fbfd,#f3f8fc); }
.range-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.range-head label { margin-bottom: 0; }
.range-value { color: var(--navy-900); font-size: 1.26rem; font-weight: 950; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
#valor { --fill: 7.07%; width: 100%; height: 26px; margin: 6px 0 0; padding: 0; border: 0; background: transparent; appearance: none; -webkit-appearance: none; cursor: pointer; }
#valor::-webkit-slider-runnable-track { height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--navy-800) 0%, var(--cyan-500) var(--fill), #e2e9f2 var(--fill)); }
#valor::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; margin-top: -8px; border: 3px solid var(--navy-900); border-radius: 50%; background: #fff; box-shadow: 0 4px 12px rgba(12,9,88,.28); transition: transform .15s ease; }
#valor:active::-webkit-slider-thumb { transform: scale(1.1); }
#valor::-moz-range-track { height: 8px; border-radius: 999px; background: #e2e9f2; }
#valor::-moz-range-progress { height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--navy-800), var(--cyan-500)); }
#valor::-moz-range-thumb { width: 19px; height: 19px; border: 3px solid var(--navy-900); border-radius: 50%; background: #fff; box-shadow: 0 4px 12px rgba(12,9,88,.28); }
#valor:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; border-radius: 999px; }

[hidden] { display: none !important; }

.analysis-summary {
  margin: 0 0 14px;
  padding: 13px;
  border: 1px solid rgba(60,170,211,.24);
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(229,248,253,.92), rgba(245,248,252,.96)),
    #f7fbfd;
  box-shadow: inset 0 1px rgba(255,255,255,.75);
}
.analysis-summary-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 11px; }
.analysis-summary-head span { color: var(--navy-900); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.analysis-summary-head small { color: var(--ink-500); font-size: .68rem; }
.analysis-summary dl { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; margin: 0; }
.analysis-summary dl > div { min-width: 0; padding: 10px; border: 1px solid rgba(12,9,88,.08); border-radius: 11px; background: rgba(255,255,255,.78); }
.analysis-summary dt { color: var(--ink-500); font-size: .63rem; font-weight: 800; text-transform: uppercase; letter-spacing: .055em; }
.analysis-summary dd { overflow: hidden; margin: 3px 0 0; color: var(--navy-900); font-size: .72rem; font-weight: 850; line-height: 1.28; text-overflow: ellipsis; }
.form-fallback { margin-top: 11px; }
.form-fallback[hidden] { display: none !important; }

.footer-link-button { padding: 0; border: 0; color: inherit; background: transparent; font: inherit; cursor: pointer; }
.footer-link-button:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 180;
  display: grid;
  width: min(1120px, calc(100% - 32px));
  grid-template-columns: minmax(0,1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 21px;
  color: #fff;
  background: linear-gradient(110deg, rgba(7,6,47,.985), rgba(12,9,88,.985) 58%, rgba(23,59,131,.97));
  box-shadow: 0 30px 80px rgba(5,5,38,.42);
  transform: translateX(-50%);
}
.cookie-banner-copy { display: flex; min-width: 0; align-items: center; gap: 14px; }
.cookie-banner-copy > div { min-width: 0; }
.cookie-banner-copy strong { display: block; font-size: .93rem; }
.cookie-banner-copy p { margin-top: 3px; color: rgba(255,255,255,.76); font-size: .78rem; line-height: 1.5; }
.cookie-banner-copy a { color: var(--cyan-300); text-decoration: underline; text-underline-offset: 2px; }
.cookie-icon { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; border-radius: 13px; color: var(--cyan-300); background: rgba(255,255,255,.09); }
.cookie-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cookie-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.cookie-button { min-height: 42px; padding: 9px 14px; border: 1px solid transparent; border-radius: 12px; font-weight: 850; cursor: pointer; }
.cookie-button-quiet { color: #fff; border-color: rgba(255,255,255,.20); background: rgba(255,255,255,.07); }
.cookie-button-quiet:hover { background: rgba(255,255,255,.13); }
.cookie-button-primary { color: var(--navy-950); background: linear-gradient(180deg,#77d8f1,var(--cyan-500)); box-shadow: 0 12px 26px rgba(60,170,211,.22); }

.cookie-dialog {
  width: min(650px, calc(100% - 28px));
  max-height: min(760px, calc(100dvh - 28px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(12,9,88,.12);
  border-radius: 24px;
  color: var(--ink-900);
  background: #fff;
  box-shadow: 0 38px 110px rgba(5,5,38,.45);
}
.cookie-dialog::backdrop { background: rgba(5,5,31,.68); }
.cookie-dialog[open] { animation: dialogIn .18s ease both; }
@keyframes dialogIn { from { opacity: 0; transform: translateY(8px) scale(.985); } to { opacity: 1; transform: none; } }
.cookie-dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 25px 25px 18px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg,#f7fbfe,#fff); }
.cookie-dialog-head span { color: var(--cyan-500); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.cookie-dialog-head h2 { max-width: 520px; margin-top: 6px; color: var(--navy-900); font-size: 1.55rem; }
.dialog-close { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 12px; color: var(--navy-900); background: #fff; font-size: 1.45rem; line-height: 1; cursor: pointer; }
.cookie-dialog-lead { padding: 18px 25px 4px; color: var(--ink-500); font-size: .86rem; }
.cookie-options { display: grid; gap: 10px; padding: 16px 25px 6px; }
.cookie-option { position: relative; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 18px; align-items: center; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: #f8fafc; cursor: pointer; }
.cookie-option strong { color: var(--navy-900); font-size: .9rem; }
.cookie-option p { margin-top: 3px; color: var(--ink-500); font-size: .76rem; line-height: 1.45; }
.cookie-option.is-required { cursor: default; }
.cookie-option.is-required > span { color: var(--success); font-size: .73rem; font-weight: 850; }
.cookie-option input { position: absolute; opacity: 0; }
.toggle { position: relative; width: 46px; height: 26px; border: 1px solid #b8c2d0; border-radius: 999px; background: #dbe1ea; transition: .16s ease; }
.toggle::after { content: ""; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 2px 7px rgba(12,9,88,.18); transition: .16s ease; }
.cookie-option input:checked + .toggle { border-color: var(--navy-900); background: var(--navy-900); }
.cookie-option input:checked + .toggle::after { transform: translateX(20px); }
.cookie-option input:focus-visible + .toggle { outline: 3px solid var(--focus); outline-offset: 3px; }
.cookie-dialog-actions { display: flex; justify-content: flex-end; padding: 18px 25px 25px; }
.dialog-fallback-open { overflow: hidden; }
.dialog-fallback-open .cookie-dialog[open] { position: fixed; inset: 14px; z-index: 250; }


.proof-bar { position: relative; z-index: 2; margin-top: -34px; }
.proof-bar-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); padding: 20px 23px; border: 1px solid var(--line); border-radius: 21px; background: rgba(255,255,255,.97); box-shadow: var(--shadow-md); }
.proof-item { display: flex; align-items: center; gap: 12px; padding: 4px 21px; border-right: 1px solid var(--line); }
.proof-item:first-child { padding-left: 5px; }
.proof-item:last-child { padding-right: 5px; border-right: 0; }
.proof-icon { display: grid; width: 41px; height: 41px; flex: 0 0 auto; place-items: center; border-radius: 12px; color: var(--navy-900); background: var(--cyan-100); }
.proof-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.proof-item > span:last-child { display: flex; flex-direction: column; line-height: 1.28; }
.proof-item strong { color: var(--navy-900); font-size: .83rem; }
.proof-item small { margin-top: 2px; color: var(--ink-500); font-size: .71rem; }

.section { padding: 104px 0; }
.section-soft { background: linear-gradient(180deg, #edf4fa 0%, #f6f9fc 100%); }
.section-heading { max-width: 740px; margin-bottom: 42px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-kicker { color: var(--cyan-500); }
.section-heading h2, .split-layout h2, .security h2, .faq h2 { margin-top: 12px; color: var(--navy-900); font-size: clamp(2.15rem, 3.2vw, 3.35rem); font-weight: 920; }
.section-heading p, .section-lead, .faq-heading > p { margin-top: 15px; color: var(--ink-500); font-size: 1.02rem; line-height: 1.72; }
.section-heading.light h2 { color: #fff; }
.section-heading.light p { color: rgba(255,255,255,.68); }

.route-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.route-card { position: relative; min-height: 325px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-xs); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.route-card:hover { transform: translateY(-5px); border-color: rgba(60,170,211,.35); box-shadow: var(--shadow-md); }
.route-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -54px; bottom: -54px; border-radius: 50%; background: rgba(60,170,211,.06); }
.route-number { position: absolute; right: 24px; top: 22px; color: rgba(12,9,88,.08); font-size: 3.1rem; font-weight: 950; line-height: 1; }
.route-icon { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 15px; color: var(--navy-900); background: var(--cyan-100); }
.route-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.route-card h3 { margin-top: 25px; color: var(--navy-900); font-size: 1.38rem; font-weight: 900; }
.route-card p { margin-top: 11px; color: var(--ink-500); font-size: .94rem; }
.route-featured { border-color: rgba(60,170,211,.45); box-shadow: 0 21px 50px rgba(12,9,88,.13); }
.route-badge { position: absolute; top: 0; left: 30px; padding: 6px 10px; border-radius: 0 0 9px 9px; color: #fff; background: var(--navy-900); font-size: .67rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.route-featured .route-icon { margin-top: 8px; }
.text-button, .text-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 21px; padding: 0; border: 0; color: var(--navy-800); background: transparent; font-weight: 850; cursor: pointer; }
.text-button svg, .text-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .15s ease; }
.text-button:hover svg, .text-link:hover svg { transform: translateX(3px); }

.split-layout { display: grid; grid-template-columns: minmax(0, .94fr) minmax(400px, .82fr); gap: clamp(55px, 8vw, 100px); align-items: center; }
.why-copy { max-width: 600px; }
.benefit-list { display: grid; gap: 22px; margin: 31px 0 34px; padding: 0; list-style: none; }
.benefit-list li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; }
.benefit-list > li > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; color: #fff; background: var(--navy-900); }
.benefit-list svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.benefit-list strong { display: block; color: var(--navy-900); font-size: 1rem; }
.benefit-list p { margin-top: 3px; color: var(--ink-500); font-size: .9rem; }
.trust-panel { padding: 28px; border: 1px solid rgba(12,9,88,.12); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-md); }
.trust-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 19px; border-bottom: 1px solid var(--line); color: var(--navy-900); font-size: .86rem; font-weight: 850; }
.live-chip { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; border-radius: 999px; color: #126c5b; background: #e8f8f3; font-size: .68rem; }
.live-chip span { width: 7px; height: 7px; border-radius: 50%; background: #2caf8e; }
.trust-panel-score { display: grid; grid-template-columns: auto 1fr; gap: 17px; align-items: center; padding: 25px 0; }
.big-score { color: var(--navy-900); font-size: 3.6rem; font-weight: 950; line-height: 1; letter-spacing: -.06em; }
.trust-panel-score > div { display: flex; flex-direction: column; line-height: 1.35; }
.trust-panel-score .stars { font-size: .9rem; }
.trust-panel-score strong { color: var(--ink-700); font-size: .85rem; }
.trust-panel-score a { margin-top: 2px; color: var(--navy-700); font-size: .74rem; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.institution-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.institution-grid > div { min-height: 90px; padding: 15px; border-radius: 14px; background: #f5f8fc; }
.institution-grid span { display: block; color: var(--ink-500); font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; }
.institution-grid strong { display: block; margin-top: 7px; color: var(--navy-900); font-size: .82rem; line-height: 1.35; }
.proof-note { margin-top: 14px; color: var(--ink-500); font-size: .71rem; line-height: 1.55; }

.process { position: relative; overflow: hidden; color: #fff; background: linear-gradient(128deg, var(--navy-950), var(--navy-900) 52%, #173b83); }
.process::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle at 15% 20%, rgba(97,199,232,.45), transparent 23%), radial-gradient(circle at 90% 80%, rgba(97,199,232,.30), transparent 20%); }
.process .container { position: relative; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 17px; margin: 0; padding: 0; list-style: none; }
.process-grid::before { content: ""; position: absolute; left: 15%; right: 15%; top: 31px; height: 1px; background: linear-gradient(90deg, transparent, rgba(152,229,247,.45), transparent); }
.process-grid li { position: relative; min-height: 210px; padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.065); backdrop-filter: blur(8px); }
.process-number { display: grid; width: 63px; height: 63px; place-items: center; border: 1px solid rgba(152,229,247,.32); border-radius: 50%; color: var(--cyan-300); background: rgba(60,170,211,.13); font-size: 1.35rem; font-weight: 900; box-shadow: 0 0 0 8px rgba(60,170,211,.035); }
.process-grid h3 { margin-top: 25px; color: #fff; font-size: 1.2rem; }
.process-grid p { margin-top: 8px; color: rgba(255,255,255,.66); font-size: .9rem; }
.process-cta { display: flex; align-items: center; justify-content: center; gap: 19px; margin-top: 34px; }
.process-cta > span { color: rgba(255,255,255,.52); font-size: .76rem; }

.security-grid { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1fr); gap: clamp(50px, 8vw, 105px); align-items: center; }
.security-visual { position: relative; display: grid; min-height: 390px; place-items: center; overflow: hidden; border: 1px solid rgba(12,9,88,.09); border-radius: var(--radius-lg); background: radial-gradient(circle at center, rgba(60,170,211,.16), transparent 42%), linear-gradient(145deg, #f4f9fd, #e7f1f9); }
.security-visual::before, .security-visual::after { content: ""; position: absolute; border: 1px solid rgba(12,9,88,.08); border-radius: 50%; }
.security-visual::before { width: 270px; height: 270px; }
.security-visual::after { width: 350px; height: 350px; }
.shield-wrap { position: relative; z-index: 2; display: grid; width: 135px; height: 135px; place-items: center; border-radius: 38px; color: #fff; background: linear-gradient(145deg, var(--navy-700), var(--navy-950)); box-shadow: 0 30px 65px rgba(12,9,88,.28); transform: rotate(4deg); }
.shield-wrap svg { width: 74px; height: 74px; fill: none; stroke: var(--cyan-300); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; transform: rotate(-4deg); }
.security-line { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, rgba(60,170,211,.7), transparent); }
.line-a { width: 360px; transform: rotate(18deg); }
.line-b { width: 340px; transform: rotate(-24deg); }
.line-c { width: 300px; transform: rotate(72deg); }
.warning-card { display: grid; grid-template-columns: 41px 1fr; gap: 14px; margin-top: 27px; padding: 18px; border: 1px solid rgba(184,97,24,.18); border-radius: 15px; background: #fff7ec; }
.warning-card > svg { width: 31px; height: 31px; fill: none; stroke: var(--warning); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.warning-card strong { color: #8e4b17; }
.warning-card p { margin-top: 3px; color: #76553c; font-size: .86rem; }
.warning-card a { font-weight: 850; text-decoration: underline; text-underline-offset: 2px; }
.official-channels { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-top: 17px; }
.official-channels a { display: flex; align-items: center; gap: 11px; min-width: 0; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: #fff; transition: border-color .15s ease, box-shadow .15s ease; }
.official-channels a:hover { border-color: rgba(60,170,211,.45); box-shadow: var(--shadow-xs); }
.official-channels a > span { display: grid; width: 37px; height: 37px; flex: 0 0 auto; place-items: center; border-radius: 11px; color: var(--navy-900); background: var(--cyan-100); }
.official-channels svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.official-channels div { min-width: 0; }
.official-channels small { display: block; color: var(--ink-500); font-size: .67rem; }
.official-channels strong { display: block; overflow: hidden; color: var(--navy-900); font-size: .76rem; text-overflow: ellipsis; white-space: nowrap; }

.faq-layout { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1fr); gap: clamp(50px, 8vw, 105px); align-items: start; }
.faq-heading { position: sticky; top: calc(var(--header-height) + 28px); }
.faq-heading .text-link { margin-top: 25px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: var(--shadow-xs); }
.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 67px; padding: 18px 20px; color: var(--navy-900); font-weight: 850; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 20px; height: 20px; flex: 0 0 auto; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 13px; height: 2px; border-radius: 2px; background: var(--cyan-500); transform: translate(-50%,-50%); transition: transform .18s ease; }
.faq-list summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
.faq-list details p { padding: 0 20px 19px; color: var(--ink-500); font-size: .9rem; }

.final-cta { padding: 70px 0; color: #fff; background: linear-gradient(110deg, var(--navy-950), var(--navy-900) 55%, #173b83); }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.final-cta h2 { max-width: 730px; margin-top: 11px; color: #fff; font-size: clamp(2rem,3vw,3rem); }
.final-cta p { margin-top: 10px; color: rgba(255,255,255,.65); }
.site-footer { padding: 58px 0 0; color: rgba(255,255,255,.70); background: #060526; }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3,1fr); gap: 45px; }
.footer-brand img { width: 125px; height: auto; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { max-width: 300px; margin-top: 15px; font-size: .81rem; }
.site-footer h2 { color: #fff; font-size: .87rem; letter-spacing: 0; }
.site-footer p { margin-top: 13px; font-size: .8rem; line-height: 1.75; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { margin-top: 43px; padding: 21px 0 25px; border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom p { margin: 0; font-size: .73rem; }

.mobile-sticky { display: none; }
.noscript { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 200; padding: 14px; border-radius: 12px; background: #fff4d9; color: #543f19; box-shadow: var(--shadow-md); text-align: center; }

@supports (content-visibility: auto) {
  .routes, .section-soft, .process, .security, .faq, .final-cta, .site-footer { content-visibility: auto; contain-intrinsic-size: 900px; }
}

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr minmax(365px,.78fr); gap: 38px; }
  .hero h1 { font-size: clamp(2.45rem,4.4vw,3.5rem); }
  .proof-bar-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .proof-item { padding: 10px 18px; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split-layout { gap: 45px; }
}

@media (max-width: 820px) {
  :root { --header-height: 84px; --header-height-condensed: 68px; }
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { height: var(--header-height); background: rgba(255,255,255,.98); backdrop-filter: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-proof { display: none; }
  .brand img { height: 52px; }
  .site-header.is-condensed .brand img { height: 42px; }
  .hero { min-height: auto; padding: 48px 0 74px; }
  .hero-grid, .split-layout, .security-grid, .faq-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .hero h1 { max-width: 20ch; }
  .lead-card { width: min(100%, 560px); margin-inline: auto; }
  .proof-bar { margin-top: -26px; }
  .route-grid, .process-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 0; }
  .process-grid::before { display: none; }
  .process-grid li { min-height: 0; }
  .trust-panel { width: min(100%, 620px); }
  .security-visual { min-height: 310px; order: 2; }
  .faq-heading { position: static; }
  .final-cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 580px) {
  body { padding-bottom: 80px; }
  .header-cta { display: none; }
  .header-inner { display: flex; justify-content: center; }
  .hero { padding-top: 38px; }
  .hero h1 { margin-top: 14px; font-size: clamp(2.05rem,9.6vw,2.75rem); }
  .hero-lead { margin-top: 17px; font-size: 1rem; }
  .hero-bullets { display: grid; gap: 9px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 15px; }
  .rating { width: 100%; }
  .trust-stat { padding-left: 0; padding-right: 15px; border-left: 0; border-right: 1px solid rgba(255,255,255,.15); }
  .trust-stat:last-child { border-right: 0; }
  .lead-card { padding: 21px 17px; border-radius: 25px; }
  .lead-card h2 { font-size: 1.65rem; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .choice span { min-height: 48px; font-size: .75rem; }
  .lead-footer { gap: 8px; justify-content: space-between; }
  .proof-bar-grid { grid-template-columns: 1fr; padding: 9px 17px; }
  .proof-item, .proof-item:first-child, .proof-item:last-child { padding: 13px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2, .split-layout h2, .security h2, .faq h2 { font-size: 2.05rem; }
  .route-card { padding: 25px; }
  .institution-grid { grid-template-columns: 1fr; }
  .process-cta { align-items: stretch; flex-direction: column; text-align: center; }
  .process-cta .button { width: 100%; }
  .official-channels { grid-template-columns: 1fr; }
  .security-visual { min-height: 270px; }
  .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .analysis-summary dl { grid-template-columns: 1fr; }
  .analysis-summary dl > div { display: grid; grid-template-columns: 72px 1fr; align-items: center; }
  .analysis-summary dd { margin-top: 0; }
  .cookie-banner { bottom: 10px; width: calc(100% - 20px); grid-template-columns: 1fr; gap: 14px; padding: 16px; border-radius: 18px; }
  .cookie-banner-copy { align-items: flex-start; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .cookie-button-primary { grid-column: 1 / -1; }
  .cookie-dialog-head, .cookie-options, .cookie-dialog-actions { padding-left: 18px; padding-right: 18px; }
  .cookie-dialog-lead { padding-left: 18px; padding-right: 18px; }
  .cookie-option { gap: 12px; padding: 14px; }
  .mobile-sticky { position: fixed; left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); z-index: 90; display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 14px; padding: 9px 9px 9px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 17px; color: #fff; background: #09073c; box-shadow: 0 18px 38px rgba(6,5,38,.30); backdrop-filter: none; transition: transform .25s ease; }
  .mobile-sticky > div { display: flex; flex-direction: column; line-height: 1.25; }
  .mobile-sticky strong { font-size: .82rem; }
  .mobile-sticky span { color: rgba(255,255,255,.58); font-size: .67rem; }
}

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

@media (prefers-reduced-transparency: reduce) {
  .site-header, .button-ghost, .process-grid li, .mobile-sticky { backdrop-filter: none !important; }
}

/* ============================================================
   Atenção guiada: seleção de vínculo -> botão Continuar
   ============================================================ */
.field-guided { position: relative; }
.pick-flag {
  display: inline-flex; align-items: center; gap: 5px; margin-left: 9px; padding: 2px 9px;
  border-radius: 999px; background: linear-gradient(180deg,#eaf7fd,#d5eefa); color: var(--navy-800);
  font-size: .63rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase;
  opacity: 0; transform: translateY(-3px); transition: opacity .28s ease, transform .28s ease;
}
.pick-flag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-500); }
.field-guided.needs-pick .pick-flag { opacity: 1; transform: none; animation: gm-flag 2.4s ease-in-out infinite; }
@keyframes gm-flag {
  0%, 100% { box-shadow: 0 0 0 0 rgba(60,170,211,.42); }
  55%      { box-shadow: 0 0 0 7px rgba(60,170,211,0); }
}

.choice-grid-vinculo { position: relative; margin: -7px; padding: 7px; border-radius: 18px; }
.field-guided.needs-pick .choice-grid-vinculo { animation: gm-halo 2.7s ease-in-out infinite; }
@keyframes gm-halo {
  0%   { box-shadow: 0 0 0 0 rgba(60,170,211,0), inset 0 0 0 1px rgba(60,170,211,0); }
  38%  { box-shadow: 0 0 0 7px rgba(60,170,211,.11), inset 0 0 0 1px rgba(60,170,211,.34); }
  100% { box-shadow: 0 0 0 15px rgba(60,170,211,0), inset 0 0 0 1px rgba(60,170,211,0); }
}
.choice span { position: relative; }
.field-guided.needs-pick .choice span { overflow: hidden; }
.field-guided.needs-pick .choice span::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(104deg, transparent 36%, rgba(60,170,211,.22) 50%, transparent 64%);
  transform: translateX(-125%);
  animation: gm-sheen 2.7s ease-in-out infinite;
}
@keyframes gm-sheen {
  0%        { transform: translateX(-125%); }
  42%, 100% { transform: translateX(125%); }
}
.field-guided.needs-pick .choice:nth-child(1) span::after { animation-delay: 0s; }
.field-guided.needs-pick .choice:nth-child(2) span::after { animation-delay: .09s; }
.field-guided.needs-pick .choice:nth-child(3) span::after { animation-delay: .18s; }
.field-guided.needs-pick .choice:nth-child(4) span::after { animation-delay: .27s; }
.field-guided.needs-pick .choice:nth-child(5) span::after { animation-delay: .36s; }
.field-guided.needs-pick .choice:nth-child(6) span::after { animation-delay: .45s; }
.field-guided.needs-pick .choice:nth-child(7) span::after { animation-delay: .54s; }
.field-guided.needs-pick .choice span:hover::after,
.field-guided.needs-pick .choice input:focus-visible + span::after { animation-play-state: paused; }
.choice.just-picked span { animation: gm-pop .52s cubic-bezier(.2,.9,.3,1.2); }
@keyframes gm-pop { 0% { transform: scale(1); } 42% { transform: scale(1.05); } 100% { transform: scale(1); } }

#next-step { position: relative; overflow: hidden; }
#next-step.is-ready { animation: gm-cta 2.4s ease-in-out infinite; }
@keyframes gm-cta {
  0%, 100% { box-shadow: 0 15px 34px rgba(60,170,211,.28), 0 0 0 0 rgba(60,170,211,.42), inset 0 1px rgba(255,255,255,.55); }
  55%      { box-shadow: 0 19px 42px rgba(60,170,211,.34), 0 0 0 10px rgba(60,170,211,0), inset 0 1px rgba(255,255,255,.55); }
}
#next-step.is-ready svg { animation: gm-nudge 1.7s ease-in-out infinite; }
@keyframes gm-nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(3px); } }
#next-step.is-ready::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(104deg, transparent 38%, rgba(255,255,255,.44) 50%, transparent 62%);
  transform: translateX(-125%);
  animation: gm-sheen 2.4s ease-in-out infinite;
}

/* ============================================================
   Enquadramento regulatório
   ============================================================ */
.regulatory { border-top: 1px solid var(--line); background: linear-gradient(180deg, #ffffff, #f6fafd); }
.reg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 34px; }
.reg-card { position: relative; padding: 21px 19px 19px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-xs); }
.reg-card::before { content: ""; position: absolute; inset: 20px auto 20px 0; width: 3px; border-radius: 0 3px 3px 0; background: linear-gradient(180deg, var(--navy-800), var(--cyan-500)); }
.reg-eyebrow { display: block; padding-left: 15px; color: var(--cyan-500); font-size: .65rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.reg-card h3 { margin: 7px 0 0; padding-left: 15px; color: var(--navy-900); font-size: 1rem; font-weight: 880; letter-spacing: -.02em; }
.reg-card p { margin: 8px 0 0; padding-left: 15px; color: var(--ink-700); font-size: .845rem; line-height: 1.6; }
.reg-refs { display: flex; flex-wrap: wrap; gap: 5px; margin: 14px 0 0; padding: 0 0 0 15px; list-style: none; }
.reg-refs li { padding: 3px 8px; border: 1px solid rgba(12,9,88,.12); border-radius: 8px; background: var(--surface-soft); color: var(--navy-800); font-size: .665rem; font-weight: 780; font-variant-numeric: tabular-nums; }
.reg-note { display: flex; gap: 13px; margin-top: 20px; padding: 17px 19px; border: 1px solid rgba(60,170,211,.24); border-radius: var(--radius-sm); background: #f1fafd; }
.reg-note svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 1px; fill: none; stroke: var(--cyan-500); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.reg-note p { margin: 0; color: var(--ink-700); font-size: .855rem; line-height: 1.66; }
.reg-note strong { color: var(--navy-900); }
.reg-details { margin-top: 13px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.reg-details summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 18px; color: var(--navy-800); font-size: .84rem; font-weight: 820; cursor: pointer; list-style: none; }
.reg-details summary::-webkit-details-marker { display: none; }
.reg-details summary::after { content: "+"; color: var(--cyan-500); font-size: 1.1rem; font-weight: 700; }
.reg-details[open] summary::after { content: "\2013"; }
.reg-details summary:focus-visible { outline: 3px solid var(--focus); outline-offset: -3px; border-radius: var(--radius-sm); }
.reg-body { padding: 0 18px 17px; }
.reg-body p { margin: 0 0 9px; color: var(--ink-500); font-size: .79rem; line-height: 1.72; }
.reg-body p:last-child { margin-bottom: 0; }
.reg-body strong { color: var(--navy-800); }

@media (max-width: 980px) { .reg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .reg-grid { grid-template-columns: 1fr; }
  .field-guided.needs-pick .choice-grid-vinculo { animation-name: gm-halo-sm; }
  @keyframes gm-halo-sm {
    0%   { box-shadow: 0 0 0 0 rgba(60,170,211,0), inset 0 0 0 1px rgba(60,170,211,0); }
    38%  { box-shadow: 0 0 0 5px rgba(60,170,211,.12), inset 0 0 0 1px rgba(60,170,211,.34); }
    100% { box-shadow: 0 0 0 10px rgba(60,170,211,0), inset 0 0 0 1px rgba(60,170,211,0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .field-guided.needs-pick .choice-grid-vinculo { animation: none; box-shadow: 0 0 0 3px rgba(60,170,211,.20), inset 0 0 0 1px rgba(60,170,211,.40); }
  .field-guided.needs-pick .choice span::after { display: none; }
  .field-guided.needs-pick .pick-flag { animation: none; opacity: 1; transform: none; }
  .choice.just-picked span { animation: none; }
  #next-step.is-ready { animation: none; box-shadow: 0 0 0 3px rgba(60,170,211,.42), 0 15px 34px rgba(60,170,211,.28); }
  #next-step.is-ready svg { animation: none; }
  #next-step.is-ready::after { display: none; }
  .site-header, .brand img { transition: none; }
}

/* ============================================================
   V4.5 — selo institucional, contatos, modais e WhatsApp
   ============================================================ */
.header-seal { justify-self: center; text-align: center; line-height: 1.14; }
.seal-pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; border: 1px solid rgba(60,170,211,.34); border-radius: 999px; background: var(--cyan-100); color: var(--navy-800); font-size: .81rem; font-weight: 830; white-space: nowrap; }
.seal-pill svg { width: 16px; height: 16px; flex: 0 0 auto; fill: none; stroke: var(--cyan-500); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.seal-ref { display: block; margin-top: 5px; color: var(--ink-500); font-size: .655rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.contact-wrap { position: relative; }
.contact-trigger { display: inline-flex; align-items: center; gap: 7px; min-height: 44px; padding: 10px 14px; border: 1px solid var(--line-strong); border-radius: 13px; background: #fff; color: var(--navy-900); font-family: inherit; font-size: .85rem; font-weight: 800; cursor: pointer; transition: .18s ease; }
.contact-trigger:hover { border-color: var(--cyan-500); background: var(--surface-soft); }
.contact-trigger svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-trigger .chev { width: 14px; height: 14px; stroke: var(--ink-500); transition: transform .2s ease; }
.contact-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }

.contact-menu { position: absolute; top: calc(100% + 10px); right: 0; z-index: 130; width: min(92vw, 340px); padding: 7px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-md); opacity: 0; transform: translateY(-6px); visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.contact-menu.is-open { opacity: 1; transform: none; visibility: visible; }
.contact-row { display: flex; align-items: center; gap: 11px; padding: 11px 12px; border-radius: 13px; }
.contact-row + .contact-row { border-top: 1px solid var(--line); border-radius: 0; }
.contact-ico { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; flex: 0 0 auto; border-radius: 11px; background: var(--surface-soft); }
.contact-ico svg { width: 19px; height: 19px; fill: none; stroke: var(--navy-800); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.contact-ico.wa { background: #e6f6ee; }
.contact-ico.wa svg { stroke: #16866f; }
.contact-txt { flex: 1; min-width: 0; line-height: 1.3; }
.contact-txt strong { display: block; color: var(--navy-900); font-size: .87rem; font-weight: 830; }
.contact-txt small { display: block; color: var(--ink-500); font-size: .76rem; }
.contact-acts { display: flex; gap: 6px; flex: 0 0 auto; }
.contact-act { padding: 7px 11px; border: 1px solid var(--line-strong); border-radius: 10px; background: #fff; color: var(--navy-800); font-family: inherit; font-size: .74rem; font-weight: 820; text-decoration: none; cursor: pointer; transition: .15s ease; }
.contact-act:hover { border-color: var(--cyan-500); background: var(--surface-soft); }
.contact-foot { margin: 7px 12px 4px; padding-top: 11px; border-top: 1px solid var(--line); color: var(--ink-500); font-size: .745rem; line-height: 1.5; }
.contact-foot strong { color: var(--navy-800); }

.gm-dialog { width: min(94vw, 424px); padding: 0; border: 0; border-radius: 26px; background: var(--surface); box-shadow: var(--shadow-lg); color: inherit; }
.gm-dialog::backdrop { background: rgba(7,6,47,.55); backdrop-filter: blur(3px); }
.gmm { padding: 25px 27px 23px; }
.gmm-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.gmm-tag { display: inline-block; padding: 5px 12px; border-radius: 999px; background: var(--cyan-100); color: var(--navy-800); font-size: .67rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.gmm-x { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; flex: 0 0 auto; border: 0; border-radius: 11px; background: none; color: var(--ink-500); cursor: pointer; transition: .15s ease; }
.gmm-x:hover { background: var(--surface-soft); color: var(--navy-900); }
.gmm-x svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.gmm h2 { margin: 11px 0 0; color: var(--navy-900); font-size: 1.6rem; font-weight: 930; letter-spacing: -.035em; line-height: 1.12; }
.gmm-lead { margin: 8px 0 19px; color: var(--ink-700); font-size: .875rem; line-height: 1.6; }
.gmm-field { margin-bottom: 14px; }
.gmm-field label, .gmm-lbl { display: flex; align-items: center; gap: 9px; margin-bottom: 6px; color: var(--ink-700); font-size: .82rem; font-weight: 760; }
.gmm-opt { padding: 2px 9px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-soft); color: var(--ink-500); font-size: .635rem; font-weight: 850; letter-spacing: .07em; }
.gmm-field input { width: 100%; min-height: 50px; padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: 14px; background: #fff; color: var(--ink-900); font-family: inherit; font-size: .95rem; transition: .15s ease; }
.gmm-field input::placeholder { color: #9aa6b8; }
.gmm-field input:hover { border-color: #b6c3d6; }
.gmm-field input:focus { border-color: var(--cyan-500); box-shadow: 0 0 0 3px rgba(60,170,211,.16); outline: 0; }
.gmm-field input[aria-invalid="true"] { border-color: #a52d3a; box-shadow: 0 0 0 3px rgba(165,45,58,.12); }
.gmm-err { min-height: 0; margin-top: 5px; color: #a52d3a; font-size: .76rem; font-weight: 700; }
.gmm-err:not(:empty) { min-height: 18px; }
.gmm-hint { display: flex; gap: 10px; margin: -3px 0 18px; padding: 12px 14px; border-radius: 13px; background: var(--cyan-100); }
.gmm-hint svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; fill: none; stroke: var(--cyan-500); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.gmm-hint p { margin: 0; color: var(--navy-800); font-size: .785rem; line-height: 1.55; }
.gmm-foot { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line); }
.gmm-foot span { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-500); font-size: .735rem; }
.gmm-foot svg { width: 15px; height: 15px; fill: none; stroke: var(--success); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.gmm-bar { height: 4px; margin: 14px 0 18px; border-radius: 3px; background: var(--surface-soft); overflow: hidden; }
.gmm-bar i { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--navy-800), var(--cyan-500)); transition: width .35s cubic-bezier(.22,.61,.36,1); }
.gmm-step[hidden] { display: none; }
.gmm-list { display: grid; gap: 7px; }
.gmm-pick { display: flex; width: 100%; align-items: center; gap: 10px; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 14px; background: #fff; color: var(--ink-700); font-family: inherit; font-size: .87rem; font-weight: 780; text-align: left; cursor: pointer; transition: .15s ease; }
.gmm-pick:hover { border-color: #b6c3d6; background: var(--surface-soft); }
.gmm-pick[aria-pressed="true"] { border-color: var(--cyan-500); background: var(--cyan-100); color: var(--navy-900); box-shadow: 0 0 0 3px rgba(60,170,211,.12); }
.gmm-pick svg { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: var(--navy-700); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.gmm-pick.other { border-style: dashed; }
.gmm-back { display: inline-flex; align-items: center; gap: 6px; margin: 0 0 12px; padding: 5px 0; border: 0; background: none; color: var(--ink-500); font-family: inherit; font-size: .82rem; font-weight: 800; cursor: pointer; }
.gmm-back svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.gmm-recap { margin: -8px 0 16px; color: var(--ink-500); font-size: .8rem; }
.gmm-recap strong { color: var(--navy-800); }
.gmm-skip { display: block; width: 100%; margin-top: 9px; padding: 11px; border: 1px solid var(--line-strong); border-radius: 14px; background: #fff; color: var(--ink-500); font-family: inherit; font-size: .85rem; font-weight: 780; cursor: pointer; }
.gmm-skip:hover { background: var(--surface-soft); }
.gmm-done { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 6px 0 2px; }
.gmm-mark { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; margin-bottom: 14px; border-radius: 50%; background: #e6f6ee; }
.gmm-mark svg { width: 28px; height: 28px; fill: none; stroke: var(--success); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.gmm-num { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-soft); }
.gmm-num strong { color: var(--navy-900); font-size: .93rem; font-weight: 860; font-variant-numeric: tabular-nums; }
.gmm-num button { padding: 8px 13px; border: 1px solid var(--line-strong); border-radius: 11px; background: #fff; color: var(--navy-800); font-family: inherit; font-size: .78rem; font-weight: 820; cursor: pointer; }
.gmm-opts { display: grid; gap: 9px; }

.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 88; display: inline-flex; align-items: center; gap: 9px; padding: 13px 19px 13px 16px; border: 0; border-radius: 999px; background: #1fa855; color: #fff; font-family: inherit; font-size: .87rem; font-weight: 820; cursor: pointer; box-shadow: 0 16px 34px rgba(31,168,85,.30); transition: transform .2s ease, box-shadow .2s ease, bottom .3s ease; }
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(31,168,85,.38); }
.wa-float svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
body.has-cookie-banner .wa-float { bottom: 132px; }
.sticky-wa { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.22); border-radius: 13px; background: rgba(255,255,255,.10); color: #7ce6a4; cursor: pointer; }
.sticky-wa svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.gm-toast { position: fixed; left: 50%; bottom: 104px; z-index: 200; display: flex; align-items: center; gap: 9px; padding: 13px 18px; border-radius: 14px; background: var(--navy-900); color: #fff; font-size: .85rem; font-weight: 760; box-shadow: var(--shadow-md); opacity: 0; transform: translate(-50%, 14px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.gm-toast.is-open { opacity: 1; transform: translate(-50%, 0); }
.gm-toast svg { width: 17px; height: 17px; fill: none; stroke: #7ce6a4; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 820px) {
  .header-seal { display: none; }
  .contact-trigger span { display: none; }
  .contact-trigger { padding: 10px 12px; }
  .wa-float { display: none; }
}
@media (max-width: 580px) {
  .gmm { padding: 21px 19px 19px; }
  .gmm h2 { font-size: 1.42rem; }
}
@media (prefers-reduced-motion: reduce) {
  .contact-menu, .gmm-bar i, .wa-float, .gm-toast { transition: none; }
}

/* Legal pages */
.legal-body { min-height: 100vh; background: radial-gradient(circle at 85% 0%, rgba(60,170,211,.11), transparent 30%), #f4f7fb; }
.legal-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); }
.legal-header-inner { display: flex; width: min(100% - 32px, 980px); min-height: 70px; margin-inline: auto; align-items: center; justify-content: space-between; gap: 20px; }
.legal-header img { width: 106px; height: auto; }
.legal-page { padding: 54px 16px 90px; }
.legal-container { width: min(100%, 820px); margin-inline: auto; padding: clamp(28px,5vw,58px); border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-md); }
.back-link { display: inline-flex; margin-bottom: 24px; color: var(--navy-700); font-size: .84rem; font-weight: 850; }
.back-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.legal-kicker { color: var(--cyan-500); font-size: .74rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.legal-container h1 { margin-top: 10px; color: var(--navy-900); font-size: clamp(2.2rem,5vw,3.6rem); font-weight: 930; }
.legal-updated { margin-top: 12px !important; color: var(--ink-500) !important; font-size: .82rem !important; }
.legal-container > p, .legal-container li { color: var(--ink-700); font-size: .96rem; line-height: 1.78; }
.legal-container > p { margin-top: 17px; }
.legal-container h2 { margin-top: 38px; color: var(--navy-900); font-size: 1.32rem; letter-spacing: -.025em; }
.legal-container ul { display: grid; gap: 8px; margin: 15px 0 0; padding-left: 22px; }
.legal-container a:not(.back-link):not(.button) { color: var(--navy-700); font-weight: 750; text-decoration: underline; text-underline-offset: 2px; }
.legal-container code { padding: 2px 6px; border: 1px solid var(--line); border-radius: 6px; color: var(--navy-900); background: var(--surface-soft); font-size: .84em; }
.legal-summary { margin: 28px 0 4px; padding: 20px; border: 1px solid rgba(60,170,211,.25); border-radius: 17px; background: linear-gradient(135deg,#eef9fd,#f8fbfd); }
.legal-summary strong, .legal-notice strong { color: var(--navy-900); }
.legal-summary p, .legal-notice p { margin-top: 6px; color: var(--ink-700); font-size: .88rem; line-height: 1.65; }
.legal-notice { margin-top: 42px; padding: 18px; border: 1px solid rgba(184,97,24,.20); border-radius: 15px; background: #fff7ec; }

@media (max-width: 580px) {
  .legal-header-inner { min-height: 62px; }
  .legal-header .button { min-height: 40px; padding: 8px 12px; font-size: .78rem; }
  .legal-page { padding: 24px 10px 60px; }
  .legal-container { padding: 25px 20px; border-radius: 21px; }
  .legal-container h2 { margin-top: 31px; }
}
.toggle-control { position: relative; display: inline-flex; cursor: pointer; }
