/* =========================================================
   Cozinhar é um Direito — Landing
   Identidade: Agenda Pública (Bricolage Grotesque + Instrument Sans)
   ========================================================= */

:root {
  /* Cores Agenda Pública */
  --cream: #F0EDE1;
  --cream-2: #F8F6EF;
  --sand: #E4DFD0;
  --brown: #675249;
  --brown-dark: #2A1A13;
  --green-dark: #1A2A13;
  --green-deep: #21312E;
  --green-mid: #3E5A2B;
  --orange: #F36B22;
  --orange-hot: #FF7D2B;
  --yellow: #F5AE10;
  --purple: #6E2384;
  --white: #fff;

  --flame: linear-gradient(100deg, var(--orange) 0%, var(--orange-hot) 45%, var(--yellow) 100%);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-ui: "Instrument Sans", system-ui, sans-serif;

  --radius: 28px;
  --radius-sm: 16px;
  --gutter: clamp(16px, 4vw, 48px);
  --maxw: 1280px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; color: var(--brown-dark); }
p { margin: 0; }
em { font-style: normal; }
::selection { background: var(--orange); color: var(--white); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }

/* ---------- Tipografia utilitária ---------- */
.kicker {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.kicker--light { color: var(--yellow); }
.kicker--flame { background: var(--flame); -webkit-background-clip: text; background-clip: text; color: transparent; }

.h2 { font-size: clamp(38px, 5.4vw, 72px); }
.h2 em { color: var(--orange); }
.lead { font-size: clamp(18px, 1.6vw, 21px); max-width: 52ch; }


/* ---------- Botões ---------- */
.btn {
  --bg: var(--orange);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 600; font-size: 15px;
  padding: 16px 28px; border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .4s var(--ease), background .3s, color .3s, box-shadow .4s var(--ease);
  position: relative; overflow: hidden; isolation: isolate;
}
.btn--primary { background: var(--orange); color: var(--white); box-shadow: 0 10px 30px -10px rgba(243,107,34,.7); }
.btn--primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--flame); opacity: 0; transition: opacity .4s;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(243,107,34,.85); }
.btn--primary:hover::before { opacity: 1; }
.btn--ghost { color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: var(--white); color: var(--brown-dark); }
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--lg { padding: 20px 34px; font-size: 16px; }
.btn--block { width: 100%; }
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn:focus-visible, a:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: 18px 0;
  transition: background .4s, padding .4s, box-shadow .4s, transform .4s var(--ease);
}
.header__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header__logo { position: relative; display: block; height: 46px; }
.header__logo img { height: 100%; width: auto; transition: opacity .3s; }
.header__logo .logo--color { position: absolute; inset: 0; opacity: 0; }
.header__nav { display: flex; gap: 32px; font-family: var(--font-ui); font-size: 14px; font-weight: 500; color: var(--white); }
.header__nav a { position: relative; opacity: .85; transition: opacity .3s; }
.header__nav a::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 100%; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.header__nav a:hover { opacity: 1; }
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header.is-scrolled { background: rgba(240,237,225,.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 10px 0; box-shadow: 0 1px 0 rgba(42,26,19,.08); }
.header.is-scrolled .logo--color { opacity: 1; }
.header.is-scrolled .logo--white { opacity: 0; }
.header.is-scrolled .header__nav { color: var(--brown-dark); }
.header.is-hidden { transform: translateY(-100%); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 140px 0 clamp(90px, 12vh, 140px);
  color: var(--white); overflow: hidden;
  background: var(--brown-dark);
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
  width: 100%; height: 115%; object-fit: cover; object-position: 50% 60%;
  transform: scale(1.12); animation: heroIn 2.4s var(--ease) forwards;
  will-change: transform;
}
@keyframes heroIn { to { transform: scale(1); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(26,18,12,.55) 0%, rgba(26,18,12,.15) 35%, rgba(26,18,12,.75) 75%, rgba(26,18,12,.95) 100%),
    radial-gradient(60% 50% at 62% 85%, rgba(243,107,34,.28), transparent 70%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 1; opacity: .12; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__content { position: relative; z-index: 2; }
.hero__title {
  font-size: clamp(56px, 11.5vw, 184px);
  line-height: .92; letter-spacing: -0.045em;
  color: var(--white); margin: 28px 0 24px;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .22em; margin-bottom: -.16em; }
.hero__title .line > span { display: inline-block; transform: translateY(110%); animation: lineUp 1.2s var(--ease) forwards; }
.hero__title .line:nth-child(2) > span { animation-delay: .15s; }
@keyframes lineUp { to { transform: translateY(0); } }
.hl {
  color: inherit; font-weight: 400;
  background: linear-gradient(transparent 62%, var(--orange) 62%);
  background-size: 0% 100%; background-repeat: no-repeat;
  animation: hlIn 1.4s 1.1s var(--ease) forwards;
}
@keyframes hlIn { to { background-size: 100% 100%; } }

.hero__sub { font-size: clamp(20px, 2.2vw, 30px); max-width: 40ch; color: rgba(255,255,255,.88); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero__deadline {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px;
  margin-top: 28px;
}
.hero__deadline-label { font-family: var(--font-ui); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }
.hero__deadline strong { font-weight: 400; font-size: clamp(28px, 3vw, 44px); letter-spacing: -0.02em; background: var(--flame); -webkit-background-clip: text; background-clip: text; color: transparent; }

.hero__scroll { position: absolute; z-index: 2; left: 50%; bottom: 28px; width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 20px; transform: translateX(-50%); }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--white); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }


/* ---------- Intro ---------- */
.intro__statement {
  font-size: clamp(28px, 4.1vw, 58px);
  line-height: 1.14; letter-spacing: -0.025em;
  color: var(--brown-dark); max-width: 30ch;
}
.intro__statement strong { font-weight: 500; }
.intro__statement mark {
  background: linear-gradient(transparent 62%, rgba(245,174,16,.55) 62%);
  background-size: 0% 100%; background-repeat: no-repeat;
  color: inherit; transition: background-size 1.4s .4s var(--ease);
}
.intro__statement.is-in mark { background-size: 100% 100%; }

/* ---------- Territórios ---------- */
.territories { padding-top: 0; }
.territories__head { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 64px; align-items: end; margin-bottom: 56px; }
.territories__head .kicker { grid-column: 1 / -1; margin-bottom: 0; }
.territories__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.t-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3.6; background: var(--sand); }
.t-card__img { position: absolute; inset: 0; }
.t-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.t-card:hover .t-card__img img { transform: scale(1.06); }
.t-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(26,18,12,.85)); }
.t-card__body { position: absolute; z-index: 1; left: 32px; right: 32px; bottom: 30px; color: var(--white); }
.t-card__body h3 { color: var(--white); font-size: clamp(40px, 4.6vw, 64px); }
.t-card__body p { font-family: var(--font-ui); font-size: 15px; opacity: .85; margin-top: 8px; }
.t-card__uf {
  position: absolute; right: 0; bottom: 6px;
  font-family: var(--font-ui); font-weight: 600; font-size: 13px; letter-spacing: .1em;
  padding: 8px 14px; border-radius: 999px; background: var(--orange);
}
.t-card:nth-child(2) { margin-top: 64px; }

