/* ============================================================
   CGE · Landing Page · Letícia Batista 2026
   Estilos exclusivos (prefixo lp-)
   Reutiliza design tokens de application.css
============================================================ */

html { scroll-behavior: smooth; }

[hidden] { display: none !important; }

.lp-body {
  --lp-grid-max: 1320px;
  --lp-grid-gutter: 24px;
  --lp-grid-edge: max(var(--lp-grid-gutter), calc((100vw - var(--lp-grid-max)) / 2));
  overflow-x: hidden;
  background: var(--bg);
}

.lp-body .flash-stack {
  top: 84px;
  z-index: 200;
}

/* ── COOKIE CONSENT ──────────────────────────────────── */
.lp-cookie-consent {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
  padding: 20px 22px;
  color: #fff;
  background: rgba(11, 11, 44, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}
.lp-cookie-consent__copy strong { font-size: 15px; }
.lp-cookie-consent__copy p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.5;
}
.lp-cookie-consent__actions { display: flex; gap: 10px; flex-shrink: 0; }
.lp-cookie-consent__actions .lp-btn { padding: 11px 18px; font-size: 13px; }
.lp-cookie-consent__reject {
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.lp-cookie-consent__reject:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }

@media (max-width: 640px) {
  .lp-cookie-consent { align-items: stretch; flex-direction: column; gap: 16px; }
  .lp-cookie-consent__actions { justify-content: flex-end; }
}

/* ── NAV ──────────────────────────────────────────────── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 var(--lp-grid-edge);
  height: 68px;
  background: rgba(11,11,44,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 240ms, box-shadow 240ms;
}
.lp-nav.lp-nav--scrolled {
  background: rgba(11,11,44,0.96);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  text-decoration: none;
}
.lp-logo__icon {
  width: 36px; height: 36px;
  background: transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.lp-logo__icon img {
  width: 33.6px; height: 33.6px;
  object-fit: contain;
}
.lp-logo__text { display: flex; flex-direction: column; line-height: 1; }
.lp-logo__brand {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.01em;
}
.lp-logo__brand em { font-style: italic; color: var(--laranja-soft); font-weight: 300; }
.lp-logo__sub {
  font-family: var(--f-display);
  font-size: 9px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}

.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lp-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 120ms, background 120ms;
  text-decoration: none;
}
.lp-nav__link:hover { color: #fff; background: rgba(255,255,255,0.07); }

.lp-nav__end {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
}
.lp-nav__login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14);
  transition: color 120ms, background 120ms, border-color 120ms;
}
.lp-nav__login:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.22);
}
.lp-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--azul);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background 120ms, transform 120ms, box-shadow 120ms;
  box-shadow: 0 4px 16px rgba(41,70,237,0.35);
}
.lp-nav__cta:hover {
  background: var(--azul-soft);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(41,70,237,0.45);
}

/* ── HERO ────────────────────────────────────────────── */
.lp-hero {
  min-height: 100vh;
  background:
    radial-gradient(65% 90% at 75% 15%, rgba(41,70,237,0.28), transparent 60%),
    radial-gradient(45% 55% at 5% 85%, rgba(165,43,153,0.18), transparent 55%),
    radial-gradient(30% 50% at 95% 80%, rgba(249,128,67,0.12), transparent 50%),
    linear-gradient(155deg, #08082A 0%, #141450 40%, #191956 100%);
  display: flex;
  align-items: center;
  padding: 100px var(--lp-grid-edge) 80px;
  position: relative;
  overflow: hidden;
}
.lp-hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--lp-grid-max);
  width: 100%;
  margin: 0 auto;
  gap: 48px;
  position: relative;
  z-index: 2;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.lp-hero__content {
  flex: 1;
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.lp-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 10px;
  background: rgba(252,168,58,0.1);
  border: 1px solid rgba(252,168,58,0.22);
  border-radius: 999px;
  color: var(--laranja-soft);
  font-family: var(--f-display);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.lp-hero__chip-dot {
  width: 7px; height: 7px;
  background: var(--laranja);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249,128,67,0.9);
  animation: lp-pulse 2s ease infinite;
}
@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.lp-hero__title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 24px;
}
.lp-hero__title em {
  font-style: italic;
  color: var(--azul-soft);
  font-weight: 250;
}

.lp-hero__sub {
  font-size: 16.5px;
  line-height: 1.68;
  color: rgba(255,255,255,0.52);
  margin: 0 0 42px;
  max-width: 450px;
  font-weight: 400;
}

.lp-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

