/* ==========================================================================
   Avancer — sistema visual v4 "Vision"
   Importado do design system Vision Cybersecurity + da página Legal Mente.

   CORREÇÕES DE ACESSIBILIDADE aplicadas sobre o original (medidas, não
   estimadas):
     1. O botão primário original era gradiente #0066FF→#00C8FF com texto
        BRANCO. Branco sobre #00C8FF dá 1,96:1 — praticamente ilegível na
        metade ciano. Virou gradiente ciano→azul com texto escuro: 6,95:1.
     2. --text-muted era #8293B2, que dá 4,33:1 sobre a superfície dos
        cartões (#102C63) e reprova em texto pequeno. Virou #94A4C2: 5,34:1.
     3. #0066FF como texto dá 3,61:1 — só pode aparecer em título grande
        (o gradiente do h1) ou como preenchimento. Nunca em texto pequeno.
   ========================================================================== */

:root {
  color-scheme: dark;

  /* ---- Fundos ---- */
  --bg-deep:   #060F26;
  --bg:        #08183A;
  --surface:   #102C63;
  --surface-t: rgba(16, 44, 99, .55);
  --surface-g: rgba(15, 40, 103, .75);

  /* ---- Azuis ---- */
  --primary:   #0066FF;
  --secondary: #00C8FF;
  --accent:    #16D9FF;

  /* ---- Texto ---- */
  --text:      #F5F8FF;
  --text-2:    #B8C7E0;
  --text-muted:#94A4C2;
  --on-accent: #060F26;

  /* ---- Linhas ---- */
  --line:        rgba(0, 200, 255, .15);
  --line-strong: rgba(0, 200, 255, .34);
  --line-soft:   rgba(0, 200, 255, .10);
  --ring:        rgba(0, 200, 255, .55);

  /* ---- Gradientes ---- */
  --grad-primary: linear-gradient(135deg, #0066FF 0%, #00C8FF 100%);  /* decorativo */
  --grad-btn:     linear-gradient(135deg, #16D9FF 0%, #00A8E0 100%);  /* botão, texto escuro */
  --grad-tech:    linear-gradient(135deg, #08183A 0%, #0F2866 50%, #0066FF 100%);
  --glow:         radial-gradient(circle, rgba(0,200,255,.35) 0%, rgba(0,102,255,0) 70%);

  /* ---- Sombras ---- */
  --shadow-card:       0 20px 50px rgba(0,0,0,.30);
  --shadow-glow:       0 0 30px rgba(0,102,255,.25);
  --glow-soft:         0 8px 30px rgba(0,200,255,.20);

  /* ---- Tipografia ---- */
  --font-display: Montserrat, "Helvetica Neue", Arial, sans-serif;
  --font-body:    Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    ui-monospace, SFMono-Regular, Menlo, monospace;

  /* ---- Espaço (grade de 4px, do DS) ---- */
  --space-3: 12px; --space-4: 16px; --space-5: 24px; --space-6: 32px;
  --space-7: 40px; --space-8: 48px; --space-9: 64px; --space-10: 80px;
  --space-11: 96px; --space-12: 128px;

  --radius-sm: 6px; --radius-md: 10px; --radius-lg: 16px; --radius-xl: 20px; --radius-pill: 999px;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --dur-fast: 200ms; --dur-normal: 400ms; --dur-slow: 700ms;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

a { color: var(--secondary); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--accent); }

:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--ring); border-radius: var(--radius-sm); }
::selection { background: var(--primary); color: #fff; }

section { position: relative; }
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sec { padding: var(--space-11) 0; }
@media (min-width: 1100px) { .sec { padding: var(--space-12) 0; } }
.sec--half { padding: var(--space-10) 0; }

.stack { display: flex; flex-direction: column; }
.g-6{gap:6px} .g-8{gap:8px} .g-12{gap:12px} .g-14{gap:14px} .g-20{gap:20px} .g-22{gap:22px}
.g-32{gap:32px} .g-34{gap:34px} .g-48,.g-52{gap:clamp(28px,4vw,48px)}

/* ---------- Primitivas de marca ---------- */
.eyebrow, .lbl {
  display: block;
  font-size: 12px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--secondary); margin: 0;
}
.lbl--flame { color: var(--accent); }

.rule { width: 64px; height: 2px; background: var(--grad-primary); border-radius: var(--radius-pill); border: 0; }
.rule--thin { width: 100%; height: 1px; background: var(--line); }

.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.lede { color: var(--text-2); font-size: 18px; max-width: 56ch; line-height: 1.6; }

/* ---------- Cabeçalho ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(6, 15, 38, .72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; gap: var(--space-7); min-height: 76px; }
.brand { display: flex; align-items: center; flex-shrink: 0; padding-block: 6px; }
.brand img { width: 138px; }

.nav-links { display: flex; gap: var(--space-6); margin-left: auto; list-style: none; margin-block: 0; padding: 0; font-size: 14px; }
.nav-links a { color: var(--text-2); position: relative; padding: 6px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--grad-primary); transition: right var(--dur-normal) var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; margin-left: var(--space-5); }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); cursor: pointer; color: var(--text);
}
@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .nav-right .vc-btn { display: none; }
  .nav-links {
    position: fixed; inset: 76px 0 auto; flex-direction: column; gap: 0;
    background: var(--bg-deep); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 28px; margin-left: 0;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), visibility var(--dur-fast);
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links a { padding: 16px 0; font-size: 15px; border-bottom: 1px solid var(--line-soft); }
  .nav-links a::after { display: none; }
  .nav-links .m-cta a { color: var(--accent); }
}
@media (min-width: 1001px) { .nav-links .m-cta { display: none; } }

/* ---------- Botões ---------- */
.vc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  line-height: 1; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap;
  padding: 15px 24px; border-radius: 5px; border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-normal) var(--ease);
}
.vc-btn:active { transform: translateY(1px); }
.vc-btn__icon { display: inline-flex; width: 1.15em; height: 1.15em; transition: transform var(--dur-fast) var(--ease); }
.vc-btn__icon svg { width: 100%; height: 100%; }
.vc-btn:hover .vc-btn__icon { transform: translateX(4px); }

