:root {
  --midnight: #07131f;
  --navy: #0c263d;
  --blue: #164866;
  --cyan: #2bb3c0;
  --amber: #f2a93b;
  --paper: #f4f7f8;
  --white: #ffffff;
  --ink: #101b25;
  --muted: #60707d;
  --line: #d6dee2;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 82rem;
  --gutter: clamp(1.25rem, 4vw, 5rem);
  --section: clamp(5rem, 9vw, 9rem);
  --radius: 0.5rem;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 0.98; text-wrap: balance; }
p { text-wrap: pretty; }

a:focus-visible,
button:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--midnight);
  font-weight: 800;
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

/* Progresso e navegação */
.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--amber);
}

.chapter-indicator {
  position: fixed;
  z-index: 80;
  top: 50%;
  right: 1rem;
  display: grid;
  justify-items: center;
  gap: .55rem;
  padding: .85rem .6rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(7,19,31,.68);
  color: var(--white);
  box-shadow: 0 1rem 2.5rem rgba(0,0,0,.14);
  pointer-events: none;
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
}

.chapter-indicator span { color: var(--amber); font-size: .68rem; font-weight: 900; line-height: 1; }
.chapter-indicator i { width: 1px; height: 2.2rem; background: rgba(255,255,255,.28); }
.chapter-indicator strong { color: #c2d0d7; font-size: .62rem; font-weight: 800; letter-spacing: .12em; line-height: 1; text-transform: uppercase; writing-mode: vertical-rl; }

.back-top {
  position: fixed;
  z-index: 85;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  min-height: 3rem;
  align-items: center;
  gap: .55rem;
  padding: .65rem .9rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(7,19,31,.9);
  color: var(--white);
  font-size: .72rem;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 .9rem 2rem rgba(0,0,0,.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 220ms ease, transform 220ms ease, background 180ms ease;
  backdrop-filter: blur(12px);
}

.back-top span { color: var(--amber); font-size: 1rem; }
.back-top strong { font-size: inherit; }
.back-top:hover { background: var(--blue); }
.back-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: clamp(1.2rem, 3vw, 3rem);
  align-items: center;
  width: 100%;
  min-height: 6rem;
  padding-inline: var(--gutter);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  min-height: 4.8rem;
  background: rgba(7, 19, 31, 0.94);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.brand-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--amber); }

.site-header nav { display: flex; justify-self: center; gap: clamp(1.2rem, 2.6vw, 2.8rem); align-items: center; }
.site-header nav a { position: relative; font-size: 0.84rem; font-weight: 700; text-decoration: none; }
.site-header nav a::after { position: absolute; right: 0; bottom: -0.5rem; left: 0; height: 2px; background: var(--amber); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; }
.site-header nav a:hover::after,
.site-header nav a[aria-current="true"]::after { transform: scaleX(1); }

.nav-cta {
  justify-self: end;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.menu-toggle { display: none; }

/* Topo cinematográfico */
.hero {
  --hero-image-offset: clamp(10rem, 18vw, 22rem);
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--midnight);
  color: var(--white);
}

.hero-image,
.hero-shade,
.hero-glow { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-image {
  left: var(--hero-image-offset);
  z-index: -3;
  width: calc(100% - var(--hero-image-offset));
  object-fit: cover;
  object-position: left 42%;
  animation: hero-image-in 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 12, 20, 0.98) 0%, rgba(3, 12, 20, 0.88) 36%, rgba(3, 12, 20, 0.34) 67%, rgba(3, 12, 20, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 12, 20, 0.76) 0%, transparent 42%);
}

