/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--ink); }
img  { display: block; max-width: 100%; }
body {
  background: var(--ink); color: var(--paper);
  font-family: 'Inter', sans-serif; font-weight: 300;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* grain overlay */
body::before {
  content: ''; position: fixed; inset: 0;
  pointer-events: none; z-index: 9998; opacity: .04;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23g)'/%3E%3C/svg%3E") repeat;
}

/* ── CURSOR ──────────────────────────────────────────────── */
.cur-dot, .cur-ring {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%); will-change: left,top;
}
.cur-dot  { width:5px; height:5px; background: var(--lime); }
.cur-ring {
  width:34px; height:34px;
  border: 1px solid rgba(202,211,2,.40);
  transition: width .25s, height .25s, border-color .25s, background .25s;
}
@media (hover:none) { .cur-dot,.cur-ring { display:none; } body { cursor:auto; } }

/* ── LAYOUT ──────────────────────────────────────────────── */
.wrap { max-width:1320px; margin:0 auto; padding:0 56px; }
@media (max-width:768px) { .wrap { padding:0 22px; } }

/* ── TYPE ────────────────────────────────────────────────── */
.display, h1, h2, h3 {
  font-family:'IBM Plex Sans Condensed', sans-serif;
  font-weight:700; text-transform:uppercase;
  line-height:.92; letter-spacing:-.005em;
  text-wrap: balance;
}
p { text-wrap: pretty; }
.mono {
  font-family:'JetBrains Mono', monospace;
  font-weight:400; letter-spacing:.04em;
}

/* ── SECTION LABEL (rótulo verde pequeno) ────────────────── */
.label {
  display:inline-flex; align-items:center; gap:14px;
  font-family:'IBM Plex Sans Condensed', sans-serif;
  font-size:11px; font-weight:600; letter-spacing:.32em;
  text-transform:uppercase; color:var(--lime);
  padding:7px 0;
}
.label::before {
  content:''; width:28px; height:1px; background:var(--lime);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:14px;
  font-family:'IBM Plex Sans Condensed', sans-serif;
  font-size:13px; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  padding:20px 34px; text-decoration:none; transition:.25s; cursor:none;
  position:relative; overflow:hidden;
}
.btn-lime {
  background:var(--lime); color:var(--ink);
  box-shadow:0 0 0 1px var(--lime), 0 14px 28px -16px rgba(202,211,2,.55);
}
.btn-lime::after {
  content:'→'; font-family:'Inter',sans-serif; font-weight:500;
  transition:transform .25s; font-size:18px;
}
.btn-lime:hover { background:#DAE302; transform:translateY(-2px); }
.btn-lime:hover::after { transform:translateX(6px); }

.btn-ghost {
  background:transparent; color:var(--paper);
  border:1px solid var(--paper-18);
}
.btn-ghost:hover { border-color:var(--lime); color:var(--lime); }

/* checker icon */
.flag {
  width:16px; height:16px; display:inline-block;
  background:
    conic-gradient(var(--ink) 25%, transparent 25% 50%, var(--ink) 50% 75%, transparent 75%);
  background-size:8px 8px; background-color:var(--paper);
}
.btn-lime .flag { background-color:var(--ink); background-image:
  conic-gradient(var(--lime) 25%, transparent 25% 50%, var(--lime) 50% 75%, transparent 75%); }

@media (max-width:600px) {
  .btn {
    padding:14px 22px; font-size:12px; gap:10px;
    width:100%; justify-content:center; white-space:nowrap;
  }
  .hero-cta { flex-direction:column; align-items:stretch; }
  .hero-cta .small { margin-left:0; text-align:center; }
}

/* ── REVEAL ──────────────────────────────────────────────── */
[data-r] {
  opacity:0; transition:opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1);
  transform:translateY(28px);
}
[data-r="left"]  { transform:translateX(-32px); }
[data-r="right"] { transform:translateX(32px); }
[data-r="up"]    { transform:translateY(40px); }
[data-r].in      { opacity:1; transform:none; }
.d1 { transition-delay:.08s; }
.d2 { transition-delay:.18s; }
.d3 { transition-delay:.28s; }
.d4 { transition-delay:.38s; }
.d5 { transition-delay:.48s; }

/* ── PROGRESS BAR ────────────────────────────────────────── */
.progress {
  position:fixed; top:0; left:0; height:2px;
  background:var(--lime); width:0%; z-index:9997;
  transition:width .1s linear;
}

/* ── HEADER ──────────────────────────────────────────────── */
.topbar {
  position:fixed; top:0; left:0; right:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 56px;
  background:linear-gradient(180deg, rgba(1,12,14,.85) 0%, rgba(1,12,14,0) 100%);
  backdrop-filter:blur(8px);
  transition:padding .3s, background .3s;
}
.topbar.scrolled {
  padding:14px 56px;
  background:rgba(1,12,14,.92);
  border-bottom:1px solid var(--paper-08);
}
.topbar-l img { height:38px; }
.topbar-r {
  display:flex; align-items:center; gap:24px;
}
.topbar-meta {
  font-family:'JetBrains Mono', monospace;
  font-size:11px; color:var(--paper-60); letter-spacing:.06em;
}
.topbar-meta span { color:var(--lime); }
.topbar .btn { padding:12px 22px; font-size:11px; }
@media (max-width:760px) {
  .topbar { padding:16px 22px; justify-content:space-between; }
  .topbar-r { display:none; }
}

/* ════════════════════════════════════════════════════════
   §1  HERO
════════════════════════════════════════════════════════ */
#hero {
  position:relative; min-height:100vh;
  display:flex; flex-direction:column;
  padding-top:104px;
  background:
    radial-gradient(80% 60% at 80% 20%, rgba(1,79,72,.35) 0%, transparent 60%),
    radial-gradient(60% 50% at 10% 90%, rgba(2,59,45,.55) 0%, transparent 60%),
    var(--ink);
  overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0;
  background:url('/assets/images/brand/BACKGROUND.png') center 50% / cover no-repeat;
  opacity:.32;
  mix-blend-mode:luminosity;
  transform:scale(1.06);
  transition:transform 7s cubic-bezier(.16,1,.3,1), opacity 1.2s ease;
}
.hero-bg.go { transform:scale(1); }
.hero-veil {
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(1,12,14,.55) 0%, rgba(1,12,14,.2) 30%, rgba(1,12,14,.85) 78%, var(--ink) 100%),
    linear-gradient(108deg, rgba(2,59,45,.55) 0%, transparent 50%);
}
/* diagonal racing stripes */
.hero-stripes {
  position:absolute; right:-80px; top:140px; width:280px; height:60px;
  background:repeating-linear-gradient(
    -22deg,
    var(--lime) 0 6px,
    transparent 6px 14px
  );
  opacity:.65; transform:rotate(-22deg);
  mask-image:linear-gradient(90deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
@media (max-width:900px){ .hero-stripes { display:none; } }

.hero-grid {
  position:relative; z-index:5; flex:1;
  display:flex; flex-direction:column; align-items:center;
  justify-content:center; text-align:center;
  gap:60px;
  padding:0 56px 44px;
}
.hero-main { width:100%; display:flex; flex-direction:column; align-items:center; }
@media (max-width:980px){
  .hero-grid { padding:0 22px 60px; gap:40px; }
}
@media (max-width:640px){
  #hero { min-height: 75vh; padding-top: 80px; }
  .hero-grid { padding: 0 20px 44px; justify-content: center; }
}

.hero-num {
  font-family:'JetBrains Mono', monospace;
  font-size:11px; color:var(--paper-40); letter-spacing:.16em;
  margin-bottom:32px; display:inline-flex; align-items:center; gap:12px;
  justify-content:center;
}
.hero-num::before, .hero-num::after {
  content:''; width:60px; height:1px; background:var(--paper-18);
}

.hero-h1 {
  font-size:clamp(48px, 9.5vw, 144px);
  line-height:.86; letter-spacing:-.018em;
  color:var(--paper);
  margin-bottom:36px;
  text-align:center;
}
.hero-h1 .lime { color:var(--lime); font-style:italic; }
.hero-h1 .out  {
  -webkit-text-stroke:1.5px var(--paper);
  color:transparent;
}

.hero-sub {
  font-family:'Inter', sans-serif;
  font-size:clamp(13px, 1.4vw, 18px); font-weight:300;
  line-height:1.65; color:var(--paper-60);
  max-width:none; margin:0 auto 42px;
  text-align:center;
  white-space:nowrap;
}
@media (max-width:640px) {
  .hero-sub { white-space:normal; max-width:420px; }
}
.hero-sub strong { color:var(--paper); font-weight:500; }

.hero-cta { display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:center; }
.hero-cta .small {
  font-family:'JetBrains Mono', monospace;
  font-size:11px; color:var(--paper-40); letter-spacing:.06em;
  margin-left:8px;
}

/* hero ticker */
.ticker {
  position:relative; z-index:5;
  border-top:1px solid var(--paper-08);
  border-bottom:1px solid var(--paper-08);
  background:rgba(2,31,24,.4);
  overflow:hidden; padding:14px 0;
}
.ticker-track {
  display:flex; gap:64px;
  animation:slide 40s linear infinite;
  white-space:nowrap;
}
.ticker-track span {
  font-family:'IBM Plex Sans Condensed', sans-serif;
  font-weight:600; font-size:13px; letter-spacing:.22em;
  text-transform:uppercase; color:var(--paper-60);
  display:flex; align-items:center; gap:18px;
}
.ticker-track span::after {
  content:'■'; color:var(--lime); font-size:8px;
}

/* ════════════════════════════════════════════════════════
   §2  EXPERIÊNCIA
════════════════════════════════════════════════════════ */
#exp { padding:140px 0 0; background:var(--ink); position:relative; }
.exp-g {
  display:grid; grid-template-columns:1fr 1fr; gap:96px;
  align-items:start; margin-bottom:96px;
}
@media (max-width:960px){ .exp-g { grid-template-columns:1fr; gap:48px; } }

.exp-h2 {
  font-size:clamp(28px, 5.5vw, 78px);
  line-height:.95; letter-spacing:-.01em;
  color:var(--paper); margin-top:18px;
}
@media (max-width:600px) {
  .exp-h2 { font-size:26px; line-height:1.05; }
  .exp-h2 br { display:none; }
}
.exp-h2 em { color:var(--lime); font-style:italic; font-weight:700; }

.exp-body p {
  font-family:'Inter', sans-serif; font-weight:300;
  font-size:17px; line-height:1.78; color:var(--paper-60);
}
.exp-body p + p { margin-top:22px; }
.exp-body strong { color:var(--paper); font-weight:500; }
.exp-body .nada {
  font-family:'IBM Plex Sans Condensed', sans-serif; font-weight:700;
  text-transform:uppercase; letter-spacing:.04em;
  font-size:24px; color:var(--lime);
  margin-top:32px; display:inline-block;
  padding:10px 0; border-top:2px solid var(--lime); border-bottom:2px solid var(--lime);
}

/* full-bleed strip — 1 dia completo */
.exp-strip {
  background:var(--lime); color:var(--ink);
  padding:46px 0; position:relative; overflow:hidden;
}
.exp-strip::before, .exp-strip::after {
  content:''; position:absolute; top:0; bottom:0;
  width:120px;
  background:repeating-linear-gradient(
    45deg,
    var(--ink) 0 10px,
    var(--lime) 10px 20px
  );
}
.exp-strip::before { left:0; mask-image:linear-gradient(90deg, #000, transparent); }
.exp-strip::after  { right:0; mask-image:linear-gradient(-90deg, #000, transparent); }
.exp-strip-in {
  max-width:1320px; margin:0 auto; padding:0 56px;
  display:flex; align-items:center; justify-content:center; gap:42px;
  flex-wrap:wrap; text-align:center;
}
.exp-strip-in .blk {
  font-family:'IBM Plex Sans Condensed', sans-serif; font-weight:700;
  text-transform:uppercase; letter-spacing:.02em;
  font-size:clamp(22px, 3.4vw, 42px); color:var(--ink);
}
.exp-strip-in .blk em { font-style:italic; }
.exp-strip-in .sep {
  width:8px; height:8px; background:var(--ink); border-radius:50%;
}

/* ════════════════════════════════════════════════════════
   §3  PARA QUEM
════════════════════════════════════════════════════════ */
#who {
  background:var(--emerald-d); padding:140px 0;
  position:relative; overflow:hidden;
}
#who::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(50% 50% at 80% 0%, rgba(1,79,72,.45) 0%, transparent 60%),
    radial-gradient(40% 40% at 0% 100%, rgba(202,211,2,.06) 0%, transparent 60%);
  pointer-events:none;
}
.who-head {
  max-width:880px; margin:0 auto 80px; position:relative; z-index:2;
  text-align:center;
}
.who-head .label { justify-content:center; }
.who-h2 {
  font-size:clamp(36px, 5.2vw, 78px);
  line-height:.96; color:var(--paper); margin-top:20px;
}
.who-h2 em { color:var(--lime); font-style:italic; }
.who-sub {
  font-family:'Inter', sans-serif; font-weight:300;
  font-size:18px; line-height:1.7; color:var(--paper-60);
  margin:24px auto 0; max-width:600px;
}

.who-g {
  display:grid; grid-template-columns:repeat(4, 1fr);
  gap:1px; background:var(--paper-08);
  border:1px solid var(--paper-08);
  position:relative; z-index:2;
}
.who-c {
  background:var(--emerald-d);
  padding:42px 30px 38px; position:relative;
  transition:background .3s ease, transform .3s ease;
  display:flex; flex-direction:column; min-height:340px;
}
.who-c:hover { background:var(--emerald); }
.who-c:hover .who-arrow { transform:translateX(6px); color:var(--lime); }
.who-c:hover .who-bar { width:100%; }

.who-n {
  font-family:'JetBrains Mono', monospace;
  font-size:13px; color:var(--lime); letter-spacing:.16em;
  margin-bottom:30px;
}
.who-bar {
  width:32px; height:2px; background:var(--lime);
  margin-bottom:22px; transition:width .5s cubic-bezier(.16,1,.3,1);
}
.who-t {
  font-family:'IBM Plex Sans Condensed', sans-serif;
  font-weight:700; font-size:24px; text-transform:uppercase;
  letter-spacing:.005em; color:var(--paper); margin-bottom:18px;
  line-height:1.05;
}
.who-p {
  font-family:'Inter', sans-serif; font-weight:300;
  font-size:14.5px; line-height:1.7; color:var(--paper-60);
  flex:1;
}
.who-arrow {
  margin-top:24px; font-family:'IBM Plex Sans Condensed', sans-serif;
  font-weight:600; font-size:18px; color:var(--paper-40);
  transition:transform .3s ease, color .3s ease;
}
@media (max-width:1100px){ .who-g { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .who-g { grid-template-columns:1fr; } }

.who-cta { margin-top:64px; text-align:center; position:relative; z-index:2; }

/* ════════════════════════════════════════════════════════
   §4  GALERIA
════════════════════════════════════════════════════════ */
#gallery { padding:140px 0; background:var(--ink); }
.gal-head {
  display:grid; grid-template-columns:1fr auto;
  align-items:end; gap:40px; margin-bottom:64px;
}
.gal-h2 {
  font-size:clamp(36px, 5vw, 72px);
  line-height:.96; color:var(--paper); margin-top:18px; max-width:780px;
}
.gal-h2 em { color:var(--lime); font-style:italic; }
.gal-sub {
  font-family:'Inter', sans-serif; font-weight:300;
  font-size:15px; line-height:1.7; color:var(--paper-60);
  max-width:280px; text-align:left; font-style:italic;
}
@media (max-width:820px){
  .gal-head { grid-template-columns:1fr; }
  .gal-sub { text-align:left; max-width: calc(100% - 12px); }
}

.gal-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:14px;
}
.gal-cell {
  position:relative; overflow:hidden;
  background:var(--emerald-d);
  aspect-ratio: 4/3;
}
.gal-cell img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 1.2s cubic-bezier(.2,.8,.2,1), filter .6s;
  filter:saturate(.85) brightness(.9);
}
.gal-cell:hover img { transform:scale(1.06); filter:saturate(1) brightness(1); }
.gal-cell::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 50%, rgba(1,12,14,.8) 100%);
  pointer-events:none;
}
.gal-cap {
  position:absolute; bottom:18px; left:20px; right:20px;
  z-index:2; color:var(--paper);
  font-family:'JetBrains Mono', monospace;
  font-size:11px; letter-spacing:.06em;
  display:flex; align-items:center; gap:10px;
}
.gal-cap::before {
  content:''; width:6px; height:6px; background:var(--lime); flex-shrink:0;
}
.gal-1 { grid-row:1 / 3; aspect-ratio:auto; }
.gal-2 { aspect-ratio:1/1; }
.gal-3 { aspect-ratio:1/1; }
.gal-4 { aspect-ratio:1/1; }
.gal-5 { aspect-ratio:1/1; }
@media (max-width:820px){
  .gal-grid { grid-template-columns:1fr 1fr; }
  .gal-1 { grid-row:auto; aspect-ratio:4/3; }
}
@media (max-width:520px){
  .gal-grid { grid-template-columns:1fr; }
}

/* ════════════════════════════════════════════════════════
   §5  LARGADA
════════════════════════════════════════════════════════ */
#start {
  position:relative; padding:160px 0 140px;
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--emerald-d) 60%, var(--ink) 100%);
  overflow:hidden;
}
.start-bg {
  position:absolute; inset:0;
  background:url('/assets/images/brand/BG.png') center / cover no-repeat;
  opacity:.05;
}
/* finish-line graphic */
.finish-line {
  position:absolute; left:0; right:0; top:50%; height:48px;
  transform:translateY(-50%);
  background:repeating-linear-gradient(
    90deg,
    var(--paper) 0 28px,
    var(--ink) 28px 56px
  );
  opacity:.05;
}

