/* =========================================================
   GENIA Protect — Stylesheet
   Estética: dark editorial, fintech premium (Apple/Stripe/Linear)
   ========================================================= */

/* ---------- 1. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
img, svg { display: block; max-width: 100%; }
input, select, textarea { font: inherit; color: inherit; }

/* ---------- 2. Tokens ---------- */
:root {
  /* Cor */
  --bg-0: #06070C;
  --bg-1: #0A0C14;
  --bg-2: #0E121C;
  --bg-3: #141926;
  --surface-1: rgba(255,255,255,.03);
  --surface-2: rgba(255,255,255,.05);
  --border-1: rgba(255,255,255,.06);
  --border-2: rgba(255,255,255,.10);
  --text-0: #F5F7FB;
  --text-1: #C9D1E0;
  --text-2: #8A93A6;
  --text-3: #5A6377;
  --accent-teal: #5DCAA5;
  --accent-teal-strong: #1D9E75;
  --accent-teal-soft: rgba(93,202,165,.14);
  --accent-lime: #D8FF33;
  --accent-violet: #8F5DFF;
  --accent-coral: #D85A30;

  /* Tipografia */
  --font-sans: 'Albert Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Fraunces', 'Albert Sans', serif;

  /* Espaçamento */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --space-11: 160px;

  /* Raio */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-2xl: 44px;

  /* Container */
  --container: 1240px;
  --gutter: 24px;

  /* Transitions */
  --ease: cubic-bezier(.22,.61,.36,1);
  --t-fast: 180ms var(--ease);
  --t-base: 260ms var(--ease);
  --t-slow: 480ms var(--ease);
}

