/* ==========================================================================
   Juliana Aranda 44.444 — sistema visual "clean"
   Mesma identidade (Barlow, petroleo, dourado, faixa MS), menos ruido:
   sem gradientes diagonais, sem sombras pesadas, sem hovers acrobaticos.
   ========================================================================== */

/* Barlow auto-hospedada (subset latin, woff2). Nada é pedido a terceiros em
   tempo de execução — o site não faz nenhuma requisição externa. */
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------- tokens ------- */
:root {
  /* identidade preservada */
  --navy: #062f55;
  --navy-deep: #031c33;
  --gold: #f7c713;
  --gold-ink: #7a5c00;
  --green: #009c3b;
  --ms-blue: #009ddc;
  --ms-yellow: #ffe900;

  /* superficies */
  --white: #ffffff;
  --paper: #f7fbff;
  --soft: #f1f8ff;

  /* texto */
  --ink: #031c33;
  --muted: #4c6480;
  --muted-light: #cfdeeb;

  /* linhas */
  --line: #dfe9f2;
  --line-strong: #c3d5e4;
  --line-dark: rgba(255, 255, 255, 0.16);

  --font: "Barlow", "Segoe UI", system-ui, Arial, sans-serif;
  --radius: 4px;
  --shell: min(1120px, 100% - 48px);
  --section: clamp(72px, 8.5vw, 116px);
  --header-h: 76px;
}

/* --------------------------------------------------------- reset -------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-underline-offset: 4px; }
button { font: inherit; }

::selection { background: var(--gold); color: var(--navy-deep); }

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

.shell { width: var(--shell); margin-inline: auto; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 999;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

/* --------------------------------------------------- tipografia base ---- */
.kicker {
  display: block;
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.kicker--light { color: var(--gold); }

.display {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.022em;
  line-height: 1.02;
}

h1.display { font-size: clamp(38px, 5vw, 62px); }
h2.display { font-size: clamp(30px, 3.5vw, 46px); }

.lead {
  max-width: 62ch;
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--muted);
}
.lead--light { color: var(--muted-light); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { margin-bottom: 18px; }

/* -------------------------------------------------------- botoes -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { background: var(--white); border-color: var(--white); }

.btn--quiet {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--navy);
}
.btn--quiet:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

.btn--quiet-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}
.btn--quiet-light:hover { background: var(--white); border-color: var(--white); color: var(--navy); }

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.link:hover { color: var(--gold-ink); }
.link--light { color: var(--white); border-color: var(--gold); }
.link--light:hover { color: var(--gold); }

/* setas inline; herdam cor e tamanho do texto */
.ico {
  width: 1em;
  height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.13em;
  display: inline-block;
}

/* faixa de 3 cores: unico elemento grafico "bandeira" que sobrou */
.flagline {
  height: 3px;
  background: linear-gradient(90deg,
    var(--green) 0 33.34%,
    var(--ms-yellow) 33.34% 66.67%,
    var(--ms-blue) 66.67% 100%);
}

/* ------------------------------------------------------- cabecalho ------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: var(--shell);
  min-height: var(--header-h);
  margin-inline: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}
.brand img { width: clamp(104px, 11vw, 132px); height: auto; }
.brand__num {
  display: grid;
  gap: 3px;
  padding-left: 14px;
  border-left: 1px solid var(--line-dark);
}
.brand__num strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--gold);
}
.brand__num small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
}
.nav a {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--white); border-bottom-color: var(--gold); }

.nav a.nav__cta {
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
}
.nav a.nav__cta:hover { background: transparent; color: var(--gold); }

.menu { display: none; position: relative; }
.menu summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.menu summary::-webkit-details-marker { display: none; }
.menu nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  gap: 4px;
  width: min(300px, calc(100vw - 32px));
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.menu nav a {
  padding: 10px 10px;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--radius);
}
.menu nav a:hover { background: var(--soft); }

/* ------------------------------------------------------------ hero ------ */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: end;
  gap: clamp(40px, 6vw, 84px);
  width: var(--shell);
  margin-inline: auto;
}
.hero__copy { padding: clamp(64px, 8vw, 104px) 0; }
.hero__copy .kicker { color: var(--gold); }
.hero__copy h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  margin-bottom: 26px;
}
.hero__copy h1 span { display: block; }
.hero__copy h1 span + span { color: var(--gold); }

