/* =========================================================
   Laboratório de Crescimento — Home
   Design tokens recriados a partir do protótipo Claude Design
   ========================================================= */
:root {
  --bg-deep:   #050E1D;
  --bg-darker: #03080F;
  --navy:      #0A1B33;
  --navy-2:    #11315E;
  --blue:      #2D7DF6;
  --blue-light:#6FA8FF;
  --blue-hover:#4D92FF;
  --orange:    #FF7A2F;
  --orange-light:#FF8A4D;
  --cyan:      #22D3EE;
  --cyan-light:#35E0F2;
  --light:     #F5F8FC;
  --text-light:#B9C9DF;
  --text-mute: #93A8C4;
  --text-soft: #5E7494;
  --text-body: #44597A;
  --border:    #DCE6F2;
  --border-2:  #C8D6E8;
  --skel-blue: #EAF1FB;
  --serif: 'Barlow', sans-serif;
  --cond: 'Barlow Condensed', sans-serif;
  --maxw: 1280px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg-deep);
  color: #fff;
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--blue); color: #fff; }

img { max-width: 100%; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.accent { color: var(--blue); }
.accent-light { color: var(--blue-light); }
.arrow { font-size: 20px; line-height: 1; }

/* ---------- keyframes ---------- */
@keyframes lcMarquee   { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes lcPulse     { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.9); opacity: 0; } }
@keyframes lcScrollDot { 0% { transform: translateY(0); opacity: 1; } 75% { transform: translateY(14px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 6px;
  font-family: var(--cond);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn--nav   { padding: 12px 22px; font-size: 16px; }
.btn        { padding: 16px 28px; font-size: 17px; }
.btn--lg    { padding: 19px 36px; font-size: 19px; }
.btn--xl    { padding: 20px 40px; font-size: 20px; }

.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-hover); }

.btn--ghost { border-color: rgba(255,255,255,.32); color: #fff; padding-top: 18px; padding-bottom: 18px; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.07); }
.btn--xl.btn--ghost { padding: 19px 40px; }

.btn--white { background: #fff; color: var(--navy-2); padding: 18px 32px; font-size: 18px; }
.btn--outline-white { border-color: rgba(255,255,255,.5); color: #fff; padding: 17px 32px; font-size: 18px; }
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn--dark { background: var(--navy); color: #fff; padding: 18px 34px; font-size: 18px; }
.btn--dark:hover { background: var(--blue); }

.btn--lift:hover { transform: translateY(-3px); }
.btn--nav.btn--primary:hover { transform: translateY(-2px); }
.btn--lg.btn--primary:hover  { box-shadow: 0 18px 40px -12px rgba(45,125,246,.55); }
.btn--xl.btn--primary:hover  { box-shadow: 0 18px 44px -12px rgba(45,125,246,.6); }
.btn--white.btn--lift:hover  { box-shadow: 0 16px 36px -12px rgba(4,11,22,.5); }

/* =========================================================
   Eyebrow / headings / kicker
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.eyebrow__bar { width: 36px; height: 2px; background: var(--blue); display: block; }
.eyebrow__label {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.eyebrow__num {
  font-family: var(--cond);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
}
.eyebrow__num--light { color: var(--blue-light); }
.eyebrow--blue  .eyebrow__label { color: var(--blue); }
.eyebrow--light .eyebrow__label { color: var(--blue-light); }
.eyebrow--light .eyebrow__bar,
.eyebrow--blue  .eyebrow__bar { background: var(--blue); }

.heading {
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(42px, 4.6vw, 76px);
  line-height: .96;
  letter-spacing: -.005em;
  text-transform: uppercase;
  text-wrap: balance;
  margin: 0;
}
.heading--sm { font-size: clamp(40px, 4vw, 64px); }
.heading--dark  { color: var(--navy); }
.heading--light { color: #fff; }

.kicker {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 36px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cond);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  transition: color .25s ease;
}
.link-arrow:hover { color: var(--navy-2); }

/* =========================================================
   Section backgrounds
   ========================================================= */
.section { padding: 120px 0 110px; }
.section--light { background: var(--light); }
.section--white { background: #fff; }
.section--deep  { background: var(--bg-deep); }
.section--navy  { background: var(--navy); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
.nav--scrolled {
  background: rgba(3,9,18,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(111,168,255,.1);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo { display: flex; align-items: center; text-decoration: none; }
.nav__logo img { height: 30px; display: block; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__link {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .2s ease;
}
.nav__link:hover { color: #fff; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero__bg {
  position: absolute;
  inset: -10% 0;
  max-width: 100%;
  overflow: hidden;
  background-image: url('/img/drive/10lgzqFssUKupuQCK-xzPL0eWTP-vEaVk.jpg');
  background-size: cover;
  background-position: center 28%;
  transform: scale(1.06);
  filter: saturate(.55) contrast(1.05);
  will-change: transform;
}
.hero__video {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.06);
  filter: saturate(.55) contrast(1.05);
  will-change: transform;
}
.hero__veil { position: absolute; inset: 0; }
.hero__veil--side   { background: linear-gradient(98deg, rgba(4,11,22,.97) 30%, rgba(6,18,38,.86) 58%, rgba(10,29,62,.62) 100%); }
.hero__veil--bottom { background: linear-gradient(0deg, var(--bg-deep) 2%, rgba(5,14,29,0) 30%); }
.hero__content {
  position: relative;
  width: 100%;
  padding-top: 160px;
  padding-bottom: 120px;
}
.hero__title {
  margin: 0 0 32px;
  max-width: 1060px;
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(52px, 6.4vw, 104px);
  line-height: .94;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: #fff;
  text-wrap: balance;
}
.hero__lead {
  margin: 0 0 44px;
  max-width: 620px;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-light);
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero__note { margin: 20px 0 0; font-size: 14px; color: rgba(185,201,223,.6); }

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__mouse {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 12px;
  display: flex; justify-content: center;
  padding-top: 7px;
}
.hero__dot { width: 4px; height: 7px; border-radius: 2px; background: var(--blue-light); display: block; }
.hero__video-tag {
  position: absolute;
  bottom: 28px; right: 32px;
  font-family: var(--serif);
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.38);
  border: 1px dashed rgba(255,255,255,.25);
  border-radius: 4px;
  padding: 7px 12px;
  max-width: 320px;
}

/* =========================================================
   LOGOS marquee
   ========================================================= */
.logos { background: #fff; padding: 64px 0 68px; overflow: hidden; }
.logos__title {
  margin: 0 0 36px;
  text-align: center;
  font-family: var(--serif);
  font-size: 13px; font-weight: 700;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--text-soft);
}
.logos__viewport { position: relative; overflow: hidden; }
.logos__fade { position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; }
.logos__fade--left  { left: 0;  background: linear-gradient(90deg, #fff, rgba(255,255,255,0)); }
.logos__fade--right { right: 0; background: linear-gradient(270deg, #fff, rgba(255,255,255,0)); }
.logos__track { display: flex; gap: 56px; width: max-content; will-change: transform; }
.logos__group { display: flex; gap: 56px; align-items: center; }
.logo-chip {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 8px;
}
.logo-chip img {
  max-height: 42px; max-width: 150px;
  width: auto; height: auto; object-fit: contain;
  display: block;
  filter: grayscale(1); opacity: .62;
  transition: filter .25s ease, opacity .25s ease;
}
.logo-chip:hover img { filter: grayscale(0); opacity: 1; }

/* =========================================================
   OPORTUNIDADE
   ========================================================= */
.opp__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 96px;
}
.opp__line { margin: 0 0 8px; font-size: 20px; line-height: 1.7; color: var(--text-body); }
.opp__line--last { margin-bottom: 20px; }
.opp__emph {
  margin: 0;
  font-family: var(--cond);
  font-size: 30px; font-weight: 600;
  line-height: 1.2; text-transform: uppercase;
  color: var(--navy);
}
.opp__chain { display: flex; flex-direction: column; }
.opp__step {
  display: flex; align-items: center; gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
}
.opp__step--last { border-bottom: 1px solid var(--border); }
.opp__step-num { font-family: var(--cond); font-size: 18px; font-weight: 700; color: var(--blue); min-width: 32px; }
.opp__step-text { margin: 0; font-family: var(--cond); font-size: 28px; font-weight: 600; text-transform: uppercase; color: var(--navy-2); }

/* generic 3-col card grid */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* pillar cards */
.pillar {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(10,27,51,.06);
  transition: transform .35s ease, box-shadow .35s ease;
}
.pillar:hover { transform: translateY(-8px); box-shadow: 0 24px 48px -16px rgba(10,27,51,.18); }
.pillar__img { height: 220px; background-size: cover; background-position: center; }
.pillar__body { padding: 32px 32px 36px; }
.pillar__title { margin: 0 0 14px; font-family: var(--cond); font-size: 32px; font-weight: 700; text-transform: uppercase; color: var(--navy); }
.pillar__text  { margin: 0; font-size: 16px; line-height: 1.65; color: var(--text-body); }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { background: linear-gradient(110deg, var(--navy-2) 0%, #1C56AC 55%, var(--blue) 100%); padding: 80px 0; }
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.cta-band__title {
  margin: 0; max-width: 620px;
  font-family: var(--cond); font-weight: 700;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.04; text-transform: uppercase;
  color: #fff; text-wrap: balance;
}
.cta-band__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* =========================================================
   SOLUÇÕES
   ========================================================= */
.solution {
  display: block;
  background: var(--navy);
  border: 1px solid rgba(111,168,255,.14);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .35s ease, border-color .35s ease;
}
.solution:hover { transform: translateY(-8px); }
.solution__img { height: 230px; background-size: cover; background-position: center; filter: saturate(.8); }
.solution__body { padding: 34px 32px 38px; }
.solution__bar { display: block; width: 44px; height: 3px; margin-bottom: 18px; }
.solution__title { margin: 0 0 14px; font-family: var(--cond); font-size: 30px; font-weight: 700; line-height: 1; text-transform: uppercase; color: #fff; }
.solution__text  { margin: 0 0 26px; font-size: 16px; line-height: 1.65; color: var(--text-mute); }
.solution__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--cond); font-size: 17px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
}
/* accent per solution */
.solution--blue   { border-color: rgba(45,125,246,.14); }
.solution--blue:hover { border-color: rgba(45,125,246,.65); }
.solution--blue   .solution__bar  { background: var(--blue); }
.solution--blue   .solution__link { color: var(--blue-light); }

.solution--orange { border-color: rgba(255,122,47,.18); }
.solution--orange:hover { border-color: rgba(255,122,47,.65); }
.solution--orange .solution__bar  { background: var(--orange); }
.solution--orange .solution__link { color: var(--orange-light); }

.solution--cyan   { border-color: rgba(34,211,238,.18); }
.solution--cyan:hover { border-color: rgba(34,211,238,.65); }
.solution--cyan   .solution__bar  { background: var(--cyan); }
.solution--cyan   .solution__link { color: var(--cyan-light); }

/* =========================================================
   PROVA
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 96px; }
.stat { border-top: 3px solid var(--blue); padding: 28px 0 0; }
.stat__num { margin: 0 0 6px; font-family: var(--cond); font-size: clamp(64px, 6vw, 96px); font-weight: 700; line-height: 1; color: var(--navy); }
.stat__label { margin: 0; font-size: 16px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-soft); }

.proof { display: grid; grid-template-columns: 1.25fr 1fr; gap: 28px; margin-bottom: 96px; }
.proof--single { display: block; }
.proof__embed-wrap { max-width: 1000px; margin: 0 auto; }
.proof__embed {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: 12px; overflow: hidden; background: #000;
  box-shadow: 0 24px 60px -20px rgba(8,20,40,.45);
}
.proof__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.proof__video {
  position: relative; border-radius: 12px; overflow: hidden;
  background: var(--navy); min-height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.proof__video-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .45; }
.proof__video-fg { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; }

.play-btn {
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(45,125,246,.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 36px -6px rgba(45,125,246,.6);
}
.play-btn--lg { width: 92px; height: 92px; box-shadow: 0 16px 44px -8px rgba(45,125,246,.65); background: rgba(45,125,246,.94); transition: transform .3s ease; }
.play-btn--hover:hover { transform: scale(1.08); }

.tag-dashed {
  font-family: var(--serif);
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  border: 1px dashed rgba(255,255,255,.35);
  border-radius: 4px;
  padding: 6px 12px;
}

.proof__quotes { display: flex; flex-direction: column; gap: 28px; }
.quote-card { flex: 1; background: var(--light); border-radius: 12px; padding: 32px; }
.quote-card__mark { font-family: var(--cond); font-size: 64px; font-weight: 700; line-height: .6; color: var(--blue); display: block; margin-bottom: 18px; }
.quote-card__person { display: flex; align-items: center; gap: 14px; }
.quote-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--border); display: block; }
.quote-card__meta { display: flex; flex-direction: column; gap: 7px; }

/* skeleton placeholders */
.skel { display: block; border-radius: 6px; background: var(--border); }
.skel--12 { height: 12px; }
.skel--11 { height: 11px; border-radius: 5px; }
.skel--10 { height: 10px; border-radius: 5px; }
.skel--9  { height: 9px;  border-radius: 5px; }
.skel--alt { background: var(--skel-blue); }

.proof__cases-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 32px; margin-bottom: 36px; flex-wrap: wrap;
}

/* case cards */
.case-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  color: inherit;
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease;
}
.case-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px -18px rgba(10,27,51,.16); }
.case-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.case-card__logo {
  width: 46px; height: 46px; border-radius: 8px;
  border: 1.5px dashed var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 9px; font-weight: 700;
  letter-spacing: .1em; color: var(--text-mute);
}
.case-card__logo--image {
  width: 148px;
  height: 58px;
  border: 0;
  border-radius: 0;
  justify-content: flex-start;
  letter-spacing: 0;
}
.case-card__logo--image img {
  display: block;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}
.case-card__company {
  margin: 0;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--text-soft);
}
.case-card__label { margin: 0 0 8px; font-family: var(--cond); font-size: 16px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.case-card__text { margin: 0 0 22px; font-size: 15.5px; line-height: 1.55; color: var(--text-body); }
.case-card__text--result { margin-bottom: 26px; font-weight: 600; color: var(--navy); }
.case-card__cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--cond); font-size: 15px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }

/* =========================================================
   CREDIBILIDADE
   ========================================================= */
.cred { overflow: hidden; }
.cred__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 88px; align-items: center; }
.cred__media { position: relative; }
.cred__frame { position: absolute; left: -28px; top: 28px; right: 28px; bottom: -28px; border: 2px solid var(--blue); border-radius: 14px; }
.cred__photo { position: relative; width: 100%; display: block; border-radius: 14px; box-shadow: 0 32px 64px -24px rgba(10,27,51,.35); }
.cred__badge { position: absolute; right: -20px; bottom: 24px; background: var(--navy); border-radius: 10px; padding: 18px 24px; box-shadow: 0 18px 40px -14px rgba(10,27,51,.5); }
.cred__badge-name { margin: 0; font-family: var(--cond); font-size: 24px; font-weight: 700; text-transform: uppercase; color: #fff; }
.cred__badge-role { margin: 2px 0 0; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-light); }
.cred__p { margin: 0 0 20px; font-size: 18px; line-height: 1.7; color: var(--text-body); }
.cred__p + .cred__p { margin-bottom: 28px; }
.cred__emph { margin: 0 0 40px; font-family: var(--cond); font-size: 28px; font-weight: 600; line-height: 1.15; text-transform: uppercase; color: var(--navy); }

/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 72px; align-items: center; }
.manifesto__media { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 10; background: var(--bg-deep); }
.manifesto__media-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .55; }
.manifesto__media-veil { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,14,29,.85), rgba(5,14,29,.1)); }
.manifesto__media-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.manifesto__quote { position: absolute; left: 32px; right: 32px; bottom: 28px; margin: 0; font-family: var(--cond); font-size: 34px; font-weight: 700; line-height: 1.02; text-transform: uppercase; color: #fff; }
.manifesto__tag { position: absolute; top: 20px; right: 20px; color: rgba(255,255,255,.55); border-color: rgba(255,255,255,.3); padding: 6px 10px; }
.manifesto__list { display: flex; flex-direction: column; gap: 22px; }
.manifesto__p { margin: 0; font-size: 19px; line-height: 1.65; color: var(--text-light); }
.manifesto__emph { margin: 0; font-family: var(--cond); font-size: 27px; font-weight: 600; line-height: 1.15; text-transform: uppercase; color: #fff; }

/* =========================================================
   ECOSSISTEMA
   ========================================================= */
.eco__head { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: end; margin-bottom: 72px; }
.eco__lead { margin: 0 0 16px; font-size: 18px; line-height: 1.7; color: var(--text-mute); }
.eco__emph { margin: 0; font-family: var(--cond); font-size: 26px; font-weight: 600; text-transform: uppercase; color: #fff; }
.eco__flow {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1.1fr;
  align-items: stretch;
}
.eco__card { background: var(--navy); border: 1px solid rgba(111,168,255,.14); border-radius: 12px; padding: 32px 28px; }
.eco__card--result { background: linear-gradient(120deg, #1C56AC, var(--blue)); border: 0; box-shadow: 0 20px 48px -16px rgba(45,125,246,.5); }
.eco__stage { margin: 0 0 12px; font-family: var(--cond); font-size: 15px; font-weight: 700; }
.eco__stage--blue   { color: var(--blue-light); }
.eco__stage--orange { color: var(--orange-light); }
.eco__stage--cyan   { color: var(--cyan-light); }
.eco__stage--result { color: rgba(255,255,255,.75); }
.eco__name { margin: 0; font-family: var(--cond); font-size: 26px; font-weight: 700; line-height: 1; text-transform: uppercase; color: #fff; }
.eco__arrow { display: flex; align-items: center; justify-content: center; font-family: var(--cond); font-size: 26px; color: var(--blue); }

/* =========================================================
   CONVERSÃO FINAL
   ========================================================= */
.final { position: relative; background: var(--bg-deep); padding: 150px 0 140px; overflow: hidden; }
.final__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .22; filter: saturate(.5); }
.final__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(28,86,172,.4), rgba(5,14,29,0) 70%); }
.final__content { position: relative; max-width: 920px; margin: 0 auto; padding: 0 32px; text-align: center; }
.final__title { font-size: clamp(44px, 5vw, 84px); margin: 0 0 28px; }
.final__lead { margin: 0 0 14px; font-size: 19px; line-height: 1.7; color: var(--text-light); }
.final__sub  { margin: 0 0 48px; font-size: 17px; line-height: 1.7; color: rgba(185,201,223,.7); }
.final__actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.final__note { margin: 22px 0 0; font-size: 14px; color: rgba(185,201,223,.6); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--bg-darker); border-top: 1px solid rgba(111,168,255,.1); padding: 64px 0 40px; }
.footer__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; flex-wrap: wrap; margin-bottom: 56px; }
.footer__brand img { height: 34px; display: block; margin-bottom: 18px; }
.footer__brand p { margin: 0; max-width: 320px; font-size: 15px; line-height: 1.6; color: var(--text-soft); }
.footer__nav { display: flex; gap: 72px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col-title { font-family: var(--serif); font-size: 12px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--text-soft); }
.footer__col a { font-size: 15px; color: var(--text-mute); text-decoration: none; transition: color .2s ease; }
.footer__col a:hover { color: #fff; }
.footer__cta { padding: 16px 28px; }
.footer__bottom { border-top: 1px solid rgba(111,168,255,.08); padding-top: 28px; }
.footer__bottom p { margin: 0; font-size: 13px; color: #3D4F6B; }

/* =========================================================
   FAB WhatsApp
   ========================================================= */
.fab { position: fixed; bottom: 28px; right: 28px; z-index: 90; width: 62px; height: 62px; }
.fab__ring { position: absolute; inset: 0; border-radius: 50%; background: var(--blue); will-change: transform, opacity; }
.fab__btn {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px -8px rgba(45,125,246,.65);
  transition: transform .25s ease, background .25s ease;
}
.fab:hover .fab__btn { transform: scale(1.1); background: var(--blue-hover); }

/* =========================================================
   Reveal initial state (JS toggles .is-visible)
   ========================================================= */
.reveal-init { opacity: 0; transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1); }
.reveal-init[data-reveal="up"]    { transform: translateY(40px); }
.reveal-init[data-reveal="left"]  { transform: translateX(-48px); }
.reveal-init[data-reveal="right"] { transform: translateX(48px); }
.reveal-init[data-reveal="scale"] { transform: scale(.94); }
.reveal-init.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .opp__grid,
  .proof,
  .cred__grid,
  .manifesto__grid,
  .eco__head { grid-template-columns: 1fr; gap: 48px; }
  .cred__grid { gap: 64px; }
  .cards-3,
  .stats { grid-template-columns: 1fr 1fr; }
  .eco__flow { grid-template-columns: 1fr 1fr; gap: 20px; }
  .eco__arrow { display: none; }
  .cred__badge { right: 12px; }
}

@media (max-width: 760px) {
  .section { padding: 84px 0 78px; }
  .container { padding: 0 22px; }
  .heading { font-size: clamp(38px, 12vw, 58px); line-height: .98; }
  .heading--sm { font-size: clamp(36px, 11vw, 54px); }
  .nav__links { gap: 18px; }
  .nav__link { display: none; }
  .nav__inner .btn--nav { display: inline-flex; }
  .nav__inner { padding: 0 22px; gap: 16px; }
  .nav__logo img { height: 26px; }
  .btn--nav { padding: 11px 15px; font-size: 14px; letter-spacing: .08em; white-space: nowrap; }
  .btn--lg,
  .btn--xl,
  .btn--white,
  .btn--outline-white,
  .btn--dark { width: 100%; justify-content: center; text-align: center; padding-left: 22px; padding-right: 22px; }
  .hero__content { padding-top: 128px; padding-bottom: 96px; }
  .hero__bg { transform: none !important; }
  .hero__video { transform: none !important; }
  .hero__title { font-size: clamp(42px, 13vw, 60px); line-height: .96; }
  .hero__lead { font-size: 17px; line-height: 1.55; }
  .hero__video-tag { display: none; }
  .hero__actions,
  .cta-band__actions,
  .final__actions { width: 100%; }
  .hero__actions .btn,
  .cta-band__actions .btn,
  .final__actions .btn { width: 100%; justify-content: center; text-align: center; }
  .fab {
    display: none;
  }
  body.fab-visible .fab {
    display: none;
  }
  .cards-3,
  .stats,
  .eco__flow { grid-template-columns: 1fr; }
  .logos__fade { width: 64px; }
  .logos__track {
    width: 100%;
    animation: none !important;
    transform: none !important;
    overflow: hidden;
  }
  .logos__group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
  }
  .logos__group + .logos__group { display: none; }
  .logo-chip { min-width: 0; width: 100%; }
  .opp__grid { margin-bottom: 64px; }
  .opp__step { align-items: flex-start; gap: 16px; }
  .opp__step-text { font-size: 24px; line-height: 1.08; }
  .pillar__body,
  .solution__body,
  .case-card,
  .quote-card,
  .eco__card { padding: 26px 22px; }
  .proof__video { min-height: 260px; }
  .proof__cases-head { align-items: flex-start; gap: 18px; }
  .case-card__head { align-items: flex-start; flex-direction: column; gap: 10px; margin-bottom: 22px; }
  .case-card__logo--image { width: 170px; max-width: 100%; }
  .cred__badge { position: static; margin-top: 16px; display: inline-block; }
  .cred__frame { display: none; }
  .cred__p { font-size: 17px; line-height: 1.6; }
  .footer__top { gap: 36px; }
  .footer__nav { gap: 34px; width: 100%; }
  .manifesto__quote { font-size: 26px; }
  .final { padding: 104px 0 96px; }
  .reveal-init[data-reveal="left"],
  .reveal-init[data-reveal="right"] { transform: translateY(32px); }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #lc-marquee, #lc-fab-ring, #lc-scroll-dot { animation: none !important; }
  #lc-hero-video { display: none !important; }
  .reveal-init { opacity: 1 !important; transform: none !important; transition: none; }
}

/* =========================================================
   Mobile hamburger (injected by main.js)
   ========================================================= */
.nav__burger { display: none; }
@media (max-width: 760px) {
  .nav__burger {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px;
    background: none; border: 0; cursor: pointer; margin-left: auto;
  }
  .nav__burger span {
    display: block; width: 100%; height: 2px; border-radius: 2px;
    background: #fff; transition: transform .25s ease, opacity .25s ease;
  }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* nav bar gets a solid backdrop on mobile so it's always readable */
  .nav { background: rgba(3,9,18,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(111,168,255,.1); }

  .nav__links {
    position: fixed; top: 76px; left: 0; right: 0; height: calc(100vh - 76px);
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(3,9,18,.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: 8px 22px 24px;
    border-bottom: 1px solid rgba(111,168,255,.12);
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
    overflow-y: auto;
  }
  body.nav-open .nav__links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links .nav__link {
    display: block;
    padding: 16px 2px; font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav__links .btn--nav { margin-top: 16px; justify-content: center; width: 100%; }
  body.nav-open { overflow: hidden; }
  body.nav-open .fab { opacity: 0; pointer-events: none; }
}