/* ---------- 2b. Light theme tokens ---------- */
body[data-theme="light"] {
  --bg-0: #FAFAF9;
  --bg-1: #FFFFFF;
  --bg-2: #F4F4EE;
  --bg-3: #ECECE5;
  --surface-1: rgba(11,26,43,.03);
  --surface-2: rgba(11,26,43,.06);
  --border-1: rgba(11,26,43,.08);
  --border-2: rgba(11,26,43,.14);
  --text-0: #0B1A2B;
  --text-1: #2D3344;
  --text-2: #595F6E;
  --text-3: #8A93A6;
  --accent-teal: #1D9E75;
  --accent-teal-strong: #0F6E56;
  --accent-teal-soft: rgba(29,158,117,.10);
}
body[data-theme="light"]::before {
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(143,93,255,.07), transparent 70%),
    radial-gradient(60% 50% at 85% 0%, rgba(29,158,117,.07), transparent 70%),
    radial-gradient(70% 60% at 50% 100%, rgba(216,255,51,.05), transparent 70%);
}
body[data-theme="light"] .header { background: rgba(250,250,247,.7); }
body[data-theme="light"] .header.is-scrolled { background: rgba(255,255,255,.92); }
body[data-theme="light"] .btn--primary { background: #0A0C14; color: #FFFFFF; }
body[data-theme="light"] .btn--primary:hover { background: #1F2433; }
body[data-theme="light"] .brand-mark {
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-teal-strong));
  color: #FFFFFF;
}
body[data-theme="light"] ::selection { background: var(--accent-teal); color: #FFFFFF; }
body[data-theme="light"] .product-card { background: #FFFFFF; }
body[data-theme="light"] .product-card:hover { background: #FAFAF7; }
body[data-theme="light"] .coverage-card { background: #FFFFFF; }
body[data-theme="light"] .coverage-card:hover { background: #FAFAF7; }
body[data-theme="light"] .coverage-grid { background: var(--border-1); border-color: var(--border-1); }
body[data-theme="light"] .testimonial { background: #FFFFFF; }
body[data-theme="light"] .cta-final {
  background:
    radial-gradient(60% 80% at 0% 100%, rgba(29,158,117,.12), transparent 65%),
    radial-gradient(60% 80% at 100% 0%, rgba(143,93,255,.10), transparent 65%),
    #FFFFFF;
}
body[data-theme="light"] .product-visual,
body[data-theme="light"] .hero-visual,
body[data-theme="light"] .assist-visual {
  background: #1F2433;
}
body[data-theme="light"] .hero-tag {
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(10,12,20,.04);
}
body[data-theme="light"] .display em { color: #6B7280; }
body[data-theme="light"] .analysis-card { background: #FFFFFF; }
body[data-theme="light"] .analysis-input { background: #F4F4EE; }
body[data-theme="light"] .analysis-output {
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(29,158,117,.10), transparent 60%),
    #FFFFFF;
  border-color: rgba(29,158,117,.30);
}
body[data-theme="light"] .eyebrow-genia {
  background: #FFFFFF;
}
body[data-theme="light"] .hello-strip {
  background: #FFFFFF;
}
body[data-theme="light"] .testimonial-author .avatar {
  color: #FFFFFF;
}
body[data-theme="light"] .footer-brand p { color: var(--text-2); }
body[data-theme="light"] .quote-box { background: #FFFFFF; }
body[data-theme="light"] .quote-box button { background: #0A0C14; color: #FFFFFF; }
body[data-theme="light"] .mobile-menu { background: #FFFFFF; }
body[data-theme="light"] .nav-toggle,
body[data-theme="light"] .mobile-close { border-color: var(--border-2); color: var(--text-1); }

/* ---------- 3. Base ---------- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg-0);
  color: var(--text-0);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content:'';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(143,93,255,.10), transparent 70%),
    radial-gradient(60% 50% at 85% 0%, rgba(93,202,165,.08), transparent 70%),
    radial-gradient(70% 60% at 50% 100%, rgba(216,255,51,.04), transparent 70%);
}

::selection { background: var(--accent-teal); color: var(--bg-0); }

/* ---------- 4. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
.section { padding: var(--space-11) 0; }
.section--sm { padding: var(--space-9) 0; }
.section--xs { padding: var(--space-7) 0; }

/* ---------- 5. Tipografia ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-2);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent-teal);
  opacity: .8;
}

.display {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--text-0);
}
.display em {
  font-style: normal;
  font-weight: 200;
  color: var(--text-2);
}
.display .accent { color: var(--accent-teal); font-style: normal; }

h1, .h1 {
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
h2, .h2 {
  font-weight: 300;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
h3, .h3 {
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--text-1);
  font-weight: 400;
  max-width: 60ch;
}
p { color: var(--text-1); }
.muted { color: var(--text-2); }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- 6. Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform var(--t-fast), background var(--t-base), border-color var(--t-base);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--text-0);
  color: var(--bg-0);
}
.btn--primary:hover { background: #fff; }
.btn--ghost {
  background: transparent;
  border-color: var(--border-2);
  color: var(--text-0);
}
.btn--ghost:hover { border-color: rgba(255,255,255,.25); background: var(--surface-1); }
.btn--teal {
  background: var(--accent-teal);
  color: #04140E;
}
.btn--teal:hover { background: #6FD7B2; }
.btn--sm { height: 40px; padding: 0 16px; font-size: 13px; }

.btn .arrow {
  width: 16px; height: 16px;
  transition: transform var(--t-base);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- 7. Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(6,7,12,.55);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background var(--t-base), border-color var(--t-base);
}
.header.is-scrolled {
  background: rgba(6,7,12,.85);
  border-bottom-color: var(--border-1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: #0B1A2B;
  display: grid;
  place-items: center;
  color: #1D9E75;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(11,26,43,.22);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong {
  font-size: 18px;
  letter-spacing: .12em;
  color: var(--text-0);
  font-weight: 700;
}
.brand-copy span {
  font-size: 9px;
  letter-spacing: .55em;
  color: var(--accent-teal);
  margin-top: 5px;
  font-weight: 600;
}
/* legacy fallback in case .brand-name still present */
.brand-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand-name span { color: var(--text-2); font-weight: 400; }

.menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.menu a {
  font-size: 14px;
  color: var(--text-1);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color var(--t-fast), background var(--t-fast);
}
.menu a:hover { color: var(--text-0); background: var(--surface-1); }
.menu a.is-active { color: var(--text-0); background: var(--surface-2); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 18px; height: 18px; }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg-0);
  padding: 100px var(--gutter) var(--space-7);
  display: none;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-1);
  color: var(--text-0);
}
.mobile-menu .mobile-cta {
  margin-top: var(--space-6);
  display: flex; flex-direction: column; gap: 10px;
}
.mobile-close {
  position: absolute;
  top: 22px; right: var(--gutter);
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  display: grid; place-items: center;
}

/* ---------- 8. Hero ---------- */
.hero {
  padding: 160px 0 var(--space-10);
  position: relative;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-1);
  margin-bottom: var(--space-6);
}
.hero-tag .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--accent-teal);
  box-shadow: 0 0 12px rgba(93,202,165,.6);
}

.hero-title {
  max-width: 16ch;
  margin-bottom: var(--space-6);
}
.hero-lede {
  margin-bottom: var(--space-7);
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--space-9);
}

/* Hero visual */
.hero-visual {
  position: relative;
  margin-top: var(--space-9);
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 21/9;
  background: var(--bg-1);
  border: 1px solid var(--border-1);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .92;
}
.hero-visual::after {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,7,12,.75) 100%);
  pointer-events: none;
}

/* Trust strip */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: var(--space-7) 0;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.trust-item {
  padding: 0 var(--space-5);
  border-left: 1px solid var(--border-1);
}
.trust-item:first-child { border-left: 0; padding-left: 0; }
.trust-item .label {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.trust-item .value {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text-0);
}

/* ---------- 9. Pillars (diferenciais) ---------- */
.pillars-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: end;
  margin-bottom: var(--space-9);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-1);
}
.pillar {
  padding: var(--space-7) var(--space-5) var(--space-6) 0;
  border-bottom: 1px solid var(--border-1);
  position: relative;
}
.pillar:not(:last-child) { border-right: 1px solid var(--border-1); padding-right: var(--space-5); }
.pillar:not(:last-child) + .pillar { padding-left: var(--space-5); }
.pillar:nth-child(n+2) { padding-left: var(--space-5); }
.pillar-icon {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--accent-teal-soft);
  color: var(--accent-teal);
  display: grid; place-items: center;
  margin-bottom: var(--space-5);
}
.pillar-icon svg { width: 18px; height: 18px; }
.pillar h3 { margin-bottom: var(--space-3); color: var(--text-0); }
.pillar p { font-size: 15px; color: var(--text-2); }