.start-in { position:relative; z-index:2; text-align:center; }
.start-in > .label { justify-content:center; }
.start-h2 {
  font-size:clamp(46px, 7vw, 108px);
  line-height:.92; color:var(--paper);
  max-width:1100px; margin:0 auto;
}
.start-h2 em { color:var(--lime); font-style:italic; }
.start-p {
  font-family:'Inter', sans-serif; font-weight:300;
  font-size:18px; line-height:1.78; color:var(--paper-60);
  max-width:680px; margin:32px auto 0;
}
.start-p strong { color:var(--paper); font-weight:500; }

.start-info {
  margin-top:72px;
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:1px; background:var(--paper-08);
  border:1px solid var(--paper-08);
}
.start-info > div {
  background:rgba(1,12,14,.7);
  padding:32px 30px;
}
.info-l {
  font-family:'JetBrains Mono', monospace;
  font-size:11px; color:var(--lime); letter-spacing:.24em;
  text-transform:uppercase; margin-bottom:16px;
  display:flex; align-items:center; gap:10px;
}
.info-l svg { width:14px; height:14px; }
.info-v {
  font-family:'IBM Plex Sans Condensed', sans-serif;
  font-weight:700; font-size:clamp(22px, 2.4vw, 32px);
  text-transform:uppercase; color:var(--paper);
  letter-spacing:.005em; line-height:1.05;
}
.info-s {
  font-family:'Inter', sans-serif; font-weight:300;
  font-size:14px; color:var(--paper-60); margin-top:8px;
}
@media (max-width:820px){
  .start-info { grid-template-columns:1fr; }
}

.start-fin {
  margin-top:80px;
  display:grid; grid-template-columns:1.2fr 1fr;
  gap:56px; align-items:center;
  padding-top:60px; border-top:1px solid var(--paper-08);
  text-align:left;
}
.start-fin-q {
  font-family:'IBM Plex Sans Condensed', sans-serif;
  font-weight:700; font-size:clamp(28px, 3.6vw, 46px);
  line-height:1; text-transform:uppercase;
  letter-spacing:-.005em; color:var(--paper);
  text-align:left;
}
.start-fin-q .quiet { color:var(--paper-40); display:block; font-style:italic; font-weight:600; }
.start-fin-q em { color:var(--lime); font-style:italic; }
.start-fin-cta { text-align:right; }
@media (max-width:820px){
  .start-fin { grid-template-columns:1fr; }
  .start-fin-cta { text-align:left; }
}

/* ════════════════════════════════════════════════════════
   §6  PILOTOS
════════════════════════════════════════════════════════ */
#pilots {
  position:relative; padding:140px 0 0;
  background:var(--ink); overflow:hidden;
}
.pilots-head {
  max-width:880px; margin:0 auto 72px; text-align:center;
  position:relative; z-index:2;
}
.pilots-head .label { justify-content:center; }
.pilots-h2 {
  font-size:clamp(36px, 5.2vw, 78px);
  line-height:.96; color:var(--paper); margin-top:20px;
}
.pilots-h2 em { color:var(--lime); font-style:italic; }
.pilots-sub {
  font-family:'Inter', sans-serif; font-weight:300;
  font-size:17px; line-height:1.7; color:var(--paper-60);
  margin:24px auto 0; max-width:620px;
}

.pilots-img-wrap {
  position:relative; width:100%; overflow:hidden;
  background:var(--emerald-d);
}
.pilots-img-wrap img {
  display:block; width:100%; height:auto;
  transition:transform 1.6s cubic-bezier(.2,.8,.2,1);
}
.pilots-img-wrap:hover img { transform:scale(1.03); }
.pilots-img-wrap::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(
    180deg,
    rgba(1,12,14,.35) 0%,
    transparent 30%,
    transparent 60%,
    rgba(1,12,14,.95) 100%
  );
  pointer-events:none;
}

.pilots-names {
  position:absolute; bottom:36px; left:0; right:0; z-index:3;
  display:flex; justify-content:center; flex-wrap:wrap;
  gap:8px 36px;
  padding:0 56px;
}
.pilots-names li {
  list-style:none;
  font-family:'IBM Plex Sans Condensed', sans-serif;
  font-weight:700; font-size:clamp(14px, 1.4vw, 18px);
  text-transform:uppercase; letter-spacing:.06em;
  color:var(--paper);
  display:flex; align-items:center; gap:14px;
}
.pilots-names li::after {
  content:''; width:6px; height:6px; background:var(--lime);
  border-radius:50%; opacity:.6;
}
.pilots-names li:last-child::after { display:none; }
@media (max-width:760px){
  .pilots-names { position:relative; bottom:auto; padding:32px 22px 8px; background:var(--ink); }
}

.pilots-foot {
  max-width:1320px; margin:0 auto;
  padding:64px 56px 0;
  text-align:center;
}
.pilots-foot p {
  font-family:'Inter', sans-serif; font-weight:300; font-style:italic;
  font-size:15px; line-height:1.7; color:var(--paper-40);
  max-width:580px; margin:0 auto;
}
@media (max-width:760px){
  .pilots-foot { padding:40px 22px 0; }
}

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
footer {
  background:var(--ink-1);
  border-top:1px solid var(--paper-08);
  padding:48px 56px 32px;
}
.foot-in {
  max-width:1320px; margin:0 auto;
  display:grid; grid-template-columns:1fr auto 1fr;
  gap:40px; align-items:center;
}
.foot-l img { height:40px; opacity:.7; }
.foot-c {
  text-align:center;
  font-family:'JetBrains Mono', monospace;
  font-size:11px; color:var(--paper-40); letter-spacing:.16em;
}
.foot-c span { color:var(--lime); }
.foot-r { text-align:right; }
.foot-r a {
  font-family:'IBM Plex Sans Condensed', sans-serif;
  font-weight:600; font-size:12px; text-transform:uppercase;
  letter-spacing:.18em; color:var(--paper-60);
  text-decoration:none; transition:color .25s;
  display:inline-flex; align-items:center; gap:10px;
}
.foot-r a:hover { color:var(--lime); }
@media (max-width:760px){
  footer { padding:36px 22px 28px; }
  .foot-in { grid-template-columns:1fr; text-align:center; gap:24px; }
  .foot-r { text-align:center; }
}

/* ── ONDE O FORMATO SE ENCAIXA — 2 colunas ── */
.fmt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.fmt-img-col {
  position: relative;
  overflow: hidden;
}
.fmt-img-col img {
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.fmt-img-col:hover img { transform: scale(1.04); }
.fmt-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 100px) clamp(40px, 6vw, 88px);
}
@media (max-width: 900px) {
  .fmt-grid { grid-template-columns: 1fr; }
  .fmt-img-col { min-height: 380px; }
  .fmt-text-col { padding: 56px 32px; }
}
@media (max-width: 640px) {
  .fmt-img-col { min-height: 280px; }
  .fmt-text-col { padding: 44px 24px; }
}

/* ════════════════════════════════════════════════════════
   §REEL  VIDEO FULLSCREEN
════════════════════════════════════════════════════════ */
#reel {
  position:relative; width:100%;
  height:100vh; height:100svh;
  overflow:hidden; background:var(--ink);
}
#reel video {
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
}
.reel-desk { display:block; }
.reel-mob  { display:none; }
@media (max-width:768px) {
  .reel-desk { display:none; }
  .reel-mob  { display:block; }
}
.reel-sound {
  position:absolute; bottom:28px; right:28px; z-index:10;
  width:48px; height:48px; border-radius:50%;
  background:rgba(1,12,14,.65);
  border:1px solid rgba(251,251,252,.18);
  color:var(--paper);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition:background .25s, border-color .25s;
}
.reel-sound:hover { background:rgba(202,211,2,.15); border-color:var(--lime); }
.reel-sound svg { width:20px; height:20px; pointer-events:none; }


/* ═══ SEÇÃO 2-3-4: CAROUSEL + SCROLL STORY + LAB ═══ */
/* ============================================================
   SECTION 2: FULLSCREEN EDITORIAL CAROUSEL
   ============================================================ */

.exp-car-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
}

.exp-car-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.exp-car-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.exp-car-slide.exp-car-slide--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.exp-car-slide.exp-car-slide--exit {
  opacity: 0;
  transform: translateX(-40px);
  z-index: 1;
}

.exp-car-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.exp-car-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(1, 12, 14, 0) 50%,
    rgba(1, 12, 14, 0.92) 100%
  );
  z-index: 1;
}

.exp-car-content {
  position: relative;
  z-index: 2;
  padding-bottom: 112px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.exp-car-label {
  display: inline-block;
  margin-bottom: 20px;
}

.exp-car-headline {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: .92;
  text-transform: uppercase;
  color: var(--paper);
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.exp-car-body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.65;
  color: var(--paper-60);
  max-width: 520px;
  margin: 0;
}

.exp-car-quote {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--paper);
  max-width: 640px;
  margin: 0;
  font-style: italic;
  letter-spacing: -0.01em;
}

/* Arrows */
.exp-car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 12, 14, 0.55);
  border: 1px solid var(--paper-18);
  border-radius: 50%;
  color: var(--paper);
  cursor: pointer;
  transition: background 240ms ease, border-color 240ms ease, opacity 240ms ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.exp-car-arrow:hover {
  background: rgba(202, 211, 2, 0.18);
  border-color: var(--lime);
}

.exp-car-arrow--prev { left: 32px; }
.exp-car-arrow--next { right: 32px; }

/* Dots */
.exp-car-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.exp-car-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--paper-40);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 300ms ease, transform 300ms ease;
  flex-shrink: 0;
}

.exp-car-dot.exp-car-dot--active {
  background: var(--lime);
  transform: scale(1.35);
}

.exp-car-dot:hover:not(.exp-car-dot--active) {
  background: var(--paper-60);
}

/* Mobile: hide arrows, rely on swipe */
@media (max-width: 768px) {
  .exp-car-arrow {
    display: none;
  }

  .exp-car-content {
    padding-bottom: 80px;
    text-align: center;
    align-items: center;
  }

  .exp-car-headline {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .exp-car-body {
    margin: 0 auto;
    font-size: 0.9rem;
  }

  .exp-car-quote {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    text-align: center;
    margin: 0 auto;
  }

  .exp-car-dots {
    bottom: 24px;
  }
}


/* ============================================================
   SECTION 3: APPLE SCROLL STORYTELLING
   ============================================================ */

/* === SEÇÃO 3: SCROLL LOCK CINEMATIC === */

#sec-custom {
  position: relative;
  height: 800vh;
}

.story-lock {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

/* Image layers — NO CONTENT inside */
.story-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.story-layer:nth-child(1) { z-index: 10; }
.story-layer:nth-child(2) { z-index: 20; }
.story-layer:nth-child(3) { z-index: 30; }
.story-layer:nth-child(4) { z-index: 40; }
.story-layer:nth-child(5) { z-index: 50; }
.story-layer:nth-child(6) { z-index: 60; }
.story-layer:nth-child(7) { z-index: 70; }

.story-layer-bg {
  position: absolute; inset: 0;
}
.story-layer-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform, opacity;
}
.story-layer-veil {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.80) 0%,
    rgba(0,0,0,.45) 40%,
    rgba(0,0,0,.15) 70%,
    rgba(0,0,0,.05) 100%
  );
}

/* ── TEXT OVERLAY: ABOVE all image layers ─── */
.story-text-overlay {
  position: absolute;
  inset: 0;
  z-index: 100;          /* above all layers (max z-index 70) */
  pointer-events: none;
}

/* Each text block: centered, absolutely stacked */
.story-text-item {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px;
  opacity: 0;
  will-change: opacity, transform;
}

.story-text-num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .28em;
  color: var(--lime); opacity: .85;
  margin-bottom: 16px;
}
.story-text-label { margin-bottom: 12px; display: block; }
.story-text-h {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(52px, 6.5vw, 104px);
  line-height: .92; letter-spacing: -.02em;
  color: var(--paper); margin-bottom: 22px;
  text-shadow: 0 2px 32px rgba(0,0,0,.7), 0 0 60px rgba(0,0,0,.5);
  text-wrap: balance;
}
.story-text-h em { color: var(--lime); font-style: italic; }
.story-text-p {
  font-family: 'Inter', sans-serif; font-weight: 300;
  font-size: clamp(15px, 1.2vw, 18px); line-height: 1.65;
  color: rgba(251,251,252,.85); max-width: 560px;
  text-shadow: 0 1px 12px rgba(0,0,0,.8);
  text-wrap: pretty;
}
.story-text-line {
  width: 40px; height: 2px;
  background: var(--lime); margin-top: 24px;
}

/* Progress dots */
.story-lock-dots {
  position: absolute; right: 28px; top: 50%;
  transform: translateY(-50%);
  z-index: 110;
  display: flex; flex-direction: column; gap: 10px;
}
.story-lock-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(251,251,252,.3);
  transition: background .3s, transform .3s;
}
.story-lock-dot.active {
  background: var(--lime);
  transform: scale(1.4);
}

@media (max-width: 768px) {
  #sec-custom { height: 700vh; }
  .story-text-item { padding: 24px 28px 60px; }
  .story-text-h { font-size: clamp(36px, 10vw, 52px); }
  .story-lock-dots { display: none; }
}


.lab-section {
  background: var(--emerald-d);
  padding: 140px 0;
  overflow: hidden;
}

.lab-wrap {
  display: flex;
  align-items: flex-start;
  gap: 72px;
}

/* Image column — 52% */
.lab-media {
  flex: 0 0 52%;
  position: relative;
}

