/* ===========================================================
   Tracefy — site público
   Paleta oficial do produto (DESIGN.md do Tracefy Disparos)
   =========================================================== */

:root {
  /* Marca */
  --navy:        #0D3C7B;
  --navy-600:    #0A2F61;
  --navy-800:    #072243;
  --navy-900:    #04162C;
  --tint:        #EAF1FA;

  /* Menta — o acento da marca */
  --mint:        #9AFFAA;
  --mint-500:    #5CE97A;
  --mint-ink:    #0F7A2E;
  --mint-bg:     #E9FDEE;

  /* Neutros */
  --white:       #FFFEFF;
  --canvas:      #F6F8FB;
  --surface:     #EFF2F7;
  --border:      #E4E8EF;
  --border-2:    #D5DBE5;
  --ink:         #0F1A2A;
  --ink-muted:   #64748B;
  --ink-faint:   #93A1B5;

  /* Semânticos */
  --warning:     #F5A623;
  --warning-bg:  #FEF4E4;
  --warning-ink: #9A6206;
  --danger:      #C4373C;

  /* Forma */
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15,26,42,.06), 0 1px 3px rgba(15,26,42,.05);
  --shadow:    0 4px 6px -1px rgba(15,26,42,.07), 0 2px 4px -2px rgba(15,26,42,.05);
  --shadow-lg: 0 12px 24px -6px rgba(15,26,42,.12), 0 4px 8px -4px rgba(15,26,42,.06);
  --shadow-xl: 0 28px 60px -12px rgba(15,26,42,.22);

  --shell: 1200px;
  --font: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --ease: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
[id] { scroll-margin-top: 88px; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv02","cv03","cv04","cv11";
}

img, svg { max-width: 100%; display: block; }
a { color: var(--navy); text-underline-offset: 2px; }

h1,h2,h3,h4 { margin: 0; font-weight: 700; letter-spacing: -0.028em; line-height: 1.1; text-wrap: balance; }
.lead, .card p, .flow-item p { text-wrap: pretty; }

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

/* ---------- Tipografia utilitária ---------- */

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .01em;
  padding: 7px 14px 7px 10px; border-radius: var(--pill);
  background: var(--tint); color: var(--navy);
  border: 1px solid rgba(13,60,123,.12);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint-500); box-shadow: 0 0 0 3px rgba(92,233,122,.25); }