/* ---------- Investiga ---------- */
.investiga { background: var(--green-dark); color: rgba(255,255,255,.78); border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.investiga::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background: url("../imgs/Grid-1.png") center / cover no-repeat;
  mix-blend-mode: soft-light;
}
.investiga .h2 { color: var(--white); }
.investiga .h2 em { color: var(--yellow); }
.investiga__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(48px, 7vw, 120px); position: relative; }
.investiga__side { position: sticky; top: 120px; align-self: start; }
.investiga__side .lead { margin-top: 28px; }

.impact { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.impact__item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 500; font-size: 15px; color: var(--white);
  padding: 10px 18px 10px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.04);
}
.impact__icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--orange); }
.impact__icon svg { width: 18px; height: 18px; fill: none; stroke: var(--white); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.axes { list-style: none; margin: 0; padding: 0; counter-reset: a; }
.axis {
  display: grid; grid-template-columns: 72px 1fr; gap: 20px;
  padding: 36px 0; border-top: 1px solid rgba(255,255,255,.14);
  transition: padding .5s var(--ease);
}
.axis:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.axis__n { font-size: 44px; line-height: 1; font-weight: 300; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.4); transition: color .4s, -webkit-text-stroke-color .4s; }
.axis h3 { color: var(--white); font-size: clamp(24px, 2.3vw, 32px); margin-bottom: 10px; }
.axis:hover { padding-left: 12px; }
.axis:hover .axis__n { color: var(--orange); -webkit-text-stroke-color: var(--orange); }