.lab-img-primary {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.lab-img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.lab-img-primary:hover img {
  transform: scale(1.025);
}

.lab-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 52%;
  aspect-ratio: 3 / 2;
  border-radius: 4px;
  overflow: hidden;
  border: 3px solid var(--emerald-d);
  box-shadow: 0 24px 64px rgba(1, 12, 14, 0.7);
}

.lab-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.lab-img-accent:hover img {
  transform: scale(1.03);
}

/* Text column */
.lab-content {
  flex: 1;
  padding-top: 16px;
  padding-bottom: 40px;
}

.lab-label {
  display: inline-block;
  margin-bottom: 20px;
}

.lab-headline {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--paper);
  letter-spacing: -0.01em;
  margin: 0 0 32px;
}

.lab-body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.75;
  color: var(--paper-60);
  margin: 0 0 18px;
}

.lab-body:last-of-type {
  margin-bottom: 40px;
}

/* Bullets grid */
.lab-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.lab-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  color: var(--paper-60);
  line-height: 1.45;
}

.lab-bullet-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--lime);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .lab-section {
    padding: 72px 0 100px;
  }

  .lab-wrap {
    flex-direction: column;
    gap: 48px;
  }

  .lab-media {
    flex: none;
    width: 100%;
  }

  .lab-img-accent {
    position: relative;
    bottom: unset;
    right: unset;
    width: 72%;
    margin: 16px auto 0;
    border: none;
    box-shadow: none;
  }

  .lab-content {
    padding-top: 0;
  }

  .lab-bullets {
    grid-template-columns: 1fr;
  }
}

/* ═══ SEÇÃO 5-8: ATIVAÇÕES + PERFORMANCE + PRESSÃO + PESSOAS ═══ */
/* ════════════════════════════════════════════════════════
   §5  ATIVAÇÕES — Carrossel full-width
════════════════════════════════════════════════════════ */
#sec-ativacoes {
  padding: 60px 0 100px;
  background: var(--ink);
}

.atv-head {
  margin-bottom: 52px;
}

.atv-h2 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 72px);
  line-height: .94;
  letter-spacing: -.01em;
  color: var(--paper);
  margin-top: 18px;
  max-width: 820px;
}
.atv-h2 em { color: var(--lime); font-style: italic; }

.atv-intro {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--paper-60);
  max-width: 620px;
  margin-top: 22px;
}

/* Ativações — grid layout */
.atv-grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  height: clamp(380px, 52vh, 520px);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px;
}
.atv-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 100%;
  min-height: 0;
}
.atv-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.atv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1,12,14,.88) 0%, rgba(1,12,14,.3) 50%, transparent 100%);
  pointer-events: none;
}
.atv-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}
.atv-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .62rem;
  letter-spacing: .12em;
  color: var(--lime, #b5e432);
  margin-bottom: 6px;
}
.atv-name {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--paper, #f5f5f5);
  line-height: 1.1;
  margin-bottom: 6px;
}
.atv-desc {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 300;
  color: rgba(245,245,245,0.65);
  line-height: 1.55;
  max-width: 460px;
}
.atv-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(245,245,245,0.15);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}
.atv-nav-btn:hover {
  border-color: var(--lime, #b5e432);
  background: rgba(181,228,50,.08);
}
.atv-nav-btn svg {
  stroke-width: 1.5;
}
.atv-nav-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.atv-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245,245,245,0.25);
  transition: background .2s, transform .2s;
  cursor: pointer;
}
.atv-dot.active {
  background: var(--lime, #b5e432);
  transform: scale(1.3);
}
.atv-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.atv-scroll-wrap::-webkit-scrollbar { display: none; }
.atv-scroll-track {
  display: flex;
  gap: 12px;
}

/* Hover reveal: desc oculto por padrão, aparece no hover */
.atv-desc {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.atv-card:hover .atv-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .05s;
}
.atv-card:hover .atv-overlay {
  background: linear-gradient(to top, rgba(1,12,14,.98) 0%, rgba(1,12,14,.88) 55%, rgba(1,12,14,.52) 100%);
}

/* ── Responsive grid/scroll ── */
@media (max-width: 768px) {
  .atv-grid-wrap {
    display: none;
  }
  .atv-scroll-wrap {
    display: block;
  }
  .atv-scroll-track .atv-card {
    flex-shrink: 0;
    width: 80vw;
    aspect-ratio: 3/4;
  }
  .atv-scroll-nav {
    display: none;
  }
}
@media (min-width: 769px) {
  .atv-scroll-wrap {
    display: none;
  }
  .atv-scroll-nav {
    display: none;
  }
  .atv-grid-wrap {
    display: grid;
  }
}

/* ── Arrow buttons ── */
.atv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(202,211,2,.35);
  background: rgba(1,12,14,.6);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .22s, border-color .22s;
  backdrop-filter: blur(6px);
  -webkit-tap-highlight-color: transparent;
}
.atv-arrow:hover {
  background: rgba(202,211,2,.14);
  border-color: var(--lime);
}
.atv-arrow:active { background: rgba(202,211,2,.22); }
.atv-arrow-prev { left: 72px; }
.atv-arrow-next { right: 72px; }

/* ── Carousel footer: dots + counter ── */
.atv-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 24px;
}

.atv-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.atv-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(202,211,2,.25);
  cursor: pointer;
  padding: 0;
  transition: background .22s, transform .22s;
  -webkit-tap-highlight-color: transparent;
}
.atv-dot.active {
  background: var(--lime);
  transform: scale(1.45);
}

.atv-counter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--paper-40);
  min-width: 48px;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  #sec-ativacoes { padding: 96px 0 0; }
  .atv-carousel { padding: 0; }
  .atv-slide { aspect-ratio: 4/5; }
  .atv-slide-info { padding: 24px 20px 20px; }
  .atv-slide-num { top: 16px; left: 16px; }
  .atv-arrow { width: 40px; height: 40px; }
  .atv-arrow-prev { left: 12px; }
  .atv-arrow-next { right: 12px; }
  .atv-h2 { font-size: 32px; }
}

/* ════════════════════════════════════════════════════════
   §6  COMO A PERFORMANCE GANHA FORMA
════════════════════════════════════════════════════════ */
#sec-performance {
  padding: 140px 0 120px;
  background: var(--ink);
  position: relative;
}

.perf-head {
  max-width: 860px;
  margin-bottom: 72px;
}

.perf-h2 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 72px);
  line-height: .94;
  letter-spacing: -.01em;
  color: var(--paper);
  margin-top: 18px;
}

.perf-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--paper-60);
  max-width: 560px;
  margin-top: 22px;
}

/* ── Strips ── */
.perf-list {
  border-top: 1px solid var(--paper-08);
}

.perf-strip {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--paper-08);
  overflow: hidden;
  transition: background .35s ease;
}

.perf-strip:hover {
  background: var(--emerald-d);
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 -20px;
}

/* Lime line accent */
.perf-line-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--lime);
  transition: width .6s cubic-bezier(.16,1,.3,1);
  z-index: 2;
}

.perf-strip:hover .perf-line-accent {
  width: 100%;
}

.perf-n {
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--lime);
  opacity: .8;
  flex-shrink: 0;
}

.perf-pillar {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 40px);
  text-transform: uppercase;
  letter-spacing: -.005em;
  line-height: .96;
  color: var(--paper);
  transition: color .3s ease;
}

.perf-strip:hover .perf-pillar {
  color: var(--lime);
}

.perf-txt {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--paper-60);
  max-width: 400px;
}

.perf-bottom-line {
  height: 1px;
  background: var(--lime);
  margin-top: 64px;
  opacity: .5;
}

@media (max-width: 820px) {
  .perf-strip {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    gap: 16px 24px;
    padding: 28px 0;
  }

  .perf-n {
    grid-row: 1;
    grid-column: 1;
    align-self: start;
    padding-top: 4px;
  }

  .perf-pillar {
    grid-row: 1;
    grid-column: 2;
    font-size: clamp(20px, 5vw, 32px);
  }

  .perf-txt {
    grid-row: 2;
    grid-column: 2;
    max-width: none;
  }

  .perf-strip:hover {
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 -10px;
  }
}

@media (max-width: 560px) {
  .perf-strip {
    grid-template-columns: 42px 1fr;
    gap: 12px 16px;
  }
}

/* ════════════════════════════════════════════════════════
   §7  QUANDO A PRESSÃO É REAL
════════════════════════════════════════════════════════ */
/* ── Race Experience: full-screen overlay (default) ── */
#sec-pressure {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pressure-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pressure-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.65) brightness(.55);
  transform: scale(1.04);
  transition: transform 8s cubic-bezier(.16,1,.3,1);
}

#sec-pressure.in-view .pressure-bg img {
  transform: scale(1);
}

.pressure-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(1,12,14,.45) 0%, transparent 30%, transparent 65%, rgba(1,12,14,.7) 100%),
    radial-gradient(70% 70% at 50% 50%, transparent 40%, rgba(1,12,14,.55) 100%);
}

.pressure-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  padding: 100px 56px;
}

.pressure-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--paper-60);
  text-transform: none;
  margin-bottom: 36px;
  display: block;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  font-style: normal;
  font-weight: 400;
}

.pressure-h2 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: .9;
  letter-spacing: -.015em;
  color: var(--paper);
  margin-bottom: 60px;
}

.pressure-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}

.pressure-item {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 400;
  font-size: clamp(17px, 2.2vw, 26px);
  letter-spacing: .01em;
  color: var(--paper-60);
  padding: 16px 0;
  border-bottom: 1px solid var(--paper-08);
  text-align: left;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.8,.2,1);
  display: flex;
  align-items: center;
  gap: 16px;
}

.pressure-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}

.pressure-item.visible {
  opacity: 1;
  transform: none;
}

.pressure-item:nth-child(1) { transition-delay: .1s; }
.pressure-item:nth-child(2) { transition-delay: .5s; }
.pressure-item:nth-child(3) { transition-delay: .9s; }
.pressure-item:nth-child(4) { transition-delay: 1.3s; }

@media (max-width: 768px) {
  .pressure-content { padding: 80px 24px; }
  .pressure-h2 { font-size: clamp(36px, 9vw, 64px); margin-bottom: 40px; }
  .pressure-item { font-size: 16px; }
}

/* ── Team Building: split layout (image left / content right) ── */
.page-tb #sec-pressure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: static;
  background: var(--ink);
  align-items: stretch;
}

.page-tb .pressure-img-col {
  position: relative;
  overflow: hidden;
}

.page-tb .pressure-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.75) brightness(.85);
  transform: scale(1.04);
  transition: transform 8s cubic-bezier(.16,1,.3,1);
  display: block;
}

.page-tb #sec-pressure.in-view .pressure-img-col img {
  transform: scale(1);
}

.page-tb .pressure-content {
  position: static;
  z-index: auto;
  text-align: left;
  max-width: none;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-tb .pressure-label {
  margin-left: 0;
  margin-right: 0;
  max-width: 520px;
  font-size: 11px;
  letter-spacing: .06em;
  margin-bottom: 32px;
}

.page-tb .pressure-h2 {
  font-size: clamp(36px, 4.5vw, 72px);
  margin-bottom: 48px;
}

.page-tb .pressure-list {
  margin: 0;
  max-width: 520px;
  gap: 12px;
}

.page-tb .pressure-item {
  border-bottom: none;
  border: 1px solid rgba(202,211,2,.3);
  border-radius: 4px;
  padding: 16px 20px;
  font-size: clamp(15px, 1.6vw, 20px);
  transform: translateX(-16px);
  transition:
    opacity .5s ease,
    transform .5s cubic-bezier(.2,.8,.2,1),
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease;
  cursor: default;
}

.page-tb .pressure-item::before { display: none; }

.page-tb .pressure-item:hover {
  border-color: var(--lime);
  background: rgba(202,211,2,.05);
  box-shadow: 0 0 18px rgba(202,211,2,.08);
  transform: translateX(6px);
  color: var(--paper);
}

.page-tb .pressure-item.visible {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.page-tb .pressure-item.visible:hover { transform: translateX(6px); }

.page-tb .pressure-item:nth-child(1) { transition-delay: .1s; }
.page-tb .pressure-item:nth-child(2) { transition-delay: .3s; }
.page-tb .pressure-item:nth-child(3) { transition-delay: .5s; }
.page-tb .pressure-item:nth-child(4) { transition-delay: .7s; }

@media (max-width: 900px) {
  .page-tb #sec-pressure {
    grid-template-columns: 1fr;
    grid-template-rows: 50vw auto;
  }
  .page-tb .pressure-content { padding: 56px 24px; }
  .page-tb .pressure-h2 { font-size: clamp(32px, 8vw, 56px); margin-bottom: 32px; }
  .page-tb .pressure-item { font-size: 16px; }
  .page-tb .pressure-list { max-width: 100%; }
}

/* ════════════════════════════════════════════════════════
   §8  UM AMBIENTE QUE APROXIMA PESSOAS
════════════════════════════════════════════════════════ */
#sec-people {
  background: var(--emerald-d);
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ppl-img-col {
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.ppl-img-col img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.ppl-img-col::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--emerald-d) 100%);
  pointer-events: none;
}
.ppl-text-col {
  display: flex; align-items: center; justify-content: center;
  padding: 80px 56px; position: relative; z-index: 2;
}
.ppl-box {
  border: 1px solid var(--lime-20);
  box-shadow: 0 0 0 1px rgba(202,211,2,.08), 0 0 32px rgba(202,211,2,.12), inset 0 0 40px rgba(202,211,2,.03);
  padding: 56px 48px;
  background: rgba(2,31,24,.65);
  backdrop-filter: blur(6px);
  position: relative;
}
.ppl-box::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 48px; height: 3px; background: var(--lime);
}
.ppl-kicker { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.ppl-kicker-line { flex: 1; height: 1px; background: rgba(202,211,2,.25); }
.ppl-kicker .label { padding: 0; }
.ppl-kicker .label::before { display: none; }
.ppl-headline {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: .95; letter-spacing: -.015em;
  color: var(--paper); margin-bottom: 36px;
}
.ppl-headline em { color: var(--lime); font-style: italic; }
.ppl-divider { height: 1px; background: rgba(251,251,252,.10); margin-bottom: 32px; }
.ppl-body {
  font-family: 'Inter', sans-serif; font-weight: 300;
  font-size: 15px; line-height: 1.8; color: var(--paper-60);
}
.ppl-body + .ppl-body { margin-top: 18px; }
@media (max-width: 960px) {
  #sec-people { grid-template-columns: 1fr; }
  .ppl-img-col { min-height: 55vw; }
  .ppl-img-col::after { background: linear-gradient(180deg, transparent 50%, var(--emerald-d) 100%); }
  .ppl-text-col { padding: 48px 24px; }
  .ppl-box { padding: 36px 28px; }
}


/* === SEÇÃO 9: CATERHAM EXP — SCATTER === */

#sec-caterham-exp {
  position: relative;
  height: 360vh;
  background: var(--ink);
}
.cte-lock {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
}
.cte-intro {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 40px;
  will-change: opacity;
  background: rgba(1,12,14,.7);
}
.cte-intro-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 40px;
  display: flex; align-items: center; gap: 16px;
}
.cte-intro-kicker::before, .cte-intro-kicker::after {
  content: ''; display: block; width: 40px; height: 1px; background: var(--lime);
}
.cte-intro-h {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(48px, 7vw, 108px);
  line-height: .9; letter-spacing: -.02em;
  color: var(--paper); margin-bottom: 56px;
}
.cte-intro-h em { color: var(--lime); font-style: italic; }
.cte-intro-hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--paper-40);
  animation: cte-pulse 2s ease-in-out infinite;
}