.eyebrow-dark { background: rgba(255,255,255,.10); color: #DCE9FA; border-color: rgba(255,255,255,.18); }

h2.title { font-size: clamp(30px, 4vw, 46px); }
.lead { font-size: 18px; line-height: 1.62; color: var(--ink-muted); margin: 16px 0 0; max-width: 62ch; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head .eyebrow { margin-bottom: 20px; }
.center { margin-left: auto; margin-right: auto; text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

section { padding: 96px 0; }
.band-canvas { background: var(--canvas); }

/* ---------- Botões ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-size: 15.5px; font-weight: 600;
  padding: 13px 24px; border-radius: var(--r-sm);
  border: 1px solid transparent; text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s, box-shadow .18s, border-color .18s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--navy-600); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-mint { background: var(--mint); color: var(--navy-900); }
.btn-mint:hover { background: var(--mint-500); transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(92,233,122,.6); }
.btn-ghost { background: var(--white); color: var(--ink); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-1px); }
.btn-on-dark { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.24); }
.btn-on-dark:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }
.btn-sm { font-size: 14.5px; padding: 10px 18px; }
.btn-lg { font-size: 16.5px; padding: 16px 30px; }

/* ---------- Cabeçalho ---------- */

.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,254,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header .shell { display: flex; align-items: center; gap: 20px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand img { height: 30px; width: auto; }
.brand b { font-size: 19px; font-weight: 700; letter-spacing: -0.03em; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav a {
  font-size: 15px; font-weight: 500; color: var(--ink-muted);
  text-decoration: none; padding: 9px 14px; border-radius: var(--r-sm);
  transition: color .15s, background-color .15s;
}
.nav a:hover { color: var(--navy); background: var(--tint); }
.header-cta { display: flex; align-items: center; gap: 10px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(900px 420px at 82% 8%, rgba(92,233,122,.22), transparent 62%),
    radial-gradient(760px 520px at 12% 96%, rgba(46,124,214,.35), transparent 60%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-800) 58%, var(--navy-900) 100%);
  color: #fff;
  padding: 92px 0 104px;
  overflow: hidden;
}
/* malha sutil — profundidade sem imagem */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(900px 600px at 50% 20%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(900px 600px at 50% 20%, #000 30%, transparent 78%);
  pointer-events: none;
}
.hero .shell { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center; }

.hero h1 {
  font-size: clamp(36px, 4.7vw, 56px);
  letter-spacing: -0.042em; line-height: 1.03;
  margin: 24px 0 0;
}
.hero h1 .accent {
  background: linear-gradient(96deg, var(--mint) 10%, var(--mint-500) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { color: #B9CDE6; font-size: 19px; max-width: 50ch; }

.hero-points { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 16px; }
.hero-points li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: #D6E4F4; }
.hero-points .tile {
  width: 34px; height: 34px; border-radius: var(--r-sm); flex: none;
  background: rgba(154,255,170,.14); border: 1px solid rgba(154,255,170,.3);
  display: flex; align-items: center; justify-content: center; color: var(--mint);
}
.hero-points .tile svg { width: 17px; height: 17px; }
.hero-points b { color: #fff; font-weight: 600; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-note { margin: 20px 0 0; font-size: 14px; color: #8FAACB; }

/* ---------- Cartão de laudo (visual do hero) ---------- */

.doc-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-xl);
  padding: 14px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xl);
}
.doc-inner { background: var(--white); border-radius: var(--r-lg); overflow: hidden; color: var(--ink); }
.doc-top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 15px 18px; border-bottom: 1px solid var(--border); background: var(--canvas);
}
.doc-top .t { font-size: 14.5px; font-weight: 650; }
.doc-top .h { font-family: var(--mono); font-size: 11px; color: var(--ink-faint); }
.doc-body { padding: 18px; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 650; padding: 5px 11px; border-radius: var(--pill);
}
.chip-ok { background: var(--mint-bg); color: var(--mint-ink); }
.chip-wait { background: var(--warning-bg); color: var(--warning-ink); }
.chip svg { width: 13px; height: 13px; }

.steps-line { list-style: none; margin: 18px 0 0; padding: 0; position: relative; }
.steps-line li { position: relative; padding: 0 0 18px 30px; }
.steps-line li:last-child { padding-bottom: 0; }
.steps-line li::before {
  content: ""; position: absolute; left: 5px; top: 5px; width: 10px; height: 10px;
  border-radius: 50%; background: var(--navy); box-shadow: 0 0 0 4px var(--tint);
}
.steps-line li.is-seal::before { background: var(--mint-500); box-shadow: 0 0 0 4px var(--mint-bg); }
.steps-line li:not(:last-child)::after {
  content: ""; position: absolute; left: 9.5px; top: 17px; bottom: 1px; width: 2px; background: var(--border);
}
.steps-line .n { font-size: 14.5px; font-weight: 600; }
.steps-line .t { font-family: var(--mono); font-size: 11.5px; color: var(--ink-muted); margin-top: 2px; }

.seal-row {
  margin-top: 18px; padding: 13px 15px; border-radius: var(--r);
  background: var(--tint); border: 1px solid rgba(13,60,123,.12);
  display: flex; align-items: center; gap: 12px;
}
.seal-row .ico { width: 34px; height: 34px; border-radius: var(--r-sm); background: var(--navy); color: var(--mint); display: flex; align-items: center; justify-content: center; flex: none; }
.seal-row .ico svg { width: 18px; height: 18px; }
.seal-row .k { display: block; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--navy); }
.seal-row .v { display: block; font-size: 12px; color: var(--ink-muted); line-height: 1.45; }

/* ---------- Faixa de confiança ---------- */

.trust { padding: 34px 0; border-bottom: 1px solid var(--border); background: var(--white); }
.trust-in { display: flex; align-items: center; justify-content: center; gap: 14px 40px; flex-wrap: wrap; }
.trust-label { font-size: 12.5px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; color: var(--ink); }
.trust-item svg { width: 19px; height: 19px; color: var(--navy); }

/* ---------- Números de capacidade ---------- */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.stat .big { font-size: clamp(30px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.04em; color: var(--navy); line-height: 1; }
.stat .k { font-size: 15px; font-weight: 600; margin-top: 10px; }
.stat .d { font-size: 14px; color: var(--ink-muted); margin-top: 4px; line-height: 1.5; }

/* ---------- Cards de recurso ---------- */

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--border-2); }
.card h3 { font-size: 18.5px; margin-bottom: 10px; }
.card p { margin: 0; color: var(--ink-muted); font-size: 15.5px; line-height: 1.6; }
.tile {
  width: 46px; height: 46px; border-radius: var(--r); margin-bottom: 20px;
  background: var(--tint); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.tile svg { width: 22px; height: 22px; }
.tile-mint { background: var(--mint-bg); color: var(--mint-ink); }

/* ---------- Passos ---------- */

.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: fl; }
.flow-item { position: relative; }
.flow-item .num {
  counter-increment: fl; content: counter(fl);
  width: 42px; height: 42px; border-radius: var(--r-sm);
  background: var(--navy); color: #fff; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.flow-item h3 { font-size: 17.5px; margin-bottom: 8px; }
.flow-item p { margin: 0; font-size: 15px; color: var(--ink-muted); line-height: 1.58; }

/* ---------- Canais ---------- */

.channels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.channel {
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px;
  background: var(--white); box-shadow: var(--shadow-sm);
}
.channel h3 { font-size: 17px; margin: 14px 0 8px; }
.channel p { margin: 0; font-size: 14.5px; color: var(--ink-muted); line-height: 1.55; }

/* ---------- Comparativo ---------- */

.table-wrap { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); }
.table-scroll { overflow-x: auto; }
table.cmp { width: 100%; border-collapse: collapse; min-width: 680px; font-size: 15.5px; }
table.cmp th, table.cmp td { padding: 17px 22px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); }
table.cmp thead th { background: var(--canvas); font-size: 13px; font-weight: 650; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-muted); }
table.cmp thead th.us { color: var(--navy); background: var(--tint); }
table.cmp tbody th { font-weight: 600; width: 34%; }
table.cmp td { color: var(--ink-muted); }
table.cmp td.us { color: var(--ink); font-weight: 550; background: rgba(234,241,250,.45); }
table.cmp tr:last-child th, table.cmp tr:last-child td { border-bottom: 0; }
.tick { display: inline-flex; width: 19px; height: 19px; margin-right: 9px; vertical-align: -4px; color: var(--mint-ink); }
.cross { display: inline-flex; width: 19px; height: 19px; margin-right: 9px; vertical-align: -4px; color: var(--ink-faint); }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--border); border-radius: var(--r);
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: border-color .18s, box-shadow .18s;
}
.faq details[open] { border-color: var(--border-2); box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-size: 16.5px; font-weight: 600;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 11px; height: 11px;
  border-right: 2px solid var(--ink-muted); border-bottom: 2px solid var(--ink-muted);
  transform: rotate(45deg) translateY(-2px); transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg) translateY(-2px); }