/* ---------- Vozes ---------- */
.voices { background: var(--green-dark); padding-top: 0; color: rgba(255,255,255,.78); }
.voices .h2 { color: var(--white); }
.voices .kicker { color: var(--yellow); }
.voices__head { margin-bottom: 48px; border-top: 1px solid rgba(255,255,255,.14); padding-top: clamp(64px, 9vw, 120px); }
.voices__rail {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 var(--gutter) 12px max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
  scrollbar-width: none; cursor: grab;
}
.voices__rail::-webkit-scrollbar { display: none; }
.voices__rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.voice { flex: 0 0 clamp(240px, 26vw, 340px); margin: 0; position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 3 / 4; scroll-snap-align: start; }
.voice img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) contrast(1.05); transition: filter .6s, transform 1.2s var(--ease); pointer-events: none; }
.voice:hover img { filter: none; transform: scale(1.04); }
.voice figcaption {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--font-ui); font-size: 14px; font-weight: 600; color: var(--brown-dark);
  background: var(--cream); padding: 8px 14px; border-radius: 999px;
}
.voice--quote { background: var(--orange); display: flex; flex-direction: column; justify-content: space-between; padding: 32px; }
.voice--quote blockquote { margin: 0; color: var(--white); font-size: clamp(24px, 2.2vw, 30px); line-height: 1.15; letter-spacing: -0.02em; }
.voice--quote figcaption { position: static; align-self: flex-start; }

/* ---------- Chamada ---------- */
.call { background: var(--brown-dark); color: rgba(255,255,255,.78); overflow: hidden; }
.call__glow {
  position: absolute; width: 900px; height: 900px; right: -300px; top: -300px; pointer-events: none;
  background: radial-gradient(circle, rgba(243,107,34,.35), rgba(245,174,16,.08) 45%, transparent 70%);
  filter: blur(20px); animation: breathe 7s ease-in-out infinite;
}
@keyframes breathe { 50% { transform: scale(1.12); opacity: .75; } }
.call .container { position: relative; }
.call__top { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px 80px; align-items: end; margin-bottom: 72px; }
.call__title { color: var(--white); font-size: clamp(40px, 5vw, 76px); }
.call__title em { background: var(--flame); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 400; }

.call__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 72px); align-items: start; }

