/* =========================================================
   LOMIX TECNOLOGIA — folha de estilos principal
   Paleta: verde esmeralda profundo + dourado como acento
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Verdes da marca */
  --brand-green: #006B4F;
  --brand-green-dark: #004D3A;
  --brand-emerald: #008A68;
  --brand-green-light: #18A878;

  /* Dourados (acento) */
  --brand-gold: #C99A3A;
  --brand-gold-light: #E2B85B;
  --brand-gold-glow: #F0CD78;

  /* Neutros escuros */
  --bg-base: #050B09;
  --bg-elevated: #0A1512;
  --bg-surface: #0F211B;
  --bg-surface-2: #142D24;
  --bg-deep: #030706;

  --border-subtle: rgba(24, 168, 120, 0.14);
  --border-gold: rgba(201, 154, 58, 0.28);

  --text-primary: #F2F7F4;
  --text-secondary: #B9CCC4;
  --text-muted: #7E948C;
  --text-error: #E86C6C;

  /* Tipografia */
  --font-display: "Sora", "Montserrat", "Avenir Next", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1240px;
  --pad-x: 24px;
  --radius-card: 14px;
  --radius-btn: 10px;

  /* Efeitos */
  --shadow-card: 0 1px 0 rgba(255,255,255,0.03) inset, 0 20px 40px -24px rgba(0,0,0,0.8);
  --glow-green: 0 0 60px -20px rgba(0,138,104,0.55);
  --divider: linear-gradient(90deg, transparent, rgba(201,154,58,0.5), transparent);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  :root { --pad-x: 40px; }
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-green-light); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-gold-light); }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 .6em;
  text-wrap: balance;
}
p { margin: 0 0 1.1em; max-width: 72ch; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--brand-gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(0,138,104,.45); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brand-green); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.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;
}

/* ---------- 3. Tipografia ---------- */
h1 { font-size: clamp(2.05rem, 1.35rem + 2.6vw, 3rem); line-height: 1.1; letter-spacing: -.02em; }
.hero h1 { font-size: clamp(2.15rem, 1.25rem + 3.6vw, 3.75rem); line-height: 1.06; }
h2 { font-size: clamp(1.6rem, 1.15rem + 1.7vw, 2.375rem); line-height: 1.15; letter-spacing: -.015em; }
h3 { font-size: clamp(1.19rem, 1.08rem + .35vw, 1.375rem); line-height: 1.3; letter-spacing: -.01em; }
h4 { font-size: 1.0625rem; line-height: 1.4; }

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--brand-gold), rgba(201,154,58,0));
  margin-bottom: 14px;
}
.text-center .eyebrow::before { margin-left: auto; margin-right: auto; }