/* --- Scatter container --- */
.cte-scatter {
  position: absolute; inset: 0;
  pointer-events: none;
}

/* --- Individual photo card --- */
.cte-photo-card {
  position: absolute;
  left: 50%; top: 50%;
  width: clamp(180px, 22vw, 310px);
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.72), 0 0 0 1px rgba(255,255,255,.07);
  will-change: transform, opacity;
  pointer-events: auto;
  cursor: pointer;
  opacity: 0;
}
.cte-photo-card:hover {
  box-shadow: 0 20px 64px rgba(0,0,0,.88), 0 0 0 1px rgba(202,211,2,.45);
  z-index: 500 !important;
  transition: box-shadow .25s ease;
}
.cte-photo-card:hover .cte-photo-img {
  transform: scale(1.06);
}
.cte-photo-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.cte-photo-veil {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.74) 0%, transparent 52%);
}

@media (max-width: 768px) {
  #sec-caterham-exp { height: 320vh; }
  .cte-photo-card { width: clamp(110px, 28vw, 200px); border-radius: 8px; }
}
@media (max-width: 640px) {
  #sec-caterham-exp { height: 290vh; }
  .cte-photo-card {
    width: clamp(90px, 31vw, 145px);
    aspect-ratio: 2/3;
    border-radius: 6px;
  }
}

/* ── LIGHTBOX ─────────────────────────────────────────────── */
#cte-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0);
  opacity: 0; pointer-events: none;
  transition: opacity .32s ease, background .32s ease;
}
#cte-lightbox.lb-open {
  opacity: 1; pointer-events: all;
  background: var(--overlay-heavy);
}
#cte-lightbox .lb-img-wrap {
  position: relative;
  max-width: min(92vw, 1200px);
  max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
#cte-lightbox .lb-img {
  display: block;
  max-width: 100%; max-height: 90vh;
  width: auto; height: auto;
  border-radius: 10px;
  box-shadow: 0 32px 96px rgba(0,0,0,.8);
  transform: scale(.88); opacity: 0;
  transition: transform .36s cubic-bezier(.2,.8,.2,1), opacity .36s ease;
  object-fit: contain;
}
#cte-lightbox.lb-open .lb-img {
  transform: scale(1); opacity: 1;
}
/* close */
#cte-lightbox .lb-close {
  position: fixed; top: 20px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid var(--paper-18);
  color: #fff; font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, transform .2s;
  backdrop-filter: blur(6px);
}
#cte-lightbox .lb-close:hover { background: rgba(255,255,255,.22); transform: scale(1.1); }
/* prev / next */
#cte-lightbox .lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 64px;
  background: var(--paper-08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px; color: #fff; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, transform .2s;
  backdrop-filter: blur(6px); user-select: none;
}
#cte-lightbox .lb-nav:hover { background: rgba(202,211,2,.22); border-color: var(--lime); }
#cte-lightbox .lb-prev { left: 16px; }
#cte-lightbox .lb-next { right: 16px; }
#cte-lightbox .lb-counter {
  position: fixed; top: 24px; left: 50%; transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: rgba(255,255,255,.55); letter-spacing: .08em;
}
@media (max-width: 640px) {
  #cte-lightbox .lb-nav { width: 38px; height: 52px; font-size: 18px; }
  #cte-lightbox .lb-prev { left: 8px; }
  #cte-lightbox .lb-next { right: 8px; }
  #cte-lightbox .lb-img-wrap { max-width: 96vw; }
}


/* ============================================================
   SECTION 10 — O QUE É O CATERHAM SEVEN
   ============================================================ */

#sec-caterham-what {
  background: var(--ink);
  padding: 120px 0 100px;
}
.ft-wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.ft-header { text-align: center; margin-bottom: 72px; }
.ft-header-h { font-family: 'IBM Plex Sans Condensed', sans-serif; font-size: clamp(36px,4.5vw,60px); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--paper); margin: 8px 0 0; line-height: .92; }
.ft-header-h em { color: var(--lime); font-style: italic; }
.ft-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.ft-card { background: var(--ink-1); border: 1px solid rgba(202,211,2,.14); overflow: hidden; position: relative; }
.ft-accent-bar { height: 3px; background: var(--lime); width: 100%; }
.ft-car-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; filter: brightness(.92) contrast(1.05); }
.ft-car-name { font-family: 'IBM Plex Sans Condensed', sans-serif; font-size: clamp(24px,3vw,40px); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--paper); padding: 20px 28px 12px; }
.ft-table { width: 100%; border-collapse: collapse; }
.ft-table tr:nth-child(odd)  { background: rgba(202,211,2,.05); }
.ft-table tr:nth-child(even) { background: rgba(1,12,14,.5); }
.ft-table td { padding: 11px 28px; line-height: 1.4; }
.ft-table td:first-child { font-family: 'JetBrains Mono', monospace; color: var(--lime); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; width: 42%; }
.ft-table td:last-child { color: var(--paper); font-size: 13px; font-weight: 500; }
@media (max-width: 768px) {
  .ft-grid { grid-template-columns: 1fr; gap: 28px; }
  .ft-car-name { font-size: 26px; }
  #sec-caterham-what { padding-bottom: 80px; }
}

/* ── SEC-LEGACY: imagem + conteúdo lado a lado ── */
#sec-legacy {
  display: flex;
  flex-direction: column;
  background: var(--ink);
  overflow: hidden;
}

/* Parte superior: imagem + conteúdo */
.leg-main {
  position: relative;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: stretch;
}

/* Coluna da imagem — foto ocupa toda a altura da linha (igualando à coluna de texto) */
.leg-img-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.leg-img-frame {
  position: relative;
  overflow: hidden;
  flex: 1;
}
.leg-img-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.88) brightness(.82);
  transition: transform 12s ease;
  background: var(--ink);
}
.leg-main:hover .leg-img-col img { transform: scale(1.04); }

/* Vinheta que sangra da foto para o conteúdo */
.leg-img-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  transparent 55%, var(--ink) 100%),
    linear-gradient(to bottom, transparent 70%, rgba(1,12,14,.7) 100%);
}

/* Linha decorativa amarela sobreposta à foto */
.leg-img-accent {
  position: absolute;
  bottom: 56px; left: 36px;
  display: flex; align-items: center; gap: 14px;
}
.leg-img-accent-line {
  width: 40px; height: 2px; background: var(--lime);
}
.leg-img-accent-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: .2em;
  color: var(--lime); text-transform: uppercase;
}

/* Coluna do conteúdo */
.leg-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vh, 120px) clamp(40px, 5vw, 88px) clamp(60px, 8vh, 120px) clamp(28px, 3vw, 56px);
}

.leg-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: .2em;
  color: var(--lime); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.leg-kicker::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--lime);
}

.leg-headline {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--paper);
  line-height: .96;
  margin: 0 0 36px;
}
.leg-headline em {
  color: var(--lime);
  font-style: italic;
  display: block;
}

.leg-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  max-width: 460px;
  margin-bottom: 16px;
}

.leg-divider {
  width: 100%; height: 1px;
  background: rgba(202,211,2,.15);
  margin: 36px 0;
}

/* Lista de lendas — full width, abaixo das duas colunas */
.leg-legends {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0 24px;
  padding: 32px clamp(28px, 4vw, 64px) 16px;
}
.leg-legend-item {
  display: grid;
  grid-template-columns: 2px 1fr;
  gap: 0 20px;
  padding: 0 0 16px;
  transition: background .2s;
}
.leg-legend-bar {
  width: 2px;
  background: var(--lime);
  opacity: .4;
  transition: opacity .3s;
  border-radius: 2px;
}
.leg-legend-item:hover .leg-legend-bar { opacity: 1; }
.leg-legend-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .14em;
  color: var(--lime); text-transform: uppercase;
  margin-bottom: 3px;
}
.leg-legend-desc {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}

/* ── Carrossel infinito de arquivo histórico ── */
.leg-carousel {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 2px 0 0;
}
/* Vinhetas laterais fade */
.leg-carousel::before,
.leg-carousel::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.leg-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 100%);
}
.leg-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--ink) 0%, transparent 100%);
}

.leg-track {
  display: flex;
  gap: 6px;
  will-change: transform;
  animation: legScroll 60s linear infinite;
}
.leg-carousel:hover .leg-track { animation-play-state: paused; }

.leg-track-img {
  height: 230px;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  filter: saturate(.65) brightness(.7);
  transition: filter .45s ease, transform .45s ease;
  border-radius: 2px;
  cursor: pointer;
}
.leg-track-img:hover {
  filter: saturate(1.1) brightness(.95);
  transform: scale(1.03);
  z-index: 1;
  position: relative;
}

/* Mobile */
@media (max-width: 900px) {
  .leg-main { grid-template-columns: 1fr; }
  .leg-img-col { height: auto; }
  .leg-img-frame { flex: none; }
  .leg-img-col img { height: auto; object-fit: unset; }
  .leg-img-veil {
    background:
      linear-gradient(to bottom, transparent 55%, var(--ink) 100%);
  }
  .leg-content-col { padding: 48px 24px 0; }
  .leg-headline { font-size: clamp(38px, 9vw, 56px); }
  .leg-divider { margin: 24px 0 8px; }
  .leg-legends { grid-template-columns: 1fr; gap: 0; padding: 0 24px 6px; }
  .leg-legend-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .leg-legend-item:last-child { border-bottom: none; }
  .leg-track-img { height: 160px; }
  /* Carrossel: scroll nativo no mobile */
  .leg-carousel {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .leg-carousel::-webkit-scrollbar { display: none; }
  .leg-carousel::before,
  .leg-carousel::after { display: none; }
  .legacy-cronograma { padding: 48px 22px 0; }
  .leg-track {
    animation: none;
    transform: none;
    gap: 8px;
    padding: 0 12px;
  }
}

/* ============================================================
   SECTION 11 — PILOTOS
   ============================================================ */

#sec-pilots-new {
  background: linear-gradient(180deg, var(--emerald-d) 0%, var(--ink) 140px);
  padding: 120px 0;
  overflow: hidden;
}

.plt-new-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.plt-new-headline {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  text-transform: uppercase;
  color: var(--paper);
  margin: 16px 0 24px;
  line-height: .92;
  letter-spacing: -0.015em;
}

.plt-new-intro {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--paper-60);
  max-width: 580px;
  margin: 0 auto;
}

/* Pilot card grid */
.plt-new-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.plt-new-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink-1);
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 300ms ease;
}

.plt-new-card:hover {
  border-color: var(--lime);
}

.plt-new-photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.plt-new-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 300ms cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.plt-new-card:hover .plt-new-photo-wrap img {
  transform: scale(1.04);
}

.plt-new-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(1, 12, 14, 0.92) 0%,
    rgba(1, 12, 14, 0.40) 40%,
    transparent 65%
  );
  display: flex;
  align-items: flex-end;
  padding: 24px 20px;
  z-index: 1;
}

.plt-new-name {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--paper);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* Bottom caption */
.plt-new-caption {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--paper-40);
  max-width: 560px;
  margin: 0 auto 48px;
}

.plt-new-cta {
  display: flex;
  justify-content: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet <= 1024px */
@media (max-width: 1024px) {
  .cte-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .cte-r1-a,
  .cte-r1-b,
  .cte-r1-c,
  .cte-r2-a,
  .cte-r2-b,
  .cte-r2-c,
  .cte-r3-a,
  .cte-r3-b,
  .cte-r3-c,
  .cte-r4-a,
  .cte-r4-b {
    grid-column: auto;
    grid-row: auto;
    height: 300px;
  }

  .cat-what-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cat-what-right {
    display: none;
  }

  .cat-what-left {
    padding-right: 0;
  }

  .cat-what-bg-text {
    right: -10vw;
    font-size: 8rem;
    opacity: 0.04;
  }

  .cat-what-divider {
    margin: 0 24px;
  }

  .plt-new-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile <= 640px */
@media (max-width: 640px) {
  #sec-caterham-what {
    padding: 80px 0 0;
  }

  .cat-what-bg-text {
    display: none;
  }

  .cat-what-stats {
    flex-direction: column;
    gap: 32px;
    padding: 40px 0;
  }

  .cat-what-divider {
    width: 40px;
    height: 1px;
    margin: 0;
  }

  #sec-pilots-new {
    padding: 80px 0;
  }

  .plt-new-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .plt-new-name {
    font-size: 0.9rem;
  }
}

/* ═══ SEÇÃO 12-13: DEPOIMENTOS + CTA FINAL ═══ */
/* ============================================================
   SECTION 12 — TESTIMONIALS
   ============================================================ */

#sec-testimonials {
  background: var(--ink);
  padding: 120px 0 80px;
  overflow: hidden;
}

.test-header {
  max-width: 680px;
  margin-bottom: 64px;
}

.test-headline {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--paper);
  letter-spacing: -0.01em;
  margin: 16px 0 24px;
}

.test-subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--paper-60);
  max-width: 540px;
}

/* ── Feature video player (full-width, inline play) ── */
.test-feature {
  padding: 0 var(--space-x);
  max-width: 1280px;
  margin: 0 auto;
}

.test-vid-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.test-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}

.test-vid-wrap:hover .test-vid {
  transform: scale(1.025);
}

.test-vid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(1,12,14,.9) 0%,
    rgba(1,12,14,.2) 35%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

/* Play / Pause button */
.test-vid-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  background: rgba(1,12,14,.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-left: 3px; /* optical centre for play triangle */
  transition: background .2s ease, transform .25s ease, opacity .3s ease;
}

.test-vid-btn:hover {
  background: rgba(202,211,2,.18);
  transform: translate(-50%, -50%) scale(1.1);
}

/* playing state — hide until hover */
.test-vid-wrap.is-playing .test-vid-btn {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.9);
  padding-left: 0;
}

.test-vid-wrap.is-playing:hover .test-vid-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* icon toggle */
.test-vid-icon-pause { display: none; }
.test-vid-wrap.is-playing .test-vid-icon-play  { display: none; }
.test-vid-wrap.is-playing .test-vid-icon-pause { display: block; }

/* Bottom meta bar */
.test-vid-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 28px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  pointer-events: none;
  z-index: 2;
}

.test-vid-idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--lime);
}

.test-vid-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  flex: 1;
}

.test-vid-total {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.28);
  font-variant-numeric: tabular-nums;
}

/* Mobile — portrait video */
@media (max-width: 768px) {
  #sec-testimonials {
    padding: 80px 0 60px;
  }

  .test-header {
    padding: 0 22px;
    margin-bottom: 40px;
  }

  .test-feature {
    padding: 0;
  }

  .test-vid-wrap {
    aspect-ratio: 9 / 16;
    max-height: 85dvh;
    border-radius: 0;
  }

  .test-vid-btn {
    width: 68px;
    height: 68px;
  }

  .test-vid-meta {
    padding: 36px 20px 18px;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .test-vid { transition: none; }
  .test-vid-btn { transition: opacity .15s ease; }
}

/* ── Testimonials carousel (Team Building page) ── */
.test-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.test-track {
  display: flex;
  gap: 16px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 56px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  cursor: grab;
}

.test-track::-webkit-scrollbar { display: none; }
.test-track:active { cursor: grabbing; }

.test-card {
  flex: 0 0 280px;
  width: 280px;
  aspect-ratio: 9 / 16;
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.test-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E") center/200px 200px,
    linear-gradient(160deg, var(--emerald-d) 0%, #011410 40%, var(--ink) 100%);
  border: 1px solid var(--paper-08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.test-shimmer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  border-radius: 12px;
}

.test-shimmer::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(202,211,2,.06) 50%, transparent 100%);
  animation: test-shimmer-sweep 2.8s ease-in-out infinite;
  animation-delay: calc(var(--card-i, 0) * 0.4s);
}