/* ── BUTTONS ──────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 140ms;
  line-height: 1;
  border: none;
  cursor: pointer;
}
.lp-btn--primary {
  background: var(--azul);
  color: #fff;
  box-shadow: 0 6px 24px rgba(41,70,237,0.42), 0 1px 0 rgba(255,255,255,0.12) inset;
}
.lp-btn--primary:hover {
  background: var(--azul-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(41,70,237,0.52);
}
.lp-btn--ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.11);
}
.lp-btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.lp-btn--white {
  background: #fff;
  color: var(--marinho);
  border-color: transparent;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.lp-btn--white:hover {
  background: rgba(255,255,255,.92);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.lp-btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.lp-btn--outline-white:hover {
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
}

.lp-hero__actions--stack { flex-direction: column; align-items: stretch; max-width: 420px; }

.lp-hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
  position: relative;
  overflow: hidden;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.lp-nav__link--active { color: var(--laranja-soft); }

/* Plano completo: continuação editorial da jornada territorial. */
.lp-plan-page .lp-esp-hero { padding: 132px 48px 0; background: oklch(22% .085 283); }
.lp-plan-page .lp-esp-hero::before { display: none; }
.lp-plan-page .lp-esp-hero__inner { display: grid; grid-template-columns: minmax(340px,.72fr) 1.28fr; align-items: center; gap: clamp(42px,6vw,96px); max-width: 1320px; text-align: left; }
.lp-esp-hero__copy { padding-bottom: 64px; }
.lp-esp-back--hero { display: flex; width: fit-content; margin-bottom: 46px; color: oklch(82% .025 278); }
.lp-esp-back--hero:hover { color: oklch(97% .012 80); }
.lp-plan-page .lp-esp-hero__eyebrow { padding: 0; border: 0; border-radius: 0; background: transparent; margin-bottom: 14px; }
.lp-esp-hero__kicker { margin: 0 0 10px; color: oklch(97% .012 80); font-family: var(--f-display); font-size: clamp(20px,2vw,30px); font-weight: 700; }
.lp-plan-page .lp-esp-hero__title { color: oklch(97% .012 80); font-family: var(--f-display); font-size: clamp(64px,7vw,112px); font-weight: 700; line-height: .88; letter-spacing: -.045em; }
.lp-plan-page .lp-esp-hero__title em { display: block; color: oklch(72% .18 48); font-weight: 700; }
.lp-plan-page .lp-esp-hero__sub { max-width: 34rem; margin: 0 0 22px; }
.lp-plan-page .lp-esp-hero__actions { justify-content: flex-start; }
.lp-esp-hero__figure { align-self: end; margin: 0; }
.lp-esp-hero__figure img { display: block; width: 100%; clip-path: polygon(8% 0,100% 0,100% 100%,0 100%,0 16%); }
.lp-esp-hero__figure figcaption { margin: 10px 0 28px; color: oklch(72% .025 278); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.lp-esp-toc-wrap { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; padding: 20px 0; border-top: 1px solid oklch(97% .012 80 / .14); }
.lp-esp-toc-wrap > p { margin: 0 0 12px; color: oklch(72% .18 48); font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.lp-plan-page .lp-esp-toc { justify-content: flex-start; gap: 8px 22px; margin: 0; }
.lp-plan-page .lp-esp-toc a { padding: 5px 0; border: 0; border-radius: 0; background: transparent; }
.lp-plan-page .lp-esp-toc a:hover { color: oklch(97% .012 80); background: transparent; text-decoration: underline; text-underline-offset: 5px; }
.lp-plan-page .lp-esp-lede { padding-left: 0; border-left: 0; }
.lp-plan-page .lp-esp-section { padding-right: var(--lp-grid-edge); padding-left: var(--lp-grid-edge); }
.lp-plan-page .lp-esp-inner { max-width: var(--lp-grid-max); }

@media (max-width: 900px) {
  .lp-plan-page .lp-esp-hero { padding: 104px 22px 0; }
  .lp-plan-page .lp-esp-hero__inner { grid-template-columns: 1fr; gap: 12px; }
  .lp-esp-hero__copy { padding-bottom: 24px; }
  .lp-esp-back--hero { margin-bottom: 32px; }
  .lp-plan-page .lp-esp-hero__title { font-size: clamp(58px,20vw,88px); }
  .lp-esp-hero__figure { margin: 0 -22px; }
  .lp-esp-hero__figure figcaption { padding: 0 22px; }
  .lp-esp-toc-wrap { margin: 0 -22px; padding: 20px 22px; }
}
.lp-hero-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.lp-hero-cta__label { flex: 1; text-align: left; position: relative; z-index: 1; }
.lp-hero-cta__chev { flex-shrink: 0; opacity: 0.8; position: relative; z-index: 1; }

.lp-hero-cta--primary {
  background: linear-gradient(135deg, #2946ED 0%, #4762F1 100%);
  box-shadow: 0 14px 34px rgba(41,70,237,0.4);
}
.lp-hero-cta--primary:hover { box-shadow: 0 18px 40px rgba(41,70,237,0.5); transform: translateY(-1px); }

.lp-hero-cta--secondary,
.lp-hero-cta--tertiary {
  background: linear-gradient(135deg, #14144C 0%, #1B1B5E 100%);
  border: 1px solid rgba(71,98,241,0.35);
}
.lp-hero-cta--secondary:hover,
.lp-hero-cta--tertiary:hover { border-color: rgba(71,98,241,0.6); background: linear-gradient(135deg, #191960 0%, #212170 100%); }

.lp-hero-cta--tertiary::before {
  content: '';
  position: absolute;
  inset: -40% -10%;
  background: linear-gradient(115deg, transparent 40%, rgba(252,168,58,0.16) 50%, transparent 60%);
  pointer-events: none;
}

/* ── HERO STATS ───────────────────────────────────────── */
.lp-hero__stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.lp-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.lp-hero__stat-num {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 21px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.lp-hero__stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--f-display);
}
.lp-hero__sep {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.09);
  flex-shrink: 0;
}

/* ── HERO VISUAL SIDE ─────────────────────────────────── */
.lp-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-hero__photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(440px, 36vw);
  max-width: 100%;
}
.lp-hero__glow {
  position: absolute;
  inset: -50px;
  z-index: 0;
  background:
    radial-gradient(55% 55% at 50% 22%, rgba(249,128,67,0.32), transparent 70%),
    radial-gradient(50% 50% at 78% 82%, rgba(165,43,153,0.26), transparent 70%),
    radial-gradient(45% 45% at 15% 78%, rgba(41,70,237,0.22), transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}
.lp-hero__photo-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}
.lp-hero__photo-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.lp-hero__quote-block {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px 32px;
  backdrop-filter: blur(12px);
  width: 100%;
  box-sizing: border-box;
}
.lp-hero__quote-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 14px;
}
.lp-hero__quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 24px;
  padding: 0;
}
.lp-hero__quote-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-hero__cred {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
.lp-hero__cred-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.lp-hero__cred-icon--s { background: rgba(0,82,163,.2); }
.lp-hero__cred-icon--e { background: rgba(228,101,37,.2); }
.lp-hero__cred-icon--c { background: rgba(106,62,150,.2); }

/* ── METRICS BELT ──────────────────────────────────────── */
.lp-metrics {
  background: var(--surface);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 56px var(--lp-grid-edge);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.lp-metrics--3col { grid-template-columns: repeat(3, 1fr); }
.lp-metric {
  padding: 0 36px;
  border-right: 1px solid var(--line-2);
  text-align: center;
}
.lp-metric:first-child { padding-left: 0; }
.lp-metric:last-child { padding-right: 0; border-right: none; }
.lp-metric__num {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 54px;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 10px;
}
.lp-metric__num em { font-style: italic; color: var(--azul); font-weight: 300; }
.lp-metric__label {
  font-family: var(--f-display);
  font-size: 10.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* ── SECTION COMMON ────────────────────────────────────── */
.lp-section { padding: 96px var(--lp-grid-edge); }
.lp-section--white { background: var(--surface); }
.lp-section--bg { background: var(--bg); }
.lp-section--dark {
  background:
    radial-gradient(50% 70% at 85% 20%, rgba(41,70,237,0.22), transparent 60%),
    radial-gradient(35% 50% at 10% 80%, rgba(165,43,153,0.15), transparent 55%),
    linear-gradient(155deg, #0B0B2E 0%, #141450 55%, #191956 100%);
  position: relative;
  overflow: hidden;
}
.lp-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.lp-inner {
  max-width: var(--lp-grid-max);
  margin: 0 auto;
  width: 100%;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.lp-section-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  background: rgba(41,70,237,0.08);
  border: 1px solid rgba(41,70,237,0.14);
  border-radius: 999px;
  font-family: var(--f-display);
  font-size: 10px;
  color: var(--azul);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lp-section-chip--orange {
  background: rgba(249,128,67,0.1);
  border-color: rgba(249,128,67,0.18);
  color: var(--laranja-soft);
}
.lp-section-title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(30px, 3.8vw, 50px);
  color: var(--ink);
  letter-spacing: -0.022em;
  margin: 0 0 16px;
  line-height: 1.1;
}
.lp-section-title em { font-style: italic; color: var(--azul); font-weight: 250; }
.lp-section-title--white { color: #fff; }
.lp-section-title--white em { color: var(--laranja-soft); }
.lp-section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.68;
  max-width: 480px;
  margin: 0 auto;
}
.lp-section-sub--white { color: rgba(255,255,255,0.6); }

.lp-section-header--split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}
.lp-section-header--split .lp-section-title { margin-bottom: 16px; }
.lp-section-header--split .lp-section-sub { margin: 0; max-width: 460px; }
.lp-section-header__photo .lp-photo-card {
  aspect-ratio: 3 / 4;
  max-width: 300px;
  margin-left: auto;
}

/* ── PHOTO CARD ────────────────────────────────────────── */
.lp-photo-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 70px rgba(14,18,48,0.12), 0 0 0 1px rgba(0,0,0,0.03);
}
.lp-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-photo-card--dark {
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* ── QUEM SOU ──────────────────────────────────────────── */
.lp-quem-sou-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.lp-quem-sou-photo { position: relative; align-self: start; }
.lp-quem-sou-photo .lp-photo-card { aspect-ratio: 4 / 4.7; }
.lp-quem-sou-photo::before {
  content: "";
  position: absolute;
  top: -22px; left: -22px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(41,70,237,0.08);
  z-index: -1;
}
.lp-quem-sou-body p {
  font-size: 16px;
  color: var(--texto-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.lp-quem-sou-tagline {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  color: var(--azul);
  margin: 28px 0 24px;
  padding-left: 18px;
  border-left: 3px solid var(--laranja);
}

/* ── CREDENTIAL CHIPS ──────────────────────────────────── */
.lp-credential-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lp-credential-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
}
.lp-credential-chip--s {
  background: rgba(0,82,163,.08);
  color: var(--azul);
  border-color: rgba(0,82,163,.15);
}
.lp-credential-chip--e {
  background: rgba(228,101,37,.08);
  color: var(--laranja);
  border-color: rgba(228,101,37,.15);
}
.lp-credential-chip--c {
  background: rgba(106,62,150,.08);
  color: var(--roxo);
  border-color: rgba(106,62,150,.15);
}

/* ── PILLARS ───────────────────────────────────────────── */
.lp-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.lp-pillar-card {
  border-radius: 20px;
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  transition: transform 140ms, box-shadow 140ms;
}
.lp-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.lp-pillar-card--s { background: linear-gradient(135deg, #361CF4 0%, #2946ED 50%, #191956 100%); }
.lp-pillar-card--e { background: linear-gradient(135deg, #FCA83A 0%, #FF5B00 55%, #84066C 100%); }
.lp-pillar-card--c { background: linear-gradient(135deg, #9B20C3 0%, #A52B99 55%, #5A1560 100%); }

.lp-pillar-deco1 {
  position: absolute;
  top: -24px; right: -24px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.lp-pillar-deco2 {
  position: absolute;
  bottom: -44px; right: 36px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.lp-pillar-chip {
  font-family: var(--f-display);
  font-size: 9.5px;
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
}
.lp-pillar-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin-top: auto;
  padding-top: 20px;
  line-height: 1.65;
  position: relative;
}

/* ── PILLAR QUOTE & BULLETS ────────────────────────────── */
.lp-pilar-quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 3px solid var(--laranja);
}
.lp-pilar-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-pilar-bullets li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  padding-left: 18px;
  position: relative;
}
.lp-pilar-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--laranja);
  opacity: 0.7;
}
.lp-pillar-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.45);
  position: relative;
  width: fit-content;
  padding: 0;
  background: transparent;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}
.lp-pillar-card__link:hover { text-decoration-color: #fff; }

/* ── FORM ──────────────────────────────────────────────── */
.lp-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 28px;
  padding: 48px 52px 44px;
  box-shadow: 0 28px 60px -28px rgba(14,18,48,0.22), 0 2px 10px rgba(14,18,48,0.05);
  position: relative;
  overflow: hidden;
}
.lp-form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--azul), var(--roxo));
}
.lp-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.lp-form__field { display: flex; flex-direction: column; gap: 7px; }
.lp-form__field--full { grid-column: 1 / -1; }
.lp-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--texto-body);
  letter-spacing: .02em;
}
.lp-form__optional { font-weight: 400; color: var(--texto-muted); }
.lp-form__input {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid rgba(0,0,0,0.09);
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--texto-body);
  background: var(--bg);
  transition: border-color 150ms, box-shadow 150ms, background 150ms;
  box-sizing: border-box;
  font-family: var(--f-sans);
  appearance: none;
}
.lp-form__input:focus {
  outline: none;
  border-color: var(--azul);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,82,163,.1);
}
.lp-form__select {
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23667' stroke-width='2'%3E%3Cpath d='m1 1.5 5 5 5-5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.lp-form__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0 26px;
  cursor: pointer;
}
.lp-form__check input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.lp-form__check-box {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1.5px solid rgba(0,0,0,0.18);
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 150ms, border-color 150ms;
}
.lp-form__check-box svg {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 120ms, transform 120ms;
}
.lp-form__check input:checked ~ .lp-form__check-box {
  background: var(--azul);
  border-color: var(--azul);
}
.lp-form__check input:checked ~ .lp-form__check-box svg {
  opacity: 1;
  transform: scale(1);
}
.lp-form__check input:focus-visible ~ .lp-form__check-box {
  box-shadow: 0 0 0 3px rgba(0,82,163,.15);
}
.lp-form__check-label {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--texto-muted);
}
.lp-form__submit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lp-form__submit { min-width: 240px; justify-content: center; }
.lp-form__microcopy {
  font-size: 12px;
  color: var(--texto-muted);
  text-align: center;
  max-width: 380px;
}