.lead {
  font-size: clamp(1.0625rem, 1rem + .35vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 68ch;
}
.text-center .lead, .text-center p { margin-left: auto; margin-right: auto; }

.gold-text {
  background: linear-gradient(95deg, #C99A3A 0%, #F0CD78 50%, #C99A3A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted { color: var(--text-muted); font-size: .845rem; line-height: 1.6; }
.secondary { color: var(--text-secondary); }
.text-center { text-align: center; }

/* ---------- 4. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.container--narrow { max-width: 820px; }

.section { padding-top: 72px; padding-bottom: 72px; position: relative; }
@media (min-width: 900px) { .section { padding-top: 120px; padding-bottom: 120px; } }

.section--alt { background: var(--bg-elevated); }
.section--tight { padding-top: 52px; padding-bottom: 52px; }
@media (min-width: 900px) { .section--tight { padding-top: 72px; padding-bottom: 72px; } }

.section--line::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--divider);
}

.section-head { margin-bottom: 44px; max-width: 760px; }
.section-head.text-center { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 18px; }
.section-head .lead { margin-bottom: 0; }
@media (min-width: 900px) { .section-head { margin-bottom: 56px; } }

.grid { display: grid; gap: 22px; }
@media (min-width: 640px) { .grid--2, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid { gap: 26px; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 640px) and (max-width: 899px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

.stack > * + * { margin-top: 18px; }

/* ---------- 5. Cabeçalho ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 80px;
  display: flex; align-items: center;
  transition: height .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  height: 66px;
  background: rgba(5, 11, 9, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-subtle);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.header__logo img { height: 30px; width: auto; transition: height .3s var(--ease); }
@media (min-width: 900px) { .header__logo img { height: 40px; } }
.header.is-scrolled .header__logo img { height: 27px; }
@media (min-width: 900px) { .header.is-scrolled .header__logo img { height: 34px; } }

.nav { display: none; }
@media (min-width: 1060px) { .nav { display: block; } }
.nav > ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }

.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  font-size: .95rem; font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  background: none; border: 0; cursor: pointer;
  transition: color .2s var(--ease);
}
.nav__link:hover, .nav__link[aria-expanded="true"] { color: var(--text-primary); }
.nav__link.is-active { color: var(--text-primary); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--brand-gold); border-radius: 2px;
}
.nav__chev { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.nav__link[aria-expanded="true"] .nav__chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 330px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav__item.is-open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 11px 14px; border-radius: 9px;
  color: var(--text-primary); font-size: .93rem; font-weight: 500; line-height: 1.35;
}
.dropdown a span { display: block; color: var(--text-muted); font-size: .8rem; font-weight: 400; margin-top: 3px; line-height: 1.45; }
.dropdown a:hover { background: var(--bg-surface-2); color: var(--text-primary); }
.dropdown a:hover span { color: var(--text-secondary); }

.header .header__cta { display: none; }
@media (min-width: 1060px) { .header .header__cta { display: inline-flex; } }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px;
  background: none; border: 1px solid var(--border-subtle); border-radius: 10px;
  cursor: pointer;
}
@media (min-width: 1060px) { .burger { display: none; } }
.burger span { display: block; height: 1.5px; background: var(--text-primary); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 99;
  background: var(--bg-elevated);
  padding: 96px var(--pad-x) 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-menu.is-open { transform: translateX(0); }
@media (min-width: 1060px) { .mobile-menu { display: none; } }
.mobile-menu a { color: var(--text-primary); font-size: 1.2rem; font-weight: 500; display: block; padding: 14px 0; }
.mobile-menu > ul > li { border-bottom: 1px solid var(--border-subtle); }
.mobile-menu details summary {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1.2rem; font-weight: 500; padding: 14px 0; cursor: pointer; list-style: none;
}
.mobile-menu details summary::-webkit-details-marker { display: none; }
.mobile-menu details summary::after { content: "+"; color: var(--brand-gold); font-size: 1.4rem; line-height: 1; }
.mobile-menu details[open] summary::after { content: "–"; }
.mobile-menu details ul { padding: 0 0 12px 14px; border-left: 1px solid var(--border-subtle); }
.mobile-menu details ul a { font-size: 1rem; color: var(--text-secondary); padding: 9px 0; }
.mobile-menu .btn { margin-top: 28px; }

/* ---------- 6. Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body); font-size: .97rem; font-weight: 500;
  text-align: center; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), color .2s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-emerald));
  border-color: rgba(24,168,120,.5);
  color: #F2F7F4;
}
.btn--primary:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 12px 28px -14px rgba(0,138,104,.9); }

.btn--ghost { background: transparent; border-color: var(--border-gold); color: var(--brand-gold-light); }
.btn--ghost:hover { background: rgba(201,154,58,.08); color: var(--brand-gold-glow); transform: translateY(-1px); }

.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: .95rem; color: var(--brand-green-light);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.text-center .btn-row { justify-content: center; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  padding-top: 132px;
  padding-bottom: 72px;
  overflow: hidden;
}
@media (min-width: 900px) { .hero { padding-top: 176px; padding-bottom: 104px; } }

.hero::before {
  content: "";
  position: absolute; top: -20%; left: -10%; right: -10%; height: 90%;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,138,104,.22), transparent 70%);
  pointer-events: none;
}
.hero__mark {
  position: absolute; right: -14%; top: 4%;
  width: min(620px, 72vw);
  opacity: .05;
  pointer-events: none;
  user-select: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 860px; }
.hero .lead { margin-bottom: 32px; }
.hero--page { padding-bottom: 56px; }
@media (min-width: 900px) { .hero--page { padding-top: 156px; padding-bottom: 76px; } }

.hero__meta {
  margin-top: 34px; padding-top: 22px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted); font-size: .86rem;
  display: flex; flex-wrap: wrap; gap: 8px 18px;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--brand-gold); flex: none; }

.breadcrumbs { font-size: .8rem; color: var(--text-muted); margin-bottom: 20px; position: relative; z-index: 1; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: rgba(126,148,140,.6); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--brand-gold-light); }
.breadcrumbs [aria-current] { color: var(--text-secondary); }

/* ---------- 8. Faixa de números ---------- */
.factbar { border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); background: var(--bg-elevated); }
.factbar__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .factbar__grid { grid-template-columns: repeat(4, 1fr); } }
.factbar__item { padding: 26px 22px; border-right: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.factbar__item:nth-child(2n) { border-right: 0; }
@media (min-width: 900px) {
  .factbar__item { border-bottom: 0; padding: 34px 26px; }
  .factbar__item:nth-child(2n) { border-right: 1px solid var(--border-subtle); }
  .factbar__item:last-child { border-right: 0; }
}
.factbar__value {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.3rem, 1.05rem + .9vw, 1.75rem);
  color: var(--brand-gold-light);
  font-variant-numeric: tabular-nums;
  line-height: 1.1; margin-bottom: 8px;
}
.factbar__label { font-size: .84rem; color: var(--text-secondary); line-height: 1.55; margin: 0; }

/* ---------- 9. Cards ---------- */
.card {
  background: linear-gradient(160deg, var(--bg-surface) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
  position: relative;
}
.card:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-secondary); font-size: .95rem; margin-bottom: 0; }
.card p + p { margin-top: .8em; }
.card--static:hover { transform: none; }