.test-card:nth-child(1) .test-shimmer::after { --card-i: 0; }
.test-card:nth-child(2) .test-shimmer::after { --card-i: 1; }

.test-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; font-weight: 400;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--lime);
  background: var(--lime-12);
  border: 1px solid rgba(202,211,2,.25);
  padding: 4px 8px; border-radius: 4px;
  backdrop-filter: blur(4px);
}

.test-play {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  transition: transform .25s ease, background .25s ease;
}

.test-card:hover .test-play {
  transform: scale(1.08);
  background: var(--lime-12);
}

.test-play-icon {
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid var(--lime);
  margin-left: 4px;
  display: block;
}

.test-card-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 16px 18px;
  background: linear-gradient(to top, rgba(1,12,14,.9) 0%, transparent 100%);
}

.test-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 400;
  color: var(--paper-40);
  letter-spacing: .06em; text-transform: uppercase;
}

.test-nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--paper-18);
  background: rgba(1,12,14,.7);
  backdrop-filter: blur(8px);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, opacity .2s;
  flex-shrink: 0;
}

.test-nav:hover { border-color: var(--lime); background: var(--lime-12); color: var(--lime); }
.test-nav:disabled { opacity: .25; pointer-events: none; }
.test-nav--prev { left: 8px; }
.test-nav--next { right: 8px; }

.test-dots {
  display: flex; justify-content: center;
  gap: 8px; margin-top: 32px;
}

.test-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--paper-18);
  border: none; cursor: pointer; padding: 0;
  transition: background .25s, width .25s;
}

.test-dot--active {
  background: var(--lime);
  width: 22px; border-radius: 3px;
}

@media (max-width: 768px) {
  .test-track { padding: 8px 22px 20px; }
  .test-nav { display: none; }
  .test-card { flex: 0 0 240px; width: 240px; }
}

/* ============================================================
   SECTION 13 — FINAL CTA
   ============================================================ */

#sec-final-cta {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  text-align: center;
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--emerald-d) 50%, var(--ink) 100%);
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Thin lime rule above headline */
.final-cta-rule {
  width: 48px;
  height: 2px;
  background: var(--lime);
  margin-bottom: 40px;
  border-radius: 1px;
}

.final-cta-headline em { color: var(--lime); font-style: italic; }

.final-cta-headline {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--paper);
  letter-spacing: -0.01em;
  margin: 0 0 48px;
  max-width: 900px;
}

.final-cta-subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.65;
  color: var(--paper-60);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* Extra-large CTA button */
#sec-final-cta .final-cta-btn {
  padding: 18px 36px;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.final-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(202, 211, 2, 0.28);
}

.final-cta-btn:active {
  transform: translateY(0);
}

/* Meta text below CTA */
.final-cta-meta {
  margin-top: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  color: var(--paper-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #sec-final-cta {
    padding: 100px 0;
  }

  .final-cta-subtext {
    font-size: 16px;
  }

  #sec-final-cta .final-cta-btn {
    padding: 20px 36px;
    font-size: 13px;
  }
}

/* PANEL */
#sec-panel {
  background: var(--emerald-d);
  overflow: hidden;
}
.panel-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 100px 80px 64px;
  align-items: center;
}
.panel-headline {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--paper);
  margin: 8px 0 0;
  line-height: 1;
}
.panel-headline em { color: var(--lime); font-style: italic; }
.panel-body { font-size: clamp(16px,1.5vw,20px); line-height: 1.75; color: rgba(255,255,255,.85); }
.panel-body strong { color: var(--lime); font-weight: 600; }
.panel-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.panel-photo { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.panel-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.9) saturate(.95);
}
@media (max-width: 900px) {
  .panel-top { grid-template-columns: 1fr; padding: 72px 22px 40px; gap: 28px; }
  .panel-photos { grid-template-columns: repeat(2, 1fr); }
  .panel-photo { aspect-ratio: 4/3; }
  .panel-photo img { object-position: center 20%; }
}

/* ── selection ───────────────────────────────────────────── */
::selection { background:var(--lime); color:var(--ink); }

/* ═══════════════════════════════════════════════
   NAVEGAÇÃO — topbar-nav
═══════════════════════════════════════════════ */
.topbar-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.topbar-nav a {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper-60);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
  position: relative;
  padding-bottom: 5px;
}
.topbar-nav a:hover { color: var(--paper); }
.topbar-nav a.active { color: var(--lime); }
.topbar-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--lime);
}
@media (max-width: 768px) {
  .topbar-nav { display: none; }
}

/* ═══════════════════════════════════════════════
   MOBILE NAV — hamburger + overlay
═══════════════════════════════════════════════ */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  flex-shrink: 0;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--paper);
  border-radius: 1px;
  transition: transform .32s ease, opacity .32s ease;
  transform-origin: center;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) { .menu-btn { display: flex; } }

.mob-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 24, 26, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mob-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mob-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 0 32px;
  text-align: center;
}
.mob-nav-link {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 7.5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--paper-40);
  text-decoration: none;
  transition: color .25s;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  display: block;
  width: 100%;
}
.mob-nav-link:hover { color: var(--paper-60); }
.mob-nav-link.active {
  color: var(--lime);
}

/* ═══════════════════════════════════════════════
   §8B — people-tb-bridge (transição Race → Team Building)
═══════════════════════════════════════════════ */
.people-tb-bridge {
  margin-top: 0;
  padding: 96px 56px 96px;
  text-align: center;
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--emerald-d) 0%, rgba(7,15,6,.98) 100%);
  border-top: 1px solid rgba(107,140,82,.2);
}
/* Diagonal racing stripe texture */
.people-tb-bridge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -22deg,
    rgba(107,140,82,.035) 0px,
    rgba(107,140,82,.035) 4px,
    transparent 4px,
    transparent 22px
  );
  pointer-events: none;
}
/* Watermark text */
.people-tb-bridge::after {
  content: 'FOR BUSINESS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 13vw, 180px);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: rgba(107,140,82,.06);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 1;
}
.people-tb-bridge > * { position: relative; z-index: 1; }
.tb-bridge-label {
  color: #6B8C52;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.tb-bridge-label::before { background: #6B8C52; }
.tb-bridge-accent {
  width: 48px;
  height: 3px;
  background: #6B8C52;
  margin: 0 auto 32px;
}
.people-tb-bridge h3 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: -.015em;
  color: var(--paper);
  max-width: 820px;
  margin: 0 auto 28px;
}
.people-tb-bridge p {
  color: var(--paper-60);
  max-width: 520px;
  margin: 0 auto 48px;
  font-size: 1rem;
  line-height: 1.65;
}
.people-tb-bridge .btn-lime {
  background: #6B8C52;
  box-shadow: 0 0 0 1px #6B8C52, 0 14px 28px -16px rgba(107,140,82,.55);
}
.people-tb-bridge .btn-lime:hover { background: #7A9E5E; }
@media (max-width: 768px) {
  .people-tb-bridge { padding: 64px 22px; }
  .people-tb-bridge::after { display: none; }
}

/* ═══════════════════════════════════════════════
   CRONOGRAMA — legacy-cronograma (dentro de #sec-legacy)
═══════════════════════════════════════════════ */
.legacy-cronograma {
  margin-top: 72px;
  padding: 56px 56px 72px;
  border-top: 1px solid var(--paper-08);
}
.legacy-cronograma-header {
  margin-bottom: 56px;
  padding-left: calc(100% / 12);
}
.legacy-cronograma-header h3 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  text-transform: uppercase;
  line-height: .92;
  color: var(--paper);
  margin: 16px 0 8px;
}
.legacy-cronograma-header p {
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem;
  color: var(--lime);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── Horizontal timeline ── */
.crono-timeline {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
  gap: 0;
}
.crono-timeline::-webkit-scrollbar { display: none; }

.crono-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 130px;
  position: relative;
}

/* Connecting line between dots */
.crono-item + .crono-item .crono-dot-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(202,211,2,.18), rgba(202,211,2,.4));
  transform: translateY(-50%);
  z-index: 0;
}

.crono-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: .62rem;
  color: var(--lime);
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.4;
  padding: 0 8px 16px;
  white-space: nowrap;
}

.crono-dot-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 4px 0;
}

.crono-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(202,211,2,.3);
  border: 1px solid rgba(202,211,2,.5);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: background .25s, border-color .25s, transform .25s;
}
.crono-dot--highlight {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 10px rgba(202,211,2,.45);
  width: 14px;
  height: 14px;
}
.crono-item:hover .crono-dot {
  background: var(--lime);
  border-color: var(--lime);
  transform: scale(1.2);
}

.crono-activity {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(.75rem, 1.1vw, .92rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--paper-60);
  text-align: center;
  line-height: 1.3;
  padding: 16px 8px 0;
  transition: color .25s;
}
.crono-activity--highlight {
  color: var(--paper);
}
.crono-item:hover .crono-activity {
  color: var(--paper);
}

.crono-cta {
  margin-top: 56px;
  text-align: center;
}

@media (max-width: 768px) {
  .crono-timeline {
    flex-direction: column;
    overflow-x: visible;
    gap: 0;
  }
  .crono-item {
    flex-direction: row;
    align-items: flex-start;
    min-width: unset;
    padding: 20px 0;
    border-bottom: 1px solid var(--paper-08);
    gap: 20px;
  }
  .crono-item:last-child { border-bottom: none; }
  .crono-item + .crono-item .crono-dot-wrap::before { display: none; }
  .crono-dot-wrap {
    width: auto;
    padding: 4px 0 0;
    flex-shrink: 0;
  }
  .crono-time {
    padding: 0;
    text-align: left;
    white-space: nowrap;
    flex-shrink: 0;
    width: 140px;
    order: -1;
  }
  .crono-activity {
    text-align: left;
    padding: 0;
    flex: 1;
  }
}

/* ═══════════════════════════════════════════════
   §13 — #sec-exclusivity
═══════════════════════════════════════════════ */
#sec-exclusivity {
  background: var(--ink);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.excl-img-col {
  position: relative;
  overflow: hidden;
}
.excl-img-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.82) saturate(.9);
}

.excl-content-col {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.excl-headline {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 5rem);
  text-transform: uppercase;
  line-height: .9;
  color: var(--paper);
  max-width: 900px;
  margin: 20px 0 28px;
}
.excl-body {
  color: var(--paper-60);
  max-width: 560px;
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 56px;
}
.excl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 720px;
  margin-bottom: 48px;
}
.excl-item {
  padding: 32px 28px;
  border: 1px solid var(--paper-08);
  background: var(--paper-08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.excl-item-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  color: var(--lime);
  letter-spacing: .1em;
}
.excl-item-text {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1;
}
@media (max-width: 900px) {
  #sec-exclusivity { grid-template-columns: 1fr; }
  .excl-img-col { min-height: 60vw; position: relative; }
  .excl-img-col img { position: absolute; }
  .excl-content-col { padding: 72px 22px; }
}
@media (max-width: 560px) {
  .excl-grid { grid-template-columns: 1fr; }
  .excl-headline { font-size: clamp(2rem, 8vw, 3rem); }
}

/* ═══════════════════════════════════════════════
   TEAM BUILDING — #sec-tb-what (O Que É)
═══════════════════════════════════════════════ */
#sec-tb-what {
  padding: 120px 0;
  background: var(--ink-1);
}
.tb-what-grid {
  margin-top: 40px;
  max-width: 760px;
}
.tb-what-text h2 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 3.25rem);
  text-transform: uppercase;
  line-height: .92;
  color: var(--paper);
  margin-bottom: 36px;
}
.tb-what-text p {
  color: var(--paper-60);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 660px;
}
.tb-what-text p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════
   TEAM BUILDING — #sec-tb-dynamics (Como a Performance Ganha Forma)
═══════════════════════════════════════════════ */
#sec-tb-dynamics {
  padding: 120px 0;
  background: var(--ink);
}
#sec-tb-dynamics h2 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 3.25rem);
  text-transform: uppercase;
  line-height: .92;
  color: var(--paper);
  max-width: 760px;
  margin: 20px 0 16px;
}
#sec-tb-dynamics > .wrap > p {
  color: var(--paper-60);
  font-size: .95rem;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 56px;
}
.tb-dyn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tb-dyn-card {
  padding: 40px 32px;
  border: 1px solid var(--paper-08);
  background: var(--paper-08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .25s;
}
.tb-dyn-card:hover { border-color: var(--lime-20); }
.tb-dyn-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  color: var(--lime);
  letter-spacing: .1em;
}
.tb-dyn-card h3 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1.05;
}
.tb-dyn-card p {
  color: var(--paper-60);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 960px) {
  .tb-dyn-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tb-dyn-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   TEAM BUILDING — #sec-tb-experience (TB como Experiência)
═══════════════════════════════════════════════ */
#sec-tb-experience {
  padding: 120px 0;
  background: var(--emerald-d);
  border-top: 1px solid var(--teal);
}
#sec-tb-experience h2 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 3.25rem);
  text-transform: uppercase;
  line-height: .92;
  color: var(--paper);
  max-width: 760px;
  margin: 20px 0 36px;
}
#sec-tb-experience p {
  color: var(--paper-60);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 24px;
}
#sec-tb-experience p:last-of-type { margin-bottom: 48px; }

/* ═══════════════════════════════════════════════
   TEAM BUILDING — #sec-tb-formats (Formatos de Contratação)
═══════════════════════════════════════════════ */
#sec-tb-formats {
  padding: 120px 0;
  background: var(--ink-1);
}
#sec-tb-formats h2 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 3.25rem);
  text-transform: uppercase;
  line-height: .92;
  color: var(--paper);
  margin: 20px 0 56px;
}
.tb-fmt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tb-fmt-card {
  padding: 48px 36px;
  border: 1px solid var(--paper-08);
  background: var(--paper-08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .25s, background .25s;
}
.tb-fmt-card:hover { border-color: var(--lime-12); }
.tb-fmt-card--featured {
  border-color: var(--lime-20);
  background: var(--lime-12);
}
.tb-fmt-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  color: var(--lime);
  letter-spacing: .1em;
}
.tb-fmt-card h3 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1.05;
}
.tb-fmt-card p {
  color: var(--paper-60);
  font-size: .9rem;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 960px) {
  .tb-fmt-grid { grid-template-columns: 1fr; max-width: 520px; }
}

/* ═══════════════════════════════════════════════
   TEAM BUILDING — #sec-tb-brands (Marcas)
═══════════════════════════════════════════════ */
#sec-tb-brands {
  padding: 80px 0;
  background: var(--ink);
  border-top: 1px solid var(--paper-08);
  border-bottom: 1px solid var(--paper-08);
}
.tb-brands-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 56px;
}
.tb-brands-text { max-width: 600px; }
.tb-brands-text h3 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  text-transform: uppercase;
  line-height: .95;
  color: var(--paper);
  margin: 16px 0 16px;
}
.tb-brands-text p {
  color: var(--paper-60);
  font-size: .9rem;
  line-height: 1.65;
}
.tb-brands-cta { flex-shrink: 0; }
@media (max-width: 768px) {
  .tb-brands-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .tb-brands-cta { width: 100%; }
  .tb-brands-cta .btn-lime { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════
   TEAM BUILDING — Hero Two-Column
═══════════════════════════════════════════════ */
.tb-hero-l {
  flex: 1;
  max-width: 560px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tb-hero-h1 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--paper);
  margin: 20px 0 24px;
}
.tb-hero-sub {
  color: var(--paper-60);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 36px;
}
.tb-hero-r {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 240px;
  flex-shrink: 0;
}
.tb-stat {
  display: flex;
  flex-direction: column;
}
.tb-stat-num {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--paper);
  line-height: 1;
}
.tb-stat-plus {
  font-size: 50%;
  color: var(--lime);
  vertical-align: super;
}
.tb-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--paper-40);
  text-transform: uppercase;
  margin-top: 4px;
}
.tb-stat-divider {
  height: 1px;
  background: var(--paper-08);
  margin: 20px 0;
}
@media (max-width: 768px) {
  .tb-hero-l { max-width: 100%; width: 100%; }
  .tb-hero-r {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    align-items: flex-start;
  }
  .tb-stat-divider { display: none; }
  .tb-stat { align-items: center; text-align: center; }
}