/* Texto ESCURO sobre o gradiente ciano: 6,95:1 no pior ponto.
   O original usava branco sobre azul→ciano, que dava 1,96:1 na ponta ciano. */
.vc-btn--primary {
  background: var(--grad-btn); color: var(--on-accent);
  border-color: rgba(22,217,255,.45); box-shadow: 0 0 22px rgba(0,200,255,.24);
}
.vc-btn--primary:hover { color: var(--on-accent); transform: translateY(-2px); box-shadow: var(--glow-soft), 0 0 38px rgba(0,200,255,.34); }

.vc-btn--secondary { background: transparent; color: var(--text); border-color: var(--line-strong); }
.vc-btn--secondary:hover { color: var(--accent); border-color: var(--secondary); transform: translateY(-2px); box-shadow: 0 0 26px rgba(0,102,255,.18); }
.vc-btn--sm { padding: 11px 18px; font-size: 11px; }

.arrow-link {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent); text-decoration: none;
  padding-block: 7px;   /* leva o alvo de toque a 25px (WCAG 2.5.8 pede 24) */
}
.arrow-link svg { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  background: var(--grad-tech); background-color: var(--bg);
  overflow: hidden; padding: var(--space-10) 0 var(--space-11);
}
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,15,38,.55), rgba(8,24,58,.15) 45%, rgba(6,15,38,.9)); }
.hero::after { content: ""; position: absolute; width: 900px; height: 900px; right: -260px; top: -320px; background: var(--glow); pointer-events: none; }
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; gap: var(--space-9); align-items: center; }
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 5fr 7fr; gap: var(--space-8); }
  .hero { padding: var(--space-11) 0 var(--space-12); }
}
.hero h1 { font-size: 42px; font-weight: 700; margin-bottom: var(--space-5); }
@media (min-width: 1000px) { .hero h1 { font-size: 60px; } }
.hero .lede { margin-bottom: var(--space-7); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); }

.hero-media { position: relative; aspect-ratio: 16/10; border-radius: var(--radius-xl); }
.hero-media::before { content: ""; position: absolute; inset: -14%; background: var(--glow); pointer-events: none; z-index: 0; }
.hero-media .frame {
  position: absolute; inset: 0; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid rgba(0,200,255,.18);
  box-shadow: var(--shadow-card), 0 0 60px rgba(0,102,255,.22);
  animation: respirar 14s ease-in-out infinite alternate;
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
@keyframes respirar { from { transform: scale(1); } to { transform: scale(1.03); } }

.hero-badges { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-7); }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-2);
  padding: 8px 14px; border-radius: var(--radius-pill);
  background: var(--surface-t); border: 1px solid rgba(0,200,255,.14);
}
.chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }

/* ---------- Título de seção ---------- */
.vc-heading { display: flex; flex-direction: column; gap: var(--space-4); max-width: 48ch; margin-bottom: var(--space-9); }
.vc-heading__top { display: flex; flex-direction: column; gap: var(--space-3); }
.vc-heading--center { align-items: center; text-align: center; margin-inline: auto; }
.vc-heading--center .vc-heading__rule { align-self: center; }
.vc-heading__rule { width: 96px; height: 3px; border-radius: var(--radius-pill); background: var(--grad-primary); }
.vc-heading__title { font-size: 32px; font-weight: 700; }
@media (min-width: 900px) { .vc-heading__title { font-size: 42px; } }
.vc-heading__lead { font-size: 18px; color: var(--text-2); max-width: 54ch; }

/* ---------- Cartões ---------- */
.cards { display: grid; gap: var(--space-5); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.vc-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--space-6); color: var(--text);
  transition: border-color var(--dur-normal) var(--ease), transform var(--dur-normal) var(--ease), box-shadow var(--dur-normal) var(--ease);
}
.vc-card--glass { background: var(--surface-g); backdrop-filter: blur(10px); box-shadow: var(--shadow-card); }
.vc-card--glow { box-shadow: var(--shadow-card), 0 0 0 1px rgba(0,200,255,.30), 0 12px 40px rgba(0,102,255,.28); }
.vc-card--ruled::before { content: ""; position: absolute; top: -1px; left: var(--space-6); right: var(--space-6); height: 2px; border-radius: 2px; background: var(--grad-primary); opacity: .85; }
.vc-card--interactive { display: flex; flex-direction: column; gap: var(--space-4); text-decoration: none; }
.vc-card--interactive:hover { transform: translateY(-8px); border-color: var(--secondary); box-shadow: var(--shadow-card), 0 0 44px rgba(0,102,255,.28); color: var(--text); }
.vc-card h3 { font-size: 22px; font-weight: 700; }
.vc-card p { color: var(--text-2); font-size: 15px; flex: 1; }
.vc-card .rule { width: 44px; }
.vc-card .more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
}
.vc-card .more svg { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease); }
.vc-card:hover .more svg { transform: translateX(4px); }
.vc-card .card-ico { color: var(--secondary); }
.vc-card .card-ico svg { width: 26px; height: 26px; }

/* ---------- Split ---------- */
.split { display: grid; gap: var(--space-9); align-items: center; }
@media (min-width: 1000px) { .split { grid-template-columns: 5fr 7fr; gap: var(--space-10); } .split.rev > *:first-child { order: 2; } }
.split h2 { font-size: 32px; font-weight: 700; margin-bottom: var(--space-5); }
@media (min-width: 900px) { .split h2 { font-size: 42px; } }
.split .media { position: relative; aspect-ratio: 16/10; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid rgba(0,200,255,.16); box-shadow: var(--shadow-card), 0 0 50px rgba(0,102,255,.16); }
.split .media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Fundos alternados ---------- */
.bg-base { background: var(--bg); }
.bg-deep { background: var(--bg-deep); }
.bg-deep::after, .bg-glow::after { content: ""; position: absolute; width: 760px; height: 760px; left: -300px; bottom: -380px; background: var(--glow); opacity: .7; pointer-events: none; }
.bg-deep > .wrap, .bg-glow > .wrap { position: relative; z-index: 2; }

/* ---------- Números ---------- */
.figures, .stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  margin-top: var(--space-9); background: rgba(0,200,255,.14);
  border: 1px solid rgba(0,200,255,.14); border-radius: var(--radius-lg); overflow: hidden;
}
@media (min-width: 820px) { .figures, .stats { grid-template-columns: repeat(4, 1fr); } }
.figures > div, .vc-stat { display: flex; flex-direction: column-reverse; gap: 6px; background: var(--surface-t); padding: var(--space-6) var(--space-5); }
.figures .v, .vc-stat__label { font-size: 13px; color: var(--text-muted); letter-spacing: .04em; text-transform: none; font-weight: 400; }
.figures .k, .vc-stat__value { font-family: var(--font-display); font-weight: 700; font-size: 36px; line-height: 1; letter-spacing: -.02em; color: var(--text); }
.figures .k--flame { color: var(--accent); }