.countdown {
  background: var(--cream); color: var(--brown-dark);
  border-radius: var(--radius); padding: clamp(28px, 3vw, 44px);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.6);
}
.countdown__label { font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.countdown__units { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0 28px; }
.countdown__units div { background: var(--white); border-radius: var(--radius-sm); padding: 18px 6px 14px; text-align: center; }
.countdown__units span { display: block; font-size: clamp(36px, 4vw, 54px); font-weight: 400; line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.countdown__units small { font-family: var(--font-ui); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--brown); }
.countdown__closed { display: none; font-size: 22px; margin: 20px 0 28px; }
.countdown.is-closed .countdown__units { display: none; }
.countdown.is-closed .countdown__closed { display: block; }
.countdown.is-closed .countdown__label, .countdown.is-closed #cta-inscricao { display: none; }
.countdown__note { font-family: var(--font-ui); font-size: 13px; text-align: center; margin-top: 14px; color: var(--brown); }

.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 11px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(var(--orange), var(--yellow)); opacity: .5; }
.step { position: relative; padding: 0 0 44px 56px; }
.step:last-child { padding-bottom: 0; }
.step::before { content: ""; position: absolute; left: 0; top: 4px; width: 24px; height: 24px; border-radius: 50%; background: var(--brown-dark); border: 2px solid var(--orange); }
.step--hot::before { background: var(--flame); border-color: var(--yellow); box-shadow: 0 0 0 8px rgba(243,107,34,.2), 0 0 30px rgba(245,174,16,.6); }
.step__date { font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); }
.step h3 { color: var(--white); font-size: clamp(26px, 2.6vw, 36px); margin: 8px 0 10px; }

.launch { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 80px; }
.launch__item {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.03);
  font-size: 15px;
}
.launch__item svg { flex: 0 0 40px; width: 40px; height: 40px; padding: 9px; border-radius: 50%; background: rgba(243,107,34,.16); fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.launch__item strong { display: block; color: var(--white); font-weight: 500; font-size: 17px; }

/* ---------- CTA final ---------- */
.final { position: relative; overflow: hidden; background: var(--brown-dark); color: var(--white); padding: clamp(120px, 18vw, 240px) 0; text-align: center; }
.final__media { position: absolute; inset: 0; }
.final__media img { width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.final::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, var(--brown-dark) 0%, rgba(42,26,19,.5) 40%, rgba(42,26,19,.85) 100%); }
.final__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 48px; }
.final__title { color: var(--white); font-size: clamp(38px, 5.6vw, 80px); max-width: 18ch; }
.final__title em { background: var(--flame); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 400; }

/* ---------- Footer ---------- */
.footer { background: var(--green-dark); color: rgba(255,255,255,.7); padding: 72px 0 32px; font-family: var(--font-ui); font-size: 14px; }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brands { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__brands small { display: block; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; margin-bottom: 14px; opacity: .6; }
.footer__brands img { height: 56px; width: auto; }
.footer__links { display: flex; flex-direction: column; gap: 10px; text-align: right; }
.footer__links a:hover, .footer__bottom a:hover { color: var(--orange); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 13px; }

/* ---------- Sticky CTA mobile ---------- */
.sticky-cta {
  position: fixed; z-index: 60; left: 12px; right: 12px; bottom: 12px;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 10px 10px 20px; border-radius: 999px;
  background: rgba(42,26,19,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--white); font-size: 15px; line-height: 1.2;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.5);
  transform: translateY(140%); transition: transform .5s var(--ease);
}
.sticky-cta small { display: block; font-family: var(--font-ui); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }
.sticky-cta.is-visible { transform: translateY(0); }