/* ═══════════════════════════════════════════════
   TEAM BUILDING — #sec-tb-gallery (Galeria Carrossel)
═══════════════════════════════════════════════ */
#sec-tb-gallery {
  padding: 0;
  background: var(--ink);
  overflow: hidden;
}
.tb-gallery-track {
  display: flex;
  gap: 4px;
  width: max-content;
  animation: tb-scroll 32s linear infinite;
}
.tb-gallery-track:hover {
  animation-play-state: paused;
}
@keyframes tb-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tb-gallery-item {
  flex-shrink: 0;
  width: 38vw;
  max-width: 540px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.tb-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}
.tb-gallery-item:hover img {
  transform: scale(1.04);
}
@media (max-width: 640px) {
  .tb-gallery-item { width: 78vw; }
}

/* ═══════════════════════════════════════════════
   TEAM BUILDING — #sec-tb-dynamics Editorial Rows
═══════════════════════════════════════════════ */
.page-tb .tb-dyn-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--paper-08);
}
.tb-dyn-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--paper-08);
  transition: background .2s, padding-left .2s;
}
.tb-dyn-row:hover {
  background: rgba(107,140,82,.04);
  padding-left: 16px;
}
.tb-dyn-index {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  color: var(--lime);
  letter-spacing: .1em;
  flex-shrink: 0;
  width: 32px;
  padding-top: 4px;
}
.tb-dyn-content h3 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 8px;
  line-height: 1.05;
}
.tb-dyn-content p {
  color: var(--paper-60);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════
   TEAM BUILDING — Hero Scroll Story Cinematográfico
═══════════════════════════════════════════════ */
.tb-scroll-story {
  position: relative;
  height: 500vh;
}
.tb-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
}
.tb-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tb-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 65% at 50% 52%, rgba(1,12,14,.48) 0%, transparent 70%),
    linear-gradient(180deg, rgba(1,12,14,.75) 0%, transparent 22%, transparent 68%, rgba(1,12,14,.80) 100%),
    linear-gradient(90deg, rgba(1,12,14,.25) 0%, transparent 18%, transparent 82%, rgba(1,12,14,.25) 100%);
}

/* ── Contentor de texto centrado ── */
.tb-texts {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Stack vertical — momentos acumulativos */
.tb-hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding: 0 48px;
  max-width: 960px;
  width: 100%;
}

/* Cada reveal: fade bidirecional com o scroll */
.tb-reveal {
  opacity: 0;
  transition: opacity .45s ease;
}
.tb-reveal.visible { opacity: 1; }
.tb-reveal-3 { pointer-events: auto; }

/* ── Momento 1 — Título ── */
.tb-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(.5rem, .8vw, .68rem);
  letter-spacing: .3em;
  color: var(--paper-40);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tb-h1 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(4.5rem, 12vw, 11rem);
  line-height: .86;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--paper);
  text-shadow: 0 4px 48px rgba(1,12,14,.85), 0 2px 12px rgba(1,12,14,.55);
}
.tb-h1 .lime {
  color: var(--lime);
  font-style: italic;
}

/* ── Momento 2 — Subtítulo ── */
.tb-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  line-height: 1.6;
  color: var(--paper-60);
  max-width: 540px;
  text-shadow: 0 2px 24px rgba(1,12,14,.9);
}

/* ── Momento 3 — CTA ── */
.tb-cta-hero {
  font-size: .72rem;
  letter-spacing: .18em;
}

@media (max-width: 640px) {
  .tb-hero-stack { padding: 0 24px; gap: 20px; }
  .tb-h1 { font-size: clamp(3.5rem, 17vw, 5.5rem); }
  .tb-sub { font-size: clamp(.95rem, 4vw, 1.2rem); }
}

/* ── Mobile: scroll story mais curto (280vh vs 500vh desktop) ── */
@media (max-width: 768px) {
  .tb-scroll-story {
    height: 280vh;
  }
}

/* ═══════════════════════════════════════════════
   A13 — #sec-tb-experience border-top override para página TB
═══════════════════════════════════════════════ */
.page-tb #sec-tb-experience {
  border-top: 1px solid var(--paper-08, rgba(245,245,245,0.08));
}

/* ═══════════════════════════════════════════════
   M6 — Tokens CSS faltantes
═══════════════════════════════════════════════ */
:root {
  --lime-35: rgba(181,228,50,.35);
  --lime-40: rgba(181,228,50,.40);
  --emerald-40: rgba(2,31,24,.40);
  --emerald-65: rgba(2,31,24,.65);
  --overlay-heavy: rgba(1,12,14,.92);
  --overlay-mid: rgba(1,12,14,.74);
}

/* ═══════════════════════════════════════════════
   A5 / M7 — SVGs de navegação stroke-width global
═══════════════════════════════════════════════ */
.atv-arrow svg,
.atv-nav-btn svg,
[class*="-arrow"] svg,
[class*="nav-btn"] svg {
  stroke-width: 1.5;
}

/* ═══════════════════════════════════════════════
   A4 — Acessibilidade: foco visível global
═══════════════════════════════════════════════ */
*:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════════
   TB REDESIGN — §2 O QUE É: Split editorial
═══════════════════════════════════════════════ */
#sec-tb-what {
  padding: 0;
  background: var(--ink-1);
}

.tb-what-split {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 88vh;
  align-items: stretch;
}

.tb-what-text-col {
  padding: clamp(80px, 10vh, 140px) clamp(24px, 3vw, 48px) clamp(80px, 10vh, 140px) 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tb-what-h2 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  text-transform: uppercase;
  line-height: .92;
  color: var(--paper);
  margin: 22px 0 40px;
}

.tb-what-body p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(.9rem, 1.1vw, 1rem);
  line-height: 1.78;
  color: var(--paper-60);
  margin-bottom: 18px;
}
.tb-what-body p:last-child { margin-bottom: 0; }

.tb-what-img-col {
  position: relative;
  overflow: hidden;
}

.tb-what-img-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1), filter 600ms ease;
  filter: saturate(.75) brightness(.8);
}

.tb-what-split:hover .tb-what-img-col img {
  transform: scale(1.04);
  filter: saturate(.9) brightness(.88);
}

.tb-what-img-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--ink-1) 0%, rgba(6,13,5,.2) 18%, transparent 35%),
    linear-gradient(to top, rgba(1,12,14,.55) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.tb-what-img-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--lime) 20%, var(--lime) 80%, transparent);
  z-index: 2;
  opacity: .55;
}

@media (max-width: 960px) {
  .tb-what-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .tb-what-text-col {
    padding: 72px 24px 56px;
    order: 2;
  }
  .tb-what-img-col {
    min-height: 56vw;
    max-height: 480px;
    order: 1;
  }
  .tb-what-img-veil {
    background:
      linear-gradient(to bottom, transparent 40%, var(--ink-1) 100%);
  }
  .tb-what-img-col::before { display: none; }
  .tb-what-h2 { max-width: 100%; }
  .tb-what-body p { max-width: 100%; }
}

@media (max-width: 640px) {
  .tb-what-text-col { padding: 56px 22px 48px; }
  .tb-what-img-col { min-height: 72vw; max-height: 380px; }
}

/* ═══════════════════════════════════════════════
   TB REDESIGN — §3 Lab Bullets: bordered cards
═══════════════════════════════════════════════ */
.page-tb .lab-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.page-tb .lab-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--lime-20);
  background: rgba(107, 140, 82, .05);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(.78rem, 1vw, .88rem);
  color: var(--paper-60);
  line-height: 1.4;
  transition: border-color .22s ease, background .22s ease, color .22s ease;
  cursor: default;
  position: relative;
}

.page-tb .lab-bullet::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--lime);
  transition: width .35s cubic-bezier(.2,.8,.2,1);
}

.page-tb .lab-bullet:hover {
  border-color: var(--lime);
  background: rgba(107, 140, 82, .10);
  color: var(--paper);
}

.page-tb .lab-bullet:hover::before {
  width: 100%;
}

.page-tb .lab-bullet-icon {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--lime);
  border-radius: 1px;
  flex-shrink: 0;
  transition: transform .22s ease;
}

.page-tb .lab-bullet:hover .lab-bullet-icon {
  transform: scale(1.5) rotate(45deg);
}

@media (max-width: 640px) {
  .page-tb .lab-bullets { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   TB REDESIGN — §6 Ativações: Bento Grid Premium
═══════════════════════════════════════════════ */

/* ── Desktop bento ── */
.atv-bento {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  grid-template-rows: 380px 380px;
  gap: 3px;
  width: 100%;
  margin-top: 16px;
}

.atv-bento-featured {
  grid-row: 1 / 3;
}

.atv-bento-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline: none;
}

.atv-bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 500ms ease;
  filter: saturate(.72) brightness(.75);
  will-change: transform;
}

.atv-bento-card:hover img,
.atv-bento-card:focus img {
  transform: scale(1.06);
  filter: saturate(.92) brightness(.88);
}

.atv-b-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(1,12,14,.95) 0%,
    rgba(1,12,14,.5)  30%,
    rgba(1,12,14,.15) 60%,
    transparent 80%
  );
  transition: opacity 400ms ease;
}

.atv-bento-card:hover .atv-b-veil,
.atv-bento-card:focus .atv-b-veil {
  opacity: .85;
}

/* Number — always visible */
.atv-b-num {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 3;
  font-family: 'JetBrains Mono', monospace;
  font-size: .6rem;
  letter-spacing: .22em;
  color: var(--lime);
  opacity: .9;
}

/* Info block — hidden, revealed on hover */
.atv-b-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 24px;
  z-index: 3;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 260ms ease, transform 260ms cubic-bezier(.2,.8,.2,1);
}

.atv-bento-featured .atv-b-info {
  padding: 40px 36px 36px;
}

.atv-bento-card:hover .atv-b-info,
.atv-bento-card:focus .atv-b-info {
  opacity: 1;
  transform: translateY(0);
}

/* Lime rule accent above title */
.atv-b-rule {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--lime);
  margin-bottom: 12px;
}

.atv-b-name {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--paper);
  line-height: 1.05;
  margin: 0 0 8px;
}

.atv-bento-featured .atv-b-name {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  margin-bottom: 12px;
}

.atv-b-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(.78rem, 1.1vw, .92rem);
  line-height: 1.6;
  color: var(--paper-60);
  margin: 0;
  max-width: 360px;
}

.atv-bento-featured .atv-b-desc {
  max-width: 440px;
  font-size: clamp(.85rem, 1.2vw, 1rem);
}

/* ── Mobile carousel ── */
.atv-mob-carousel {
  display: none;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.atv-mob-track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 420ms cubic-bezier(.4,0,.2,1);
}

.atv-slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.atv-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8) brightness(.75);
}

.atv-slide-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(1,12,14,.92) 0%,
    rgba(1,12,14,.4) 40%,
    transparent 65%
  );
}

.atv-slide-num {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 3;
  font-family: 'JetBrains Mono', monospace;
  font-size: .6rem;
  letter-spacing: .22em;
  color: var(--lime);
  opacity: .9;
}

.atv-slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px 28px;
  z-index: 3;
}

.atv-slide-name {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 5vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--paper);
  line-height: 1.05;
  margin: 0 0 8px;
}

.atv-slide-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .9rem;
  line-height: 1.6;
  color: var(--paper-60);
  margin: 0;
  max-width: 86%;
}

/* ── Visibility toggle ── */
@media (max-width: 768px) {
  .atv-bento        { display: none; }
  .atv-showcase     { display: none; }
  .atv-mob-carousel { display: block; }
  #sec-ativacoes    { padding: 80px 0 0; }
}

@media (min-width: 769px) {
  .atv-bento        { display: grid; }
  .atv-mob-carousel { display: none; }
}

/* ═══════════════════════════════════════════════
   TB REDESIGN — §6 Ativações: Showcase com Tabs
═══════════════════════════════════════════════ */

.atv-showcase {
  grid-template-columns: 320px 1fr;
  height: 660px;
  margin-top: 16px;
  overflow: hidden;
}

/* ── Tab list ── */
.atv-tabs {
  display: flex;
  flex-direction: column;
  background: var(--ink-1);
  border-right: 1px solid var(--paper-08);
}

.atv-tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px 0 20px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--paper-08);
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: background 200ms ease;
  outline: none;
}

.atv-tab:last-child { border-bottom: none; }

.atv-tab::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--lime);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 240ms cubic-bezier(.2,.8,.2,1);
}

.atv-tab--active::before { transform: scaleY(1); }

.atv-tab--active { background: rgba(107, 140, 82, .09); }

.atv-tab:hover:not(.atv-tab--active) { background: rgba(107, 140, 82, .04); }

.atv-tab:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: -2px;
}

.atv-tab-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .58rem;
  letter-spacing: .2em;
  color: var(--lime);
  min-width: 20px;
  opacity: .8;
  flex-shrink: 0;
}

.atv-tab-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.atv-tab-name {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--paper-60);
  transition: color 200ms ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.atv-tab--active .atv-tab-name,
.atv-tab:hover .atv-tab-name { color: var(--paper); }

.atv-tab-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .72rem;
  color: var(--paper-40);
  transition: color 200ms ease;
}

.atv-tab--active .atv-tab-sub,
.atv-tab:hover .atv-tab-sub { color: var(--paper-60); }

.atv-tab-chevron {
  color: var(--paper-20);
  flex-shrink: 0;
  transition: color 200ms ease, transform 200ms ease;
}

.atv-tab--active .atv-tab-chevron {
  color: var(--lime);
  transform: translateX(3px);
}

/* ── Image panels ── */
.atv-panels {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.atv-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 480ms ease;
}

.atv-panel--active {
  opacity: 1;
  pointer-events: auto;
}

.atv-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) brightness(.8);
  transform: scale(1.04);
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1), filter 600ms ease;
  will-change: transform;
}

.atv-panel--active img {
  transform: scale(1);
  filter: saturate(.88) brightness(.85);
}

.atv-panel-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(1,12,14,.94) 0%, rgba(1,12,14,.45) 38%, transparent 65%),
    linear-gradient(to right, rgba(1,12,14,.3) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.atv-panel-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 52px 44px;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 420ms ease 120ms, transform 420ms cubic-bezier(.2,.8,.2,1) 120ms;
}

.atv-panel--active .atv-panel-content {
  opacity: 1;
  transform: translateY(0);
}

.atv-panel-num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: .58rem;
  letter-spacing: .22em;
  color: var(--lime);
  margin-bottom: 14px;
  opacity: .85;
}

.atv-panel-name {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: .95;
  color: var(--paper);
  margin: 0 0 18px;
}

.atv-panel-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(.88rem, 1.1vw, 1rem);
  line-height: 1.65;
  color: var(--paper-60);
  max-width: 480px;
  margin: 0;
}