/* ---------- 10. Product (app showcase) ---------- */
.product {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--space-9);
  align-items: center;
}
.product-copy h2 { margin-bottom: var(--space-5); }
.product-copy p { margin-bottom: var(--space-6); }
.product-list { display: grid; gap: 18px; margin-bottom: var(--space-7); }
.product-list li {
  display: flex; gap: 14px;
  font-size: 15px;
  color: var(--text-1);
  align-items: flex-start;
}
.product-list .check {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--accent-teal-soft);
  color: var(--accent-teal);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.product-list .check svg { width: 12px; height: 12px; }
.product-visual {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-1);
  background: var(--bg-1);
  position: relative;
}
.product-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- 11. Coverage grid ---------- */
.coverage-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: end;
  margin-bottom: var(--space-8);
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.coverage-card {
  padding: var(--space-7) var(--space-6);
  background: var(--bg-0);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: background var(--t-base);
  position: relative;
}
.coverage-card:hover { background: var(--bg-1); }
.coverage-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  color: var(--accent-teal);
  display: grid; place-items: center;
}
.coverage-icon svg { width: 22px; height: 22px; }
.coverage-card h3 { color: var(--text-0); }
.coverage-card p { color: var(--text-2); font-size: 14.5px; line-height: 1.6; }
.coverage-card .arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--text-0);
  margin-top: auto;
  padding-top: var(--space-3);
}
.coverage-card .arrow-link svg {
  width: 14px; height: 14px;
  transition: transform var(--t-base);
}
.coverage-card:hover .arrow-link svg { transform: translateX(3px); }