.faq .answer { padding: 0 24px 22px; color: var(--ink-muted); font-size: 15.5px; line-height: 1.66; }
.faq .answer p { margin: 0 0 10px; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- CTA final ---------- */

.cta {
  background:
    radial-gradient(700px 340px at 88% 12%, rgba(92,233,122,.2), transparent 60%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-800) 100%);
  color: #fff; border-radius: var(--r-xl);
  padding: 60px; position: relative; overflow: hidden;
}
.cta-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 48px; align-items: center; }
.cta h2 { font-size: clamp(28px, 3.4vw, 40px); max-width: 20ch; }
.cta p { color: #B9CDE6; font-size: 18px; max-width: 54ch; margin: 16px 0 32px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-fine { margin: 26px 0 0; font-size: 14px; color: #8FAACB; }

/* Coluna direita do CTA: o que acontece depois do contato. */
.next-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.next-card h3 { font-size: 13px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; color: #8FAACB; margin-bottom: 20px; }
.next-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.next-list li { display: flex; gap: 14px; align-items: flex-start; }
.next-list .n {
  width: 27px; height: 27px; border-radius: 50%; flex: none;
  background: rgba(154,255,170,.16); border: 1px solid rgba(154,255,170,.34);
  color: var(--mint); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.next-list .txt { font-size: 15px; line-height: 1.55; color: #CBDCF0; }
.next-list b { color: #fff; font-weight: 600; display: block; margin-bottom: 2px; font-size: 15.5px; }

/* ---------- Rodapé ---------- */

.footer { background: var(--canvas); border-top: 1px solid var(--border); padding: 60px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { margin-bottom: 16px; }
.footer address { font-style: normal; font-size: 14.5px; color: var(--ink-muted); line-height: 1.7; }
.footer h4 { font-size: 13px; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: var(--ink-muted); text-decoration: none; font-size: 15px; }
.footer a:hover { color: var(--navy); }
.footer-base {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 14px; color: var(--ink-faint);
}

/* ---------- Páginas de texto ---------- */

.page-head { background: var(--canvas); border-bottom: 1px solid var(--border); padding: 56px 0 44px; }
.page-head h1 { font-size: clamp(32px, 4.2vw, 44px); }
.page-head .crumb { font-size: 14.5px; color: var(--ink-muted); margin-bottom: 14px; }
.page-head .crumb a { color: var(--ink-muted); text-decoration: none; }
.page-head .crumb a:hover { color: var(--navy); }

.prose { max-width: 780px; margin: 0 auto; padding: 52px 24px 96px; }
.prose h1 { display: none; }
.prose p.updated { font-size: 14.5px; color: var(--ink-muted); margin: 0 0 10px; }
.prose hr { border: 0; border-top: 1px solid var(--border); margin: 30px 0; }
.prose h2 { font-size: 22px; margin: 44px 0 14px; letter-spacing: -0.02em; }
.prose h3 { font-size: 18px; margin: 30px 0 10px; }
.prose p { margin: 0 0 15px; color: #313E52; line-height: 1.72; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; color: #313E52; }
.prose li { margin-bottom: 9px; line-height: 1.66; }
.prose strong { color: var(--ink); font-weight: 650; }

/* ---------- Acessibilidade ---------- */

.skip { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--r-sm) 0; }
.skip:focus { left: 0; }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; border-radius: 4px; }
.hero :focus-visible, .cta :focus-visible { outline-color: var(--mint); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .card:hover, .btn:hover { transform: none; }
}

/* ---------- Responsivo ---------- */

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .channels { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .cta-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  section { padding: 68px 0; }
  .hero { padding: 64px 0 76px; }
  .nav { display: none; }
  .header .shell { min-height: 64px; }
  .stats, .cards, .flow, .channels { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta { padding: 36px 22px; border-radius: var(--r-lg); }
  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 100%; }
  .trust-in { gap: 12px 22px; }
  .section-head { margin-bottom: 38px; }
}

/* ---------- Bloco de recurso em duas colunas ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split + .split { margin-top: 108px; }
.split.flip .split-media { order: -1; }
.split h3 { font-size: clamp(26px, 3.2vw, 36px); letter-spacing: -0.03em; margin: 18px 0 0; }
.split p.big { font-size: 18px; line-height: 1.62; color: var(--ink-muted); margin: 16px 0 0; }
.split ul.wins { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.split ul.wins li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.55; }
.split ul.wins .ck {
  width: 24px; height: 24px; border-radius: 50%; flex: none; margin-top: 1px;
  background: var(--mint-bg); color: var(--mint-ink);
  display: flex; align-items: center; justify-content: center;
}
.split ul.wins .ck svg { width: 14px; height: 14px; }

/* Mock de tela */
.mock {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.mock-bar {
  display: flex; align-items: center; gap: 10px; padding: 13px 16px;
  border-bottom: 1px solid var(--border); background: var(--canvas);
}
.mock-bar .dots { display: flex; gap: 5px; }
.mock-bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--border-2); display: block; }
.mock-bar .label { font-size: 13px; font-weight: 600; color: var(--ink-muted); }
.mock-body { padding: 18px; }

.search-field {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--navy); border-radius: var(--r-sm);
  padding: 11px 14px; background: var(--white);
  box-shadow: 0 0 0 3px var(--tint);
}
.search-field svg { width: 18px; height: 18px; color: var(--navy); flex: none; }
.search-field .q { font-size: 15px; font-weight: 600; }
.search-field .cursor { width: 1.5px; height: 17px; background: var(--navy); margin-left: 1px; }

.hit-list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.hit {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border); border-radius: var(--r-sm); padding: 12px 14px;
  background: var(--white);
}
.hit .ch {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--tint); color: var(--navy);
}
.hit .ch svg { width: 17px; height: 17px; }
.hit .ch.wa { background: var(--mint-bg); color: var(--mint-ink); }
.hit .meta { flex: 1 1 auto; min-width: 0; }
.hit .meta .l1 { display: block; font-size: 14.5px; font-weight: 600; line-height: 1.35; }
.hit .meta .l2 { display: block; font-size: 12.5px; color: var(--ink-muted); line-height: 1.4; margin-top: 2px; }
.hit .st { font-size: 11.5px; font-weight: 650; padding: 4px 9px; border-radius: var(--pill); background: var(--mint-bg); color: var(--mint-ink); flex: none; }

.zip-row {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--border); border-radius: var(--r); padding: 16px 18px;
  background: var(--canvas);
}
.zip-row .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--navy); color: var(--mint); display: flex; align-items: center; justify-content: center; flex: none; }
.zip-row .ic svg { width: 21px; height: 21px; }
.zip-row .n1 { font-size: 15px; font-weight: 650; }
.zip-row .n2 { font-size: 13px; color: var(--ink-muted); }