@media (max-width: 960px) and (min-width: 769px) {
  .atv-showcase {
    grid-template-columns: 240px 1fr;
    height: 560px;
  }
  .atv-tab { padding: 0 16px 0 14px; gap: 12px; }
  .atv-panel-content { padding: 36px 36px 32px; }
  .atv-panel-name { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
}

@media (min-width: 769px) {
  .atv-showcase { display: grid; }
}

/* ═══════════════════════════════════════════════
   TB REDESIGN — §6 Ativações: Mobile carousel refinements
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .atv-mob-carousel .atv-arrow { display: flex; }

  /* Better slide proportions for narrow screens */
  .atv-slide { aspect-ratio: 3 / 4; }

  /* Info panel: more generous, title bigger */
  .atv-slide-info {
    padding: 0 24px 32px;
    background: linear-gradient(to top, rgba(1,12,14,.96) 0%, rgba(1,12,14,.6) 50%, transparent 80%);
  }
  .atv-slide-name {
    font-size: clamp(1.5rem, 8vw, 2rem);
    margin-bottom: 10px;
  }
  .atv-slide-desc {
    font-size: .88rem;
    max-width: 100%;
  }

  /* Footer: tighter, pill dots */
  .atv-carousel-footer {
    padding: 20px 24px 8px;
    justify-content: space-between;
  }
  .atv-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    transition: width .28s cubic-bezier(.2,.8,.2,1), background .22s;
  }
  .atv-dot.active {
    width: 24px;
    background: var(--lime);
    transform: none;
  }
  .atv-counter {
    font-size: .6rem;
    letter-spacing: .2em;
  }

  /* Swipe hint — subtle arrow anim on first render */
  .atv-mob-carousel::after {
    content: '';
    position: absolute;
    bottom: 52px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-right: 2px solid rgba(202,211,2,.45);
    border-top: 2px solid rgba(202,211,2,.45);
    transform: rotate(45deg);
    animation: swipe-hint 1.4s ease-in-out 1.2s 2 both;
    pointer-events: none;
    z-index: 4;
  }
  @keyframes swipe-hint {
    0%   { opacity: 0; transform: rotate(45deg) translateX(0); }
    30%  { opacity: 1; }
    70%  { opacity: 1; transform: rotate(45deg) translateX(8px); }
    100% { opacity: 0; transform: rotate(45deg) translateX(8px); }
  }
}

/* ═══════════════════════════════════════════════
   TB REDESIGN — §2 O QUE É: pullquote + padding
═══════════════════════════════════════════════ */

/* More breathing room on left — overrides only desktop */
@media (min-width: 961px) {
  .tb-what-text-col { padding-left: clamp(56px, 8vw, 120px); }
}

.tb-what-pullquote {
  margin: 28px 0 0;
  padding: 22px 24px 22px 22px;
  border-left: 3px solid var(--lime);
  background: rgba(107, 140, 82, .08);
  position: relative;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(.9rem, 1.1vw, 1rem);
  line-height: 1.75;
  color: var(--paper);
}

.tb-what-pullquote::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(to right, rgba(107,140,82,.4), transparent);
}

@media (max-width: 960px) {
  .tb-what-pullquote { max-width: 100%; }
}

/* ═══════════════════════════════════════════════
   TB REDESIGN — §8 Por Que Funciona: split editorial
═══════════════════════════════════════════════ */

#sec-tb-experience { padding: 0; }

.tb-exp-split {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 80vh;
  align-items: stretch;
}

.tb-exp-img-col {
  position: relative;
  overflow: hidden;
}

.tb-exp-img-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.75) brightness(.8);
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1), filter 600ms ease;
}

.tb-exp-split:hover .tb-exp-img-col img {
  transform: scale(1.04);
  filter: saturate(.9) brightness(.88);
}

.tb-exp-img-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 55%, var(--emerald-d) 100%),
    linear-gradient(to top, rgba(1,12,14,.55) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.tb-exp-img-col::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--lime) 20%, var(--lime) 80%, transparent);
  z-index: 2;
  opacity: .55;
}

.tb-exp-text-col {
  padding: clamp(80px, 10vh, 140px) clamp(40px, 6vw, 88px) clamp(80px, 10vh, 140px) clamp(48px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--emerald-d);
}

#sec-tb-experience .tb-exp-text-col h2  { max-width: 520px; }
#sec-tb-experience .tb-exp-text-col p   { max-width: 520px; }
#sec-tb-experience .tb-exp-text-col .btn { align-self: flex-start; }

@media (max-width: 960px) {
  .tb-exp-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .tb-exp-img-col {
    min-height: 56vw;
    max-height: 480px;
  }
  .tb-exp-img-veil {
    background: linear-gradient(to bottom, transparent 40%, var(--emerald-d) 100%);
  }
  .tb-exp-img-col::after { display: none; }
  .tb-exp-text-col {
    padding: 72px 24px 56px;
  }
  #sec-tb-experience .tb-exp-text-col h2,
  #sec-tb-experience .tb-exp-text-col p { max-width: 100%; }
}

@media (max-width: 640px) {
  .tb-exp-text-col { padding: 56px 22px 48px; }
  .tb-exp-img-col { min-height: 72vw; max-height: 380px; }
}

/* §9 Pilotos: breakpoints definidos na fonte (linha ~2426) */

/* ── FAST LAPS — PREÇOS AVULSOS ───────────────────────────── */
#sec-fast-laps {
  background: var(--ink-1);
  padding: 120px 0 100px;
  border-top: 1px solid rgba(202,211,2,.10);
}

.fl-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
.fl-header {
  text-align: center;
  margin-bottom: 64px;
}

.fl-headline {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--paper);
  margin: 8px 0 32px;
  line-height: .92;
  text-wrap: balance;
}

.fl-rule {
  width: 48px;
  height: 2px;
  background: var(--lime);
  margin: 0 auto;
}

.fl-intro {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--paper-60);
  max-width: 560px;
  margin: 24px auto 0;
  text-align: center;
}

/* Grid */
.fl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

/* Card base */
.fl-card {
  background: var(--ink);
  border: 1px solid rgba(202,211,2,.12);
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition:
    transform .65s cubic-bezier(.03,.98,.52,.99),
    box-shadow .4s ease,
    border-color .3s ease;
}

.fl-card:hover {
  border-color: rgba(202,211,2,.45);
  box-shadow:
    0 20px 60px rgba(0,0,0,.55),
    0 0 0 1px rgba(202,211,2,.18),
    0 0 80px rgba(202,211,2,.07);
}

/* Featured card (420R) — slightly elevated treatment */
.fl-card--featured {
  background: var(--emerald-d);
  border-color: rgba(202,211,2,.28);
}

.fl-card--featured:hover {
  border-color: rgba(202,211,2,.6);
  box-shadow:
    0 24px 72px rgba(0,0,0,.6),
    0 0 0 1px rgba(202,211,2,.28),
    0 0 100px rgba(202,211,2,.10);
}

/* Spotlight — segue o cursor */
.fl-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    380px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(202,211,2,.13) 0%,
    rgba(202,211,2,.05) 35%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: 1;
}

.fl-card.card-lit::after {
  opacity: 1;
}

.fl-accent-bar {
  height: 3px;
  background: var(--lime);
  width: 100%;
}

.fl-card-inner {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Car label (eyebrow) */
.fl-car-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--lime);
  display: block;
  margin-bottom: 6px;
}

/* Car name */
.fl-car-name {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--paper);
  line-height: .95;
  margin: 0 0 16px;
}

/* Short description */
.fl-car-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--paper-60);
  line-height: 1.55;
  margin: 0 0 28px;
  flex-grow: 1;
}

/* Price block */
.fl-price-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
  margin-bottom: 8px;
}

.fl-currency {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--paper-40);
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
  margin-top: 2px;
}

.fl-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 500;
  color: var(--lime);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  line-height: 1;
}

.fl-cents {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  color: var(--paper-40);
  font-variant-numeric: tabular-nums;
  align-self: flex-end;
  margin-bottom: 6px;
}

.fl-per-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--paper-40);
}

/* Footer: CTA + footnote */
.fl-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.fl-footnote {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-style: italic;
  color: var(--paper-40);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .fl-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .fl-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  #sec-fast-laps {
    padding: 96px 0 72px;
  }
  .fl-wrap {
    padding: 0 20px;
  }
  .fl-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }
  .fl-card:last-child {
    grid-column: auto;
  }
  .fl-card-inner {
    padding: 22px 22px 26px;
  }
}

/* ─── Section shell ─────────────────────────────────────────────── */
#sec-packages {
  background: var(--ink, #0e0f0c);
  padding: clamp(72px, 10vw, 120px) 0;
}

#sec-packages .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ─── Section header ────────────────────────────────────────────── */
.pkg-header {
  margin-bottom: clamp(48px, 6vw, 72px);
  max-width: 640px;
}

.pkg-eyebrow {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--lime, #cad302);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pkg-headline {
  font-family: "IBM Plex Sans Condensed", "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-transform: uppercase;
  color: var(--paper, #f5f5f0);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0 0 20px;
}

.pkg-subtext {
  font-family: Inter, sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: rgba(245, 245, 240, 0.62);
  line-height: 1.65;
  max-width: 560px;
  margin: 0;
}

/* ─── Grid ──────────────────────────────────────────────────────── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* ─── Card base ─────────────────────────────────────────────────── */
.pkg-card {
  background: #131410;
  border: 1px solid rgba(245, 245, 240, 0.08);
  border-radius: 2px;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition:
    transform .65s cubic-bezier(.03,.98,.52,.99),
    box-shadow .4s ease,
    border-color .3s ease;
}

.pkg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(245, 245, 240, 0.12);
}

.pkg-card:hover {
  border-color: rgba(245, 245, 240, 0.22);
  box-shadow:
    0 20px 60px rgba(0,0,0,.55),
    0 0 0 1px rgba(202,211,2,.10);
}

/* Spotlight pkg */
.pkg-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    380px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(202,211,2,.11) 0%,
    rgba(202,211,2,.04) 35%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: 1;
}

.pkg-card.card-lit::after {
  opacity: 1;
}

/* ─── Highlighted card (Podium Club) ────────────────────────────── */
.pkg-card--featured {
  background: #141a0e;
  border-color: rgba(202, 211, 2, 0.45);
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(202, 211, 2, 0.22),
    0 24px 48px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(202, 211, 2, 0.07);
}

.pkg-card--featured::before {
  background: var(--lime, #cad302);
}

.pkg-card--featured:hover {
  border-color: rgba(202, 211, 2, 0.7);
  box-shadow:
    0 0 0 1px rgba(202, 211, 2, 0.32),
    0 28px 72px rgba(0, 0, 0, 0.6),
    0 0 120px rgba(202, 211, 2, 0.12);
}

/* ─── Badge ─────────────────────────────────────────────────────── */
.pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 4px 9px;
  border-radius: 2px;
  margin-bottom: 24px;
  width: fit-content;
}

.pkg-badge--popular {
  background: var(--lime, #cad302);
  color: #0e0f0c;
}

.pkg-badge--limited {
  background: transparent;
  border: 1px solid rgba(245, 245, 240, 0.3);
  color: rgba(245, 245, 240, 0.65);
}

/* ─── Card tier label ───────────────────────────────────────────── */
.pkg-tier {
  font-family: "IBM Plex Sans Condensed", "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--paper, #f5f5f0);
  margin: 0 0 4px;
  line-height: 1;
}

.pkg-tier-sub {
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  color: rgba(245, 245, 240, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 28px;
}

/* ─── Price block ───────────────────────────────────────────────── */
.pkg-price-wrap {
  border-top: 1px solid rgba(245, 245, 240, 0.08);
  border-bottom: 1px solid rgba(245, 245, 240, 0.08);
  padding: 20px 0;
  margin-bottom: 28px;
}

.pkg-price-label {
  font-family: Inter, sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 245, 240, 0.38);
  margin-bottom: 6px;
}

.pkg-price {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--lime, #cad302);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pkg-price-currency {
  font-size: 0.75em;
  font-weight: 400;
  color: rgba(202, 211, 2, 0.7);
  vertical-align: super;
  margin-right: 2px;
}

/* ─── Feature list ──────────────────────────────────────────────── */
.pkg-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pkg-features li {
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.72);
  line-height: 1.5;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
}

.pkg-features li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime, #cad302);
  opacity: 0.6;
  margin-top: 6px;
  justify-self: center;
}

.pkg-card--featured .pkg-features li::before {
  opacity: 1;
}

/* ─── CTA button ────────────────────────────────────────────────── */
.pkg-cta {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: 2px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.pkg-cta--outline {
  background: transparent;
  border: 1px solid rgba(245, 245, 240, 0.25);
  color: var(--paper, #f5f5f0);
}

.pkg-cta--outline:hover,
.pkg-cta--outline:focus-visible {
  border-color: var(--lime, #cad302);
  color: var(--lime, #cad302);
  background: rgba(202, 211, 2, 0.04);
}

.pkg-cta--lime {
  background: var(--lime, #cad302);
  border: 1px solid var(--lime, #cad302);
  color: #0e0f0c;
}

.pkg-cta--lime:hover,
.pkg-cta--lime:focus-visible {
  background: #d8e100;
  border-color: #d8e100;
}

.pkg-cta:focus-visible {
  outline: 2px solid var(--lime, #cad302);
  outline-offset: 3px;
}

/* ─── Footnote ──────────────────────────────────────────────────── */
.pkg-footnote {
  margin-top: clamp(36px, 5vw, 52px);
  text-align: center;
  font-family: Inter, sans-serif;
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(245, 245, 240, 0.35);
}

/* ─── Animation delay helpers ───────────────────────────────────── */
.pkg-card:nth-child(1) { --_delay: 0ms; }
.pkg-card:nth-child(2) { --_delay: 100ms; }
.pkg-card:nth-child(3) { --_delay: 200ms; }

/* ─── Mobile ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .pkg-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .pkg-card--featured {
    transform: none;
    border-color: rgba(202, 211, 2, 0.45);
  }

  .pkg-price {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pkg-card {
    transition: none;
  }
  .pkg-cta {
    transition: none;
  }
}

/* btn-outline */
.btn-outline {
  background: transparent;
  border: 1px solid var(--lime);
  color: var(--paper);
}

.btn-outline:hover {
  background: rgba(202, 211, 2, 0.08);
}

/* Final CTA — two buttons side by side on desktop, stacked on mobile */
#sec-final-cta .final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media (max-width: 600px) {
  #sec-final-cta .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  #sec-final-cta .final-cta-btn {
    text-align: center;
  }
}

/* Pilot group label */
.plt-group-label {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.plt-group-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime);
}

.plt-group-tag--available {
  color: rgba(245, 245, 240, 0.5);
}

.plt-group-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.plt-group-dot--confirmed {
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}

.plt-group-dot--available {
  background: transparent;
  border: 1px solid rgba(245, 245, 240, 0.4);
}

/* 5-column override */
.plt-new-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

/* 3-column override */
.plt-new-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.plt-new-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}

/* Separator between groups */
.plt-separator {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 48px 0 40px;
}

.plt-separator-line {
  flex: 1;
  height: 1px;
  background: rgba(245, 245, 240, 0.1);
}

.plt-separator-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 245, 240, 0.3);
  white-space: nowrap;
}

/* Available pilots — reduced opacity */
.plt-grid--available {
  opacity: 0.65;
  transition: opacity 0.3s ease;
}

.plt-grid--available:hover {
  opacity: 0.8;
}

.plt-card--available {
  border-color: rgba(245, 245, 240, 0.1);
}

.plt-card--available:hover {
  border-color: rgba(202, 211, 2, 0.4);
}

/* Initials placeholder for pilots without photo */
.plt-initials-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1b18;
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: rgba(245, 245, 240, 0.15);
  letter-spacing: 0.04em;
  user-select: none;
}

/* Available pilots CTA block */
.plt-available-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  padding: 28px 24px;
  border: 1px solid rgba(245, 245, 240, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
}