.hero__statement {
  max-width: 46ch;
  margin-bottom: 30px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--soft);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 34px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}
.hero__meta li { display: inline-flex; align-items: center; gap: 9px; }
.hero__meta li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__figure { position: relative; align-self: end; }
.hero__figure img {
  width: 100%;
  height: min(64vh, 560px);
  object-fit: cover;
  object-position: center 15%;
}
.hero__badge {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 14px 20px;
  background: var(--gold);
  color: var(--navy-deep);
}
.hero__badge strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}
.hero__badge span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* -------------------------------------------------------- ficha --------- */
.factbar { background: var(--navy); color: var(--white); }
.factbar ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--shell);
  margin-inline: auto;
}
.factbar li {
  padding: 22px 24px 22px 0;
  border-right: 1px solid var(--line-dark);
  font-size: 15px;
  font-weight: 700;
}
.factbar li + li { padding-left: 24px; }
.factbar li:last-child { border-right: 0; }
.factbar span {
  display: block;
  margin-bottom: 2px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ------------------------------------------------------- secoes --------- */
.section { padding: var(--section) 0; }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy); color: var(--white); }
.section--deep { background: var(--navy-deep); color: var(--white); }
.section--navy .lead,
.section--deep .lead { color: var(--muted-light); }

/* bloco imagem + texto */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}
.split--flip { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
.split--flip .split__media { order: 2; }

.split__media { position: relative; }
.split__media img {
  width: 100%;
  /* height:auto é obrigatório: os atributos width/height do <img> viram
     hints de CSS e um height explícito anula o aspect-ratio. */
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}
.split__media--wide img { aspect-ratio: 4 / 3; }
.split__media--contain {
  display: flex;
  justify-content: center;
  background: transparent;
  border-radius: var(--radius);
  overflow: visible;
}
.split__media--contain img {
  width: min(100%, 452px);
  max-width: 452px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}
.split__media::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 96px; height: 4px;
  background: var(--gold);
}
.split__body h2 { margin-bottom: 22px; }
.split__body p + p { margin-top: 16px; }
.split__body .link { margin-top: 30px; }

.statement {
  font-size: clamp(19px, 1.9vw, 23px);
  line-height: 1.5;
  color: var(--navy);
}
.section--navy .statement,
.section--deep .statement { color: var(--white); }

/* ---------------------------------------------------- prioridades ------- */
.priorities { border-top: 1px solid var(--line); }
.section--navy .priorities,
.section--deep .priorities { border-color: var(--line-dark); }

.priority {
  display: grid;
  grid-template-columns: 64px minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 12px 36px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.section--navy .priority,
.section--deep .priority { border-color: var(--line-dark); }

.priority__num {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold-ink);
  padding-top: 4px;
}
.section--navy .priority__num,
.section--deep .priority__num { color: var(--gold); }

.priority :is(h2, h3) {
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.012em;
  line-height: 1.12;
}
.priority p { color: var(--muted); font-size: 16px; }
.section--navy .priority p,
.section--deep .priority p { color: var(--muted-light); }