/* ---------- 12. Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
}
.step {
  padding: var(--space-7) 0 0;
  border-top: 1px solid var(--border-1);
  position: relative;
}
.step-num {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--text-3);
  margin-bottom: var(--space-5);
}
.step h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  max-width: 22ch;
}
.step p { color: var(--text-2); font-size: 15px; max-width: 38ch; }

/* ---------- 13. Assistance ---------- */
.assist {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-9);
  align-items: center;
}
.assist-visual {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-1);
}
.assist-visual img { width: 100%; height: 100%; object-fit: cover; }
.assist-copy h2 { margin-bottom: var(--space-5); }
.assist-copy p { font-size: 17px; line-height: 1.6; margin-bottom: var(--space-7); }
.assist-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-1);
}
.service {
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--border-1);
  display: flex;
  align-items: center;
  gap: 14px;
}
.service:nth-child(odd) { padding-right: var(--space-5); border-right: 1px solid var(--border-1); }
.service:nth-child(even) { padding-left: var(--space-5); }
.service-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface-1);
  color: var(--accent-teal);
  display: grid; place-items: center;
}
.service-icon svg { width: 18px; height: 18px; }
.service .label { font-size: 14px; color: var(--text-2); margin-bottom: 2px; letter-spacing: .04em; text-transform: uppercase; font-size: 11px; }
.service .name { font-size: 16px; color: var(--text-0); }

/* ---------- 14. Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.testimonial {
  padding: var(--space-7) var(--space-6);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  background: var(--surface-1);
}
.testimonial blockquote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-0);
  font-weight: 300;
  letter-spacing: -0.005em;
  margin-bottom: var(--space-6);
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-violet));
  display: grid; place-items: center;
  color: var(--bg-0);
  font-size: 14px;
  font-weight: 600;
}
.testimonial-author .who { font-size: 14px; color: var(--text-1); }
.testimonial-author .who span { display: block; color: var(--text-3); font-size: 12px; margin-top: 2px; }

/* ---------- 15. CTA final ---------- */
.cta-final {
  padding: var(--space-10) var(--space-8);
  background:
    radial-gradient(60% 80% at 0% 100%, rgba(93,202,165,.18), transparent 65%),
    radial-gradient(60% 80% at 100% 0%, rgba(143,93,255,.18), transparent 65%),
    var(--bg-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final h2 {
  max-width: 18ch;
  margin: 0 auto var(--space-5);
}
.cta-final p {
  max-width: 50ch;
  margin: 0 auto var(--space-7);
  color: var(--text-1);
  font-size: 17px;
}
.cta-final .hero-actions { justify-content: center; margin: 0; }

/* ---------- 16. Footer ---------- */
.footer {
  padding: var(--space-9) 0 var(--space-7);
  border-top: 1px solid var(--border-1);
  margin-top: var(--space-10);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
.footer-brand p {
  color: var(--text-2);
  font-size: 14px;
  margin-top: var(--space-4);
  max-width: 32ch;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: var(--space-5);
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-1);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--text-0); }
.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-3);
  gap: var(--space-5);
  flex-wrap: wrap;
}

/* ---------- 17. Page hero (internas) ---------- */
.page-hero {
  padding: 160px 0 var(--space-9);
  border-bottom: 1px solid var(--border-1);
}
.page-hero h1 { max-width: 18ch; margin-bottom: var(--space-5); }
.page-hero .lede { max-width: 60ch; }

/* ---------- 18. Manifesto / Sobre ---------- */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: start;
  margin-bottom: var(--space-10);
}
.manifesto h2 { max-width: 18ch; }
.manifesto-text p { font-size: 17px; line-height: 1.65; margin-bottom: var(--space-5); }
.manifesto-text p:last-child { margin-bottom: 0; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-1);
}
.value {
  padding: var(--space-7) var(--space-5) var(--space-7) 0;
  border-bottom: 1px solid var(--border-1);
}
.value:not(:last-child) { border-right: 1px solid var(--border-1); padding-right: var(--space-6); }
.value:nth-child(n+2) { padding-left: var(--space-6); }
.value-num {
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: .12em;
  margin-bottom: var(--space-5);
}
.value h3 { margin-bottom: var(--space-3); }
.value p { color: var(--text-2); font-size: 15px; }

/* ---------- 19. Coverages full page ---------- */
.coverages-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.coverage-row {
  background: var(--bg-0);
  padding: var(--space-7) var(--space-7);
  display: grid;
  grid-template-columns: 60px 1.2fr 2fr auto;
  gap: var(--space-7);
  align-items: center;
  transition: background var(--t-base);
}
.coverage-row:hover { background: var(--bg-1); }
.coverage-row .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  color: var(--accent-teal);
  display: grid; place-items: center;
}
.coverage-row .icon svg { width: 22px; height: 22px; }
.coverage-row h3 { color: var(--text-0); }
.coverage-row p { color: var(--text-2); font-size: 15px; }