.card__icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,138,104,.14);
  border: 1px solid rgba(24,168,120,.26);
  color: var(--brand-gold-light);
  margin-bottom: 18px;
}
.card__icon svg { width: 21px; height: 21px; }

.card--linked { display: flex; flex-direction: column; }
.card--linked .link-arrow { margin-top: auto; padding-top: 20px; }

.card__list { margin-top: 18px; }
.card__list li {
  position: relative; padding-left: 18px; font-size: .9rem;
  color: var(--text-secondary); line-height: 1.55; margin-bottom: 8px;
}
.card__list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 1px; background: var(--brand-gold);
}

/* Card numerado (sequências reais) */
.num-card { position: relative; overflow: hidden; }
.num-card__n {
  font-family: var(--font-display); font-weight: 600; font-size: 3.4rem;
  color: rgba(201,154,58,.20); line-height: 1;
  position: absolute; top: 14px; right: 20px;
  font-variant-numeric: tabular-nums; pointer-events: none;
}
.num-card h3 { padding-right: 62px; }

/* Destaque com borda dourada */
.card--gold { border-color: var(--border-gold); background: linear-gradient(160deg, rgba(201,154,58,.07), var(--bg-elevated) 70%); }
.card--gold .card__icon { color: var(--brand-gold-glow); border-color: var(--border-gold); background: rgba(201,154,58,.1); }

/* Lista dupla: é / não é */
.duo { display: grid; gap: 22px; }
@media (min-width: 880px) { .duo { grid-template-columns: repeat(2, 1fr); } }
.duo__title { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 18px; }
.duo__title svg { width: 18px; height: 18px; flex: none; }
.list-check li, .list-dash li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: .95rem; color: var(--text-secondary); line-height: 1.6; }
.list-check li::before {
  content: ""; position: absolute; left: 4px; top: .5em;
  width: 11px; height: 6px; border-left: 1.6px solid var(--brand-green-light); border-bottom: 1.6px solid var(--brand-green-light);
  transform: rotate(-45deg);
}
.list-dash li::before {
  content: ""; position: absolute; left: 4px; top: .78em;
  width: 11px; height: 1.6px; background: var(--brand-gold);
}

/* ---------- 10. Estatísticas ---------- */
.stat {
  border-top: 2px solid var(--brand-gold);
  background: var(--bg-surface);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  padding: 26px 24px 24px;
}
.stat__value {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 1.6rem + 1.4vw, 2.6rem);
  color: var(--brand-gold-light); line-height: 1;
  font-variant-numeric: tabular-nums; margin-bottom: 14px;
}
.stat__label { font-size: .95rem; color: var(--text-secondary); margin-bottom: 14px; }
.stat__source { font-size: .74rem; color: var(--text-muted); line-height: 1.5; margin: 0; padding-top: 12px; border-top: 1px solid var(--border-subtle); }

/* ---------- 11. Processo / etapas ---------- */
.steps { counter-reset: step; }
.steps--h { display: grid; gap: 26px; }
@media (min-width: 720px) { .steps--h { grid-template-columns: repeat(5, 1fr); } }
.steps--h.steps--6 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .steps--h.steps--6 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1060px) { .steps--h.steps--6 { grid-template-columns: repeat(6, 1fr); } }