/* ----------------------------------------------------- trajetoria ------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.timeline--light {
  background: var(--line);
  border-top-color: var(--line);
  border-left-color: var(--line);
}
.timeline li {
  background: var(--navy);
  padding: 30px 28px 34px;
}
.timeline--light li { background: var(--white); }

.timeline time {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.timeline--light time { color: var(--gold-ink); }
.timeline h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}
.timeline p { font-size: 15px; color: var(--muted-light); }
.timeline--light p { color: var(--muted); }
.timeline--light h3 { color: var(--navy); }

/* --------------------------------------------------------- tags --------- */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 32px; }
.tags li {
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.tags li:first-child { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* -------------------------------------------------------- midia --------- */
.medialist { border-top: 1px solid var(--line); }
.media-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 8px 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.18s ease;
}
.media-item:hover { background: var(--paper); }
.media-item__type {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.media-item :is(h2, h3) {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
}
.media-item__pub {
  grid-column: 2;
  font-size: 14px;
  color: var(--muted);
}
.media-item__arrow { font-size: 18px; color: var(--gold-ink); justify-self: end; }

/* -------------------------------------------------------- cards --------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 28px 32px;
  background: var(--white);
  text-decoration: none;
  transition: background 0.18s ease;
}
.card:hover { background: var(--paper); }
.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.card :is(h2, h3) {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}
.card p { font-size: 15px; color: var(--muted); }
.card .link { margin-top: auto; align-self: flex-start; }

/* -------------------------------------------------------- social -------- */
.social-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}
.social-links { display: grid; gap: 10px; }
.social-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.social-links a:hover { background: var(--white); border-color: var(--white); color: var(--navy); }
.social-links svg { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.7; }
.social-links strong { display: block; font-size: 13px; font-weight: 800; }
.social-links small { font-size: 12px; opacity: 0.72; }

/* ------------------------------------------------- paginas internas ----- */
.page-hero {
  padding: clamp(56px, 7vw, 88px) 0 clamp(56px, 7vw, 84px);
  background: var(--navy);
  color: var(--white);
}
.page-hero h1 { max-width: 20ch; margin-bottom: 22px; }
.page-hero .lead { color: var(--muted-light); }

.crumbs {
  padding: 14px 0;
  font-size: 12px;
  color: var(--muted);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.crumbs a { color: var(--navy); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { margin: 0 8px; color: var(--line-strong); }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: clamp(48px, 7vw, 100px);
}

.prose { max-width: 68ch; }
.prose > * + * { margin-top: 20px; }
.prose p { color: var(--muted); }
.prose .lead {
  font-size: clamp(19px, 1.9vw, 23px);
  line-height: 1.5;
  color: var(--navy);
}
.prose h2 {
  margin-top: 52px;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--navy);
}
.prose h3 {
  margin-top: 34px;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}
.prose a { color: var(--navy); text-decoration-color: var(--gold); }
.prose ul { display: grid; gap: 10px; }
.prose ul li {
  padding-left: 20px;
  position: relative;
  color: var(--muted);
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 2px;
  background: var(--gold);
}
.prose blockquote {
  margin: 34px 0;
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--gold);
  font-size: 20px;
  line-height: 1.5;
  color: var(--navy);
}

.aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding-top: 20px;
  border-top: 2px solid var(--gold);
}
.aside h2 {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.aside p, .aside li { font-size: 14px; color: var(--muted); }
.aside ul { display: grid; gap: 8px; margin-top: 10px; }
.aside a { color: var(--navy); }
.aside + .aside { margin-top: 34px; }

.note {
  padding: 24px 26px;
  background: var(--paper);
  border-left: 2px solid var(--gold);
}
.note strong { display: block; margin-bottom: 6px; color: var(--navy); }
.note p { font-size: 14px; color: var(--muted); }

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.facts div { background: var(--white); padding: 26px 28px; }
.facts span {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.facts strong { font-size: 19px; font-weight: 800; color: var(--navy); }

/* trilha vertical (paginas de trajetoria) */
.track { border-left: 1px solid var(--line); }
.track li { position: relative; padding: 0 0 40px 32px; }
.track li::before {
  content: "";
  position: absolute;
  left: -5px; top: 9px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.track time {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.track h2 {
  margin: 8px 0 10px;
  font-size: clamp(21px, 2.2vw, 27px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.012em;
  line-height: 1.14;
  color: var(--navy);
}
.track p { color: var(--muted); font-size: 16px; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  font-size: 22px;
  line-height: 1;
  color: var(--gold-ink);
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding: 0 0 24px; max-width: 70ch; color: var(--muted); }

/* fontes */
.sources { border-top: 1px solid var(--line); }
.sources li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 12px 28px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.sources__num { font-size: 14px; font-weight: 800; color: var(--gold-ink); }
.sources h2 { font-size: 19px; font-weight: 800; color: var(--navy); line-height: 1.3; }
.sources p { grid-column: 2; font-size: 14px; color: var(--muted); }
.sources__tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* artigo */
.article-head { padding: clamp(52px, 6vw, 76px) 0 clamp(32px, 4vw, 44px); background: var(--paper); }
.article-head h1 { max-width: 22ch; margin: 16px 0 20px; }
.article-head .lead { max-width: 62ch; }
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

/* contato */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.contact-card { background: var(--white); padding: 34px 32px 38px; }
.contact-card h2 {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.contact-card p { color: var(--muted); }
.contact-card ul { display: grid; gap: 10px; margin-top: 16px; }
.contact-card ul a { color: var(--navy); font-weight: 700; text-decoration-color: var(--gold); }

/* --------------------------------------------------------- rodape ------- */
.site-footer { background: var(--navy-deep); color: var(--white); }
.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  padding: clamp(56px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--line-dark);
}
.footer-cta h2 { font-size: clamp(28px, 3.2vw, 42px); }
.footer-cta .kicker { color: var(--gold); }

.footer-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding: clamp(48px, 5vw, 64px) 0;
}
.footer-cols h3 {
  margin-bottom: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-cols ul { display: grid; gap: 10px; }
.footer-cols a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}
.footer-cols a:hover { color: var(--white); text-decoration: underline; }
.footer-about p { font-size: 14px; color: rgba(255, 255, 255, 0.66); max-width: 46ch; }
.footer-about .brand { margin-bottom: 18px; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 28px;
  padding: 24px 0 40px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.56);
}

/* --------------------------------------------------------- mobile ------- */
@media (max-width: 1000px) {
  :root { --shell: min(1120px, 100% - 40px); }

  .nav { display: none; }
  .menu { display: block; }

  .hero__grid { grid-template-columns: 1fr; gap: 0; }
  .hero__copy { padding-bottom: 44px; }
  .hero__figure img { height: min(56vh, 440px); }

  .factbar ul { grid-template-columns: repeat(2, 1fr); }
  .factbar li { padding: 18px 20px 18px 0; }
  .factbar li:nth-child(2n) { border-right: 0; }
  .factbar li:nth-child(n + 3) { border-top: 1px solid var(--line-dark); }

  .split,
  .split--flip { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .split__media img { aspect-ratio: 3 / 2; }

  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-grid { grid-template-columns: 1fr; }
  .aside { position: static; }
  .social-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-cta { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 680px) {
  :root { --shell: min(1120px, 100% - 32px); }

  body { font-size: 16px; }

  .brand img { width: 112px; }
  .brand__num { display: none; }

  .priority { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .priority__num { padding-top: 0; }

  .timeline { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }

  .media-item { grid-template-columns: 1fr; gap: 6px; }
  .media-item__pub { grid-column: 1; }
  .media-item__arrow { display: none; }

  .sources li { grid-template-columns: 1fr; }
  .sources p, .sources__tag { grid-column: 1; }

  .footer-cols { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
}

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

/* Identidade da ficha e assinatura legal lateral do poster. */
.poster-cnpj {
  position: absolute;
  z-index: 4;
  left: calc(50% + 238px);
  top: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  text-shadow: 0 0 16px rgba(247,199,19,.42);
}
.poster-cnpj::before {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(transparent, var(--gold));
  box-shadow: 0 0 10px rgba(247,199,19,.55);
}

.factbar {
  background:
    radial-gradient(circle at 50% 0, rgba(32,207,255,.12), transparent 65%),
    linear-gradient(115deg, #052b4d, #083d68);
}
.factbar ul {
  gap: 1px;
  padding: 12px 0;
  background: rgba(255,255,255,.1);
}
.factbar li,
.factbar li + li {
  position: relative;
  min-height: 92px;
  padding: 20px 24px;
  border: 0;
  background: rgba(3,28,51,.88);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.01em;
  overflow: hidden;
}
.factbar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(var(--gold), var(--electric));
  opacity: .8;
  transform: scaleY(.28);
  transform-origin: top;
  transition: transform .45s var(--ease-out);
}
.factbar li:hover::before { transform: scaleY(1); }
.factbar span {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .22em;
}

@media (max-width: 540px) {
  .poster-cnpj {
    left: auto;
    right: 3px;
    font-size: 8px;
  }
  .factbar ul { padding: 1px 0; }
  .factbar li,
  .factbar li + li {
    min-height: 84px;
    padding: 18px 16px;
    font-size: 16px;
  }
}

/* Garantia final de proporcao: sobrescreve os recortes do layout legado. */
.hero .hero__figure.hero__figure--poster img,
.section .split__media.split__media--contain img {
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  mask-image: none;
}
.hero .hero__figure.hero__figure--poster img { width: min(100%, 452px); }
.section .split__media.split__media--contain img { width: min(100%, 452px); }

/* Poster integral no hero: preserva toda a arte e evita crop em qualquer tela. */
.hero__figure--poster {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(22px, 4vw, 44px) 0;
}
.hero__figure--poster img {
  width: min(100%, 452px);
  max-width: 452px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 3px;
  mask-image: none;
  box-shadow: 0 30px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.12);
}
.hero__figure--poster::before {
  inset: 8% -3% 4% 8%;
}

@media (max-width: 1000px) {
  .hero__figure--poster { padding: 10px 0 40px; }
  .hero__figure--poster img {
    width: min(100%, 452px);
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }
}


@media print {
  .site-header, .site-footer, .skip-link { display: none; }
  body { color: #000; background: #fff; }
}

/* ========================================================================
   CAMADA CINEMATOGRAFICA — movimento, profundidade e luz
   ======================================================================== */
:root {
  --electric: #20cfff;
  --aurora: #10e878;
  --hot-gold: #ffe85b;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

body {
  background:
    radial-gradient(circle at 8% 18%, rgba(32, 207, 255, .08), transparent 27rem),
    radial-gradient(circle at 92% 46%, rgba(247, 199, 19, .08), transparent 30rem),
    var(--white);
}

.fx-noise {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: .038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.fx-glow {
  position: fixed;
  left: -190px;
  top: -190px;
  z-index: 1;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(32, 207, 255, .13), rgba(247, 199, 19, .055) 35%, transparent 70%);
  filter: blur(12px);
  mix-blend-mode: multiply;
  will-change: transform;
}
.fx-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  height: 4px;
  pointer-events: none;
}
.fx-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--green), var(--ms-yellow), var(--electric));
  box-shadow: 0 0 18px var(--electric), 0 0 28px rgba(247, 199, 19, .5);
}

.site-header {
  background: rgba(3, 28, 51, .84);
  border-color: rgba(255, 255, 255, .1);
  box-shadow: 0 10px 40px rgba(0, 12, 28, .18);
  backdrop-filter: blur(20px) saturate(155%);
}
.brand img { filter: drop-shadow(0 0 14px rgba(255, 255, 255, .14)); transition: transform .5s var(--ease-out), filter .5s ease; }
.brand:hover img { transform: scale(1.055) rotate(-1.5deg); filter: drop-shadow(0 0 20px rgba(247, 199, 19, .3)); }
.nav a { position: relative; transition: color .3s ease, transform .3s var(--ease-out); }
.nav a:hover { transform: translateY(-2px); }
.nav a.nav__cta, .btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(247, 199, 19, .18);
  transition: transform .35s var(--ease-out), box-shadow .35s ease, background .25s ease, color .25s ease;
}
.nav a.nav__cta::before, .btn::before {
  content: "";
  position: absolute;
  inset: -60% -30%;
  transform: translateX(-75%) rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transition: transform .7s var(--ease-out);
}
.nav a.nav__cta:hover::before, .btn:hover::before { transform: translateX(75%) rotate(18deg); }
.btn:hover { transform: translateY(-4px) scale(1.025); box-shadow: 0 18px 42px rgba(247, 199, 19, .28); }

.hero {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(32, 207, 255, .22), transparent 28%),
    radial-gradient(circle at 14% 92%, rgba(0, 156, 59, .18), transparent 31%),
    linear-gradient(125deg, #020f1d 0%, var(--navy-deep) 42%, #073e68 100%);
}
.hero::before {
  content: "44.444";
  position: absolute;
  z-index: -1;
  right: -2vw;
  top: 2%;
  font-size: clamp(110px, 22vw, 350px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.075);
  transform: translateY(calc(var(--scroll-y, 0px) * .11));
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.hero__grid { position: relative; z-index: 2; }
.hero__copy { animation: heroIn 1.05s .08s var(--ease-out) both; }
.hero__copy .kicker { text-shadow: 0 0 20px rgba(247,199,19,.4); }
.hero__copy h1 span { animation: titleIn .95s var(--ease-out) both; }
.hero__copy h1 span + span { animation-delay: .13s; text-shadow: 0 0 32px rgba(247,199,19,.2); }
.hero__statement { animation: heroIn .9s .35s var(--ease-out) both; }
.hero__meta, .hero__actions { animation: heroIn .9s .48s var(--ease-out) both; }
.hero__figure { animation: portraitIn 1.2s .18s var(--ease-out) both; }
.hero__figure::before {
  content: "";
  position: absolute;
  inset: 5% -8% -5% 8%;
  z-index: -1;
  border: 1px solid rgba(247,199,19,.28);
  background: linear-gradient(145deg, rgba(32,207,255,.18), transparent 45%, rgba(247,199,19,.15));
  transform: rotate(3deg);
  animation: frameFloat 6s ease-in-out infinite;
}
.hero__figure img { filter: saturate(1.08) contrast(1.04); mask-image: linear-gradient(to bottom, #000 82%, transparent 100%); }
.hero__badge { box-shadow: 18px 18px 50px rgba(0,0,0,.28); animation: badgePulse 3.2s ease-in-out infinite; }
.hero__particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero__particles i {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s);
  border-radius: 50%;
  opacity: var(--o);
  background: var(--hot-gold);
  box-shadow: 0 0 12px var(--hot-gold);
  animation: particle var(--d) ease-in-out infinite alternate;
}

.factbar { position: relative; z-index: 3; box-shadow: 0 14px 42px rgba(0, 18, 38, .22); }
.factbar li { transition: background .35s ease, transform .35s var(--ease-out); }
.factbar li:hover { background: rgba(255,255,255,.07); transform: translateY(-5px); }
.factbar span { text-shadow: 0 0 18px rgba(247,199,19,.35); }

.section { position: relative; }
.section--paper { background: linear-gradient(135deg, rgba(241,248,255,.92), rgba(255,255,255,.97)); }
.section--navy, .section--deep {
  background:
    radial-gradient(circle at 90% 20%, rgba(32,207,255,.12), transparent 30rem),
    radial-gradient(circle at 5% 90%, rgba(247,199,19,.1), transparent 26rem),
    var(--navy);
  overflow: hidden;
}
.section--deep { background-color: var(--navy-deep); }
.section--navy::before, .section--deep::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.025) 20.2%, transparent 20.5%);
  background-size: 110px 110px;
}
.display { text-shadow: 0 8px 30px rgba(3,28,51,.08); }
.kicker { position: relative; padding-left: 42px; }
.kicker::before { content: ""; position: absolute; left: 0; top: .65em; width: 28px; height: 2px; background: currentColor; box-shadow: 0 0 12px currentColor; }

.split__media { perspective: 1000px; }
.split__media img { box-shadow: 0 28px 65px rgba(3,28,51,.19); transition: transform .8s var(--ease-out), filter .8s ease, box-shadow .8s ease; }
.split__media:hover img { transform: scale(1.025) rotateY(-2deg); filter: saturate(1.12); box-shadow: 0 36px 90px rgba(3,28,51,.28); }
.split__media::after { box-shadow: 0 0 22px rgba(247,199,19,.65); transition: width .7s var(--ease-out); }
.split__media:hover::after { width: 68%; }

.priority { position: relative; transition: padding .4s var(--ease-out), background .4s ease, transform .4s var(--ease-out); }
.priority::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; background: linear-gradient(90deg, rgba(32,207,255,.1), transparent); transition: opacity .35s ease; }
.priority:hover { padding-inline: 22px; transform: translateX(8px); }
.priority:hover::before { opacity: 1; }
.priority__num { text-shadow: 0 0 18px rgba(247,199,19,.35); }

.card, .contact-card, .timeline li, .facts div {
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(3,28,51,.08);
  transition: transform .22s ease, box-shadow .35s ease, border-color .35s ease;
}
.fx-tilt { transform: perspective(850px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transform-style: preserve-3d; }
.fx-tilt::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(circle at var(--gx,50%) var(--gy,50%), rgba(32,207,255,.16), transparent 42%);
  transition: opacity .3s ease;
}
.fx-tilt:hover { box-shadow: 0 26px 60px rgba(3,28,51,.18); z-index: 2; }
.fx-tilt:hover::after { opacity: 1; }
.media-item { transition: transform .4s var(--ease-out), background .35s ease, padding .4s var(--ease-out); }
.media-item:hover { transform: translateX(9px); padding-inline: 20px; background: rgba(32,207,255,.055); }
.tags li { transition: transform .3s var(--ease-out), box-shadow .3s ease, background .3s ease; }
.tags li:hover { transform: translateY(-4px) rotate(-1deg); background: var(--gold); box-shadow: 0 10px 25px rgba(247,199,19,.2); }
.social-links a { transition: transform .35s var(--ease-out), background .35s ease, border-color .35s ease; }
.social-links a:hover { transform: translateX(10px) scale(1.015); background: rgba(32,207,255,.1); border-color: rgba(32,207,255,.5); }
.faq details[open] { background: linear-gradient(90deg, rgba(32,207,255,.055), transparent); padding-inline: 20px; }
.faq details { transition: padding .4s var(--ease-out), background .4s ease; }

.site-footer { position: relative; overflow: hidden; background: linear-gradient(150deg, #020e1a, var(--navy-deep) 55%, #062e4b); }
.site-footer::before { content: "44.444"; position: absolute; right: -3vw; bottom: -4vw; font-size: clamp(100px,20vw,300px); font-weight: 800; letter-spacing: -.07em; color: rgba(255,255,255,.025); }

.fx-ready .fx-reveal { opacity: 0; transform: translateY(36px) scale(.985); filter: blur(5px); transition: opacity .8s var(--ease-out) var(--delay,0ms), transform .8s var(--ease-out) var(--delay,0ms), filter .8s ease var(--delay,0ms); }
.fx-ready .fx-reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

@keyframes heroIn { from { opacity: 0; transform: translateY(35px); filter: blur(8px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes titleIn { from { opacity: 0; transform: translateX(-46px) skewX(-4deg); } to { opacity: 1; transform: none; } }
@keyframes portraitIn { from { opacity: 0; transform: translateX(70px) scale(.94); filter: blur(10px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes frameFloat { 50% { transform: rotate(1deg) translateY(-10px); } }
@keyframes badgePulse { 50% { transform: translateY(-7px); box-shadow: 18px 26px 55px rgba(0,0,0,.34), 0 0 28px rgba(247,199,19,.18); } }
@keyframes particle { to { transform: translate3d(24px,-50px,0) scale(1.6); opacity: .05; } }

@media (max-width: 680px) {
  .fx-glow { display: none; }
  .hero::before { top: 24%; font-size: 32vw; }
  .hero__figure::before { inset: 5% -2% -2% 5%; }
  .priority:hover { padding-inline: 10px; transform: translateX(3px); }
  .fx-tilt { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .fx-glow, .hero__particles { display: none; }
  .hero__figure::before, .hero__badge { animation: none; }
  .fx-reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* Mantem a arte 44.444 integral mesmo quando o layout vira uma coluna. */
@media (max-width: 1000px) {
  .split__media--contain img {
    width: min(100%, 452px);
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }
}

/* Card de perfil compacto: rosto visivel e proporcao equilibrada. */
.split--profile {
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 76px);
}
.split--profile .split__media--contain {
  width: 100%;
  max-width: 380px;
  padding: 10px;
  border: 1px solid rgba(6,47,85,.12);
  border-radius: 18px;
  background: linear-gradient(145deg, #f8fbff, #e8f1f8);
  box-shadow: 0 24px 60px rgba(3,28,51,.14);
  overflow: hidden;
}
.section .split--profile .split__media--contain img {
  width: 100%;
  max-width: 360px;
  height: auto !important;
  aspect-ratio: 960 / 1097 !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 11px;
}
.split--profile .split__media::after {
  left: 10px;
  bottom: 10px;
  width: 72px;
  border-radius: 3px;
}

@media (min-width: 681px) and (max-width: 1000px) {
  .split.split--profile {
    grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
    gap: 32px;
  }
  .split--profile .split__media--contain { max-width: 300px; }
}

@media (max-width: 680px) {
  .split.split--profile { grid-template-columns: 1fr; }
  .split--profile .split__media--contain {
    width: min(100%, 320px);
    margin-inline: auto;
  }
}