/* ---------- 20. FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--border-1);
}
.faq-item {
  border-bottom: 1px solid var(--border-1);
}
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-6) 0;
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--text-0);
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--accent-teal); }
.faq-q .toggle {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background var(--t-base), border-color var(--t-base);
}
.faq-q .toggle svg {
  width: 16px; height: 16px;
  transition: transform var(--t-base);
}
.faq-item.is-open .faq-q .toggle { background: var(--accent-teal); border-color: var(--accent-teal); color: var(--bg-0); }
.faq-item.is-open .faq-q .toggle svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}
.faq-a-inner {
  padding-bottom: var(--space-6);
  color: var(--text-1);
  font-size: 16px;
  line-height: 1.65;
  max-width: 70ch;
}
.faq-item.is-open .faq-a { max-height: 400px; }

/* ---------- 21. Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
}
.contact-form {
  display: grid;
  gap: var(--space-5);
}
.field { display: grid; gap: 8px; }
.field label {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-2);
  padding: 14px 0;
  color: var(--text-0);
  font-size: 16px;
  outline: none;
  transition: border-color var(--t-base);
  width: 100%;
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--accent-teal); }
.field textarea { min-height: 100px; resize: vertical; }
.field select { appearance: none; cursor: pointer; }

.contact-info { display: grid; gap: var(--space-7); }
.contact-block { padding-top: var(--space-5); border-top: 1px solid var(--border-1); }
.contact-block .label {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: var(--space-3);
}
.contact-block .value {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text-0);
}
.contact-block .helper { font-size: 14px; color: var(--text-2); margin-top: 6px; }

/* ---------- 22. Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

/* ---------- 23. Utilities ---------- */
.text-center { text-align: center; }
.mt-7 { margin-top: var(--space-7); }
.mt-9 { margin-top: var(--space-9); }
.divider { height: 1px; background: var(--border-1); margin: var(--space-9) 0; }

/* ---------- 23b. Multi-product picker ---------- */
.product-picker-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: end;
  margin-bottom: var(--space-7);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: var(--space-6) var(--space-5) var(--space-5);
  background: var(--bg-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  transition: transform var(--t-base), border-color var(--t-base), background var(--t-base);
  overflow: hidden;
  min-height: 240px;
  cursor: pointer;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, var(--card-accent, var(--accent-teal)) 90%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-3px);
  background: var(--bg-2);
}
.product-card:hover::before { opacity: 1; }
.product-card .pc-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: color-mix(in oklab, var(--card-accent, var(--accent-teal)) 16%, transparent);
  color: var(--card-accent, var(--accent-teal));
  display: grid; place-items: center;
}
.product-card .pc-icon svg { width: 22px; height: 22px; }
.product-card .pc-name {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-0);
}
.product-card .pc-tag {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: -10px;
}
.product-card .pc-from {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-1);
  font-size: 13px;
  color: var(--text-2);
}
.product-card .pc-from strong {
  color: var(--text-0);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.product-card .pc-from .arrow {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  display: grid; place-items: center;
  color: var(--text-1);
  transition: background var(--t-base), color var(--t-base);
}
.product-card .pc-from .arrow svg { width: 12px; height: 12px; }
.product-card:hover .pc-from .arrow { background: var(--card-accent, var(--accent-teal)); color: var(--bg-0); border-color: transparent; }

/* compact category bar — Lemonade-style horizontal scroller */
.product-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--space-7);
}
.product-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-1);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.product-pill:hover { color: var(--text-0); border-color: var(--border-2); background: var(--surface-2); }
.product-pill .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--card-accent, var(--accent-teal)); }