.step { position: relative; padding-top: 30px; }
.step::before {
  content: ""; position: absolute; top: 5px; left: 0;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--bg-base); border: 2px solid var(--brand-gold);
  z-index: 1;
}
.step::after {
  content: ""; position: absolute; top: 10px; left: 11px; right: -26px; height: 1px;
  background: linear-gradient(90deg, rgba(201,154,58,.45), rgba(201,154,58,.12));
}
.step:last-child::after { display: none; }
@media (max-width: 719px) {
  .steps--h { gap: 0; }
  .step { padding: 0 0 26px 28px; }
  .step::before { top: 6px; }
  .step::after { top: 17px; left: 5px; right: auto; bottom: -6px; width: 1px; height: calc(100% - 20px);
    background: linear-gradient(180deg, rgba(201,154,58,.45), rgba(201,154,58,.1)); }
}
.step__n { font-family: var(--font-display); font-size: .78rem; font-weight: 600; letter-spacing: .1em; color: var(--brand-gold); display: block; margin-bottom: 6px; }
.step h3 { font-size: 1.06rem; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--text-secondary); margin: 0; }

/* Etapas verticais detalhadas */
.steps--v { display: grid; gap: 0; }
.vstep { position: relative; padding: 0 0 34px 42px; }
.vstep::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border-gold); background: var(--bg-surface);
}
.vstep__n {
  position: absolute; left: 0; top: 4px; width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .73rem; font-weight: 600; color: var(--brand-gold-light);
}
.vstep::after {
  content: ""; position: absolute; left: 13px; top: 32px; bottom: 4px; width: 1px;
  background: linear-gradient(180deg, rgba(201,154,58,.35), rgba(201,154,58,.06));
}
.vstep:last-child { padding-bottom: 0; }
.vstep:last-child::after { display: none; }
.vstep h3 { font-size: 1.1rem; margin-bottom: 8px; }
.vstep > p { color: var(--text-secondary); font-size: .95rem; }
.vstep ul li { position: relative; padding-left: 18px; font-size: .89rem; color: var(--text-muted); margin-bottom: 7px; line-height: 1.55; }
.vstep ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 1px; background: var(--brand-gold); }

/* ---------- 12. Fluxo horizontal ---------- */
.flow-wrap { overflow-x: auto; padding-bottom: 14px; -webkit-overflow-scrolling: touch; }
.flow { display: flex; align-items: stretch; gap: 0; min-width: max-content; padding: 2px; }
.flow__node {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: .85rem; color: var(--text-secondary); white-space: nowrap;
  font-weight: 500;
}
.flow__arrow { display: flex; align-items: center; padding: 0 10px; color: rgba(201,154,58,.6); }
.flow__arrow svg { width: 16px; height: 16px; }
.flow-hint { font-size: .78rem; color: var(--text-muted); margin-top: 8px; }
@media (min-width: 1060px) { .flow-hint { display: none; } }

/* ---------- 13. Diagrama de camadas ---------- */
.layers { display: grid; gap: 0; max-width: 940px; margin-left: auto; margin-right: auto; }
.layer {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  text-align: center;
}
.layer__title { font-family: var(--font-display); font-weight: 600; font-size: 1rem; margin-bottom: 6px; color: var(--text-primary); }
.layer__desc { font-size: .87rem; color: var(--text-muted); margin: 0; max-width: none; }
.layer--core {
  background: linear-gradient(160deg, rgba(0,138,104,.18), rgba(201,154,58,.07));
  border-color: var(--border-gold);
  box-shadow: var(--glow-green);
  padding: 28px 24px;
}
.layer--core .layer__title { font-size: 1.15rem; color: var(--brand-gold-glow); letter-spacing: .01em; }
.layer--core .layer__desc { color: var(--text-secondary); }
.layer-connector { height: 26px; display: flex; align-items: center; justify-content: center; }
.layer-connector::before { content: ""; width: 1px; height: 100%; background: linear-gradient(180deg, rgba(201,154,58,.1), rgba(201,154,58,.5), rgba(201,154,58,.1)); }

/* ---------- 14. Grade de capacidades ---------- */
.caps { display: grid; gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-subtle); border-radius: var(--radius-card); overflow: hidden; }
@media (min-width: 640px) { .caps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .caps { grid-template-columns: repeat(3, 1fr); } }
.cap { background: var(--bg-elevated); padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; transition: background-color .25s var(--ease); }
.cap:hover { background: var(--bg-surface-2); }
.cap__n { font-family: var(--font-display); font-size: .78rem; font-weight: 600; color: var(--brand-gold); font-variant-numeric: tabular-nums; padding-top: 2px; flex: none; }
.cap__t { font-size: .93rem; color: var(--text-secondary); line-height: 1.45; }