.bar-track { height: 8px; border-radius: var(--pill); background: var(--surface); overflow: hidden; margin-top: 16px; }
.bar-fill { height: 100%; width: 78%; border-radius: var(--pill); background: linear-gradient(90deg, var(--navy), var(--mint-500)); }
.bar-note { font-size: 13px; color: var(--ink-muted); margin-top: 9px; }

@media (max-width: 1080px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.flip .split-media { order: 0; }
  .split + .split { margin-top: 72px; }
}

/* ---------- Bloco de destaque ---------- */

.callout {
  display: grid; grid-template-columns: 60px 1fr; gap: 22px;
  border: 1px solid var(--border); border-left: 4px solid var(--navy);
  border-radius: var(--r-lg); padding: 30px 32px;
  background: var(--white); box-shadow: var(--shadow-sm);
}
.callout.mint { border-left-color: var(--mint-500); }
.callout .ic {
  width: 56px; height: 56px; border-radius: var(--r); flex: none;
  background: var(--tint); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.callout.mint .ic { background: var(--mint-bg); color: var(--mint-ink); }
.callout .ic svg { width: 27px; height: 27px; }
.callout h3 { font-size: 21px; margin-bottom: 10px; }
.callout p { margin: 0; color: var(--ink-muted); font-size: 16.5px; line-height: 1.62; }
.callout p + p { margin-top: 10px; }
.callout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* ---------- Segmentos ---------- */

.segments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.segment {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 18px 20px; background: var(--white); box-shadow: var(--shadow-sm);
}
.segment .ic {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  background: var(--tint); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.segment .ic svg { width: 20px; height: 20px; }
.segment b { font-size: 16px; font-weight: 600; display: block; }
.segment span { font-size: 14px; color: var(--ink-muted); }

/* ---------- Lista de conformidade ---------- */

.compliance { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px; margin-top: 26px; }
.compliance li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.55; }
.compliance { list-style: none; padding: 0; }
.compliance .ck {
  width: 22px; height: 22px; border-radius: 50%; flex: none; margin-top: 1px;
  background: var(--mint-bg); color: var(--mint-ink);
  display: flex; align-items: center; justify-content: center;
}
.compliance .ck svg { width: 13px; height: 13px; }
.compliance b { font-weight: 600; }

/* ---------- Selo de velocidade no hero ---------- */

.speed {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px; padding: 10px 16px; border-radius: var(--pill);
  background: rgba(154,255,170,.12); border: 1px solid rgba(154,255,170,.28);
  font-size: 14.5px; color: #D6E4F4;
}
.speed svg { width: 17px; height: 17px; color: var(--mint); flex: none; }
.speed b { color: #fff; font-weight: 600; }

@media (max-width: 1080px) {
  .callout-row { grid-template-columns: 1fr; }
  .segments { grid-template-columns: repeat(2, 1fr); }
  .compliance { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .callout { grid-template-columns: 1fr; gap: 16px; padding: 26px 22px; }
  .segments { grid-template-columns: 1fr; }
}

/* ---------- Bloco jurídico ---------- */

.legal-band {
  background:
    radial-gradient(700px 340px at 85% 10%, rgba(92,233,122,.16), transparent 62%),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-800) 100%);
  color: #fff;
}
.legal-band .lead { color: #B9CDE6; }
.legal-band h2.title { color: #fff; }

.rulings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.ruling {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg); padding: 26px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.ruling .tag {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--mint); margin-bottom: 12px;
}
.ruling h3 { font-size: 17px; color: #fff; margin-bottom: 10px; line-height: 1.28; }
.ruling p { margin: 0; font-size: 14.5px; line-height: 1.58; color: #BACBDF; }
.ruling .src { display: block; margin-top: 14px; font-size: 12.5px; color: #8FAACB; }

.punch {
  margin-top: 40px; padding: 30px 34px;
  border-radius: var(--r-lg);
  background: rgba(154,255,170,.10); border: 1px solid rgba(154,255,170,.28);
  display: grid; grid-template-columns: 52px 1fr; gap: 20px; align-items: start;
}
.punch .ic {
  width: 52px; height: 52px; border-radius: var(--r); flex: none;
  background: var(--mint); color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
}
.punch .ic svg { width: 26px; height: 26px; }
.punch h3 { font-size: 22px; color: #fff; margin-bottom: 8px; }
.punch p { margin: 0; font-size: 17px; line-height: 1.6; color: #D6E4F4; }
.punch b { color: var(--mint); font-weight: 600; }

@media (max-width: 1080px) { .rulings { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .punch { grid-template-columns: 1fr; padding: 24px 20px; } }

/* ---------- Páginas de confirmação (opt-out) ---------- */

.confirm { max-width: 640px; margin: 0 auto; padding: 72px 24px 96px; text-align: center; }
.confirm-ic {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 28px;
  background: var(--mint-bg); color: var(--mint-ink);
  display: flex; align-items: center; justify-content: center;
}
.confirm-ic svg { width: 34px; height: 34px; }
.confirm h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 22px; }
.confirm p { font-size: 17px; line-height: 1.68; color: var(--ink-muted); margin: 0 0 16px; text-align: left; }
.confirm strong { color: var(--ink); font-weight: 600; }
.confirm-help {
  margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--border);
}
.confirm-help p { font-size: 15px; text-align: center; margin: 0; }