/* ---------- Processo ---------- */
.steps, .defs { display: grid; gap: var(--space-5); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step, .def {
  background: rgba(10, 31, 74, .6); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: transform var(--dur-normal) var(--ease), border-color var(--dur-normal) var(--ease);
}
.step:hover, .def:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.step b, .def .lbl { font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; color: var(--secondary); font-weight: 500; }
.step h3, .def h3 { font-size: 20px; font-weight: 700; }
.step p, .def p { color: var(--text-2); font-size: 15px; }

/* ---------- Listas ---------- */
.hex-list, .sign-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.hex-list li, .sign-list li { position: relative; padding-left: 26px; font-size: 15px; color: var(--text-2); }
.hex-list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 10px; height: 10px;
  border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent);
}
.sign-list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 11px; height: 11px;
  border-radius: 50%; border: 1.5px solid var(--text-muted);
}

/* ---------- Parceiros ---------- */
.brands { display: grid; grid-template-columns: repeat(auto-fit, minmax(108px, 1fr)); gap: clamp(22px,3.6vw,52px); align-items: center; }
.brands img { width: 100%; max-width: 116px; margin-inline: auto; opacity: .7; transition: opacity var(--dur-normal) var(--ease); }
.brands img:hover { opacity: 1; }

/* ---------- Citação ---------- */
.quote p { font-family: var(--font-display); font-size: clamp(2rem,1.3rem+3.4vw,4rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.08; color: var(--text); max-width: 18ch; }

/* ---------- Formulário ---------- */
.form { display: flex; flex-direction: column; gap: var(--space-5); }
.field-row, .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 640px) { .field-row, .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--text);
  background: rgba(6,15,38,.5); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 13px 15px; width: 100%;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(0,200,255,.18); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.consent { display: flex; align-items: flex-start; gap: 14px; padding-top: 4px; }
.consent input[type="checkbox"] { width: 24px; height: 24px; margin: 0; flex-shrink: 0; accent-color: var(--primary); cursor: pointer; }
.consent label { font-size: 15px; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--text-2); line-height: 1.5; }

/* ---------- Blog e radar ---------- */
.posts, .radar { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.post, .radar-item {
  display: grid; gap: clamp(12px,2.4vw,32px); align-items: baseline;
  padding: var(--space-5) 0; border-bottom: 1px solid var(--line-soft);
  text-decoration: none; color: inherit; transition: padding-left var(--dur-normal) var(--ease), background var(--dur-fast) var(--ease);
}
.post { grid-template-columns: 112px minmax(0,1fr); }
.radar-item { grid-template-columns: 76px minmax(0,1fr) minmax(0,190px); padding: 15px 0; }
.post:hover, .radar-item:hover { padding-left: 16px; color: inherit; }
.post:hover h3, .radar-item:hover .radar-titulo { color: var(--accent); }
.post time, .radar-item time { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--text-muted); white-space: nowrap; }
.post h3 { font-size: clamp(1.15rem,1rem+.7vw,1.5rem); font-weight: 700; margin-bottom: 8px; }
.post p { font-size: 15px; color: var(--text-2); max-width: 62ch; }
.radar-titulo { font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -.01em; line-height: 1.3; }
.radar-titulo::after { content: " ↗"; color: var(--text-muted); font-weight: 400; }
.radar-fonte { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); text-align: right; }
.radar-idioma { display: inline-block; margin-left: 7px; padding: 2px 6px; border-radius: 3px; background: rgba(0,200,255,.12); color: var(--secondary); font-size: 10px; letter-spacing: .1em; }
.radar-nota { margin-top: var(--space-5); font-size: 14px; color: var(--text-muted); max-width: 74ch; line-height: 1.6; }
@media (max-width: 820px) {
  .radar-item { grid-template-columns: 1fr; gap: 6px; }
  .radar-fonte { text-align: left; }
  .post { grid-template-columns: 1fr; gap: 8px; }
}