/* ---------- 15. Níveis / escada ---------- */
.ladder { display: grid; gap: 12px; }
.rung {
  display: flex; flex-wrap: wrap; gap: 6px 20px; align-items: baseline;
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--brand-gold);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 18px 22px;
}
.rung:nth-child(1) { border-left-width: 2px; border-left-color: rgba(201,154,58,.35); }
.rung:nth-child(2) { border-left-width: 3px; border-left-color: rgba(201,154,58,.55); }
.rung:nth-child(3) { border-left-width: 4px; border-left-color: rgba(201,154,58,.75); }
.rung:nth-child(4) { border-left-width: 5px; border-left-color: var(--brand-gold); }
.rung__t { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--text-primary); flex: none; }
.rung__d { font-size: .9rem; color: var(--text-secondary); margin: 0; }

/* ---------- 16. Tabela ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border-subtle); border-radius: var(--radius-card); }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
thead th {
  background: rgba(201,154,58,.09);
  color: var(--brand-gold-light);
  font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .06em; text-transform: uppercase;
  text-align: left; padding: 15px 20px;
  border-bottom: 1px solid var(--border-gold);
}
tbody td { padding: 16px 20px; font-size: .9rem; color: var(--text-secondary); border-bottom: 1px solid var(--border-subtle); vertical-align: top; line-height: 1.55; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: rgba(255,255,255,.012); }
td.is-weight { font-family: var(--font-display); font-weight: 600; color: var(--brand-gold-light); font-variant-numeric: tabular-nums; white-space: nowrap; }
td.is-name { color: var(--text-primary); font-weight: 500; }

/* ---------- 17. FAQ ---------- */
.faq { border-top: 1px solid var(--border-subtle); max-width: 860px; }
.faq details { border-bottom: 1px solid var(--border-subtle); }
.faq summary {
  display: flex; gap: 18px; align-items: flex-start; justify-content: space-between;
  padding: 22px 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 500; font-size: 1.03rem; color: var(--text-primary);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand-gold-light); }
.faq__chev { width: 18px; height: 18px; flex: none; margin-top: 4px; color: var(--brand-gold); transition: transform .25s var(--ease); }
.faq details[open] .faq__chev { transform: rotate(180deg); }
.faq details p { padding: 0 34px 24px 0; margin: 0; color: var(--text-secondary); font-size: .95rem; }

/* ---------- 18. Faixa de CTA ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--bg-elevated); border-top: 1px solid var(--border-subtle); }
.cta-band::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--divider); }
.cta-band__mark { position: absolute; right: -6%; top: 50%; transform: translateY(-50%); width: min(420px, 58vw); opacity: .05; pointer-events: none; }
.cta-band__inner { position: relative; z-index: 1; max-width: 720px; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 30px; }

/* ---------- 19. Blocos de apoio ---------- */
.note {
  border-left: 2px solid var(--brand-gold);
  background: rgba(201,154,58,.045);
  padding: 18px 22px;
  border-radius: 0 10px 10px 0;
  color: var(--text-secondary); font-size: .93rem;
  margin-top: 28px;
}
.note p { margin: 0; }
.note--plain { border-left-color: var(--border-subtle); background: rgba(255,255,255,.02); color: var(--text-muted); font-size: .84rem; }

.pull {
  text-align: center; max-width: 780px; margin: 44px auto 0;
  padding-top: 32px; position: relative;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.1rem, 1rem + .6vw, 1.375rem);
  line-height: 1.5; color: var(--text-secondary);
}
.pull::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 56px; height: 1px; background: var(--brand-gold); }
.pull em { font-style: normal; color: var(--brand-gold-light); }

.quote {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  background: linear-gradient(160deg, rgba(201,154,58,.06), transparent 70%);
  padding: 32px 30px;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.15rem, 1rem + .7vw, 1.5rem); line-height: 1.45;
  color: var(--text-primary);
  margin: 0;
}
.quote cite { display: block; margin-top: 16px; font-family: var(--font-body); font-size: .88rem; font-style: normal; color: var(--text-muted); font-weight: 400; }