.show-sm { display: none; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1.1s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .investiga__grid, .call__top, .call__grid { grid-template-columns: 1fr; }
  .investiga__side { position: static; }
  .launch { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .header__logo { height: 38px; }
  .header .btn--sm { padding: 9px 14px; font-size: 13px; }
  .hero { flex-direction: column; justify-content: flex-end; align-items: stretch; padding-bottom: 56px; }
  .hide-sm { display: none; }
  .show-sm { display: inline; }
  .hero__scroll { display: none; }
  .hero .container { padding-bottom: 0; }
  .hero__actions .btn { flex: 1 1 100%; }
  .territories__head { grid-template-columns: 1fr; }
  .territories__grid { grid-template-columns: 1fr; }
  .t-card { aspect-ratio: 4 / 4.2; }
  .t-card:nth-child(2) { margin-top: 0; }
  .t-card__body { left: 22px; right: 22px; bottom: 22px; }
  .axis { grid-template-columns: 52px 1fr; padding: 28px 0; }
  .axis__n { font-size: 34px; }
  .countdown__units { gap: 6px; }
  .countdown__units div { padding: 14px 2px 10px; }
  .footer__links { text-align: left; }
  .sticky-cta { display: flex; }
}

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

/* =========================================================
   V2 — foco no conteúdo do documento e na solução
   ========================================================= */

/* Hero: chama azul do gás */
.hero__img { object-position: 50% 45%; }
.hero::before {
  background:
    linear-gradient(180deg, rgba(26,18,12,.6) 0%, rgba(26,18,12,.1) 35%, rgba(26,18,12,.7) 72%, rgba(26,18,12,.95) 100%),
    radial-gradient(60% 50% at 20% 90%, rgba(243,107,34,.25), transparent 70%);
}

/* A pesquisa */
.about__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.about .intro__statement { font-size: clamp(26px, 3.2vw, 46px); max-width: none; }
.about__img { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.about__img img { width: 100%; height: 100%; object-fit: cover; }

.places { list-style: none; margin: 36px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.places li {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px 10px 10px; border-radius: 999px;
  background: var(--white); color: var(--brown);
  font-family: var(--font-ui); font-size: 15px;
  box-shadow: 0 10px 30px -18px rgba(42,26,19,.4);
}
.places strong { color: var(--brown-dark); font-weight: 600; }
.places__pin { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--orange); }
.places__pin svg { width: 18px; height: 18px; fill: none; stroke: var(--white); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* O que investiga */
.investiga { border-radius: var(--radius); margin: 0 clamp(8px, 1.5vw, 20px); }
.investiga__lead { color: var(--white); font-size: clamp(28px, 3.2vw, 44px); line-height: 1.12; letter-spacing: -0.02em; }
.investiga__img { margin: 40px 0 0; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 3 / 2; }
.investiga__img img { width: 100%; height: 100%; object-fit: cover; }
.axis p strong { color: var(--yellow); font-weight: 500; }
.axis--impact .axis__n { color: var(--orange); -webkit-text-stroke-color: var(--orange); }

/* Chamada */
.call--v2 { margin-top: clamp(-40px, -3vw, -20px); padding-top: clamp(120px, 14vw, 200px); }
.call--v2 .call__top { margin-bottom: 56px; }
.call--v2 .lead strong { color: var(--white); font-weight: 500; }

.venue { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; height: clamp(420px, 48vw, 640px); margin-bottom: 72px; }
.venue figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; }
.venue img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.venue figure:hover img { transform: scale(1.05); }
.venue__main { grid-row: 1 / 3; }
.venue__main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(26,18,12,.85)); }
.venue__main figcaption { position: absolute; z-index: 1; left: 32px; right: 32px; bottom: 28px; color: rgba(255,255,255,.85); font-family: var(--font-ui); font-size: 15px; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.venue__main figcaption strong { font-family: var(--font-display); font-weight: 300; font-size: clamp(34px, 4vw, 58px); line-height: 1; letter-spacing: -0.02em; color: var(--white); }
.venue__tag { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; background: var(--orange); color: var(--white); margin-bottom: 8px; }

.call__text { color: rgba(255,255,255,.85); font-size: clamp(20px, 1.9vw, 26px); line-height: 1.4; }
.call__text a { color: var(--white); border-bottom: 2px solid var(--orange); transition: color .3s; }
.call__text a:hover { color: var(--orange); }
.call__text strong { color: var(--white); font-weight: 500; }

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px; }
.fact { padding: 20px 22px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.03); }
.fact small { display: block; font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 8px; }
.fact strong { color: var(--white); font-weight: 400; font-size: clamp(20px, 1.8vw, 24px); line-height: 1.15; }

.launch--v2 { grid-template-columns: 1fr 1fr; margin-top: 12px; }
.call--v2 .call__grid { grid-template-columns: 1.3fr 1fr; }
.call--v2 .countdown { position: sticky; top: 100px; }