/* ---------- 23c. Conversational quote box (Lemonade-inspired) ---------- */
.quote-box {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: var(--bg-1);
  border: 1px solid var(--border-1);
  border-radius: 999px;
  max-width: 560px;
}
.quote-box select,
.quote-box input {
  background: transparent;
  border: 0;
  outline: none;
  color: var(--text-0);
  font-size: 15px;
  padding: 10px 14px;
  flex: 1;
  min-width: 0;
}
.quote-box select { cursor: pointer; appearance: none; }
.quote-box .divider-v { width: 1px; background: var(--border-1); margin: 4px 0; }
.quote-box button {
  flex-shrink: 0;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--text-0);
  color: var(--bg-0);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--t-base);
}
.quote-box button:hover { background: #fff; }

/* ---------- 23d. Stats / Big numbers ---------- */
.bignum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.bignum {
  padding: var(--space-7) var(--space-5);
  border-left: 1px solid var(--border-1);
}
.bignum:first-child { border-left: 0; }
.bignum .value {
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1;
  font-weight: 200;
  letter-spacing: -0.04em;
  color: var(--text-0);
  margin-bottom: var(--space-3);
}
.bignum .value em { color: var(--accent-teal); font-style: normal; }
.bignum .label {
  font-size: 14px;
  color: var(--text-2);
  max-width: 24ch;
}

/* ---------- 23e2. GENIA analysis section ---------- */
.genia-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-9);
  align-items: center;
}
.genia-section .eyebrow-genia {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 8px;
  background: linear-gradient(135deg, rgba(93,202,165,.12), rgba(143,93,255,.12));
  border: 1px solid var(--border-1);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-1);
  font-weight: 600;
  margin-bottom: var(--space-5);
}
.genia-section .eyebrow-genia .glyph {
  width: 18px; height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-violet));
  display: grid; place-items: center;
  color: var(--bg-0);
}
.genia-section .eyebrow-genia .glyph svg { width: 10px; height: 10px; }

.genia-copy h2 { max-width: 18ch; margin-bottom: var(--space-5); }
.genia-copy .lede { margin-bottom: var(--space-6); }
.genia-copy .points {
  display: grid; gap: 14px;
  margin-bottom: var(--space-6);
}
.genia-copy .points li {
  display: flex; gap: 14px;
  font-size: 15px;
  color: var(--text-1);
}
.genia-copy .points .num {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--accent-teal-soft);
  color: var(--accent-teal);
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* Analysis card */
.analysis-card {
  background: var(--bg-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
}
.analysis-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(50% 80% at 0% 0%, rgba(143,93,255,.15), transparent 60%),
    radial-gradient(60% 80% at 100% 100%, rgba(93,202,165,.15), transparent 60%);
  pointer-events: none;
}
.analysis-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: var(--space-5);
  position: relative;
}
.analysis-head .glyph {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-violet));
  display: grid; place-items: center;
  color: var(--bg-0);
}
.analysis-head .glyph svg { width: 14px; height: 14px; }
.analysis-head .label {
  font-size: 13px;
  color: var(--text-0);
  font-weight: 500;
}
.analysis-head .label span { color: var(--text-3); font-weight: 400; }
.analysis-head .status {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  color: var(--accent-teal);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}
.analysis-head .status .pulse {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--accent-teal);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(93,202,165,.6); }
  50%      { opacity: .6; box-shadow: 0 0 0 8px rgba(93,202,165,0); }
}