.badges { display: flex; flex-wrap: wrap; gap: 9px; }
.badge {
  display: inline-block; padding: 7px 14px;
  border: 1px solid var(--border-subtle); border-radius: 999px;
  font-size: .82rem; color: var(--text-secondary); background: rgba(255,255,255,.015);
}
.badge--gold { border-color: var(--border-gold); color: var(--brand-gold-light); }

.equation {
  text-align: center; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.02rem, .92rem + .55vw, 1.3rem); line-height: 1.7;
  color: var(--text-primary);
  border: 1px solid var(--border-gold); border-radius: var(--radius-card);
  background: linear-gradient(160deg, rgba(0,138,104,.1), rgba(201,154,58,.05));
  padding: 34px 28px; margin-top: 36px;
}
.equation strong { color: var(--brand-gold-light); font-weight: 600; }

/* Split: texto + lateral */
.split { display: grid; gap: 40px; align-items: start; }
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1fr; gap: 60px; } }
@media (min-width: 960px) { .split--40 { grid-template-columns: 5fr 7fr; } }
.split--alt .split__media { order: -1; }
@media (min-width: 960px) { .split--alt .split__media { order: 0; } }

.mini-grid { display: grid; gap: 20px; }
@media (min-width: 560px) { .mini-grid { grid-template-columns: repeat(2, 1fr); } }
.mini { }
.mini__icon { color: var(--brand-gold-light); margin-bottom: 10px; display: block; }
.mini__icon svg { width: 20px; height: 20px; }
.mini h3 { font-size: 1rem; margin-bottom: 6px; }
.mini p { font-size: .88rem; color: var(--text-secondary); margin: 0; }

/* Setores */
.sector-grid { display: grid; gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-subtle); border-radius: var(--radius-card); overflow: hidden; }
@media (min-width: 640px) { .sector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .sector-grid { grid-template-columns: repeat(3, 1fr); } }
.sector { background: var(--bg-elevated); padding: 22px 22px; }
.sector h3 { font-size: .98rem; margin-bottom: 6px; color: var(--brand-gold-light); }
.sector p { font-size: .86rem; color: var(--text-muted); margin: 0; }

/* ---------- 20. Abas ---------- */
.tabs__list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.tab {
  padding: 12px 20px; border-radius: 999px; cursor: pointer;
  background: transparent; border: 1px solid var(--border-subtle);
  color: var(--text-secondary); font-size: .88rem; font-weight: 500;
  transition: all .25s var(--ease);
}
.tab:hover { border-color: var(--border-gold); color: var(--text-primary); }
.tab[aria-selected="true"] { background: rgba(0,138,104,.16); border-color: rgba(24,168,120,.5); color: var(--text-primary); }
.tabpanel { animation: fadeIn .3s var(--ease); }
.tabpanel[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.wave-head { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: baseline; margin-bottom: 8px; }
.wave-head h3 { margin: 0; }
.wave-period { font-size: .8rem; color: var(--brand-gold); font-family: var(--font-display); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-list li {
  font-size: .83rem; color: var(--text-secondary);
  background: rgba(255,255,255,.02); border: 1px solid var(--border-subtle);
  border-radius: 8px; padding: 8px 13px; line-height: 1.35;
}

/* Marcos */
.milestones { display: grid; gap: 20px; margin-top: 40px; padding-top: 34px; border-top: 1px solid var(--border-subtle); }
@media (min-width: 760px) { .milestones { grid-template-columns: repeat(4, 1fr); } }
.milestone { position: relative; padding-top: 22px; }
.milestone::before { content: ""; position: absolute; top: 0; left: 0; width: 9px; height: 9px; transform: rotate(45deg); background: var(--brand-gold); }
.milestone__m { font-family: var(--font-display); font-size: .75rem; font-weight: 600; color: var(--brand-gold); letter-spacing: .1em; display: block; margin-bottom: 5px; }
.milestone p { font-size: .9rem; color: var(--text-secondary); margin: 0; }

/* ---------- 21. Kanban ilustrativo ---------- */
.kanban { display: grid; gap: 14px; }
@media (min-width: 720px) { .kanban { grid-template-columns: repeat(4, 1fr); } }
.kanban__col { background: rgba(255,255,255,.015); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 14px; }
.kanban__t { font-family: var(--font-display); font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; display: block; }
.kanban__card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 8px; padding: 11px 13px; font-size: .82rem; color: var(--text-secondary); margin-bottom: 9px; line-height: 1.4; }
.kanban__card:last-child { margin-bottom: 0; }
.kanban__col--done .kanban__card { border-left: 2px solid var(--brand-green-light); }
.kanban__col--review .kanban__card { border-left: 2px solid var(--brand-gold); }

/* ---------- 22. Perfil ---------- */
.profile { display: grid; gap: 26px; align-items: start; }
@media (min-width: 760px) { .profile { grid-template-columns: auto 1fr; gap: 34px; } }
.avatar {
  width: 96px; height: 96px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.7rem;
  color: var(--brand-gold-light);
  background: radial-gradient(circle at 30% 25%, rgba(0,138,104,.3), rgba(5,11,9,.9));
  border: 1px solid var(--border-gold);
  flex: none;
}
.profile__role { color: var(--brand-gold-light); font-size: .9rem; margin-bottom: 4px; }
.profile h3 { margin-bottom: 4px; }

/* Cards de score ilustrativos */
.scorecards { display: grid; gap: 14px; }
.scorecard { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 16px 18px; }
.scorecard.is-top { border-color: var(--border-gold); background: linear-gradient(160deg, rgba(201,154,58,.07), var(--bg-surface) 70%); }
.scorecard__head { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 10px; }
.scorecard__name { font-family: var(--font-display); font-weight: 500; font-size: .95rem; }
.scorecard__score { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--brand-gold-light); font-variant-numeric: tabular-nums; }
.scorebar { height: 5px; border-radius: 3px; background: rgba(255,255,255,.06); overflow: hidden; margin-bottom: 10px; }
.scorebar span { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--brand-green), var(--brand-gold)); }
.scorecard__meta { font-size: .78rem; color: var(--text-muted); margin: 0; }