@media (max-width: 1024px) {
  .about__grid, .call--v2 .call__grid { grid-template-columns: 1fr; }
  .about__img { aspect-ratio: 4 / 3; }
  .call--v2 .countdown { position: static; }
}
@media (max-width: 720px) {
  .investiga { margin: 0; }
  .venue { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .venue__main { grid-row: auto; grid-column: 1 / -1; aspect-ratio: 4 / 4.4; }
  .venue__side { aspect-ratio: 1; border-radius: var(--radius-sm) !important; }
  .venue__main figcaption { left: 20px; right: 20px; bottom: 20px; }
  .facts { grid-template-columns: 1fr 1fr; }
  .fact:last-child { grid-column: 1 / -1; }
  .launch--v2 { grid-template-columns: 1fr; }
}

/* ---------- V2.1: tópicos com imagem ---------- */
.investiga__head { max-width: 820px; margin-bottom: clamp(48px, 6vw, 80px); }
.investiga__head .investiga__lead { font-size: clamp(30px, 3.6vw, 52px); }
.topics { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.topic { display: flex; flex-direction: column; }
.topic__img { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4 / 5; margin-bottom: 24px; }
.topic__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.topic:hover .topic__img img { transform: scale(1.05); }
.topic h3 { color: var(--white); font-size: clamp(22px, 1.9vw, 27px); margin-bottom: 12px; padding-top: 18px; border-top: 2px solid var(--orange); }
.topic p { font-size: 16px; }
.topic p strong { color: var(--yellow); font-weight: 500; }

/* ---------- V2.1: local + datas em destaque ---------- */
.venue--single { display: block; height: auto; position: relative; margin-bottom: 96px; }
.venue--single .venue__main { aspect-ratio: 21 / 9; border-radius: var(--radius); }
.venue--single .venue__main figcaption { bottom: auto; top: 32px; }
.venue--single .venue__main::after { background: linear-gradient(180deg, rgba(26,18,12,.7) 0%, transparent 45%, rgba(26,18,12,.35) 100%); }

.keydates {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin: -72px clamp(16px, 4vw, 56px) 0;
  border-radius: var(--radius);
  background: var(--flame);
  box-shadow: 0 40px 80px -30px rgba(243,107,34,.6);
  overflow: hidden;
}
.keydate { padding: clamp(24px, 3vw, 40px) clamp(20px, 3vw, 44px); color: var(--white); }
.keydate + .keydate { border-left: 1px solid rgba(255,255,255,.35); }
.keydate small { display: block; font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .9; margin-bottom: 10px; }
.keydate strong { display: block; font-weight: 400; font-size: clamp(30px, 3.6vw, 54px); line-height: 1; letter-spacing: -0.03em; }
.keydate strong span { opacity: .75; }
.keydate:last-child strong { font-size: clamp(24px, 2.6vw, 38px); line-height: 1.05; }

/* ---------- V2.1: cards de lançamento com imagem ---------- */
.launches { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.launch-card { border-radius: var(--radius-sm); overflow: hidden; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); }
.launch-card__img { aspect-ratio: 3 / 2; overflow: hidden; }
.launch-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.launch-card:hover .launch-card__img img { transform: scale(1.05); }
.launch-card__body { padding: 20px 22px 24px; }
.launch-card__body small { display: block; font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 8px; }
.launch-card__body strong { color: var(--white); font-weight: 400; font-size: clamp(19px, 1.6vw, 23px); line-height: 1.2; }

@media (max-width: 1024px) {
  .topics { grid-template-columns: 1fr 1fr; }
  .venue--single .venue__main { aspect-ratio: 16 / 10; }
}
@media (max-width: 720px) {
  .topics { grid-template-columns: 1fr; gap: 40px; }
  .topic__img { aspect-ratio: 4 / 3; }
  .venue--single { margin-bottom: 56px; }
  .venue--single .venue__main { aspect-ratio: 4 / 4.4; }
  .venue--single .venue__main figcaption { top: 20px; }
  .keydates { grid-template-columns: 1fr; margin: -56px 12px 0; }
  .keydate + .keydate { border-left: 0; border-top: 1px solid rgba(255,255,255,.35); }
  .keydate { padding: 20px 24px; }
  .launches { grid-template-columns: 1fr; }
}

/* ---------- V2.2: logo Transição Justa no menu + texto acima das imagens ---------- */
.header__logo--tj { height: 56px; }
.header.is-scrolled { background: rgba(26,18,12,.92); box-shadow: 0 1px 0 rgba(255,255,255,.06); }
.header.is-scrolled .header__nav { color: var(--white); }

.topic h3 { margin-bottom: 12px; }
.topic p { margin-bottom: 24px; flex: 1; }
.topic__img { margin-bottom: 0; order: 3; }

.launch-card { display: flex; flex-direction: column; }
.launch-card__body { flex: 1; }
.launch-card__img { margin: 0 12px 12px; border-radius: 12px; }

@media (max-width: 720px) {
  .header__logo--tj { height: 44px; }
}

/* ---------- V2.3: imagem como fundo do card, texto sobreposto com proteção ---------- */
.topic, .launch-card {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-radius: var(--radius-sm);
  background: var(--brown-dark);
}
.topic { min-height: clamp(460px, 38vw, 560px); padding: 24px; }
.launch-card { min-height: 360px; border: 0; }

.topic__img, .launch-card__img {
  position: absolute; inset: 0; z-index: -2;
  margin: 0; border-radius: 0; aspect-ratio: auto; order: 0;
}
.topic__img img, .launch-card__img img { width: 100%; height: 100%; object-fit: cover; }

/* Proteção: topo limpo (imagem em evidência), base escura para leitura */
.topic::before, .launch-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,14,10,0) 0%, rgba(20,14,10,0) 30%, rgba(20,14,10,.72) 58%, rgba(20,14,10,.94) 100%);
  transition: opacity .5s var(--ease);
}
.topic h3 { border-top: 2px solid var(--orange); padding-top: 16px; text-shadow: 0 1px 12px rgba(0,0,0,.35); }
.topic p { flex: 0; margin-bottom: 0; color: rgba(255,255,255,.86); }