.analysis-input,
.analysis-output {
  position: relative;
  padding: 16px 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-1);
}
.analysis-input { background: var(--bg-2); }
.analysis-input .field-name {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.analysis-input .field-row {
  display: flex; justify-content: space-between;
  padding: 7px 0;
  font-size: 13px;
}
.analysis-input .field-row + .field-row { border-top: 1px solid var(--border-1); }
.analysis-input .k { color: var(--text-2); }
.analysis-input .v { color: var(--text-0); font-weight: 500; }

.analysis-process {
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 0;
  position: relative;
}
.analysis-process .dots {
  display: flex; gap: 6px;
  margin: 8px 0;
}
.analysis-process .dots span {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--accent-violet);
  opacity: .3;
  animation: bounce 1.4s ease-in-out infinite;
}
.analysis-process .dots span:nth-child(2) { animation-delay: .18s; }
.analysis-process .dots span:nth-child(3) { animation-delay: .36s; }
.analysis-process .dots span:nth-child(4) { animation-delay: .54s; }
@keyframes bounce {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.analysis-process .meta {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
}

.analysis-output {
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(93,202,165,.08), transparent 60%),
    var(--bg-2);
  border-color: rgba(93,202,165,.3);
}
.analysis-output .badge-rec {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-teal);
  font-weight: 600;
  margin-bottom: 10px;
}
.analysis-output .badge-rec::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 999px; background: var(--accent-teal);
}
.analysis-output .rec-name {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-0);
  margin-bottom: 6px;
}
.analysis-output .rec-price {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 14px;
}
.analysis-output .rec-price strong { color: var(--accent-teal); font-weight: 500; }
.analysis-output .rec-why {
  display: grid; gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border-1);
}
.analysis-output .rec-why li {
  font-size: 12px;
  color: var(--text-1);
  display: flex; gap: 8px;
  align-items: flex-start;
}
.analysis-output .rec-why li svg {
  width: 13px; height: 13px;
  color: var(--accent-teal);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---------- 23e. Conversational moment / hero-callout ---------- */
.hello-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-1);
}
.hello-strip .av {
  display: flex;
}
.hello-strip .av span {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-violet));
  border: 2px solid var(--bg-0);
  margin-left: -8px;
}
.hello-strip .av span:first-child { margin-left: 0; }

/* ---------- 23f. Assistência showcase ---------- */
.assist-showcase {
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--border-1);
  background: var(--bg-1);
  box-shadow: 0 30px 80px rgba(0,0,0,.30);
}
.assist-showcase img {
  width: 100%;
  height: auto;
  display: block;
}
body[data-theme="light"] .assist-showcase {
  box-shadow: 0 24px 60px rgba(11,26,43,.10);
}
.assist-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-7);
}
.assist-intro .eyebrow { justify-content: center; }

/* ---------- 24. Responsive ---------- */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .bignum-grid { grid-template-columns: 1fr; }
  .bignum { border-left: 0; border-top: 1px solid var(--border-1); }
  .bignum:first-child { border-top: 0; }
  .product-picker-head { grid-template-columns: 1fr; gap: var(--space-5); }
  .pillars-head, .coverage-head, .manifesto { grid-template-columns: 1fr; gap: var(--space-6); }
  .pillars, .values, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: 0; padding-right: 0; }
  .pillar:nth-child(3) { padding-left: 0; border-right: 1px solid var(--border-1); padding-right: var(--space-5); }
  .pillar:nth-child(4) { padding-left: var(--space-5); }
  .value:nth-child(2) { border-right: 0; padding-right: 0; }
  .value:nth-child(3) { padding-left: 0; border-right: 1px solid var(--border-1); padding-right: var(--space-6); }
  .product, .assist, .contact-grid, .genia-section { grid-template-columns: 1fr; gap: var(--space-7); }
  .analysis-card { max-width: 100%; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: var(--space-7); }
  .testimonials { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: var(--space-4) 0; border-left: 0; border-top: 1px solid var(--border-1); }
  .trust-item:first-child, .trust-item:nth-child(2) { border-top: 0; padding-top: 0; }
  .coverage-row { grid-template-columns: 60px 1fr; gap: var(--space-4); }
  .coverage-row p { grid-column: 2; }
  .coverage-row .arrow-link { grid-column: 1 / -1; margin-top: var(--space-3); }
}

@media (max-width: 720px) {
  :root { --space-11: 96px; --space-10: 80px; --space-9: 64px; --gutter: 20px; }
  .menu, .nav-cta .btn--ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { padding-top: 120px; padding-bottom: var(--space-9); }
  .hero-visual { aspect-ratio: 4/3; margin-top: var(--space-7); }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }
  .values { grid-template-columns: 1fr; }
  .value { border-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }
  .coverage-grid { grid-template-columns: 1fr; }
  .assist-services { grid-template-columns: 1fr; }
  .service:nth-child(odd) { border-right: 0; padding-right: 0; }
  .service:nth-child(even) { padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust { grid-template-columns: 1fr; }
  .trust-item { padding: var(--space-4) 0; border-left: 0; border-top: 1px solid var(--border-1); }
  .trust-item:first-child { border-top: 0; padding-top: 0; }
  .cta-final { padding: var(--space-8) var(--space-5); }
  .coverage-row { padding: var(--space-5); }
}