/* ---------- 23. Formulário ---------- */
.form-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: repeat(2, 1fr); } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .875rem; font-weight: 500; color: var(--text-secondary); }
.field label .req { color: var(--brand-gold); }
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-btn);
  color: var(--text-primary);
  font-family: var(--font-body); font-size: .97rem;
  padding: 13px 15px;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
  min-height: 48px;
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: rgba(126,148,140,.75); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: rgba(24,168,120,.55); background: rgba(255,255,255,.04);
  box-shadow: 0 0 0 3px rgba(0,138,104,.14);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237E948C' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 17px;
  padding-right: 42px;
}
.field select option { background: var(--bg-surface); color: var(--text-primary); }
.field .error-msg { font-size: .8rem; color: var(--text-error); display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--text-error); }
.field.has-error .error-msg { display: block; }
.field__hint { font-size: .78rem; color: var(--text-muted); }
.char-count { font-size: .76rem; color: var(--text-muted); text-align: right; font-variant-numeric: tabular-nums; }

.check { display: flex; gap: 12px; align-items: flex-start; }
.check input { width: 19px; height: 19px; min-height: 0; flex: none; margin-top: 3px; accent-color: var(--brand-emerald); }
.check label { font-size: .875rem; color: var(--text-secondary); line-height: 1.55; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-feedback { display: none; margin-top: 18px; padding: 14px 18px; border-radius: 10px; font-size: .92rem; }
.form-feedback.is-error { display: block; background: rgba(232,108,108,.1); border: 1px solid rgba(232,108,108,.35); color: #F3B7B7; }

.form-success { text-align: center; padding: 40px 24px; }
.form-success__icon {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,138,104,.16); border: 1px solid rgba(24,168,120,.45); color: var(--brand-green-light);
}
.form-success__icon svg { width: 28px; height: 28px; }

.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-card); margin-bottom: 14px; }
.contact-card__icon { color: var(--brand-gold-light); flex: none; margin-top: 2px; }
.contact-card__icon svg { width: 19px; height: 19px; }
.contact-card h3 { font-size: .88rem; color: var(--text-muted); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 5px; font-family: var(--font-body); }
.contact-card p, .contact-card a { font-size: .99rem; color: var(--text-primary); margin: 0; }
.contact-card a:hover { color: var(--brand-gold-light); }

.assurances { display: grid; gap: 12px; margin-top: 26px; }
.assurance { display: flex; gap: 11px; align-items: center; font-size: .89rem; color: var(--text-secondary); }
.assurance svg { width: 16px; height: 16px; color: var(--brand-green-light); flex: none; }