/* ── SOCIAL ────────────────────────────────────────────── */
.lp-social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}
.lp-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--texto-body);
  text-decoration: none;
  background: #fff;
  transition: border-color 150ms, background 150ms, color 150ms, transform 120ms;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.lp-social-btn:hover {
  border-color: var(--azul);
  color: var(--azul);
  background: rgba(0,82,163,.03);
  transform: translateY(-2px);
}
.lp-social-btn--whatsapp:hover {
  border-color: #25D366;
  color: #1DA851;
  background: rgba(37,211,102,.06);
}

/* ── WHATSAPP FAB ──────────────────────────────────────── */
.lp-whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 160ms, box-shadow 160ms;
}
.lp-whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 36px rgba(37,211,102,0.55), 0 2px 8px rgba(0,0,0,0.18);
}

/* ── CTA ───────────────────────────────────────────────── */
.lp-cta {
  padding: 100px var(--lp-grid-edge);
  background: linear-gradient(135deg, #361CF4 0%, #2946ED 45%, #191956 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.lp-cta::after {
  content: "";
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(249,128,67,0.13), transparent 70%);
  pointer-events: none;
}
.lp-cta__inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.lp-cta__title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(34px, 4.5vw, 58px);
  color: #fff;
  letter-spacing: -0.024em;
  margin: 0 0 18px;
  line-height: 1.1;
}
.lp-cta__title em { font-style: italic; color: var(--laranja-soft); font-weight: 250; }
.lp-cta__actions { display: flex; align-items: center; justify-content: center; gap: 14px; }