.prose { max-width: 68ch; font-size: 17px; line-height: 1.75; }
.prose > * + * { margin-top: 1.2em; }
.prose h2 { font-size: clamp(1.6rem,1.3rem+1.2vw,2.2rem); margin-top: 2em; }
.prose h3 { margin-top: 1.7em; font-size: 1.3rem; }
.prose p, .prose li { color: var(--text-2); }
.prose ul, .prose ol { padding-left: 1.3em; display: flex; flex-direction: column; gap: .55em; }
.prose img { margin-block: 2em; border-radius: var(--radius-lg); }
.prose strong { color: var(--text); font-weight: 600; }

/* ---------- Cabeçalho de página interna ---------- */
.phead { background: var(--grad-tech); background-color: var(--bg); overflow: hidden; padding: var(--space-10) 0 var(--space-8); }
.phead::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,15,38,.5), rgba(6,15,38,.85)); }
.phead::after { content: ""; position: absolute; width: 760px; height: 760px; right: -280px; top: -300px; background: var(--glow); pointer-events: none; }
.phead .wrap { position: relative; z-index: 2; }
.phead h1 { font-size: clamp(34px, 5vw, 54px); max-width: 17ch; }
.phead .lede { margin-top: var(--space-5); max-width: 56ch; }
.crumb { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--space-5); }
.phead .crumb a { color: var(--text-muted); display: inline-block; padding-block: 6px; }
.phead .crumb a:hover { color: var(--secondary); }

/* ---------- CTA ---------- */
.cta { background: var(--grad-tech); overflow: hidden; padding: var(--space-11) 0; }
.cta::after { content: ""; position: absolute; width: 1000px; height: 1000px; left: 50%; top: 40%; transform: translate(-50%,-50%); background: var(--glow); pointer-events: none; }
.cta .wrap { position: relative; z-index: 2; text-align: center; }
.cta h2 { font-size: 34px; font-weight: 700; margin-inline: auto; max-width: 20ch; }
@media (min-width: 900px) { .cta h2 { font-size: 50px; } }
.cta p { margin: var(--space-5) auto var(--space-8); color: var(--text-2); font-size: 18px; max-width: 54ch; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-4); }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--line-soft); padding: var(--space-10) 0 var(--space-7); font-size: 15px; color: var(--text-2); }
.foot-grid { display: grid; gap: var(--space-8); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.site-footer img.flogo { width: 148px; margin-bottom: var(--space-4); }
.site-footer h4 { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); font-family: var(--font-body); font-weight: 600; margin: 0 0 var(--space-4); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.site-footer li a { display: inline-block; padding-block: 6px; }
.site-footer a { color: var(--text-2); }
.site-footer a:hover { color: var(--secondary); }
.site-footer address { font-style: normal; line-height: 1.85; }
.site-footer address a { display: inline-block; padding-block: 3px; }
.foot-end {
  display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; align-items: center;
  margin-top: var(--space-9); padding-top: var(--space-5);
  border-top: 1px solid rgba(184,199,224,.10); font-size: 13px; color: var(--text-muted);
}
.foot-end a { color: var(--text-muted); display: inline-block; padding-block: 4px; }

/* ---------- Revelação ao rolar ----------
   INVERTIDO de propósito. O padrão original (esconder no CSS, revelar no JS)
   deixa a página EM BRANCO se o script não executar — foi exatamente o que
   aconteceu aqui em teste. Agora o estado padrão é VISÍVEL e o JS apenas
   dispara uma animação de entrada. Script quebrado = site sem efeito, nunca
   site invisível. */
@keyframes revelar {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: no-preference) {
  .rv.rv-anim { animation: revelar var(--dur-slow) cubic-bezier(.2,.8,.2,1) both; }
}

/* ---------- Utilidades ---------- */
.skip { position: absolute; left: -9999px; background: var(--primary); color: #fff; padding: 13px 22px; z-index: 200; text-decoration: none; font-weight: 600; border-radius: 0 0 var(--radius-sm) 0; }
.skip:focus { left: 0; color: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js-reveal .rv { opacity: 1; transform: none; transition: none; }
  .hero-media .frame { animation: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
@media print { .site-header, .nav-toggle, .cta, .site-footer { display: none; } body { background: #fff; color: #000; } }