/* ---------- 24. Insights ---------- */
.empty-state { position: relative; text-align: center; padding: 64px 24px; border: 1px dashed var(--border-subtle); border-radius: var(--radius-card); overflow: hidden; }
.empty-state__mark { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 260px; opacity: .04; pointer-events: none; }
.empty-state > * { position: relative; z-index: 1; }
.notify-form { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 520px; margin: 26px auto 0; }
.notify-form input {
  flex: 1 1 240px; min-height: 48px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-btn);
  color: var(--text-primary);
  font-family: var(--font-body); font-size: .97rem;
  padding: 13px 15px;
}
.notify-form input::placeholder { color: rgba(126,148,140,.75); }
.notify-form input:focus { outline: none; border-color: rgba(24,168,120,.55); box-shadow: 0 0 0 3px rgba(0,138,104,.14); }

.post-grid { display: grid; gap: 24px; }
@media (min-width: 700px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- 25. Documento legal ---------- */
.legal { max-width: 780px; }
.legal h2 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.5rem); margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border-subtle); }
.legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 { font-size: 1.05rem; margin-top: 28px; }
.legal p, .legal li { color: var(--text-secondary); font-size: .97rem; }
.legal ul { margin: 0 0 1.1em; }
.legal ul li { position: relative; padding-left: 20px; margin-bottom: 9px; }
.legal ul li::before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 1px; background: var(--brand-gold); }
.toc { position: sticky; top: 104px; }
.toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.toc li { counter-increment: toc; margin-bottom: 9px; }
.toc a { font-size: .85rem; color: var(--text-muted); display: flex; gap: 10px; }
.toc a::before { content: counter(toc, decimal-leading-zero); color: rgba(201,154,58,.55); font-variant-numeric: tabular-nums; }
.toc a:hover { color: var(--brand-gold-light); }

/* ---------- 26. Rodapé ---------- */
.footer { background: var(--bg-deep); border-top: 1px solid var(--border-subtle); padding-top: 64px; }
.footer__grid { display: grid; gap: 40px; padding-bottom: 48px; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; } }
.footer__logo img { height: 46px; width: auto; margin-bottom: 20px; }
.footer__tagline { font-family: var(--font-display); font-size: .97rem; color: var(--text-secondary); margin-bottom: 16px; }
.footer h3 { font-family: var(--font-display); font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-gold); margin-bottom: 18px; }
.footer li { margin-bottom: 11px; }
.footer a, .footer p { font-size: .9rem; color: var(--text-secondary); }
.footer a:hover { color: var(--brand-gold-light); }
.footer address { font-style: normal; font-size: .88rem; color: var(--text-muted); line-height: 1.7; }
.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 22px 0 28px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center;
}
.footer__bottom p { font-size: .82rem; color: var(--text-muted); margin: 0; }
.footer__bottom a { font-size: .82rem; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 38px; height: 38px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-subtle); color: var(--text-secondary);
}
.social a:hover { border-color: var(--border-gold); color: var(--brand-gold-light); }
.social svg { width: 17px; height: 17px; }

/* ---------- 27. WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-emerald));
  border: 1px solid var(--border-gold);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.85);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.06); color: #fff; }
.wa-float svg { width: 26px; height: 26px; }
@media (min-width: 900px) { .wa-float { right: 28px; bottom: 28px; } }

/* ---------- 28. Banner de cookies ---------- */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-gold);
  padding: 18px var(--pad-x);
  transform: translateY(110%);
  transition: transform .35s var(--ease);
}
.cookie-bar.is-open { transform: translateY(0); }
.cookie-bar__inner { max-width: var(--container); margin-left: auto; margin-right: auto; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.cookie-bar p { font-size: .87rem; color: var(--text-secondary); margin: 0; max-width: 62ch; }
.cookie-bar .btn { min-height: 42px; padding: 9px 20px; font-size: .88rem; }

/* ---------- 29. Animação de entrada ---------- */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity .42s var(--ease), transform .42s var(--ease); }

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

/* ---------- 30. Página 404 ---------- */
.notfound { position: relative; min-height: 70vh; display: flex; align-items: center; text-align: center; overflow: hidden; }
.notfound__mark { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: min(460px, 70vw); opacity: .05; }
.notfound__inner { position: relative; z-index: 1; margin-left: auto; margin-right: auto; }
.quick-links { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center; margin: 28px 0 32px; }

/* ---------- 31. Impressão ---------- */
@media print {
  .header, .footer, .wa-float, .cookie-bar, .mobile-menu, .btn { display: none !important; }
  body { background: #fff; color: #111; }
}