.plt-available-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245, 245, 240, 0.55);
  text-align: center;
  margin: 0;
}

@media (max-width: 900px) {
  .plt-new-grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .plt-new-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .plt-new-grid--5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .plt-new-grid--3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .plt-separator {
    margin: 36px 0 28px;
  }

  .plt-available-cta {
    padding: 20px 16px;
  }
}

/* ════════════════════════════════════════════════════════
   §EVO  VISÃO GERAL DO EVENTO
════════════════════════════════════════════════════════ */
#sec-event-overview {
  background: var(--ink);
  padding: clamp(80px, 11vw, 160px) 0 clamp(40px, 5vw, 64px);
}

.evo-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(52px, 7vw, 88px);
}

.evo-header .label { justify-content: center; }

.evo-headline {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 82px);
  line-height: .93;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--paper);
  margin: 18px 0 22px;
}

.evo-headline em { color: var(--lime); font-style: italic; }

.evo-subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--paper-60);
  max-width: none;
  white-space: nowrap;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .evo-subtext { white-space: normal; max-width: 420px; }
}

/* Grid usa gap:1px + background como "linhas" entre cells — mesma técnica de .who-g */
.evo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--paper-08);
  border: 1px solid var(--paper-08);
}

.evo-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.evo-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,12,.85) 0%, rgba(10,14,12,.15) 45%, rgba(10,14,12,0) 65%);
  z-index: 1;
  transition: opacity .4s ease;
}

.evo-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--lime);
  z-index: 3;
  transition: width .5s cubic-bezier(.16,1,.3,1);
}

.evo-item:hover::after,
.evo-item:focus-within::after { width: 100%; }

/* Título visível por padrão, sobre o gradiente da imagem */
.evo-item > .evo-item-title {
  position: absolute;
  left: clamp(22px, 3vw, 38px);
  right: clamp(22px, 3vw, 38px);
  bottom: clamp(24px, 3vw, 34px);
  z-index: 2;
  margin: 0;
  transition: opacity .35s ease;
}

.evo-item:hover > .evo-item-title,
.evo-item:focus-within > .evo-item-title { opacity: 0; }

.evo-item-title {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.05;
  color: var(--paper);
}

/* Overlay que sobe no hover, com número + título + descrição */
.evo-item-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(32px, 4vw, 48px) clamp(22px, 3vw, 38px);
  background: rgba(8, 12, 10, .93);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}

.evo-item:hover .evo-item-overlay,
.evo-item:focus-within .evo-item-overlay { transform: translateY(0); }

.evo-item-overlay .evo-item-title { position: static; opacity: 1; }

.evo-item-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--lime);
  display: block;
  margin-bottom: 20px;
}

.evo-item-content { display: flex; flex-direction: column; gap: 10px; }

.evo-item-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.72;
  color: var(--paper-60);
  margin: 0;
}

.evo-footnote {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: clamp(44px, 6vw, 72px);
  padding-top: clamp(22px, 3.5vw, 36px);
  border-top: 1px solid var(--paper-08);
}

.evo-footnote-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--paper-12));
}

.evo-footnote-line:last-child {
  background: linear-gradient(to left, transparent, var(--paper-12));
}

.evo-footnote-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper-40);
  white-space: nowrap;
}

@media (max-width: 960px) {
  .evo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .evo-grid { grid-template-columns: 1fr; }
  .evo-footnote { flex-direction: column; text-align: center; }
  .evo-footnote-line { width: 48px; flex: unset; }
  .evo-footnote-text { white-space: normal; text-align: center; }
}

/* ════════════════════════════════════════════════════════
   §PDF  GUIA DO PARTICIPANTE
════════════════════════════════════════════════════════ */
#sec-pdf-guide {
  background: var(--emerald-d);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--paper-08);
  border-bottom: 1px solid var(--paper-08);
}

@media (max-width: 768px) {
  #sec-pdf-guide { padding-top: 130px; }
}

.pdf-guide-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

.pdf-guide-header .label { justify-content: center; }

.pdf-guide-headline {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: .93;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--paper);
  margin: 18px 0 22px;
}

.pdf-guide-headline em { color: var(--lime); font-style: italic; }

.pdf-guide-subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.7;
  color: var(--paper-60);
  max-width: 520px;
  margin: 0 auto;
}

.pdf-embed-wrap {
  border: 1px solid var(--paper-08);
  background: var(--ink-1);
  margin-bottom: 28px;
  overflow: hidden;
}

.pdf-embed {
  display: block;
  width: 100%;
  height: 600px;
  border: none;
  background: var(--ink);
}

.pdf-guide-actions {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .pdf-embed { height: 400px; }
}

/* ─── PDF Preview (substitui iframe) ────────────────────── */
.pdf-preview {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2px;
  background: var(--paper-08);
  border: 1px solid var(--paper-08);
  margin-bottom: 36px;
  min-height: 420px;
}

/* Capa lateral */
.pdf-cover {
  background: var(--emerald-d);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.pdf-cover::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lime);
}

.pdf-cover::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202,211,2,.08) 0%, transparent 70%);
  pointer-events: none;
}

.pdf-cover-inner {
  position: relative;
  z-index: 1;
}

.pdf-cover-label {
  display: block;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}

.pdf-cover-title {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: .92;
  color: var(--paper);
  margin: 0 0 24px;
}

.pdf-cover-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--paper-60);
  margin-bottom: 28px;
}

.pdf-cover-sep { color: var(--lime-20); }

.pdf-cover-bar {
  width: 40px;
  height: 2px;
  background: var(--lime);
  margin-bottom: 20px;
}

.pdf-cover-edition {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: var(--paper-40);
  letter-spacing: .06em;
}

/* Grade de seções */
.pdf-sections {
  background: var(--ink-1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--paper-08);
}

.pdf-section-card {
  background: var(--ink-1);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background .2s ease;
}

.pdf-section-card:hover {
  background: rgba(202,211,2,.03);
}

.pdf-section-num {
  font-size: 10px;
  color: var(--lime);
  letter-spacing: .1em;
  flex-shrink: 0;
  margin-top: 3px;
}

.pdf-section-title {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--paper);
  margin: 0 0 6px;
  line-height: 1.2;
}

.pdf-section-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--paper-60);
  margin: 0;
}

@media (max-width: 900px) {
  .pdf-preview { grid-template-columns: 1fr; }
  .pdf-cover { min-height: 200px; }
  .pdf-sections { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pdf-section-card { padding: 18px 20px; }
}

/* ════════════════════════════════════════════════════════
   §BADGE LOTE  (reaproveitado pelo lead-modal)
════════════════════════════════════════════════════════ */

@keyframes scarcity-overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .3; transform: scale(1.8); }
}

.scarcity-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--lime);
  background: var(--lime-12);
  border: 1px solid rgba(202,211,2,.28);
  padding: 5px 10px;
  border-radius: 2px;
  margin-bottom: 22px;
}

.scarcity-modal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  animation: dot-pulse 1.8s ease-in-out infinite;
}


/* ════════════════════════════════════════════════════════
   §PKG+  #sec-packages — elementos adicionais
════════════════════════════════════════════════════════ */

/* Bloco intro antes dos cards */
.pkg-intro {
  margin-bottom: clamp(28px, 4vw, 44px);
  padding: 18px 22px;
  border-left: 2px solid var(--lime-20);
  background: var(--paper-08);
}

.pkg-intro-text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.72;
  color: var(--paper-60);
  margin: 0;
}

/* Botão WhatsApp — herda .btn .btn-lime */
.pkg-wa-btn {
  gap: 10px;
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: .16em;
  width: 100%;
  justify-content: center;
  margin-bottom: 18px;
}

/* Formulário inline */
.pkg-form { display: flex; flex-direction: column; gap: 0; }

.pkg-form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--paper-40);
  white-space: nowrap;
}

.pkg-form-divider::before,
.pkg-form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--paper-08);
}

.pkg-form-input {
  background: transparent;
  border: 1px solid var(--paper-18);
  border-radius: 2px;
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 11px 14px;
  margin-bottom: 8px;
  width: 100%;
  outline: none;
  transition: border-color .2s ease;
  cursor: auto;
  -webkit-appearance: none;
}

.pkg-form-input::placeholder { color: var(--paper-40); }

.pkg-form-input:focus { border-color: var(--lime); }

.pkg-form-submit {
  background: transparent;
  border: 1px solid var(--lime);
  border-radius: 2px;
  color: var(--lime);
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 12px 20px;
  width: 100%;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.pkg-form-submit:hover {
  background: rgba(202,211,2,.10);
  color: var(--paper);
}

/* ════════════════════════════════════════════════════════
   §FT+  FICHA TÉCNICA — CONTAINER DE VÍDEO
════════════════════════════════════════════════════════ */

/* Container com mesma aspect-ratio da imagem existente (.ft-car-img) */
.ft-car-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}

.ft-car-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(.92) contrast(1.05);
}

/* Imagem fallback dentro de .ft-car-media */
.ft-car-media .ft-car-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.92) contrast(1.05);
}

/* ════════════════════════════════════════════════════════
   §NAV+  TOPBAR CTA + MOBILE NAV CTA
════════════════════════════════════════════════════════ */

/* Link CTA destacado na topbar — cor lime + borda sutil */
.topbar-nav .topbar-nav-cta {
  color: var(--lime);
  border: 1px solid rgba(202,211,2,.28);
  border-radius: 2px;
  padding: 5px 13px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.topbar-nav .topbar-nav-cta:hover {
  background: rgba(202,211,2,.08);
  border-color: var(--lime);
  color: var(--lime);
}

/* Remove underline do active state para links CTA */
.topbar-nav .topbar-nav-cta.active::after { display: none; }

/* Mobile nav: link CTA em lime */
.mob-nav-link--cta { color: var(--lime) !important; }
.mob-nav-link--cta:hover { opacity: .8; }

/* ════════════════════════════════════════════════════════
   §PKG REDESIGN v2 — visual, hover, form, featured
   Os cards já têm [data-r="up"] individualmente —
   o sistema existente gerencia o reveal com stagger
   via transition-delay: var(--_delay) inline style.
════════════════════════════════════════════════════════ */

/* ── Featured card: manter elevação APÓS reveal [data-r].in
   (o sistema global reseta transform:none, então precisamos
    restabelecer o translateY do featured)             ── */
.pkg-card--featured[data-r].in {
  transform: translateY(-20px);
}

/* ── Hover: lift suave nos cards não-destaque ── */
.pkg-card:not(.pkg-card--featured):hover {
  transform: translateY(-5px);
}

/* ── Featured card: elevação e glow ampliados ── */
.pkg-card--featured {
  transform: translateY(-20px);
  box-shadow:
    0 0 0 1px rgba(202,211,2,.48),
    0 40px 80px rgba(0,0,0,.7),
    0 0 120px rgba(202,211,2,.11),
    inset 0 1px 0 rgba(202,211,2,.12);
}

.pkg-card--featured:hover {
  border-color: rgba(202,211,2,.72);
  box-shadow:
    0 0 0 1px rgba(202,211,2,.55),
    0 48px 96px rgba(0,0,0,.75),
    0 0 160px rgba(202,211,2,.16),
    inset 0 1px 0 rgba(202,211,2,.16);
}

/* ── pkg-intro: strip elegante sem caixa ── */
.pkg-intro {
  border-left: none;
  background: transparent;
  border-top: 1px solid var(--paper-08);
  border-bottom: 1px solid var(--paper-08);
  padding: 20px 0;
  margin-bottom: clamp(36px, 4.5vw, 52px);
}

/* ── Botão WhatsApp: fix display flex ── */
.pkg-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 20px;
  font-size: 11px;
  letter-spacing: .13em;
  margin-bottom: 16px;
  cursor: pointer;
}

/* ── Formulário ── */
.pkg-form {
  gap: 8px;
}

.pkg-form-divider {
  margin: 6px 0;
}

.pkg-form-input {
  min-height: 46px;
  padding: 12px 16px;
  font-size: 13.5px;
  margin-bottom: 0;
  box-sizing: border-box;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.pkg-form-input:focus {
  border-color: rgba(202,211,2,.75);
  box-shadow: 0 0 0 3px rgba(202,211,2,.06);
  outline: none;
}

.pkg-form-submit {
  min-height: 46px;
  box-sizing: border-box;
  margin-top: 2px;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.pkg-form-submit:hover {
  background: rgba(202,211,2,.09);
  color: var(--lime);
  box-shadow: inset 0 0 0 1px var(--lime);
}

.pkg-form-submit:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

/* ── Badge Vagas Limitadas ── */
.pkg-badge--limited {
  border-color: rgba(202,211,2,.3);
  color: rgba(202,211,2,.72);
}

/* ── Badge Experiência Completa (Pole Position) ── */
.pkg-badge--value {
  background: rgba(1,79,72,.35);
  border-color: rgba(1,108,98,.6);
  color: rgba(160,220,215,.85);
}

/* ── Header margin ── */
.pkg-header {
  margin-bottom: clamp(32px, 4vw, 48px);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .pkg-card--featured,
  .pkg-card--featured[data-r].in {
    transform: none;
  }
  .pkg-wa-btn {
    font-size: 10.5px;
    padding: 13px 16px;
  }
  .pkg-form-input,
  .pkg-form-submit {
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pkg-card--featured,
  .pkg-card--featured[data-r].in {
    transform: translateY(-12px);
  }
  .pkg-card:not(.pkg-card--featured):hover {
    transform: none;
  }
}

/* ════════════════════════════════════════════════════════
   LEAD MODAL — captura de lead → CRM + WhatsApp
════════════════════════════════════════════════════════ */

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.lead-modal--open {
  opacity: 1;
  pointer-events: all;
}

.lead-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,8,.82);
  backdrop-filter: blur(4px);
}

.lead-modal--open .lead-modal-overlay {
  animation: scarcity-overlay-in .35s ease both;
}

.lead-modal-box {
  position: relative;
  z-index: 1;
  background: #111310;
  border: 1px solid rgba(202,211,2,.18);
  border-radius: 4px;
  padding: 40px 36px 36px;
  max-width: 420px;
  width: 100%;
  opacity: 0;
  transform: translateY(12px) scale(.97);
  transition: opacity .3s ease .05s, transform .3s ease .05s;
}

.lead-modal-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lime, #cad302);
  border-radius: 4px 4px 0 0;
}

.lead-modal--open .lead-modal-box {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lead-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid rgba(245,245,240,.12);
  border-radius: 50%;
  color: rgba(245,245,240,.6);
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.lead-modal-close:hover {
  background: rgba(245,245,240,.08);
  border-color: rgba(245,245,240,.2);
}

.lead-modal-title {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.05;
  color: var(--paper, #f5f5f0);
  text-transform: uppercase;
  margin: 12px 0 10px;
}

.lead-modal-body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: .875rem;
  color: rgba(245,245,240,.6);
  line-height: 1.55;
  margin-bottom: 24px;
}

.lead-modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-modal-input {
  background: rgba(245,245,240,.04);
  border: 1px solid rgba(245,245,240,.12);
  border-radius: 3px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  color: var(--paper, #f5f5f0);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}

.lead-modal-input::placeholder { color: rgba(245,245,240,.35); }
.lead-modal-input:focus { border-color: rgba(202,211,2,.5); }

.lead-modal-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--lime, #cad302);
  color: #0e0f0c;
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  padding: 16px 20px;
  cursor: pointer;
  margin-top: 4px;
  transition: background .2s;
  width: 100%;
}

.lead-modal-submit:hover { background: #d8e100; }
.lead-modal-submit:disabled { opacity: .6; cursor: not-allowed; }

@media (max-width: 480px) {
  .lead-modal-box { padding: 32px 24px 28px; }
}