.launch-card__body { flex: 0; padding: 24px; }
.launch-card__body strong { display: block; text-shadow: 0 1px 12px rgba(0,0,0,.35); }

@media (max-width: 720px) {
  .topic { min-height: 440px; }
  .launch-card { min-height: 320px; }
}

/* ---------- V2.4 ---------- */
/* Tópicos: sem fio, formato menos vertical */
.topic { min-height: 0; aspect-ratio: 3 / 3.8; }
.topic h3 { border-top: 0; padding-top: 0; }
.topic__img img { object-position: 50% 25%; }

/* Chamada: texto alinhado verticalmente ao contador */
.call--v2 .call__grid { align-items: center; }
.call--v2 .countdown { position: static; }

/* Lançamentos: largura total, cards horizontais */
.launches { margin-top: clamp(48px, 6vw, 80px); gap: clamp(16px, 2vw, 24px); }
.launch-card { min-height: 0; aspect-ratio: 16 / 8; }
.launch-card::before { background: linear-gradient(20deg, rgba(20,14,10,.95) 0%, rgba(20,14,10,.75) 35%, rgba(20,14,10,0) 70%); }
.launch-card__img img { object-position: 70% 40%; }
.launch-card__body { padding: clamp(24px, 2.6vw, 36px); max-width: 70%; }
.launch-card__body strong { font-size: clamp(22px, 2.2vw, 32px); line-height: 1.12; }

@media (max-width: 720px) {
  .topic { aspect-ratio: 4 / 4.2; }
  .launch-card { aspect-ratio: 4 / 3.4; }
  .launch-card__body { max-width: none; }
}
.topic__img img { object-position: 50% 0%; }
.topic::before { background: linear-gradient(180deg, rgba(20,14,10,0) 0%, rgba(20,14,10,0) 40%, rgba(20,14,10,.7) 64%, rgba(20,14,10,.94) 100%); }