/* ── FOOTER ────────────────────────────────────────────── */
.lp-footer {
  padding: 36px var(--lp-grid-edge) 24px;
  background: var(--marinho-2);
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.lp-footer__main {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto auto;
  align-items: center;
  gap: 36px;
}
.lp-footer__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.lp-footer__icon {
  width: 28px; height: 28px;
  background: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.lp-footer__icon img {
  width: 26.6px; height: 26.6px;
  object-fit: contain;
}
.lp-footer__brand {
  font-family: var(--f-serif);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.lp-footer__brand em { font-style: italic; color: var(--laranja-soft); }
.lp-footer__links { display: flex; align-items: center; gap: 22px; }
.lp-footer__link {
  font-size: 12.5px;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 120ms;
}
.lp-footer__link:hover { color: rgba(255,255,255,0.55); }
.lp-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.lp-footer__copy {
  font-size: 11.5px;
  color: rgba(255,255,255,0.18);
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,0.07);
}
.lp-footer__legal {
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  letter-spacing: .02em;
  text-align: center;
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────── */
.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.lp-reveal.lp-visible {
  opacity: 1;
  transform: translateY(0);
}
.lp-reveal-delay-1 { transition-delay: 100ms; }
.lp-reveal-delay-2 { transition-delay: 200ms; }
.lp-reveal-delay-3 { transition-delay: 300ms; }
.lp-reveal-delay-4 { transition-delay: 400ms; }
.lp-reveal-delay-5 { transition-delay: 500ms; }
.lp-reveal-delay-6 { transition-delay: 600ms; }

/* ── HAMBURGER ──────────────────────────────────────────── */
.lp-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 120ms;
}
.lp-nav__hamburger:hover { background: rgba(255,255,255,0.13); }
.lp-nav__hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 240ms, opacity 240ms;
  transform-origin: center;
}
.lp-nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lp-nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU DRAWER ─────────────────────────────────── */
.lp-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.lp-mobile-menu.is-open { display: block; }

.lp-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: lp-fade-in 200ms ease forwards;
}