.hero-glow {
  z-index: -1;
  top: auto;
  right: -16rem;
  bottom: -24rem;
  left: auto;
  width: 46rem;
  height: 46rem;
  border: 1px solid rgba(43, 179, 192, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 8rem rgba(43, 179, 192, 0.04), 0 0 0 16rem rgba(242, 169, 59, 0.025);
  animation: hero-orbit-breathe 7s ease-in-out infinite alternate;
}

.hero-glow::after { position: absolute; top: 5.2rem; left: 3.2rem; width: .75rem; height: .75rem; border-radius: 50%; background: var(--amber); box-shadow: 0 0 2rem rgba(242,169,59,.75); content: ""; }

.hero-content {
  align-self: stretch;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: clamp(7rem, 13svh, 9rem) var(--gutter) clamp(5.5rem, 9svh, 7rem);
  animation: hero-copy-in 850ms 140ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-role {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.35rem;
  color: #dbe6eb;
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-role span { width: 2.8rem; height: 3px; background: var(--amber); }
.hero-role b { min-width: 0; font: inherit; }

.hero h1 {
  max-width: 14ch;
  margin-bottom: 1.6rem;
  font-size: clamp(2.85rem, 5.5vw, 5.8rem);
  font-weight: 850;
  letter-spacing: -0.065em;
}

.hero-line { display: block; transform-origin: left bottom; animation: hero-line-in 900ms cubic-bezier(.16,1,.3,1) both; }
.hero-line:nth-child(2) { animation-delay: 110ms; }
.hero h1 em { position: relative; color: var(--white); font-style: normal; white-space: nowrap; }
.hero h1 em::after { position: absolute; z-index: -1; right: -.08em; bottom: .07em; left: -.02em; height: .13em; background: linear-gradient(90deg, var(--amber), var(--cyan)); content: ""; transform: scaleX(0); transform-origin: left; animation: hero-mark-in 650ms 750ms cubic-bezier(.16,1,.3,1) forwards; }

.hero-lead {
  max-width: 44rem;
  margin-bottom: 2rem;
  color: #d2dce1;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 12.5rem));
  gap: 0;
  max-width: 42rem;
  margin: clamp(1.7rem, 3.5svh, 2.6rem) 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.hero-proof li { display: grid; gap: 0.1rem; padding-right: 1rem; }
.hero-proof strong { color: var(--white); font-size: 0.8rem; line-height: 1.3; }
.hero-proof span { color: #9eb0ba; font-size: 0.72rem; line-height: 1.35; }

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-primary { background: var(--amber); color: var(--midnight); }
.button-ghost { border-color: rgba(255, 255, 255, 0.55); color: var(--white); backdrop-filter: blur(10px); }
.button::after { margin-left: .7rem; content: "→"; font-size: 1.05em; transition: transform 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button:hover::after { transform: translateX(.28rem); }
.button-primary:hover { box-shadow: 0 .9rem 2rem rgba(242,169,59,.24); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.hero-side {
  position: absolute;
  right: 1.5rem;
  bottom: 7rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.hero-side i { width: 1.7rem; height: 1px; background: rgba(255, 255, 255, 0.35); }

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateX(-50%);
}

.scroll-cue i { width: 1px; height: 2.2rem; background: var(--amber); }

/* Faixa de sinal */
.signal-band {
  display: block;
  min-height: 5rem;
  padding: 0;
  overflow: hidden;
  background: var(--amber);
  color: var(--midnight);
  font-size: clamp(0.72rem, 1.2vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.signal-track { display: flex; width: max-content; animation: signal-scroll 30s linear infinite; }
.signal-set { display: flex; min-height: 5rem; align-items: center; gap: clamp(1.25rem, 3vw, 3rem); padding: 1rem clamp(1.25rem, 3vw, 3rem); }
.signal-band i { flex: 0 0 0.32rem; width: 0.32rem; height: 0.32rem; border-radius: 50%; background: var(--midnight); }

/* Índice de decisão */
.section-index {
  display: grid;
  grid-template-columns: 1.1fr repeat(5, minmax(0, 1fr));
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
  border-bottom: 1px solid var(--line);
}

.section-index > span,
.section-index a { display: flex; min-height: 5.4rem; align-items: center; padding: 1rem; border-right: 1px solid var(--line); }
.section-index > span { padding-left: 0; color: var(--muted); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.section-index a { gap: 0.65rem; color: var(--midnight); font-size: 0.84rem; font-weight: 800; text-decoration: none; transition: color 180ms ease, background 180ms ease; }
.section-index a:first-of-type { border-left: 1px solid var(--line); }
.section-index a:hover { background: var(--white); color: var(--blue); }
.section-index b { color: var(--amber); font-size: 0.7rem; letter-spacing: 0.08em; }

/* Prova rápida */
.impact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 7vw, 8rem);
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: var(--section) var(--gutter);
}

.impact-intro p,
.section-label {
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.impact-intro h2,
.decision h2,
.about h2,
.resume h2,
.topics h2,
.experience h2,
.books h2,
.companies h2,
.booking h2,
.contact h2,
.ministry h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.4vw, 4.5rem);
  font-weight: 850;
  letter-spacing: -0.055em;
}

.impact-facts { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }

.impact-facts article {
  display: grid;
  min-height: 13rem;
  align-content: space-between;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.impact-facts strong { color: var(--blue); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 900; letter-spacing: -0.06em; line-height: 0.9; }
.impact-facts span { max-width: 17rem; color: var(--muted); font-size: 0.9rem; line-height: 1.45; }

/* Manifesto */
.manifesto { position: relative; overflow: hidden; padding: var(--section) var(--gutter); background: var(--amber); color: var(--midnight); }
.manifesto::after { position: absolute; right: -.04em; bottom: -.25em; color: rgba(7,19,31,.055); font-size: clamp(9rem,24vw,26rem); font-weight: 950; letter-spacing: -.09em; line-height: .8; content: "DIREÇÃO"; pointer-events: none; }
.manifesto-shell { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(18rem,.65fr) minmax(0,1.35fr); gap: clamp(3rem,7vw,8rem); width: min(100%,var(--container)); margin-inline: auto; }
.manifesto-intro .section-label { color: rgba(7,19,31,.66); }
.manifesto-intro h2 { max-width: 11ch; margin-bottom: 1.5rem; font-size: clamp(2.5rem,5vw,5.4rem); font-weight: 900; letter-spacing: -.065em; line-height: .95; }
.manifesto-intro > p:last-child { max-width: 30rem; margin: 0; color: #27323a; font-size: 1.05rem; }
.manifesto-grid { border-top: 1px solid rgba(7,19,31,.28); }
.manifesto-grid article { position: relative; display: grid; grid-template-columns: 2.5rem minmax(0,1fr) minmax(12rem,.65fr); gap: 1.25rem; align-items: center; min-height: 9.5rem; padding: 1.35rem 0; border-bottom: 1px solid rgba(7,19,31,.28); transition: padding 220ms ease, background 220ms ease; }
.manifesto-grid article:hover { padding-right: 1rem; padding-left: 1rem; background: rgba(255,255,255,.18); }
.manifesto-grid span { align-self: start; padding-top: .35rem; color: rgba(7,19,31,.52); font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.manifesto-grid h3 { max-width: 19ch; margin: 0; font-size: clamp(1.35rem,2.25vw,2.15rem); font-weight: 860; letter-spacing: -.04em; line-height: 1.05; }
.manifesto-grid p { margin: 0; color: #34404a; font-size: .88rem; line-height: 1.5; }

/* Guia para contratantes */
.decision { padding: var(--section) var(--gutter); background: var(--midnight); color: var(--white); }
.decision-head { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.65fr); gap: clamp(2rem, 7vw, 7rem); align-items: end; width: min(100%, var(--container)); margin: 0 auto clamp(3rem, 6vw, 5rem); }
.decision h2 { max-width: 15ch; color: var(--white); }
.decision-head > p { max-width: 34rem; margin: 0 0 0.4rem; color: #b8c6ce; font-size: 1.05rem; }
.decision-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(100%, var(--container)); margin-inline: auto; border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.decision-card { position: relative; display: grid; grid-template-columns: auto 1fr; column-gap: 1.25rem; min-height: 23rem; padding: clamp(1.6rem, 3.5vw, 3.2rem); border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); background: #0d2133; transition: transform 220ms ease, box-shadow 220ms ease; }
.decision-card:hover { z-index: 1; box-shadow: 0 1.8rem 4rem rgba(0,0,0,.24); transform: translateY(-.35rem); }
.decision-card:nth-child(2) { background: var(--blue); }
.decision-card:nth-child(3) { background: #102b35; }
.decision-card-faith { background: var(--paper); color: var(--midnight); }
.decision-number { grid-row: 1 / 6; color: var(--amber); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.1em; }
.decision-audience { margin: 0 0 1.8rem; color: var(--cyan); font-size: 0.74rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.decision-card-faith .decision-audience { color: var(--blue); }
.decision-card h3 { max-width: 16ch; margin: 0 0 1.2rem; font-size: clamp(1.7rem, 3vw, 2.7rem); font-weight: 830; letter-spacing: -0.045em; line-height: 1.04; }
.decision-card > p:not(.decision-audience) { max-width: 32rem; margin: 0; color: #b9c8d0; }
.decision-card-faith > p:not(.decision-audience) { color: var(--muted); }
.decision-card ul { display: flex; flex-wrap: wrap; gap: 0.6rem; align-self: end; margin: 2rem 0 0; padding: 0; list-style: none; }
.decision-card li { padding: 0.45rem 0.65rem; border: 1px solid rgba(255,255,255,.25); font-size: 0.74rem; font-weight: 750; }
.decision-card-faith li { border-color: var(--line); }
.decision-action { display: flex; justify-content: space-between; gap: 2rem; align-items: center; width: min(100%, var(--container)); margin: 2rem auto 0; padding-top: 2rem; }
.decision-action p { max-width: 48rem; margin: 0; color: #b9c8d0; }
.decision-action strong { color: var(--white); }

/* Sobre */
.about {
  display: grid;
  grid-template-columns: minmax(20rem, 0.82fr) minmax(0, 1.18fr);
  min-height: 58rem;
  background: var(--white);
}

.about-photo-wrap { position: relative; min-height: 48rem; overflow: hidden; background: #3a3a3c; }
.about-photo-wrap > img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

.photo-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  width: min(86%, 28rem);
  padding: 1.2rem 1.5rem;
  background: var(--amber);
  color: var(--midnight);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-copy { align-self: center; max-width: 58rem; padding: var(--section) var(--gutter); }
.about h2 { max-width: 12ch; margin-bottom: 2.5rem; }
.about-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; color: var(--muted); }
.about-columns p { margin-bottom: 0; }

blockquote {
  position: relative;
  margin: clamp(2.5rem, 5vw, 4.5rem) 0 1.5rem;
  padding: 0 0 0 2rem;
  border-left: 4px solid var(--amber);
  color: var(--midnight);
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  font-weight: 750;
  line-height: 1.28;
}

.personal-note { max-width: 44rem; margin-bottom: 0; color: var(--muted); }
.about-follow { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; margin-top: 2.2rem; padding-top: 1.3rem; border-top: 1px solid var(--line); }
.about-follow > span { color: var(--muted); font-size: .82rem; font-weight: 750; }
.about-follow-links { display: flex; flex-wrap: wrap; gap: .65rem; }
.about-follow-links a { display: inline-flex; gap: .7rem; align-items: center; padding: .55rem .8rem; border: 1px solid var(--line); color: var(--midnight); font-size: .82rem; font-weight: 800; text-decoration: none; transition: border-color 180ms ease, background 180ms ease, transform 180ms ease; }
.about-follow-links a:hover { border-color: var(--amber); background: #fff5e6; transform: translateY(-2px); }
.about-follow-links a span { color: var(--blue); }

/* Trajetória */
.journey { position: relative; overflow: hidden; padding: var(--section) 0; background: linear-gradient(145deg,#07131f,#0b2b40); color: var(--white); }
.journey::before { position: absolute; inset: 0; opacity: .045; background-image: linear-gradient(rgba(255,255,255,.65) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.65) 1px,transparent 1px); background-size: 4.5rem 4.5rem; content: ""; mask-image: linear-gradient(to bottom,transparent,#000 18%,#000 82%,transparent); }
.journey-shell { position: relative; z-index: 1; width: min(100%,var(--container)); margin-inline: auto; padding-inline: var(--gutter); }
.journey-head { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(18rem,.62fr); gap: clamp(2rem,7vw,7rem); align-items: end; margin-bottom: clamp(3rem,6vw,5rem); }
.journey-head h2 { max-width: 14ch; margin: 0; color: var(--white); font-size: clamp(2.3rem,4.4vw,4.5rem); font-weight: 860; letter-spacing: -.055em; }
.journey-head > p { max-width: 34rem; margin: 0 0 .4rem; color: #b9cad3; font-size: 1.05rem; }
.journey-explorer { --journey-accent: var(--amber); overflow: hidden; border: 1px solid rgba(255,255,255,.16); background: rgba(4,12,19,.72); box-shadow: 0 2.5rem 6rem rgba(0,0,0,.28); }
.journey-explorer[data-tone="cyan"] { --journey-accent: var(--cyan); }
.journey-explorer[data-tone="blue"] { --journey-accent: #6fa9d1; }
.journey-explorer[data-tone="gold"] { --journey-accent: #d6b76b; }
.journey-explorer[data-tone="light"] { --journey-accent: #f4f7f8; }
.journey-tablist { display: grid; grid-template-columns: repeat(6,minmax(8rem,1fr)); overflow-x: auto; border-bottom: 1px solid rgba(255,255,255,.14); scrollbar-width: none; }
.journey-tablist::-webkit-scrollbar { display: none; }
.journey-tab { position: relative; display: grid; gap: .3rem; align-content: center; min-height: 7.5rem; padding: 1.2rem; border: 0; border-right: 1px solid rgba(255,255,255,.11); background: transparent; color: #8096a2; font: inherit; text-align: left; cursor: pointer; transition: color 220ms ease, background 220ms ease; }
.journey-tab:last-child { border-right: 0; }
.journey-tab::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--journey-accent); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 260ms ease,background 260ms ease; }
.journey-tab:hover { color: var(--white); background: rgba(255,255,255,.035); }
.journey-tab[aria-selected="true"] { color: var(--white); background: rgba(255,255,255,.065); }
.journey-tab[aria-selected="true"]::after { transform: scaleX(1); }
.journey-tab span { color: var(--journey-accent); font-size: .72rem; font-weight: 900; letter-spacing: .08em; transition: color 260ms ease; }
.journey-tab strong { font-size: .78rem; line-height: 1.3; }
.journey-stage { position: relative; isolation: isolate; display: grid; min-height: 34rem; align-items: center; overflow: hidden; padding: clamp(2.5rem,6vw,6rem); }
.journey-stage::after { position: absolute; z-index: -1; right: -12rem; bottom: -18rem; width: 38rem; height: 38rem; border: 1px solid color-mix(in srgb,var(--journey-accent) 38%,transparent); border-radius: 50%; box-shadow: 0 0 0 8rem color-mix(in srgb,var(--journey-accent) 4%,transparent); content: ""; transition: border-color 300ms ease,box-shadow 300ms ease; }
.journey-year { position: absolute; top: 50%; right: -.04em; color: color-mix(in srgb,var(--journey-accent) 7%,transparent); font-size: clamp(10rem,26vw,27rem); font-weight: 950; letter-spacing: -.11em; line-height: .8; transform: translateY(-50%); pointer-events: none; transition: color 320ms ease; }
.journey-panels { position: relative; z-index: 1; display: grid; }
.journey-panel { grid-area: 1 / 1; display: none; max-width: 54rem; }
.journey-panel.is-active { display: block; animation: journey-panel-in 520ms cubic-bezier(.16,1,.3,1) both; }
.journey-panel > p { margin-bottom: 1.6rem; color: var(--journey-accent); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; transition: color 260ms ease; }
.journey-panel h3 { max-width: 17ch; margin-bottom: 1.5rem; font-size: clamp(2.6rem,5.5vw,5.7rem); font-weight: 870; letter-spacing: -.06em; line-height: .97; }
.journey-panel > span { display: block; max-width: 39rem; color: #bdccd4; font-size: clamp(1rem,1.5vw,1.25rem); line-height: 1.55; }
@keyframes journey-panel-in { from { opacity: 0; transform: translateY(1.25rem); } to { opacity: 1; transform: translateY(0); } }

/* Mini currículo */
.resume {
  position: relative;
  padding: var(--section) var(--gutter);
  overflow: hidden;
  background: linear-gradient(145deg, #e7eef1 0%, #f4f7f8 52%, #ffffff 100%);
}

.resume::after {
  position: absolute;
  top: -1.6rem;
  right: -0.4rem;
  color: rgba(22, 72, 102, 0.045);
  font-size: clamp(7rem, 19vw, 20rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
  content: "2012—2024";
  pointer-events: none;
  white-space: nowrap;
}

.resume-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.7fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
  width: min(100%, var(--container));
  margin-inline: auto;
}

.resume h2 { max-width: 14ch; }
.resume-lead { max-width: 36rem; margin: 0 0 0.4rem; color: var(--muted); font-size: 1.05rem; }

.resume-signals {
  position: relative;
  z-index: 1;
  display: flex;
  gap: clamp(0.9rem, 2.5vw, 2.2rem);
  align-items: center;
  width: min(100%, var(--container));
  margin: clamp(2.8rem, 6vw, 5rem) auto 1.25rem;
  padding: 1rem 1.2rem;
  overflow-x: auto;
  border: 1px solid rgba(22, 72, 102, 0.17);
  background: rgba(255, 255, 255, 0.5);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  scrollbar-width: none;
}

.resume-signals::-webkit-scrollbar { display: none; }
.resume-signals span { flex: 0 0 auto; }
.resume-signals i { flex: 0 0 auto; width: 0.35rem; height: 0.35rem; border-radius: 50%; background: var(--amber); }

.resume-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
  width: min(100%, var(--container));
  margin-inline: auto;
  border: 0;
  background: transparent;
}

.resume-block { min-width: 0; padding: clamp(1.5rem, 3.5vw, 3.5rem); border: 1px solid rgba(22,72,102,.16); background: rgba(255, 255, 255, 0.86); box-shadow: 0 1.5rem 4rem rgba(7,19,31,.06); transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease; }
.resume-block:hover { background: var(--white); box-shadow: 0 1.8rem 4.5rem rgba(7,19,31,.1); }
.resume-block[open] { background: var(--white); }
.resume-block-head { display: flex; gap: 1rem; align-items: center; margin: 0; padding: 0; cursor: pointer; list-style: none; }
.resume-block-head::-webkit-details-marker { display: none; }
.resume-block[open] .resume-block-head { margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 2px solid var(--midnight); }
.resume-block-head > span { color: var(--amber); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.08em; }
.resume-block-head h3 { flex: 1; margin: 0; font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 850; letter-spacing: -0.04em; }
.resume-block-head::after { display: grid; flex: 0 0 2.5rem; width: 2.5rem; height: 2.5rem; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); content: "+"; font-size: 1.35rem; font-weight: 500; transition: color 180ms ease, background 180ms ease, transform 220ms ease; }
.resume-block[open] .resume-block-head::after { background: var(--midnight); color: var(--amber); transform: rotate(45deg); }

.education-list, .course-list { margin: 0; padding: 0; list-style: none; }
.education-list { position: relative; }
.education-list::before { position: absolute; top: 0.8rem; bottom: 0.8rem; left: 5.7rem; width: 1px; background: var(--line); content: ""; }
.education-list li { position: relative; display: grid; grid-template-columns: 5rem 1fr; gap: 2rem; min-height: 6.2rem; padding: 0.6rem 0 1.35rem; }
.education-list li::before { position: absolute; top: 0.85rem; left: 5.35rem; width: 0.72rem; height: 0.72rem; border: 3px solid var(--white); border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 1px rgba(22, 72, 102, 0.18); content: ""; }
.education-list time { padding-top: 0.05rem; color: var(--blue); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.04em; }
.education-list h4 { margin: 0 0 0.25rem; color: var(--midnight); font-size: 1rem; line-height: 1.3; }
.education-list p { margin: 0; color: var(--muted); font-size: 0.83rem; line-height: 1.45; }

.course-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }
.course-list li { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 0.75rem; align-items: start; min-height: 6.2rem; padding: 1rem; border: 1px solid var(--line); background: var(--white); transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.course-list li:hover { border-color: rgba(22, 72, 102, 0.38); box-shadow: 0 0.8rem 1.8rem rgba(7, 19, 31, 0.08); transform: translateY(-2px); }
.course-marker { display: grid; width: 1.35rem; height: 1.35rem; place-items: center; border-radius: 50%; background: var(--amber); color: var(--midnight); font-size: 0.72rem; font-weight: 950; }
.course-list strong { display: block; color: var(--midnight); font-size: 0.9rem; line-height: 1.3; }
.course-list div > span { display: block; margin-top: 0.25rem; color: var(--muted); font-size: 0.76rem; line-height: 1.35; }
.course-list time { color: var(--blue); font-size: 0.7rem; font-weight: 900; }

/* Temas */
.topics { padding: var(--section) var(--gutter); background: var(--midnight); color: var(--white); }
.topics-head { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 3rem; align-items: end; width: min(100%, var(--container)); margin: 0 auto clamp(3rem, 6vw, 5.5rem); }
.section-label-light { color: var(--amber); }
.topics h2, .ministry h2, .companies h2, .contact h2 { color: var(--white); }
.topics-head > p { max-width: 32rem; margin: 0 0 0.6rem; color: #aab9c3; font-size: 1.06rem; }

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(19rem, auto);
  gap: 1px;
  width: min(100%, var(--container));
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.topic {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 1.3rem;
  min-height: 21rem;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  background: #102338;
}

.topic-wide { grid-column: span 2; }
.topic-tall { grid-row: span 2; min-height: 43rem; }
.topic-number { color: var(--amber); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.12em; }
.topic h3 { max-width: 15ch; margin: 0; align-self: end; font-size: clamp(1.7rem, 3vw, 3rem); font-weight: 830; letter-spacing: -0.045em; }
.topic p { max-width: 34rem; margin: 0; color: #becbd3; }
.topic > strong { color: var(--amber); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; }

.topic-amber { background: var(--amber); color: var(--midnight); }
.topic-amber .topic-number, .topic-amber > strong, .topic-cyan .topic-number, .topic-cyan > strong { color: var(--midnight); }
.topic-amber p, .topic-cyan p { color: #23303a; }
.topic-cyan { background: var(--cyan); color: var(--midnight); }
.topic-dark { background: #050c13; }
.topic-blue { background: var(--blue); }
.topic-light { background: var(--paper); color: var(--midnight); }
.topic-light p { color: var(--muted); }

.talk-explorer { --talk-accent: var(--amber); display: grid; grid-template-columns: minmax(17rem,.42fr) minmax(0,1fr); width: min(100%, var(--container)); min-height: 43rem; margin-inline: auto; overflow: hidden; border: 1px solid rgba(255,255,255,.17); background: #081522; box-shadow: 0 2.5rem 6rem rgba(0,0,0,.28); transition: --talk-accent 280ms ease; }
.talk-explorer[data-tone="cyan"] { --talk-accent: var(--cyan); }
.talk-explorer[data-tone="blue"] { --talk-accent: #78b8dc; }
.talk-explorer[data-tone="light"] { --talk-accent: #f4f7f8; }
.talk-tablist { display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.13); }
.talk-tab { position: relative; display: grid; flex: 1; grid-template-columns: 2rem minmax(0,1fr); gap: .2rem .8rem; align-content: center; min-height: 6.7rem; padding: 1rem 1.35rem; border: 0; border-bottom: 1px solid rgba(255,255,255,.11); background: transparent; color: #9fb0ba; font: inherit; text-align: left; cursor: pointer; transition: padding 220ms ease, color 220ms ease, background 220ms ease; }
.talk-tab:last-child { border-bottom: 0; }
.talk-tab::before { position: absolute; top: 0; bottom: 0; left: 0; width: 3px; background: var(--talk-accent); content: ""; transform: scaleY(0); transition: transform 240ms ease; }
.talk-tab:hover { color: var(--white); background: rgba(255,255,255,.035); }
.talk-tab[aria-selected="true"] { padding-left: 1.7rem; color: var(--white); background: rgba(255,255,255,.065); }
.talk-tab[aria-selected="true"]::before { transform: scaleY(1); }
.talk-tab span { grid-row: 1 / 3; color: var(--talk-accent); font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
.talk-tab strong { font-size: .96rem; line-height: 1.2; }
.talk-tab small { color: #708895; font-size: .7rem; font-weight: 700; }
.talk-stage { position: relative; isolation: isolate; display: grid; min-width: 0; align-items: center; overflow: hidden; padding: clamp(2.5rem,6vw,6rem); background: linear-gradient(145deg,#0d2539,#07131f 66%); }
.talk-stage::before { position: absolute; z-index: -1; right: -10rem; bottom: -15rem; width: 34rem; height: 34rem; border: 1px solid color-mix(in srgb, var(--talk-accent) 40%, transparent); border-radius: 50%; box-shadow: 0 0 0 7rem color-mix(in srgb, var(--talk-accent) 4%, transparent), 0 0 7rem color-mix(in srgb, var(--talk-accent) 12%, transparent); content: ""; transition: border-color 300ms ease, box-shadow 300ms ease; }
.talk-stage-number { position: absolute; top: -.15em; right: .02em; color: rgba(255,255,255,.035); font-size: clamp(12rem,27vw,28rem); font-weight: 950; letter-spacing: -.12em; line-height: .9; pointer-events: none; transition: opacity 250ms ease; }
.talk-panels { position: relative; z-index: 1; display: grid; }
.talk-panel { grid-area: 1 / 1; display: none; max-width: 52rem; }
.talk-panel.is-active { display: block; animation: talk-panel-in 520ms cubic-bezier(.16,1,.3,1) both; }
.talk-kicker { margin-bottom: 2rem; color: var(--talk-accent); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.talk-panel h3 { max-width: 13ch; margin-bottom: 1.5rem; font-size: clamp(3rem,6vw,6.5rem); font-weight: 880; letter-spacing: -.065em; line-height: .95; }
.talk-description { max-width: 42rem; margin-bottom: 2.8rem; color: #c8d5dc; font-size: clamp(1.1rem,1.7vw,1.4rem); line-height: 1.5; }
.talk-meta { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); max-width: 48rem; border-top: 1px solid rgba(255,255,255,.18); }
.talk-meta > div { padding: 1.35rem 1.5rem 0 0; }
.talk-meta > div + div { padding-left: 1.5rem; border-left: 1px solid rgba(255,255,255,.18); }
.talk-meta span { display: block; margin-bottom: .45rem; color: #7f96a3; font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.talk-meta strong { display: block; max-width: 23rem; color: var(--white); font-size: .9rem; line-height: 1.45; }

@keyframes talk-panel-in { from { opacity: 0; transform: translateY(1.3rem); } to { opacity: 1; transform: translateY(0); } }

.topics-cta { display: flex; justify-content: space-between; gap: 2rem; align-items: center; width: min(100%, var(--container)); margin: 3rem auto 0; }
.topics-cta p { margin: 0; color: #c5d0d6; font-weight: 700; }
.topics-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; }
.topics-channel-link { color: var(--white); font-size: .88rem; font-weight: 800; text-decoration-color: var(--amber); text-decoration-thickness: 2px; text-underline-offset: .4rem; }
.topics-channel-link:hover { color: var(--amber); }
.topics-channel-link span { margin-left: .25rem; }

/* Experiência e método */
.experience { position: relative; isolation: isolate; display: grid; grid-template-columns: minmax(20rem, .78fr) minmax(0, 1.22fr); gap: clamp(3rem, 7vw, 7rem); width: min(100%, var(--container)); margin-inline: auto; overflow: hidden; padding: var(--section) var(--gutter); }
.experience::before { position: absolute; z-index: -1; right: -.08em; bottom: -.18em; color: rgba(22,72,102,.045); font-size: clamp(10rem,25vw,26rem); font-weight: 950; letter-spacing: -.09em; line-height: .8; content: "CAMPO"; pointer-events: none; }
.experience-head { position: sticky; top: 8rem; align-self: start; }
.experience-head h2 { max-width: 13ch; margin-bottom: 2rem; }
.experience-head > p:last-child { max-width: 35rem; margin-bottom: 0; color: var(--muted); font-size: 1.05rem; }
.experience-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 2px solid var(--midnight); }
.experience-grid article { min-height: 15rem; padding: 1.8rem 1.4rem 1.8rem 0; border-bottom: 1px solid var(--line); transition: background 220ms ease,padding 220ms ease,transform 220ms ease; }
.experience-grid article:nth-child(odd) { border-right: 1px solid var(--line); }
.experience-grid article:nth-child(even) { padding-left: 1.4rem; }
.experience-grid article:hover { background: rgba(242,169,59,.12); transform: translateY(-.25rem); }
.experience-grid article:nth-child(odd):hover { padding-left: 1rem; }
.experience-grid span { display: block; margin-bottom: 2rem; color: var(--amber); font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.experience-grid h3 { margin-bottom: .8rem; font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 830; letter-spacing: -.035em; line-height: 1.05; }
.experience-grid p { margin: 0; color: var(--muted); font-size: .92rem; }
.experience-note { grid-column: 1 / -1; display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; margin-top: 1rem; padding: clamp(1.5rem, 3vw, 2.5rem); border-left: .35rem solid var(--amber); background: #e6edf0; }
.experience-note strong { color: var(--blue); font-size: clamp(1.2rem, 2.2vw, 1.8rem); line-height: 1.2; }
.experience-note p { margin: 0; color: #485b68; }

/* Ministério */
.ministry { position: relative; display: grid; min-height: 52rem; isolation: isolate; overflow: hidden; background: var(--midnight); color: var(--white); }
.ministry::before { position: absolute; z-index: -1; right: -11rem; bottom: -16rem; width: 40rem; height: 40rem; border: 1px solid rgba(242,169,59,.24); border-radius: 50%; box-shadow: 0 0 0 8rem rgba(43,179,192,.035), 0 0 0 16rem rgba(242,169,59,.02); content: ""; pointer-events: none; }
.ministry-photo, .ministry-shade { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; }
.ministry-photo { object-fit: contain; object-position: right center; animation: ministry-light 10s ease-in-out infinite alternate; }
.ministry-shade { z-index: -1; background: linear-gradient(90deg, rgba(5, 14, 23, 0.98) 0%, rgba(5, 14, 23, 0.9) 43%, rgba(5, 14, 23, 0.22) 77%); }
.ministry-copy { align-self: center; width: min(100%, var(--container)); margin-inline: auto; padding: var(--section) var(--gutter); }
.ministry h2 { max-width: 13ch; margin-bottom: 2rem; }
.ministry-copy > p:not(.section-label) { max-width: 43rem; color: #cad5db; font-size: 1.08rem; }
.ministry-copy > .ministry-manifesto { display: grid; gap: .25rem; max-width: 37rem; margin: 2.2rem 0 0; padding-left: 1.35rem; border-left: 3px solid var(--amber); color: var(--white); font-size: clamp(1.25rem,2.35vw,2rem); font-weight: 820; letter-spacing: -.035em; line-height: 1.2; }
.ministry-manifesto span:nth-child(2) { color: #b9cbd4; }
.ministry-manifesto span:nth-child(3) { color: var(--amber); }
.ministry ul { display: flex; flex-wrap: wrap; gap: 0.65rem; max-width: 47rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.ministry li { padding: 0.65rem 0.9rem; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 100rem; font-size: 0.8rem; font-weight: 750; }
.ministry-books-link { display: inline-block; margin-top: 2rem; color: var(--amber); font-weight: 850; text-decoration-thickness: 2px; text-underline-offset: .4rem; }

@keyframes ministry-light { from { filter: brightness(.94) saturate(.9); } to { filter: brightness(1.04) saturate(1.04); } }

/* Livros */
.books { position: relative; padding: var(--section) 0; overflow: hidden; background: #0a1b29; color: var(--white); }
.books::before { position: absolute; inset: 0; opacity: .05; background-image: linear-gradient(rgba(255,255,255,.55) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.55) 1px, transparent 1px); background-size: 5rem 5rem; content: ""; mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent); }
.books-shell { position: relative; z-index: 1; width: min(100%, var(--container)); margin-inline: auto; padding-inline: var(--gutter); }
.books-head { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .65fr); gap: clamp(2rem, 7vw, 7rem); align-items: end; margin-bottom: clamp(3.5rem, 7vw, 6rem); }
.books-head h2 { max-width: 14ch; color: var(--white); }
.books-head > p { max-width: 34rem; margin: 0 0 .35rem; color: #b9c8d0; font-size: 1.05rem; }
.book-explorer { overflow: hidden; border: 1px solid rgba(255,255,255,.15); background: #050d15; box-shadow: 0 2.5rem 6rem rgba(0,0,0,.28); }
.book-tablist { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-bottom: 1px solid rgba(255,255,255,.15); }
.book-tab { position: relative; display: grid; grid-template-columns: auto minmax(0,1fr); gap: .18rem 1rem; align-content: center; min-height: 7.5rem; padding: 1.25rem clamp(1.25rem,3vw,2.5rem); border: 0; background: transparent; color: #879ba6; font: inherit; text-align: left; cursor: pointer; transition: color 220ms ease, background 220ms ease; }
.book-tab + .book-tab { border-left: 1px solid rgba(255,255,255,.15); }
.book-tab::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: linear-gradient(90deg,var(--amber),var(--cyan)); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 280ms ease; }
.book-tab:hover { color: var(--white); background: rgba(255,255,255,.035); }
.book-tab[aria-selected="true"] { color: var(--white); background: rgba(255,255,255,.06); }
.book-tab[aria-selected="true"]::after { transform: scaleX(1); }
.book-tab span { grid-row: 1 / 3; color: var(--amber); font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.book-tab strong { font-size: clamp(1rem,1.7vw,1.35rem); line-height: 1.2; }
.book-tab small { color: #708590; font-size: .72rem; font-weight: 700; }
.book-showcase { display: grid; }
.book-showcase [data-book-panel] { grid-area: 1 / 1; display: none; }
.book-showcase [data-book-panel].is-active { display: grid; animation: book-panel-in 560ms cubic-bezier(.16,1,.3,1) both; }
.book-feature { display: grid; grid-template-columns: minmax(14rem, .48fr) minmax(0, 1.52fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; min-height: 36rem; padding: clamp(2rem, 5vw, 4.5rem); border: 1px solid rgba(255,255,255,.14); }
.book-feature-light { background: var(--paper); color: var(--midnight); }
.book-feature-dark { grid-template-columns: minmax(0, 1.52fr) minmax(14rem, .48fr); background: #050d15; color: var(--white); }
.book-feature-dark .book-cover { order: 2; }
.book-feature-dark .book-copy { order: 1; }
.book-cover { position: relative; isolation: isolate; justify-self: center; width: min(100%, 18rem); margin: 0; padding: .42rem .42rem .42rem .72rem; background: linear-gradient(90deg, #aab4b9 0, #e8edef 8%, #f8fafb 100%); box-shadow: 0 2.2rem 4rem rgba(0,0,0,.28); transform: rotate(-1.5deg); }
.book-feature-dark .book-cover { transform: rotate(1.5deg); }
.book-cover::before { position: absolute; z-index: -1; top: 6%; right: -7%; bottom: -5%; left: 8%; background: rgba(0,0,0,.32); filter: blur(1.1rem); content: ""; }
.book-cover::after { position: absolute; z-index: 2; top: .42rem; bottom: .42rem; left: .42rem; width: .32rem; background: linear-gradient(90deg, rgba(0,0,0,.34), rgba(255,255,255,.32)); content: ""; pointer-events: none; }
.book-cover img { width: 100%; height: auto; aspect-ratio: 2 / 3; object-fit: contain; }
.book-cover figcaption { position: absolute; z-index: 3; top: 1rem; right: -.75rem; padding: .55rem .75rem; background: var(--amber); color: var(--midnight); box-shadow: 0 .55rem 1.2rem rgba(0,0,0,.18); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.book-copy { display: flex; flex-direction: column; align-items: flex-start; }
.book-index { margin-bottom: 1.5rem; color: var(--blue); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.book-feature-dark .book-index { color: var(--cyan); }
.book-copy h3 { max-width: 12ch; margin-bottom: 1.5rem; font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 880; letter-spacing: -.06em; line-height: .98; }
.book-premise { max-width: 29rem; margin-bottom: 1.5rem; color: var(--blue); font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 760; line-height: 1.35; }
.book-feature-dark .book-premise { color: var(--amber); }
.book-copy > p:not(.book-premise) { max-width: 39rem; margin-bottom: 1.8rem; color: var(--muted); }
.book-feature-dark .book-copy > p:not(.book-premise) { color: #bdcbd2; }
.book-themes { display: flex; flex-wrap: wrap; gap: .55rem; margin: 0 0 2.2rem; padding: 0; list-style: none; }
.book-themes li { padding: .45rem .65rem; border: 1px solid var(--line); font-size: .74rem; font-weight: 800; }
.book-feature-dark .book-themes li { border-color: rgba(255,255,255,.2); color: #d5dfe4; }
.book-copy .button { min-width: 15rem; }
.books-closing { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(16rem,.45fr); gap: 3rem; align-items: end; margin-top: clamp(3rem, 7vw, 6rem); padding-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid rgba(255,255,255,.18); }
.books-closing p { max-width: 44rem; margin: 0; font-size: clamp(1.45rem, 3vw, 2.6rem); font-weight: 760; line-height: 1.25; }
.books-closing span { color: #8fa4af; font-size: .9rem; }

@keyframes book-panel-in { from { opacity: 0; transform: translateY(1.2rem); } to { opacity: 1; transform: translateY(0); } }

/* Empresas */
.companies {
  position: relative;
  isolation: isolate;
  padding: var(--section) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(43, 179, 192, 0.16), transparent 24rem),
    linear-gradient(145deg, #06111c 0%, #0a2032 58%, #0b2e43 100%);
  color: var(--white);
}

.companies::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.045;
  background-image: linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.companies-orbit { position: absolute; z-index: -1; border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 50%; pointer-events: none; }
.companies-orbit::after { position: absolute; width: 0.75rem; height: 0.75rem; border-radius: 50%; background: var(--amber); box-shadow: 0 0 2rem rgba(242, 169, 59, 0.7); content: ""; }
.companies-orbit-one { top: -20rem; right: -18rem; width: 46rem; height: 46rem; }
.companies-orbit-one::after { bottom: 7rem; left: 4.7rem; }
.companies-orbit-two { bottom: -27rem; left: -19rem; width: 44rem; height: 44rem; }
.companies-orbit-two::after { top: 5.2rem; right: 5.5rem; background: var(--cyan); }

.companies-shell { position: relative; z-index: 1; width: min(100%, var(--container)); margin-inline: auto; padding-inline: var(--gutter); }
.companies-head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(17rem, 0.6fr); gap: clamp(2rem, 6vw, 7rem); align-items: end; margin-bottom: clamp(3rem, 7vw, 5.5rem); }
.companies h2 { max-width: 15ch; margin-bottom: 0; }
.companies-head > p { max-width: 36rem; margin: 0 0 0.35rem; color: #b7c9d3; font-size: 1.05rem; }

.company-tabs { --company-accent: var(--cyan); display: grid; grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 1fr); min-height: 42rem; border: 1px solid rgba(255, 255, 255, 0.16); background: rgba(7, 19, 31, 0.7); box-shadow: 0 2.5rem 6rem rgba(0, 0, 0, 0.28); backdrop-filter: blur(16px); }
.company-tabs[data-tone="amber"] { --company-accent: var(--amber); }
.company-tabs[data-tone="blue"] { --company-accent: #6fb0de; }
.company-tabs[data-tone="gold"] { --company-accent: #d5b76a; }
.company-tabs[data-tone="coral"] { --company-accent: #ef826f; }
.company-tabs[data-tone="light"] { --company-accent: #f4f7f8; }
.company-tablist { display: flex; flex-direction: column; border-right: 1px solid rgba(255, 255, 255, 0.14); }
.company-tab {
  position: relative;
  flex: 1 1 0;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.9rem;
  align-content: center;
  width: 100%;
  min-height: 6.5rem;
  padding: 1rem 1.35rem;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: transparent;
  color: #8ea6b4;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 260ms ease, background 260ms ease, padding-left 260ms ease;
}
.company-tab:last-child { border-bottom: 0; }
.company-tab::before { position: absolute; inset: 0; background: linear-gradient(90deg, color-mix(in srgb,var(--company-accent) 15%,transparent), transparent 82%); opacity: 0; content: ""; transition: opacity 260ms ease; }
.company-tab::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--company-accent), rgba(255,255,255,.65)); content: ""; transform: scaleX(0); transform-origin: left; }
.company-tab:hover { color: var(--white); background: rgba(255, 255, 255, 0.035); }
.company-tab[aria-selected="true"] { padding-left: 1.7rem; color: var(--white); background: rgba(255, 255, 255, 0.06); }
.company-tab[aria-selected="true"]::before { opacity: 1; }
.company-tab[aria-selected="true"]::after { animation: company-progress 6s linear forwards; }
.company-tabs.is-paused .company-tab[aria-selected="true"]::after { animation-play-state: paused; }
.company-tab > span, .company-tab > strong, .company-tab > small { position: relative; z-index: 1; }
.company-tab > span { grid-row: 1 / 3; align-self: center; color: var(--company-accent); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em; transition: color 240ms ease; }
.company-tab > strong { font-size: 1.05rem; line-height: 1.2; }
.company-tab > small { color: #6f8998; font-size: 0.75rem; font-weight: 650; transition: color 260ms ease; }
.company-tab[aria-selected="true"] > small { color: #b6c9d3; }

.company-stage { position: relative; isolation: isolate; display: flex; min-width: 0; flex-direction: column; overflow: hidden; padding: clamp(1.6rem, 4.5vw, 4.5rem); }
.company-stage::before { position: absolute; z-index: -1; right: -12rem; bottom: -15rem; width: 36rem; height: 36rem; border: 1px solid color-mix(in srgb,var(--company-accent) 38%,transparent); border-radius: 50%; background: radial-gradient(circle,color-mix(in srgb,var(--company-accent) 13%,transparent),transparent 62%); box-shadow: 0 0 0 7rem color-mix(in srgb,var(--company-accent) 3%,transparent); content: ""; transition: border-color 420ms ease, background 420ms ease, box-shadow 420ms ease; }
.company-stage-rail { position: relative; z-index: 2; display: grid; grid-template-columns: auto 1fr auto; gap: 0.85rem; align-items: center; color: #7892a1; font-size: 0.7rem; font-weight: 850; letter-spacing: 0.1em; }
.company-stage-rail i { height: 1px; overflow: hidden; background: rgba(255, 255, 255, 0.16); }
.company-stage-rail i::after { display: block; width: 16.666%; height: 100%; background: var(--company-accent); content: ""; transform: translateX(calc(var(--company-index, 0) * 100%)); transition: transform 520ms cubic-bezier(.2,.8,.2,1), background 300ms ease; }
.company-stage-mark { position: absolute; z-index: -1; right: .04em; bottom: -.18em; color: color-mix(in srgb,var(--company-accent) 8%,transparent); font-size: clamp(15rem,31vw,34rem); font-weight: 950; letter-spacing: -.12em; line-height: .85; pointer-events: none; transition: color 360ms ease; }
.company-panels { position: relative; z-index: 1; display: grid; flex: 1; align-items: center; min-height: 26rem; }
.company-panel { grid-area: 1 / 1; display: none; }
.company-panel.is-active { display: block; animation: company-panel-in 520ms cubic-bezier(.2,.8,.2,1) both; }
.company-kicker { margin-bottom: clamp(1.4rem, 4vw, 2.8rem); color: var(--company-accent); font-size: 0.74rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; transition: color 300ms ease; }
.company-panel h3 { margin-bottom: 1.2rem; font-size: clamp(4rem, 9vw, 8.5rem); font-weight: 900; letter-spacing: -0.075em; }
.company-summary { max-width: 44rem; margin-bottom: 2.5rem; color: #d7e2e7; font-size: clamp(1.2rem, 2.25vw, 1.75rem); line-height: 1.35; }
.company-detail { display: grid; grid-template-columns: minmax(7rem, .26fr) 1fr; gap: 1.5rem; max-width: 40rem; padding-top: 1.3rem; border-top: 1px solid rgba(255, 255, 255, 0.16); }
.company-detail strong { color: var(--company-accent); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; transition: color 300ms ease; }
.company-detail span { color: #8fa5b2; font-size: 0.9rem; }
.company-cta { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, 0.13); color: var(--white); font-size: 0.86rem; font-weight: 800; text-decoration: none; }
.company-cta span { color: var(--company-accent); font-size: 1.15rem; transition: color 300ms ease, transform 200ms ease; }
.company-cta:hover span { transform: translate(0.18rem, -0.18rem); }

@keyframes company-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes company-panel-in {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}

/* Material para decisão */
.decision-kit { position: relative; overflow: hidden; padding: var(--section) var(--gutter); background: var(--white); }
.decision-kit::before { position: absolute; right: -.08em; bottom: -.18em; color: rgba(7,19,31,.035); font-size: clamp(8rem,18vw,19rem); font-weight: 950; letter-spacing: -.1em; line-height: .8; content: "PERFIL"; pointer-events: none; }
.decision-kit-shell { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(18rem,.68fr) minmax(0,1.32fr); gap: clamp(2.5rem,7vw,7rem); width: min(100%,var(--container)); margin-inline: auto; }
.decision-kit-head { align-self: start; }
.decision-kit-head h2 { max-width: 12ch; margin-bottom: 1.5rem; }
.decision-kit-head > p:last-child { max-width: 31rem; margin: 0; color: var(--muted); font-size: 1.05rem; }
.profile-brief { position: relative; padding: clamp(1.8rem,4vw,3.5rem); border: 1px solid #c6d1d7; background: var(--paper); box-shadow: 1rem 1rem 0 var(--midnight); }
.profile-brief::before { position: absolute; top: -.45rem; left: clamp(1.8rem,4vw,3.5rem); width: 5rem; height: .45rem; background: var(--amber); content: ""; }
.profile-brief-top { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); color: var(--blue); font-size: .75rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.profile-brief > p[data-profile-text] { max-width: 47rem; margin-bottom: 2rem; color: #263744; font-size: clamp(1.08rem,1.5vw,1.3rem); line-height: 1.65; }
.profile-brief-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.profile-brief-tags span { padding: .4rem .7rem; border: 1px solid #c6d1d7; color: var(--blue); font-size: .74rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.profile-brief-actions { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
.profile-brief-link { color: var(--midnight); font-weight: 800; text-decoration-color: var(--amber); text-decoration-thickness: 2px; text-underline-offset: .4rem; }
.profile-brief-link:hover { color: var(--blue); }
.copy-feedback { min-height: 1.5rem; margin: 1rem 0 -1rem; color: var(--blue); font-size: .82rem; font-weight: 800; }
.decision-reasons { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: clamp(1.5rem,4vw,3rem); border-top: 2px solid var(--midnight); border-bottom: 1px solid var(--line); }
.decision-reasons article { min-height: 15rem; padding: 2rem; }
.decision-reasons article + article { border-left: 1px solid var(--line); }
.decision-reasons span { display: block; margin-bottom: 2.5rem; color: var(--amber); font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.decision-reasons h3 { max-width: 15ch; margin-bottom: .8rem; font-size: clamp(1.3rem,2vw,1.8rem); letter-spacing: -.035em; }
.decision-reasons p { max-width: 24rem; margin: 0; color: var(--muted); }

/* Processo de contratação */
.booking { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(19rem, .58fr); gap: clamp(2rem, 5vw, 5rem); padding: var(--section) var(--gutter); background: #e8eef1; }
.booking-main,
.booking-brief,
.faq { width: 100%; }
.booking-main { max-width: 52rem; justify-self: end; }
.booking-head { margin-bottom: 3rem; }
.booking-head h2 { max-width: 14ch; margin-bottom: 1.5rem; }
.booking-head > p:last-child { max-width: 43rem; margin: 0; color: var(--muted); font-size: 1.05rem; }
.booking-steps { --booking-progress: 0%; position: relative; margin: 0; padding: 0; border-top: 2px solid var(--midnight); list-style: none; }
.booking-steps::before { position: absolute; top: 1.55rem; bottom: 1.55rem; left: 1.18rem; width: 2px; background: linear-gradient(to bottom,var(--amber) 0 var(--booking-progress),#c7d2d8 var(--booking-progress) 100%); content: ""; transition: background 420ms ease; }
.booking-steps li { position: relative; display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid #c7d2d8; }
.booking-steps li > span { position: relative; z-index: 1; display: grid; width: 2.45rem; height: 2.45rem; place-items: center; border: 1px solid #9fb0ba; border-radius: 50%; background: #e8eef1; color: var(--blue); font-size: .68rem; font-weight: 900; letter-spacing: .08em; transition: color 220ms ease,background 220ms ease,border-color 220ms ease,transform 220ms ease; }
.booking-steps li.is-passed > span { border-color: var(--amber); background: var(--amber); color: var(--midnight); }
.booking-steps li.is-current > span { border-color: var(--midnight); background: var(--midnight); color: var(--amber); box-shadow: 0 0 0 .35rem rgba(242,169,59,.2); transform: scale(1.08); }
.booking-steps li.is-current h3 { color: var(--blue); }
.booking-steps h3 { margin-bottom: .45rem; font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 830; letter-spacing: -.035em; }
.booking-steps p { max-width: 42rem; margin: 0; color: var(--muted); }
.booking-brief { position: static; align-self: start; max-width: 27rem; padding: clamp(1.7rem, 3.5vw, 3rem); background: var(--midnight); color: var(--white); box-shadow: 1.5rem 1.5rem 0 var(--amber); }
.booking-brief-label { margin-bottom: 2rem; color: var(--cyan); font-size: .74rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.booking-brief h3 { margin-bottom: 2rem; font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 850; letter-spacing: -.045em; line-height: 1.02; }
.booking-brief ul { display: grid; gap: 1rem; margin: 0 0 2.5rem; padding: 0; list-style: none; }
.booking-brief li { display: grid; grid-template-columns: 1.3rem 1fr; gap: .7rem; color: #cad6dc; font-size: .9rem; }
.booking-brief li span { color: var(--amber); font-weight: 900; }
.booking-brief .button { width: 100%; }
.brief-builder { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(18rem,.72fr) minmax(0,1.28fr); gap: clamp(2.5rem,7vw,7rem); width: min(100%,var(--container)); margin: clamp(4rem,8vw,7rem) auto 0; padding: clamp(2rem,5vw,4.5rem); background: linear-gradient(135deg,var(--midnight),#0e314a); color: var(--white); box-shadow: 1rem 1rem 0 var(--amber); }
.brief-builder-intro h2 { max-width: 12ch; margin-bottom: 1.5rem; font-size: clamp(2rem,3.5vw,3.5rem); }
.brief-builder-intro > p:not(.section-label):not(.brief-privacy) { max-width: 31rem; color: #bfd0d9; }
.brief-privacy { display: flex; gap: .6rem; align-items: center; margin: 2rem 0 0; color: #8ea3ae; font-size: .82rem; }
.brief-privacy span { color: var(--cyan); font-size: .55rem; }
.brief-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.2rem; align-content: start; }
.brief-form label { display: grid; gap: .55rem; }
.brief-form label:nth-of-type(4) { grid-column: 1 / -1; }
.brief-form label > span { color: #dce7eb; font-size: .86rem; font-weight: 800; }
.brief-form input,
.brief-form select,
.brief-form textarea { width: 100%; min-height: 3.35rem; padding: .85rem 1rem; border: 1px solid rgba(255,255,255,.2); border-radius: 0; outline: 0; background: rgba(255,255,255,.07); color: var(--white); font: inherit; transition: border-color 180ms ease,background 180ms ease,box-shadow 180ms ease; }
.brief-form textarea { min-height: 7rem; resize: vertical; }
.brief-form select { color-scheme: dark; }
.brief-form input::placeholder,
.brief-form textarea::placeholder { color: #8da0aa; }
.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus { border-color: var(--amber); background: rgba(255,255,255,.1); box-shadow: 0 0 0 3px rgba(242,169,59,.16); }
.brief-form .button { justify-self: start; }
.brief-feedback { align-self: center; min-height: 1.5rem; margin: 0; color: var(--cyan); font-size: .86rem; font-weight: 800; }
.faq { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(17rem,.62fr) minmax(0,1fr); gap: clamp(2rem, 6vw, 6rem); justify-self: center; max-width: var(--container); margin-top: clamp(3rem, 7vw, 6rem); padding-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid #c7d2d8; }
.faq h2 { max-width: 12ch; font-size: clamp(2rem, 3.5vw, 3.5rem); }
.faq-list { border-top: 2px solid var(--midnight); }
.faq details { border-bottom: 1px solid #c7d2d8; transition: background 220ms ease, padding 220ms ease; }
.faq details[open] { padding-left: 1rem; background: rgba(255,255,255,.52); }
.faq summary { position: relative; padding: 1.35rem 3rem 1.35rem 0; font-size: 1rem; font-weight: 820; cursor: pointer; list-style: none; transition: color 180ms ease, padding-left 180ms ease; }
.faq summary:hover { padding-left: .5rem; color: var(--blue); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; top: 1.1rem; right: .25rem; color: var(--blue); font-size: 1.5rem; font-weight: 400; content: "+"; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 43rem; margin: 0; padding: 0 2rem 1.4rem 0; color: var(--muted); }

/* Contato */
.contact { position: relative; display: grid; grid-template-columns: minmax(20rem, 0.72fr) minmax(0, 1.28fr); min-height: 48rem; overflow: hidden; background: #090f15; color: var(--white); }
.contact > img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: saturate(0.75); transition: filter 600ms ease; }
.contact:hover > img { filter: saturate(.95); }
.contact-copy { position: relative; isolation: isolate; display: flex; overflow: hidden; flex-direction: column; justify-content: center; padding: var(--section) var(--gutter); background: linear-gradient(135deg, var(--midnight), #102b42); }
.contact-copy::before { position: absolute; z-index: -1; right: -.06em; bottom: -.16em; color: rgba(255,255,255,.035); font-size: clamp(7rem,16vw,17rem); font-weight: 950; letter-spacing: -.09em; line-height: .8; content: "VAMOS"; pointer-events: none; }
.contact h2 { max-width: 12ch; margin-bottom: 2rem; }
.contact-copy > p:not(.section-label):not(.contact-note) { max-width: 36rem; color: #cad5db; font-size: 1.08rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 1.3rem; align-items: center; margin-top: 1.2rem; }
.contact-social { max-width: 37rem; margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.2); }
.contact-social > p { margin-bottom: .6rem; color: #91a5b2; font-size: .73rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.social-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1.5rem; }
.social-links a { display: flex; justify-content: space-between; gap: .5rem; align-items: center; min-height: 2.9rem; border-bottom: 1px solid rgba(255,255,255,.14); color: #d5e0e5; font-size: .85rem; font-weight: 750; text-decoration: none; transition: color 180ms ease, padding-left 180ms ease; }
.social-links a:hover { padding-left: .25rem; color: var(--amber); }
.social-links a span { color: var(--amber); }
.contact-note { margin: 1.2rem 0 0; color: #82929d; font-size: 0.78rem; }

footer { display: flex; justify-content: space-between; gap: 1rem; align-items: center; min-height: 6rem; padding-inline: var(--gutter); background: #040a10; color: #8b9aa4; font-size: 0.78rem; }
.footer-brand { color: var(--white); }
.mobile-contact { display: none; }

@keyframes hero-image-in {
  from { opacity: 0.2; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-line-in {
  from { opacity: 0; transform: translateY(.8em) rotate(1deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

@keyframes hero-mark-in { to { transform: scaleX(1); } }
@keyframes hero-orbit-breathe { from { transform: scale(.96) rotate(-3deg); } to { transform: scale(1.04) rotate(3deg); } }
@keyframes signal-scroll { to { transform: translateX(-50%); } }
@keyframes interface-reveal { from { opacity: 0; transform: translateY(1.5rem); } to { opacity: 1; transform: translateY(0); } }

.interface-reveal { opacity: 0; }
.interface-reveal.is-visible { animation: interface-reveal 650ms var(--reveal-delay,0ms) cubic-bezier(.16,1,.3,1) both; }

/* Tablets */
@media (max-width: 1180px) {
  .chapter-indicator { display: none; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { position: fixed; top: 4.8rem; right: 1rem; left: 1rem; display: none; padding: 1.5rem; border-radius: var(--radius); background: var(--midnight); box-shadow: 0 1.5rem 3rem rgba(0,0,0,.3); }
  .site-header nav.is-open { display: grid; gap: 1.25rem; }
  .nav-cta { display: none; }
  .menu-toggle { display: grid; justify-self: end; width: 2.8rem; height: 2.8rem; place-content: center; gap: 0.4rem; border: 1px solid rgba(255,255,255,.4); border-radius: var(--radius); background: rgba(7,19,31,.35); color: var(--white); }
  .menu-toggle > span:not(.sr-only) { display: block; width: 1.2rem; height: 2px; background: currentColor; }
  .hero { --hero-image-offset: 8vw; }
  .hero-image { object-position: 30% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,12,20,.96) 0%, rgba(3,12,20,.82) 48%, rgba(3,12,20,.25) 100%), linear-gradient(0deg, rgba(3,12,20,.72), transparent 48%); }
  .section-index { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .section-index > span { display: none; }
  .section-index a:first-of-type { border-left: 0; }
  .impact { grid-template-columns: 1fr; }
  .manifesto-shell { grid-template-columns: 1fr; gap: 3rem; }
  .manifesto-intro > p:last-child { max-width: 38rem; }
  .decision-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .about { grid-template-columns: 0.75fr 1.25fr; }
  .about-columns { grid-template-columns: 1fr; gap: 1rem; }
  .journey-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .journey-tablist { grid-auto-flow: column; grid-auto-columns: minmax(9rem,1fr); grid-template-columns: none; }
  .resume-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .resume-grid { grid-template-columns: 1fr; }
  .talk-explorer { grid-template-columns: minmax(14rem,.38fr) minmax(0,1fr); }
  .talk-stage { padding: 3rem; }
  .ministry-photo { object-fit: cover; object-position: 42% center; }
  .experience { grid-template-columns: 1fr; }
  .experience-head { position: static; }
  .experience-head h2 { max-width: 16ch; }
  .topic-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .topic-wide { grid-column: span 1; }
  .topic-tall { grid-row: span 1; min-height: 21rem; }
  .books-head { grid-template-columns: 1fr; gap: 1rem; }
  .book-feature { grid-template-columns: minmax(12rem, .52fr) minmax(0, 1.48fr); gap: 2.5rem; padding: 2.5rem; }
  .book-feature-dark { grid-template-columns: minmax(0, 1.48fr) minmax(12rem, .52fr); }
  .book-cover { width: min(100%, 16rem); }
  .companies-head { grid-template-columns: 1fr 0.7fr; gap: 2rem; }
  .company-tabs { grid-template-columns: minmax(14rem, 0.4fr) minmax(0, 1fr); }
  .company-stage { padding: 2.5rem; }
  .decision-kit-shell { grid-template-columns: 1fr; gap: 3rem; }
  .decision-kit-head h2 { max-width: 16ch; }
  .booking { grid-template-columns: 1fr; }
  .booking-main { max-width: none; justify-self: stretch; }
  .booking-brief { position: static; max-width: 36rem; justify-self: center; }
  .brief-builder { grid-template-columns: 1fr; gap: 3rem; }
  .brief-builder-intro h2 { max-width: 16ch; }
}

/* Celulares */
@media (max-width: 680px) {
  body { padding-bottom: 4.4rem; }
  .site-header { min-height: 4.8rem; }
  .brand { font-size: 0.78rem; }
  .hero { --hero-image-offset: 6vw; min-height: 100svh; }
  .hero-image { object-position: 44% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(3,12,20,.98) 0%, rgba(3,12,20,.86) 56%, rgba(3,12,20,.18) 100%); }
  .hero-content { min-height: 100svh; justify-content: flex-end; padding-top: clamp(9rem, 24svh, 13rem); padding-bottom: clamp(5.5rem, 9svh, 6.5rem); }
  .hero h1 { max-width: 11ch; font-size: clamp(2.35rem, 10.5vw, 3.4rem); }
  .hero-lead { max-width: 28rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-proof { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: .4rem; scrollbar-width: none; }
  .hero-proof::-webkit-scrollbar { display: none; }
  .hero-proof li { flex: 0 0 9.5rem; }
  .hero-side, .scroll-cue { display: none; }
  .signal-band { overflow: hidden; }
  .signal-track { animation-duration: 24s; }
  .section-index { display: flex; overflow-x: auto; padding-inline: var(--gutter); scrollbar-width: none; }
  .section-index::-webkit-scrollbar { display: none; }
  .section-index a { flex: 0 0 12rem; min-height: 4.7rem; border-left: 1px solid var(--line); }
  .impact { padding-inline: var(--gutter); }
  .impact-facts { grid-template-columns: 1fr; }
  .impact-facts article { min-height: 10rem; }
  .about { grid-template-columns: 1fr; }
  .about-photo-wrap { min-height: 34rem; }
  .about-copy { padding: var(--section) var(--gutter); }
  .journey-stage { min-height: 31rem; padding: 3rem var(--gutter); }
  .journey-tab { min-height: 6.8rem; scroll-snap-align: start; }
  .journey-tablist { scroll-snap-type: x proximity; }
  .journey-panel h3 { font-size: clamp(2.45rem,11vw,4rem); }
  .journey-year { right: -.08em; font-size: clamp(9rem,38vw,15rem); }
  .about h2, .resume h2, .impact-intro h2, .manifesto h2, .decision h2, .topics h2, .experience h2, .books h2, .companies h2, .decision-kit h2, .booking h2, .contact h2, .ministry h2 { font-size: clamp(2.05rem, 9.5vw, 3rem); }
  .manifesto-grid article { grid-template-columns: 2rem minmax(0,1fr); gap: .8rem 1rem; }
  .manifesto-grid article > p { grid-column: 2; }
  .about-columns { grid-template-columns: 1fr; }
  .resume-signals { margin-top: 2.5rem; }
  .resume-block { padding: 1.4rem; }
  .decision-grid { grid-template-columns: 1fr; }
  .decision-card { min-height: 21rem; }
  .decision-action { align-items: stretch; flex-direction: column; }
  .course-list { grid-template-columns: 1fr; }
  .education-list::before { left: 4.75rem; }
  .education-list li { grid-template-columns: 4.1rem 1fr; gap: 1.7rem; }
  .education-list li::before { left: 4.4rem; }
  .topics-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic { min-height: 19rem; }
  .talk-explorer { display: block; min-height: 0; margin-inline: calc(var(--gutter) * -1); border-inline: 0; }
  .talk-tablist { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); scrollbar-width: none; scroll-snap-type: x proximity; }
  .talk-tablist::-webkit-scrollbar { display: none; }
  .talk-tab { flex: 0 0 min(14rem,72vw); min-height: 7rem; border-right: 1px solid rgba(255,255,255,.11); border-bottom: 0; scroll-snap-align: start; }
  .talk-stage { min-height: 38rem; padding: 3rem var(--gutter); }
  .talk-stage-number { font-size: 14rem; }
  .talk-panel h3 { font-size: clamp(2.7rem,13vw,4.3rem); }
  .talk-meta { grid-template-columns: 1fr; }
  .talk-meta > div + div { padding-left: 0; border-left: 0; }
  .topics-cta { align-items: stretch; flex-direction: column; }
  .topics-cta-actions { align-items: flex-start; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-grid article:nth-child(odd) { border-right: 0; }
  .experience-grid article:nth-child(even) { padding-left: 0; }
  .experience-note { grid-template-columns: 1fr; gap: 1rem; }
  .ministry { min-height: 48rem; }
  .ministry-photo { object-position: 42% center; }
  .ministry-shade { background: linear-gradient(0deg, rgba(5,14,23,.98) 0%, rgba(5,14,23,.9) 64%, rgba(5,14,23,.3) 100%); }
  .ministry-copy { align-self: end; padding-top: 14rem; }
  .ministry-copy > .ministry-manifesto { font-size: clamp(1.18rem,5.6vw,1.6rem); }
  .book-feature { grid-template-columns: 1fr; min-height: 0; gap: 2.5rem; padding: 1.5rem; }
  .book-tablist { display: flex; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; }
  .book-tablist::-webkit-scrollbar { display: none; }
  .book-tab { flex: 0 0 min(18rem,82vw); min-height: 7rem; scroll-snap-align: start; }
  .book-tab + .book-tab { border-left: 1px solid rgba(255,255,255,.15); }
  .book-feature-dark .book-cover,
  .book-feature-dark .book-copy { order: initial; }
  .book-cover { width: min(76%, 15rem); }
  .book-copy h3 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .book-copy .button { width: 100%; min-width: 0; }
  .books-closing { grid-template-columns: 1fr; gap: 1rem; }
  .companies-head { grid-template-columns: 1fr; gap: 1.25rem; }
  .companies-head > p { font-size: 1rem; }
  .company-tabs { display: block; min-height: 0; border-inline: 0; margin-inline: calc(var(--gutter) * -1); }
  .company-tablist { flex-direction: row; gap: 0; overflow-x: auto; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); scrollbar-width: none; scroll-snap-type: x proximity; }
  .company-tablist::-webkit-scrollbar { display: none; }
  .company-tab { flex: 0 0 min(13.5rem, 68vw); min-height: 7.5rem; border-right: 1px solid rgba(255,255,255,.11); border-bottom: 0; scroll-snap-align: start; }
  .company-tab[aria-selected="true"] { padding-left: 1.35rem; }
  .company-stage { min-height: 38rem; padding: 2rem var(--gutter); }
  .company-stage-mark { right: -.02em; bottom: -.08em; font-size: clamp(12rem,58vw,20rem); }
  .company-panels { min-height: 29rem; }
  .company-panel h3 { font-size: clamp(3.5rem, 18vw, 5.4rem); }
  #panel-softmotors h3 { font-size: clamp(2.9rem, 13.5vw, 4.1rem); }
  .company-summary { font-size: 1.18rem; }
  .company-detail { grid-template-columns: 1fr; gap: 0.35rem; }
  .profile-brief { padding: 1.5rem; box-shadow: .65rem .65rem 0 var(--midnight); }
  .profile-brief-top { align-items: flex-start; flex-direction: column; gap: .35rem; }
  .profile-brief-actions { align-items: stretch; flex-direction: column; }
  .profile-brief-actions .button { width: 100%; }
  .decision-reasons { grid-template-columns: 1fr; }
  .decision-reasons article { min-height: 0; padding: 1.7rem 0; }
  .decision-reasons article + article { border-top: 1px solid var(--line); border-left: 0; }
  .decision-reasons span { margin-bottom: 1rem; }
  .booking { padding-inline: var(--gutter); }
  .brief-builder { margin-inline: 0; padding: 1.5rem; box-shadow: .65rem .65rem 0 var(--amber); }
  .brief-form { grid-template-columns: 1fr; }
  .brief-form label:nth-of-type(4) { grid-column: auto; }
  .brief-form .button { width: 100%; }
  .faq { grid-template-columns: 1fr; }
  .booking-brief { box-shadow: .65rem .65rem 0 var(--amber); }
  .faq { gap: 1.5rem; }
  .contact { grid-template-columns: 1fr; }
  .contact > img { height: 32rem; object-position: center 16%; }
  .contact-copy { padding: var(--section) var(--gutter); }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; min-height: 9rem; }
  .mobile-contact { position: fixed; z-index: 90; right: .65rem; bottom: .65rem; left: .65rem; display: flex; min-height: 3.35rem; align-items: center; justify-content: center; border-radius: var(--radius); background: var(--amber); color: var(--midnight); font-size: .88rem; font-weight: 900; text-decoration: none; box-shadow: 0 .8rem 2rem rgba(0,0,0,.28); }
  .back-top { right: .8rem; bottom: 4.8rem; width: 2.8rem; min-height: 2.8rem; justify-content: center; padding: 0; }
  .back-top strong { display: none; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: clamp(2.2rem, 10vw, 2.45rem); }
  .hero-role { font-size: .68rem; letter-spacing: .08em; }
  .button { width: 100%; }
  .photo-caption { width: 100%; }
}

@media (max-width: 520px) {
  .social-links { grid-template-columns: 1fr; }
}

@media (max-width: 680px) and (max-height: 760px) {
  .hero-content { padding-top: 7rem; padding-bottom: 4.75rem; }
  .hero-role { margin-bottom: 0.85rem; }
  .hero h1 { margin-bottom: 1.1rem; }
  .hero-lead { margin-bottom: 1.25rem; }
  .button { min-height: 3.2rem; }
}

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

@media print {
  .site-header, .scroll-progress, .chapter-indicator, .back-top, .mobile-contact, .scroll-cue { display: none; }
  .hero { min-height: 34rem; }
  .hero, .about, .topics, .ministry, .books, .companies, .decision-kit, .contact { break-inside: avoid; }
}