.lp-mobile-menu__panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: min(320px, 100vw);
  background: #0c0c2e;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  animation: lp-slide-in 260ms cubic-bezier(0.22,1,0.36,1) forwards;
  overflow-y: auto;
}

.lp-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.lp-mobile-menu__logo { text-decoration: none; }
.lp-mobile-menu__close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background 120ms, color 120ms;
  flex-shrink: 0;
}
.lp-mobile-menu__close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.lp-mobile-menu__links {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  flex: 1;
}
.lp-mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 120ms, background 120ms, padding-left 120ms;
}
.lp-mobile-menu__link:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
  padding-left: 30px;
}
.lp-mobile-menu__link-num {
  font-family: var(--f-display);
  font-size: 11px;
  color: var(--azul);
  letter-spacing: 0.1em;
  min-width: 20px;
}

.lp-mobile-menu__footer {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.lp-mobile-menu__cta { width: 100%; justify-content: center; }
.lp-mobile-menu__login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 120ms, background 120ms;
}
.lp-mobile-menu__login:hover { color: #fff; background: rgba(255,255,255,0.06); }

@keyframes lp-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lp-slide-in {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

/* ── RESPONSIVE MOBILE ─────────────────────────────────── */

/* Tablet: 900px */
@media (max-width: 900px) {
  .lp-nav { padding: 0 24px; }
  .lp-nav__links { display: none; }
  .lp-nav__cta { font-size: 13px; padding: 9px 16px; }
  .lp-nav__hamburger { display: flex; margin-right: 12px; }
  .lp-logo { margin-right: auto; }

  .lp-hero {
    flex-direction: column;
    text-align: center;
    padding-top: 130px;
  }
  .lp-hero__row { flex-direction: column; }
  .lp-hero__content { max-width: 100%; }
  .lp-hero__actions { justify-content: center; }
  .lp-hero__stats { justify-content: center; }
  .lp-hero__photo-wrap { width: min(320px, 80vw); margin: 40px auto 0; }

  .lp-metrics {
    grid-template-columns: repeat(3, 1fr);
    padding: 40px 24px;
  }

  .lp-section { padding: 72px 32px; }
  .lp-section-header { margin-bottom: 40px; }
  .lp-section-header--split { grid-template-columns: 1fr; text-align: center; }
  .lp-section-header--split .lp-section-sub { margin: 0 auto; }
  .lp-section-header__photo .lp-photo-card { margin: 0 auto; }

  .lp-pillars-grid { grid-template-columns: 1fr; }

  .lp-quem-sou-grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-quem-sou-photo .lp-photo-card { aspect-ratio: 4 / 3.4; max-width: 380px; margin: 0 auto; }

  .lp-cta { padding: 72px 32px; }

  .lp-footer {
    padding: 36px 24px;
    gap: 20px;
  }
  .lp-footer__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .lp-footer__logo { width: 100%; margin-right: 0; }
  .lp-footer__links { flex-wrap: wrap; gap: 14px; }
  .lp-footer__right { align-items: flex-start; width: 100%; }
  .lp-footer__copy { padding-left: 0; border-left: none; }
}

/* Mobile: 640px */
@media (max-width: 640px) {
  .lp-nav { padding: 0 16px; height: 60px; }
  .lp-nav__cta { display: none; }
  .lp-logo__sub { display: none; }

  .lp-hero { padding: 88px 20px 56px; }
  .lp-hero__chip { font-size: 9px; padding: 6px 12px 6px 8px; }
  .lp-hero__sub { font-size: 15px; }
  .lp-hero__actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .lp-hero__actions .lp-btn { justify-content: center; }
  .lp-hero__stats { gap: 12px; }
  .lp-hero__photo-wrap { width: min(300px, 85vw); }

  .lp-metrics {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 16px;
    gap: 0;
  }
  .lp-metric {
    padding: 20px 12px;
    border-right: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
  }
  .lp-metric:nth-child(2n) { border-right: none; }
  .lp-metric:nth-last-child(-n+2) { border-bottom: none; }
  .lp-metric:first-child { padding-left: 12px; }
  .lp-metric__num { font-size: 38px; }

  .lp-section { padding: 56px 16px; }
  .lp-section-title { font-size: clamp(26px, 7vw, 40px); }
  .lp-section-sub { font-size: 15px; }

  .lp-pillars-grid { gap: 14px; }
  .lp-pillar-card { padding: 26px 22px; }

  .lp-quem-sou-body p { font-size: 15px; }

  .lp-cta { padding: 56px 16px; }
  .lp-cta__actions { flex-direction: column; align-items: center; gap: 10px; }
  .lp-cta__actions .lp-btn { width: 100%; max-width: 340px; justify-content: center; }

  .lp-footer { padding: 28px 16px; gap: 16px; }
  .lp-footer__links { gap: 10px; }
  .lp-footer__link { font-size: 12px; }
  .lp-footer__brand { font-size: 11.5px; }

  .lp-social-grid { gap: 10px; }
  .lp-social-btn { padding: 12px 18px; font-size: 13px; width: 100%; justify-content: center; max-width: 300px; }

  .lp-form { padding: 36px 24px 32px; border-radius: 22px; }
  .lp-form__grid { grid-template-columns: 1fr; }
  .lp-form__submit { width: 100%; justify-content: center; }
}

/* Mobile muito pequeno: 380px */
@media (max-width: 380px) {
  .lp-hero__title { font-size: 36px; }
  .lp-metrics { grid-template-columns: 1fr; }
  .lp-metric { border-right: none; border-bottom: 1px solid var(--line-2); }
  .lp-metric:last-child { border-bottom: none; }
  .lp-nav__login { display: none; }
}

/* ============================================================
   PACTO PELO ESPORTE (página interna)
============================================================ */
.lp-esp-hero {
  padding: 128px 48px 64px;
  background:
    radial-gradient(60% 80% at 80% 10%, rgba(252,168,58,0.22), transparent 60%),
    radial-gradient(40% 55% at 5% 90%, rgba(165,43,153,0.16), transparent 55%),
    linear-gradient(155deg, #08082A 0%, #141450 40%, #191956 100%);
  position: relative;
  overflow: hidden;
}
.lp-esp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.lp-esp-hero__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; text-align: center; }
.lp-esp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 10px;
  background: rgba(252,168,58,0.1);
  border: 1px solid rgba(252,168,58,0.22);
  border-radius: 999px;
  color: var(--laranja-soft);
  font-family: var(--f-display);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.lp-esp-hero__title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 20px;
}
.lp-esp-hero__title em { font-style: italic; color: var(--laranja-soft); font-weight: 250; }
.lp-esp-hero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  max-width: 620px;
  margin: 0 auto 14px;
}
.lp-esp-hero__tagline {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 19px;
  color: rgba(255,255,255,0.9);
  margin: 22px 0 34px;
}
.lp-esp-hero__actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Sections */
.lp-esp-section { padding: 72px 48px; border-top: 1px solid var(--line-2); }
.lp-esp-section--alt { background: var(--surface-warm); }
.lp-esp-section--dark {
  background: linear-gradient(155deg, #08082A 0%, #141450 55%, #191956 100%);
  border-top: none;
}
.lp-esp-inner { max-width: 1120px; margin: 0 auto; }
.lp-esp-head { max-width: 720px; margin: 0 0 40px; }
.lp-esp-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* Eixo band (divider) */
.lp-esp-eixo-band {
  padding: 52px 48px;
  background: var(--grad-energy);
  display: flex;
  align-items: baseline;
  gap: 22px;
  flex-wrap: wrap;
}
.lp-esp-eixo-band__num {
  font-family: var(--f-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 8px 18px;
}
.lp-esp-eixo-band__title { font-family: var(--f-serif); font-weight: 600; font-size: clamp(22px, 3vw, 30px); color: #fff; margin: 0; }
.lp-esp-eixo-band__title em { font-style: italic; font-weight: 300; }

/* Callout / lede quote */
.lp-esp-lede {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  border-left: 3px solid var(--laranja);
  padding: 4px 0 4px 20px;
  margin: 0 0 40px;
  max-width: 760px;
}
.lp-esp-lede--white { color: rgba(255,255,255,0.82); border-left-color: var(--laranja-soft); }

/* Stat grid */
.lp-esp-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 40px; }
.lp-esp-stat {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 20px 18px;
  background: var(--surface);
}
.lp-esp-stat__num { display: block; font-family: var(--f-serif); font-weight: 600; font-size: 26px; color: var(--laranja); margin-bottom: 2px; }
.lp-esp-stat__label { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.03em; color: var(--ink); text-transform: uppercase; margin-bottom: 8px; }
.lp-esp-stat__desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.lp-esp-section--dark .lp-esp-stat { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.lp-esp-section--dark .lp-esp-stat__label { color: #fff; }
.lp-esp-section--dark .lp-esp-stat__desc { color: rgba(255,255,255,0.6); }

/* Card grid (generic) */
.lp-esp-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.lp-esp-cards--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.lp-esp-card {
  border-radius: 18px;
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.lp-esp-card--fill { color: #fff; border: none; }
.lp-esp-card--fill.lp-esp-card--a { background: linear-gradient(135deg, #361CF4 0%, #2946ED 50%, #191956 100%); }
.lp-esp-card--fill.lp-esp-card--b { background: linear-gradient(135deg, #FCA83A 0%, #FF5B00 55%, #84066C 100%); }
.lp-esp-card--fill.lp-esp-card--c { background: linear-gradient(135deg, #9B20C3 0%, #A52B99 55%, #5A1560 100%); }
.lp-esp-card--fill.lp-esp-card--d { background: linear-gradient(135deg, #4762F1 0%, #2946ED 60%, #08082A 100%); }
.lp-esp-card__num {
  font-family: var(--f-display);
  font-size: 12px;
  color: var(--laranja);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: block;
}
.lp-esp-card--fill .lp-esp-card__num { color: rgba(255,255,255,0.65); }
.lp-esp-card__title { font-family: var(--f-serif); font-weight: 600; font-size: 18px; color: var(--ink); margin: 0 0 10px; }
.lp-esp-card--fill .lp-esp-card__title { color: #fff; }
.lp-esp-card__text { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.lp-esp-card--fill .lp-esp-card__text { color: rgba(255,255,255,0.78); }
.lp-esp-card__list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 7px; }
.lp-esp-card__list li { font-size: 13px; color: var(--muted); padding-left: 17px; position: relative; line-height: 1.5; }
.lp-esp-card--fill .lp-esp-card__list li { color: rgba(255,255,255,0.78); }
.lp-esp-card__list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--laranja); }
.lp-esp-card--fill .lp-esp-card__list li::before { background: rgba(255,255,255,0.75); }

/* Flow arrows for sequential cards */
.lp-esp-flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; align-items: stretch; }

/* Tables */
.lp-esp-table-wrap { overflow-x: auto; border-radius: 14px; border: 1px solid var(--line); margin-bottom: 8px; }
.lp-esp-table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 640px; }
.lp-esp-table caption { display: none; }
.lp-esp-table th {
  background: var(--marinho);
  color: #fff;
  text-align: left;
  padding: 13px 18px;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lp-esp-table td {
  padding: 13px 18px;
  border-top: 1px solid var(--line-2);
  color: var(--ink-2);
  line-height: 1.5;
  vertical-align: top;
}
.lp-esp-table tr:nth-child(even) td { background: var(--surface-warm); }
.lp-esp-table td strong, .lp-esp-table td.lp-esp-table__key { color: var(--ink); font-weight: 700; white-space: nowrap; }

/* Back link */
.lp-esp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.lp-esp-back:hover { color: var(--ink); }

/* Table of contents */
.lp-esp-toc { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 8px; }
.lp-esp-toc a {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 8px 16px;
}
.lp-esp-toc a:hover { color: #fff; background: rgba(255,255,255,0.16); }

.lp-esp-footnote { font-size: 12px; color: var(--muted); margin-top: 14px; }
.lp-esp-footnote--white { color: rgba(255,255,255,0.5); }

@media (max-width: 900px) {
  .lp-esp-hero { padding: 116px 24px 48px; }
  .lp-esp-section { padding: 52px 24px; }
  .lp-esp-eixo-band { padding: 40px 24px; }
}

/* ============================================================
   PLANO COMPLETO · SISTEMA EDITORIAL
   Uma malha 7/5 relaciona argumento e contexto; dados ocupam 12 colunas.
============================================================ */
.lp-plan-page .lp-esp-section {
  padding-top: clamp(88px, 8vw, 132px);
  padding-bottom: clamp(88px, 8vw, 132px);
}

.lp-plan-page .lp-esp-head,
.lp-plan-page .lp-esp-head--center {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(18px, 2vw, 30px);
  row-gap: 18px;
  align-items: end;
  max-width: none;
  margin: 0 0 clamp(44px, 5vw, 72px);
  text-align: left;
}

.lp-plan-page .lp-esp-head[style] { margin-top: clamp(88px, 8vw, 124px) !important; }
.lp-plan-page .lp-esp-head .lp-section-chip { grid-column: 1 / -1; justify-self: start; margin: 0; }
.lp-plan-page .lp-esp-head .lp-section-title {
  grid-column: 1 / span 8;
  margin: 0;
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.lp-plan-page .lp-esp-head .lp-section-sub {
  grid-column: 9 / -1;
  align-self: end;
  max-width: 46ch;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.72;
  text-wrap: pretty;
}
.lp-plan-page .lp-esp-head .lp-section-sub--white { color: rgba(255,255,255,.67); }

.lp-plan-page .lp-esp-lede {
  max-width: 54ch;
  margin: clamp(34px, 4vw, 58px) 0 clamp(34px, 4vw, 58px) auto;
  color: var(--ink-2);
  font-family: var(--f-sans);
  font-size: clamp(16px, 1.35vw, 19px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.72;
}
.lp-plan-page .lp-esp-lede strong { color: var(--azul); font-weight: 700; }
.lp-plan-page .lp-esp-lede--white { color: rgba(255,255,255,.76); }

.lp-plan-page .lp-esp-stats {
  gap: 0;
  margin-bottom: clamp(42px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lp-plan-page .lp-esp-stat {
  min-width: 0;
  padding: 25px clamp(16px, 2vw, 30px) 27px;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.lp-plan-page .lp-esp-stat + .lp-esp-stat { border-left: 1px solid var(--line); }
.lp-plan-page .lp-esp-stat__num { font-family: var(--f-display); font-size: clamp(28px, 2.6vw, 42px); line-height: 1; }
.lp-plan-page .lp-esp-stat__label { margin-top: 9px; }

.lp-plan-page .lp-esp-cards {
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 5px;
}
.lp-plan-page .lp-esp-card {
  min-width: 0;
  padding: clamp(24px, 2.6vw, 38px);
  border: 0;
  border-radius: 0;
}
.lp-plan-page .lp-esp-card__title { font-family: var(--f-display); font-size: clamp(18px, 1.6vw, 23px); line-height: 1.15; }
.lp-plan-page .lp-esp-card__text,
.lp-plan-page .lp-esp-card__list li { font-size: 14px; line-height: 1.62; }
.lp-plan-page .lp-esp-cards[style] { margin-top: clamp(30px, 3vw, 46px) !important; }

.lp-plan-page .lp-esp-table-wrap {
  margin-top: 10px;
  border-color: var(--line);
  border-radius: 5px;
}
.lp-plan-page .lp-esp-table { font-size: 14px; }
.lp-plan-page .lp-esp-table th { padding: 17px 20px; font-size: 11px; letter-spacing: .08em; }
.lp-plan-page .lp-esp-table td { padding: 17px 20px; line-height: 1.58; }
.lp-plan-page .lp-esp-footnote { max-width: 75ch; margin: 16px 0 0 auto; text-align: right; line-height: 1.55; }

.lp-plan-page .lp-esp-eixo-band {
  padding: clamp(48px, 5vw, 76px) var(--lp-grid-edge);
  display: grid;
  grid-template-columns: minmax(260px, 4fr) minmax(0, 8fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  overflow: hidden;
}
.lp-plan-page .lp-esp-eixo-band__copy { display: grid; justify-items: start; gap: 22px; }
.lp-plan-page .lp-esp-eixo-band__num { flex: 0 0 auto; }
.lp-plan-page .lp-esp-eixo-band__title { max-width: 11ch; font-size: clamp(30px, 3.8vw, 54px); line-height: 1.04; }
.lp-plan-page .lp-esp-eixo-band__image { display: block; width: 100%; aspect-ratio: 16 / 7; object-fit: cover; border-radius: 5px; box-shadow: 0 18px 52px rgb(5 8 45 / .22); }

@media (max-width: 900px) {
  .lp-plan-page .lp-esp-eixo-band { grid-template-columns: 1fr; gap: 30px; }
  .lp-plan-page .lp-esp-eixo-band__title { max-width: 15ch; }
  .lp-plan-page .lp-esp-eixo-band__image { aspect-ratio: 4 / 3; }
  .lp-plan-page .lp-esp-section { padding-top: 72px; padding-bottom: 72px; }
  .lp-plan-page .lp-esp-head,
  .lp-plan-page .lp-esp-head--center { display: block; margin-bottom: 38px; }
  .lp-plan-page .lp-esp-head .lp-section-chip { margin-bottom: 16px; }
  .lp-plan-page .lp-esp-head .lp-section-title { font-size: clamp(34px, 10vw, 48px); line-height: 1.06; }
  .lp-plan-page .lp-esp-head .lp-section-sub { max-width: 65ch; margin-top: 22px; font-size: 15px; }
  .lp-plan-page .lp-esp-lede { max-width: 65ch; margin: 30px 0; font-size: 16px; }
  .lp-plan-page .lp-esp-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-plan-page .lp-esp-stat:nth-child(odd) { border-left: 0; }
  .lp-plan-page .lp-esp-stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .lp-plan-page .lp-esp-footnote { text-align: left; }
}

@media (max-width: 560px) {
  .lp-plan-page .lp-esp-stats { grid-template-columns: 1fr; }
  .lp-plan-page .lp-esp-stat + .lp-esp-stat { border-top: 1px solid var(--line); border-left: 0; }
  .lp-plan-page .lp-esp-table th,
  .lp-plan-page .lp-esp-table td { padding: 14px 16px; }
}
