/* =========================================================
   PIXEL AI HUB — site.css
   Refinamento editorial · dark hero + corpo off-white Pixel
   ========================================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: var(--orange-impulse);
  --accent-hover: var(--orange-support);
  --density: 1;
  --motion: 1;
}

/* ===== VARIANTS (via body[data-variant]) ===== */
body[data-variant="conservadora"] {
  --accent: var(--orange-impulse);
  --page-hue: var(--bg-base);
  --pillar-bg: var(--paper);
}
body[data-variant="medium"] {
  --accent: var(--orange-impulse);
  --page-hue: var(--bg-base);
  --pillar-bg: var(--paper);
}
body[data-variant="ousada"] {
  --accent: var(--orange-impulse);
  --page-hue: var(--bg-base);
  --pillar-bg: var(--paper);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  overscroll-behavior-x: none;
  background: var(--ink);
}
body {
  background: var(--page-hue, var(--bg-base));
  color: var(--fg-1);
  font-family: var(--font-body);
  overscroll-behavior-x: none;
}

img, svg { max-width: 100%; display: block; }
a { border-bottom: 0; }

/* ===== Layout helpers ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 820px; }

.section { padding: calc(112px * var(--density)) 0; position: relative; }
.section--canvas { background: var(--bg-base); }
.section--paper { background: var(--paper); }
.section--dark {
  background: linear-gradient(180deg, var(--blue-core) 0%, var(--ink) 100%);
  color: var(--bg-base);
}
.section--dark .eyebrow { color: var(--orange-light); }
.section--dark .eyebrow::before { background: var(--orange-light); }
.section--dark h2 { color: #fff; }

.section-head { max-width: 880px; margin: 0 0 64px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-top: 16px;
}
.section-head .section-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  margin-top: 20px;
  max-width: 620px;
  text-wrap: pretty;
}
.section-head--center .section-lede { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center h2 { text-align: center; }
.section-head--light h2 { color: var(--bg-base); }
.section-head--light .eyebrow { color: var(--bg-base); }
.section-head--light .eyebrow--on-dark { color: var(--accent); }
.section-head--light .eyebrow--on-dark::before { background: var(--accent); }
.section-lede--on-dark,
.section-head .section-lede--on-dark { color: rgba(255, 255, 255, 0.92); font-weight: 500; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 20px; height: 1.5px;
  background: currentColor;
  display: inline-block;
}
.eyebrow--on-dark { color: var(--accent); }
.eyebrow--on-dark::before { background: var(--accent); }

em.editorial-mark, em.num-mark {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
em.num-mark--on-dark { color: var(--accent); }
em.num-mark { white-space: nowrap; }
@media (max-width: 720px) {
  em.num-mark, em.editorial-mark { white-space: normal; }
}
em.underline-mark {
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, rgba(254, 80, 0, 0.35) 60%, rgba(254, 80, 0, 0.35) 95%, transparent 95%);
  padding: 0 4px;
}

/* ===== SCROLL PROGRESS BAR ===== */
body::before {
  content: "";
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ink);
  z-index: 199;
  pointer-events: none;
}
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--orange-light), var(--accent));
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ===== STICKY BAR (aparece apenas no scroll) ===== */
.sticky-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transform: translateY(-100%);
  transition: transform var(--dur-slow) var(--ease-emphasis);
  background: var(--orange-impulse);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-top: env(safe-area-inset-top, 0);
}
.sticky-bar-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 12px 32px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap;
}
.sticky-pill {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.50);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sticky-copy { opacity: 1; color: #fff; font-weight: 600; }
.sticky-copy strong { color: #fff; font-weight: 800; }
.sticky-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--orange-impulse);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border: 0;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: background var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
}
.sticky-cta:hover { background: rgba(255,255,255,0.92); transform: translateY(-1px); color: var(--orange-impulse); }
.sticky-bar.is-visible { transform: translateY(0); }
@media (max-width: 700px) {
  .sticky-bar { font-size: 12px; }
  .sticky-bar-inner { gap: 12px; padding: 8px 16px; }
  .sticky-copy { display: none; }
}

/* ===== ALERT BAR (laranja, no topo do flow — some quando o usuário rola) ===== */
.alert-bar {
  position: relative; /* não fixa — sai com o scroll */
  z-index: 60;
  background: var(--orange-impulse);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: env(safe-area-inset-top, 0);
}
.alert-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 17px;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-align: center;
  min-height: 44px;
}
.alert-bar-inner strong { font-weight: 800; letter-spacing: 0.01em; }
.alert-bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  flex-shrink: 0;
}
.alert-bar-icon svg { width: 16px; height: 16px; }
@media (max-width: 720px) {
  .alert-bar-inner { padding: 9px 12px; font-size: 15px; min-height: 40px; gap: 8px; }
  .alert-bar-icon { width: 22px; height: 22px; }
  .alert-bar-icon svg { width: 13px; height: 13px; }
}
/* ===== NAVBAR ===== */
.nav {
  position: sticky; top: 0; z-index: 55;
  background: var(--ink);
  padding-top: env(safe-area-inset-top, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: top var(--dur-slow) var(--ease-emphasis),
              opacity var(--dur-slow) var(--ease-emphasis),
              transform var(--dur-slow) var(--ease-emphasis),
              visibility 0s linear 0s;
}
body.has-sticky-bar .nav { top: var(--sticky-bar-h, 44px); }
body.nav-hidden .nav {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  visibility: hidden;
  transition-delay: 0s, 0s, 0s, var(--dur-slow);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--fg-1);
  border: 0;
}
.nav-logo-img {
  height: 40px; width: auto; display: block;
}
.nav-logo { gap: 10px; }
.nav-wordmark--suffix {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-left: 14px;
  margin-left: 10px;
  border-left: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  line-height: 1;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-wordmark em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.nav-links {
  display: flex; gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-standard);
}
.nav-links a:hover { color: var(--orange-light); }
.nav-cta {
  background: var(--fg-1);
  color: var(--bg-base);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-standard);
}
.nav-cta:hover { background: var(--accent); }

/* Navbar — variante urgência (fundo azul, mensagem em laranja em destaque) */
.nav--urgent {
  background: var(--blue-core);
  border-bottom-color: rgba(255,255,255,0.18);
}
.nav--urgent .nav-urgency,
.nav--urgent .nav-urgency strong { color: var(--orange-impulse); }
.nav--urgent .nav-urgency-icon {
  color: var(--orange-impulse);
  background: rgba(254, 80, 0, 0.16);
}
.nav--urgent .nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.nav--urgent .nav-logo { justify-self: start; }
.nav--urgent .nav-logo-img { height: 40px; }
/* Navbar enxuta — só o logo, alinhado à esquerda, ocupando altura natural. */
.nav--urgent-split .nav-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 56px;
}
.nav--urgent-split .nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav--urgent-split .nav-logo-img { height: 38px; width: auto; max-width: 100%; }
.nav-urgency {
  justify-self: center;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
  white-space: nowrap;
}
.nav-urgency strong { font-weight: 800; color: #fff; letter-spacing: 0.01em; }
.nav-urgency-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}
.nav-urgency-icon svg { width: 16px; height: 16px; }
.nav-urgency-short { display: none; }
@media (max-width: 720px) {
  .nav-logo-img { height: 32px; }
  .nav--urgent .nav-inner { grid-template-columns: auto 1fr; gap: 12px; }
  .nav--urgent .nav-logo-img { height: 32px; }
  .nav--urgent-split .nav-inner {
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 52px;
  }
  .nav--urgent-split .nav-logo-img { height: 36px; }
  .nav-urgency {
    font-size: 13px;
    white-space: normal;
    line-height: 1.3;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
  .nav-urgency strong { text-align: left; }
  .nav-urgency-icon { width: 22px; height: 22px; flex-shrink: 0; }
  .nav-urgency-icon svg { width: 14px; height: 14px; }
  .nav-urgency-full { display: none; }
  .nav-urgency-short { display: inline; }
}
@media (max-width: 420px) {
  .nav-urgency { font-size: 12px; gap: 6px; }
  .nav-urgency-icon { width: 20px; height: 20px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-standard);
  position: relative;
  overflow: hidden;
}
.btn-sub {
  font-size: 12px;
  opacity: 0.75;
  font-weight: 500;
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,0.3);
  margin-left: 4px;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(254, 80, 0, 0.38); }
.btn--ghost {
  background: transparent;
  color: var(--fg-1);
  border: 1.5px solid rgba(16, 28, 126, 0.18);
}
.btn--ghost:hover { background: rgba(16, 28, 126, 0.06); border-color: var(--fg-1); }
.btn--dark {
  background: var(--ink);
  color: var(--bg-base);
}
.btn--dark:hover { background: var(--blue-core); }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--xl { padding: 20px 36px; font-size: 17px; }

.btn-foot {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--fg-3);
}
/* Em containers flex com gap (ex: .offer-price), o gap se adiciona à margin.
   O .btn-foot dentro do .offer-price precisa cancelar parte do gap pra ficar
   visualmente ancorado ao botão. */
.offer-price > .btn-foot { margin-top: -10px; } /* gap 16 - 10 = ~6px efetivo */

/* CTA pulse (controlled by --motion) */
.btn--primary.btn--xl {
  animation: ctaBreathe calc(2.8s / var(--motion, 1)) ease-in-out infinite;
}
@keyframes ctaBreathe {
  0%, 100% { box-shadow: 0 8px 20px rgba(254, 80, 0, 0.28); }
  50% { box-shadow: 0 8px 36px rgba(254, 80, 0, 0.48), 0 0 0 6px rgba(254, 80, 0, 0.08); }
}

/* ===== HERO ===== */
.hero {
  background: var(--ink);
  color: var(--bg-base);
  padding: 40px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 40%, transparent 75%);
}
.grid-pattern--dark {
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat calc(18s / var(--motion, 1)) ease-in-out infinite;
}
.hero-orb--1 { width: 420px; height: 420px; background: var(--orange-impulse); top: -120px; right: -120px; }
.hero-orb--2 { width: 360px; height: 360px; background: var(--lilac-deep); bottom: -80px; left: -80px; animation-delay: -6s; opacity: 0.28; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: none;
  margin: 0;
  padding-left: max(32px, calc((100vw - 1216px) / 2));
  padding-right: 3vw;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
@media (min-width: 1100px) {
  .hero-vsl { justify-self: stretch; }
}
@media (max-width: 960px) {
  .hero-inner { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Logo da Pixel AI Hub no início do hero, ao lado da cápsula "Pré-lançamento". */
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.hero-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.hero-eyebrow-row .eyebrow-badge {
  margin-bottom: 0;
}
@media (max-width: 720px) {
  .hero-eyebrow-row { gap: 10px; margin-bottom: 22px; flex-wrap: nowrap; }
  .hero-logo-img { height: 28px; }
  .hero-eyebrow-row .eyebrow-badge {
    padding: 6px 11px;
    font-size: 10.5px;
    letter-spacing: 0.03em;
    min-width: 0;
  }
}
@media (max-width: 380px) {
  .hero-eyebrow-row { gap: 8px; }
  .hero-logo-img { height: 26px; }
  .hero-eyebrow-row .eyebrow-badge { font-size: 10px; padding: 5px 10px; }
}
.eyebrow-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  background: rgba(254, 80, 0, 0.12);
  border: 1px solid rgba(254, 80, 0, 0.45);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-light);
  box-shadow: 0 0 12px var(--orange-light);
  animation: dotPulse calc(2s / var(--motion, 1)) ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--bg-base);
  text-wrap: balance;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(120deg, var(--orange-impulse), var(--orange-light) 50%, var(--orange-impulse));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer calc(6s / var(--motion, 1)) ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.headline-ellipsis { color: var(--accent); }

.hero-kicker {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
  max-width: 560px;
  text-wrap: pretty;
}
/* Highlight scaneável — trechos-chave do hero em laranja-claro pra escaneio rápido. */
.hero-text .hl {
  color: var(--orange-light);
  font-weight: 700;
}
.hero-kicker--lead .hl { color: var(--orange-light); }

/* Frase de transição que apresenta a lista de tópicos do hero. */
.hero-kicker--lead {
  margin-top: 16px;
  margin-bottom: -6px; /* cola visualmente nos tópicos */
  font-size: 19px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
}
.hero-kicker--lead strong {
  font-weight: 700;
  color: #fff;
}
@media (max-width: 720px) {
  .hero-kicker--lead { font-size: 17px; }
}

.hero-checks {
  list-style: none;
  margin: 28px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.hero-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
}
.hero-checks .check {
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-display);
}
@media (max-width: 540px) {
  .hero-checks { grid-template-columns: 1fr; }
}

.hero-cta-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 36px;
}
@media (max-width: 960px) {
  .hero-cta-row { justify-content: center; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
}
.hero-cta-row .btn--ghost {
  color: var(--bg-base);
  border-color: rgba(255,255,255,0.2);
}
.hero-cta-row .btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
/* Posicionamento dos pillars no grid do hero-inner:
   - Desktop: column 1, row 2 (logo abaixo do CTA, no mesmo "trilho" do texto).
     O VSL na column 2 spanea row 1 e 2 pra ficar verticalmente equilibrado.
   - Mobile (≤960px): grid colapsa pra 1 coluna e os pillars caem
     naturalmente depois do VSL. */
.hero-inner {
  grid-template-rows: auto auto;
  align-items: start;
  row-gap: 0; /* o gap original era simétrico; aqui só queremos gap entre colunas */
}
.hero-inner > .hero-text { grid-column: 1; grid-row: 1; }
.hero-inner > .hero-vsl { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.hero-inner > .hero-meta--pillars {
  grid-column: 1;
  grid-row: 2;
  margin-top: 0; /* o CTA já tem margin-bottom — sem espaço extra */
}
@media (max-width: 960px) {
  .hero-inner > .hero-text,
  .hero-inner > .hero-vsl,
  .hero-inner > .hero-meta--pillars {
    grid-column: 1;
    grid-row: auto;
    align-self: auto;
  }
  .hero-inner > .hero-meta--pillars { margin-top: 16px; }
}
.hero-meta-item {
  display: flex; flex-direction: column; gap: 6px; min-width: 0;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 0 20px;
}
/* Borda entre items (divisórias verticais no desktop). Usa :not(:first-of-type)
   pra ignorar o <hr> intercalado entre row 1 e row 2 (que existe pro mobile). */
.hero-meta-item:not(:first-of-type) {
  border-left: 1px solid rgba(255,255,255,0.12);
}
/* hr divider só aparece no mobile — em desktop fica escondido (pillars em 4 colunas). */
.hero-meta-row-divider { display: none; }
@media (max-width: 720px) {
  .hero-meta--pillars {
    border-top: 0;
    padding-top: 8px;
  }
  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 0; /* gaps controlados pelas margens do divider e padding dos itens */
    justify-items: stretch;
    text-align: center;
  }
  .hero-meta-item { align-items: center; }
  /* No mobile a regra do desktop (que coloca border-left em items 2,3,4) precisa
     ser zerada — Mentoria (item 3) está em col 1, não pode ter linha à esquerda
     dela porque não tem nada do lado. */
  .hero-meta-item:not(:first-of-type) { border-left: 0; }
  /* Re-aplica border-left só nos items da coluna 2 (Ferramentas e Suporte). */
  .hero-meta-item:nth-of-type(2),
  .hero-meta-item:nth-of-type(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }
  .hero-meta-item { padding-top: 4px; padding-bottom: 4px; }
  /* Divider horizontal real entre row 1 e row 2, com gap no centro. */
  .hero-meta-row-divider {
    display: block;
    grid-column: 1 / -1;
    height: 1px;
    border: 0;
    margin: 6px 16px; /* +6px no total entre as 2 rows */
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.18) 0,
      rgba(255, 255, 255, 0.18) calc(50% - 22px),
      transparent calc(50% - 22px),
      transparent calc(50% + 22px),
      rgba(255, 255, 255, 0.18) calc(50% + 22px),
      rgba(255, 255, 255, 0.18) 100%
    );
  }
}
.hero-meta-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
  color: var(--bg-base);
}
.hero-meta-label {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0;
}
.hero-meta-sep {
  width: 1px; height: 28px;
  background: rgba(255,255,255,0.12);
}
@media (max-width: 540px) { .hero-meta-sep { display: none; } }

/* HERO VSL */
.hero-vsl { position: relative; }
.vsl-frame {
  background: var(--blue-core);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(254, 80, 0, 0.15);
}
.vsl-frame-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vsl-dot { width: 10px; height: 10px; border-radius: 50%; }
.vsl-dot--r { background: #ff5f56; }
.vsl-dot--y { background: #ffbd2e; }
.vsl-dot--g { background: #27c93f; }
.vsl-chrome-label {
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}
.vsl-video {
  background:
    linear-gradient(135deg, var(--blue-core) 0%, var(--ink) 100%);
  position: relative;
  overflow: hidden;
}
.vsl-video .vsl-horizontal { display: block; }
.vsl-video .vsl-vertical { display: none; }
@media (max-width: 768px) {
  .vsl-video .vsl-horizontal { display: none; }
  .vsl-video .vsl-vertical { display: block; padding: 8px; }
}
.vsl-video::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(254, 80, 0, 0.18), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(216, 179, 253, 0.12), transparent 50%);
}
.vsl-play {
  position: relative; z-index: 2;
  color: var(--orange-light);
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-standard);
}
.vsl-play:hover { transform: scale(1.08); }
.vsl-caption {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  z-index: 2;
}
.vsl-caption-title {
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: 4px;
}
.vsl-caption-time {
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}
.vsl-placeholder-tag {
  position: absolute; top: 14px; right: 14px;
  padding: 4px 10px;
  background: rgba(254, 80, 0, 0.12);
  border: 1px dashed var(--accent);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-vsl-note {
  margin-top: 14px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: 13px;
  color: rgba(242, 241, 237, 0.55);
}
.hero-vsl-cta { display: none; }
@media (max-width: 960px) {
  .hero-vsl-cta {
    display: inline-flex;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }
}

/* ===== AUTORIDADE / LEDE ===== */
.autoridade {
  padding: 48px 0;
  border-bottom: 1px solid rgba(16, 28, 126, 0.08);
  background: var(--bg-base);
}
.autoridade-lede {
  text-align: center;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  color: var(--fg-2);
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
  text-wrap: balance;
}
.autoridade-lede strong {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--fg-1);
  font-weight: 700;
}

/* ===== WORK LEVELS (desafio) ===== */
.work-levels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .work-levels { grid-template-columns: 1fr; } }

.work-level {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--paper);
  position: relative;
}
.work-level-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}
.work-level-icon {
  display: inline-flex;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  background: rgba(16, 28, 126, 0.08);
  color: var(--blue-core);
  border-radius: 10px;
  flex-shrink: 0;
}
.work-level--tat .work-level-icon {
  background: rgba(216, 179, 253, 0.35);
  color: var(--lilac-deep);
}
.work-level--est .work-level-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--orange-light);
}
.work-level--op { background: rgba(16, 28, 126, 0.04); }
.work-level--tat { background: rgba(216, 179, 253, 0.2); }
.work-level--est {
  background: var(--ink);
  color: var(--bg-base);
  border-color: var(--ink);
}
.work-level-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(16, 28, 126, 0.08);
  color: var(--fg-1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}
.work-level--est .work-level-tag {
  background: var(--accent);
  color: #fff;
}
.work-level p { color: var(--fg-2); font-size: 17px; line-height: 1.55; }
.work-level--est p { color: rgba(242, 241, 237, 0.85); }

/* Work levels — título + cápsula de ação flutuante */
.work-levels { margin-top: 28px; }
.work-level { padding-top: 40px; }
.work-level-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg-1);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}
.work-level--est .work-level-title { color: #fff; }
.work-level-callout {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(254, 80, 0, 0.28);
  white-space: nowrap;
  text-align: center;
  z-index: 2;
}
@media (max-width: 540px) {
  .work-level-title { font-size: 20px; }
  .work-level-callout {
    font-size: 10.5px;
    padding: 7px 10px;
    letter-spacing: 0.03em;
    white-space: nowrap;
    max-width: calc(100% - 8px);
  }
}

.desafio-insight {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 780px;
  margin-bottom: 40px;
  text-wrap: pretty;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 960px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-card {
  padding: 24px 22px 26px;
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--dur-base) var(--ease-standard);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pain-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.pain-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
  -webkit-text-stroke: 2px rgba(254, 80, 0, 0.45);
}
.pain-icon {
  display: inline-flex;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  background: rgba(254, 80, 0, 0.1);
  color: var(--accent);
  border-radius: 10px;
  margin: 0;
}
.pain-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.pain-card:hover .pain-number {
  color: var(--accent);
  -webkit-text-stroke-width: 0;
}
.pain-label {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg-1);
  margin: 0 0 8px;
}
.pain-card p { font-size: 17px; color: var(--fg-2); line-height: 1.55; }

.resolve-box {
  padding: 36px 40px;
  background: var(--ink);
  color: var(--bg-base);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.resolve-box::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(254, 80, 0, 0.18), transparent 50%);
}
.resolve-eyebrow {
  position: relative; z-index: 1;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 12px;
}
.resolve-line {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--bg-base);
  margin: 0;
}
.resolve-line em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--orange-light);
}
.resolve-line strong { color: var(--accent); font-weight: 700; }

/* ===== PILLARS ===== */
.pillar {
  padding: 48px 0;
  border-bottom: 1px solid rgba(16, 28, 126, 0.08);
}
.pillar:first-of-type { padding-top: 24px; }
.pillar:last-of-type { border-bottom: 0; padding-bottom: 0; }

.pillar-head { max-width: 780px; margin-bottom: 32px; }
.pillar-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}
.pillar-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.pillar-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.pillar-head h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin-bottom: 14px;
  text-wrap: balance;
}
.pillar-head p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 680px;
  text-wrap: pretty;
}

.pillar-grid {
  display: grid;
  gap: 16px;
}
.pillar-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .pillar-grid--3 { grid-template-columns: 1fr; } }

.pillar-card {
  padding: 28px 26px;
  background: linear-gradient(180deg, var(--blue-core) 0%, var(--ink) 100%);
  color: #fff;
  border: 1px solid var(--blue-core);
  border-radius: var(--radius-md);
  position: relative;
  transition: all var(--dur-base) var(--ease-standard);
}
.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(16, 28, 126, 0.22);
}
.pillar-card.pillar-card--featured {
  background: linear-gradient(180deg, var(--blue-support) 0%, var(--blue-core) 100%);
  border: 1px solid var(--blue-support);
  box-shadow: 0 12px 28px rgba(16, 28, 126, 0.28);
}

.pillar-card-icon {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: rgba(254, 80, 0, 0.1);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 14px;
}
.pillar-card--featured .pillar-card-icon { background: rgba(255,255,255,0.08); }
.pillar-card-tag {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  display: block; margin-bottom: 8px;
}
.pillar-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.pillar-card p { font-size: 17px; color: rgba(255, 255, 255, 0.88); line-height: 1.55; }
.pillar-card p strong { color: #fff; }
.pillar-card-tag { color: var(--orange-light); }
.pillar-card-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--orange-light);
}
.pillar-card-badge {
  position: absolute; top: 20px; right: 20px;
  padding: 4px 10px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.pillar-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.pillar--flip .pillar-split { grid-template-columns: 320px minmax(0, 1fr); }
@media (max-width: 860px) {
  .pillar-split, .pillar--flip .pillar-split { grid-template-columns: 1fr; gap: 36px; justify-items: center; }
  .pillar--flip .pillar-split-content { order: 1; }
  .pillar--flip .mockup-slot { order: 2; }
}

.pillar-split-content .pillar-meta { margin-bottom: 14px; }
.pillar-split-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin-bottom: 12px;
}
.pillar-split-content .pillar-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  margin-bottom: 24px;
}

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list--inline { margin-top: 20px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(180deg, var(--blue-core) 0%, var(--ink) 100%);
  border: 1px solid var(--blue-core);
  border-radius: var(--radius-md);
  color: #fff;
}
.feature-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--orange-light);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.feature-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.feature-list p { font-size: 17px; color: rgba(255, 255, 255, 0.88); line-height: 1.55; margin: 0; }
.feature-list p strong {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: normal;
  margin-bottom: 0;
  color: #fff;
}

.pillar-note {
  margin-top: 24px;
  padding: 18px 22px;
  background: rgba(254, 80, 0, 0.10);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.55;
}
.pillar-note strong { color: var(--accent); }

.pillar--compact { padding: 40px 0; }

/* ===== PHONE MOCKUP FRAMES ===== */
.mockup-slot { position: relative; }
.mockup-slot--phone { display: flex; flex-direction: column; align-items: center; }

/* ===== DESKTOP MOCKUP (browser frame with body) ===== */
.desktop-mockup {
  margin-top: 44px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(16, 28, 126, 0.14),
    0 6px 18px rgba(16, 28, 126, 0.06);
}
@media (max-width: 720px) {
  .mockup-slot { display: flex; justify-content: center; width: 100%; }
  .desktop-mockup { width: 100%; }
}
.desktop-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--neutral-soft);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--fg-3);
}
.desktop-chrome--dark { background: #0c1640; border-bottom-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.62); }
.desktop-dot { width: 10px; height: 10px; border-radius: 50%; }
.desktop-dot--r { background: #ff5f57; }
.desktop-dot--y { background: #febc2e; }
.desktop-dot--g { background: #28c840; }
.desktop-chrome-url {
  margin-left: 12px;
  padding: 4px 14px;
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: -0.01em;
  color: var(--fg-2);
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.desktop-chrome-url--dark { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }

/* Formação — player layout */
.desktop-body--player {
  display: grid;
  grid-template-columns: 1fr 300px;
  min-height: 380px;
  background: var(--paper);
}
@media (max-width: 780px) { .desktop-body--player { grid-template-columns: 1fr; } }
.player-video {
  position: relative;
  padding: 32px 28px;
  background:
    radial-gradient(circle at 30% 30%, rgba(254,80,0,0.18), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(216,179,253,0.12), transparent 55%),
    linear-gradient(180deg, var(--blue-core) 0%, var(--ink) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  min-height: 320px;
}
.player-video-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(254,80,0,0.18);
  color: var(--orange-light);
  border-radius: 999px;
}
.player-video-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
  color: #fff;
  max-width: 460px;
}
.player-video-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
}
.player-play {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  padding-left: 3px;
  box-shadow: 0 8px 20px rgba(254,80,0,0.45);
}
.player-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  overflow: hidden;
}
.player-progress-bar {
  display: block;
  width: 32%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--orange-light));
}
.player-time { font-family: var(--font-mono); font-size: 11px; opacity: 0.75; letter-spacing: -0.01em; }
.player-live-tag {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 700;
  padding: 4px 10px;
  background: rgba(239, 68, 68, 0.2);
  color: #ff9e9e;
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.player-sidebar {
  background: var(--paper);
  border-left: 1px solid var(--border-subtle);
  padding: 18px 16px;
  max-height: 380px;
  overflow: hidden;
}
.player-sidebar-head { padding: 0 4px 14px; border-bottom: 1px solid var(--border-subtle); margin-bottom: 8px; }
.player-sidebar-head strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--fg-1); }
.player-sidebar-head small { font-size: 11px; color: var(--fg-3); }
.player-modules { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.player-module {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 6px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--fg-2);
}
.player-module > span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-3);
  padding-top: 2px;
}
.player-module strong { display: block; font-weight: 600; color: var(--fg-1); font-size: 12.5px; line-height: 1.3; }
.player-module small { font-size: 10.5px; color: var(--fg-3); }
.player-module.is-done strong { color: var(--fg-2); }
.player-module.is-done small::before { content: "✓ "; color: var(--state-success); }
.player-module.is-active { background: rgba(254,80,0,0.08); }
.player-module.is-active strong { color: var(--accent); }
.player-module.is-active small { color: var(--action-primary-hover); font-weight: 600; }

/* Encontros — live meeting layout */
.desktop-body--meeting {
  display: grid;
  grid-template-columns: 1fr 260px;
  min-height: 380px;
  background: #0c1640;
  color: #fff;
}
@media (max-width: 780px) { .desktop-body--meeting { grid-template-columns: 1fr; } }
.meeting-live {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(239, 68, 68, 0.25);
  color: #ffb4b4;
  border: 1px solid rgba(239, 68, 68, 0.5);
  border-radius: 999px;
  letter-spacing: 0.1em;
}
.meeting-main { padding: 20px; position: relative; display: flex; flex-direction: column; }
.meeting-speaker {
  flex: 1;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-support), var(--ink));
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
}
.meeting-speaker-avatar {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  opacity: 0.9;
}
.meeting-speaker-tag {
  position: relative;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  font-size: 12px;
  color: #fff;
}
.meeting-speaker-tag strong { display: block; font-weight: 700; font-size: 13px; }
.meeting-speaker-tag small { color: rgba(255,255,255,0.65); font-size: 10.5px; }
.meeting-speaker-badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(254,80,0,0.25);
  color: var(--orange-light);
  border: 1px solid rgba(254,80,0,0.5);
  border-radius: 999px;
}
.meeting-grid {
  padding: 20px 16px;
  border-left: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: start;
}
.meeting-tile {
  aspect-ratio: 4/3;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 6px 8px;
}
.meeting-tile-name {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border-radius: 4px;
  color: #fff;
}
.meeting-tile--more {
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
}
.meeting-tile--more span { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.meeting-tile--more small { font-size: 10px; opacity: 0.65; letter-spacing: 0.06em; text-transform: uppercase; }

.phone-frame {
  width: 288px;
  background: #0a0a0a;
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    0 30px 60px rgba(16, 28, 126, 0.18),
    0 0 0 1.5px rgba(16, 28, 126, 0.08),
    inset 0 0 0 2px rgba(255,255,255,0.04);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 24px;
  background: #0a0a0a;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone-screen {
  background: #111827;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9 / 18;
  color: #fff;
  display: flex; flex-direction: column;
}
.phone-screen--light { background: var(--bg-base); color: var(--fg-1); }
.phone-statusbar {
  display: flex; justify-content: space-between;
  padding: 14px 28px 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}
.phone-statusbar--light { color: var(--fg-1); }
.phone-status-icons { opacity: .7; }

/* WhatsApp mockup */
.whatsapp-header {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px 10px;
  background: #202c33;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.wa-back { color: rgba(255,255,255,0.6); font-size: 18px; }
.wa-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
}
.wa-title strong { display: block; font-size: 12px; color: #fff; font-weight: 600; }
.wa-title small { font-size: 10px; color: #67d693; }
.whatsapp-feed {
  flex: 1;
  padding: 12px 10px;
  background: #0b141a;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 11px;
  overflow: hidden;
}
.wa-msg {
  max-width: 80%;
  padding: 6px 9px 14px;
  border-radius: 8px;
  position: relative;
  line-height: 1.35;
}
.wa-msg--in { background: #202c33; align-self: flex-start; border-top-left-radius: 0; }
.wa-msg--out { background: #005c4b; align-self: flex-end; border-top-right-radius: 0; }
.wa-msg strong { color: var(--orange-light); font-size: 10px; font-weight: 700; display: block; margin-bottom: 2px; }
.wa-msg--out strong { display: none; }
.wa-msg p { font-size: 11px; color: rgba(255,255,255,0.92); margin: 0; line-height: 1.4; }
.wa-time {
  position: absolute; bottom: 2px; right: 6px;
  font-size: 9px;
  color: rgba(255,255,255,0.45);
}
.wa-img-placeholder {
  display: block;
  padding: 14px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 4px;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-bottom: 4px;
}
.whatsapp-input {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px;
  background: #1f2c33;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.wa-send {
  background: var(--accent);
  color: #fff;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* Cérebro mockup */
.cerebro-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px 12px;
  border-bottom: 1px solid rgba(16, 28, 126, 0.08);
}
.cerebro-title { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.cerebro-sync { font-size: 10px; color: var(--state-success); font-weight: 600; }
.cerebro-stat { padding: 16px; text-align: center; }
.cerebro-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 42px; font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.cerebro-stat-label {
  font-size: 11px; color: var(--fg-3); letter-spacing: 0.08em; text-transform: uppercase;
}
.cerebro-skills { padding: 0 12px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.skill-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  background: var(--paper);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}
.skill-ico { font-size: 16px; }
.skill-row strong { display: block; font-size: 11px; font-weight: 700; color: var(--fg-1); }
.skill-row small { font-size: 9px; color: var(--fg-3); }
.cerebro-agents { padding: 12px; background: var(--paper); border-top: 1px solid var(--border-subtle); }
.cerebro-agents-label { font-size: 10px; color: var(--fg-3); letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.cerebro-agents-chips { display: flex; flex-wrap: wrap; gap: 4px; }
.agent-chip {
  padding: 3px 8px;
  background: rgba(16, 28, 126, 0.08);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  color: var(--fg-1);
}

/* Newsletter mockup */
.newsletter-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.newsletter-mail-icon {
  width: 32px; height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.newsletter-header strong { display: block; font-size: 13px; color: var(--fg-1); }
.newsletter-header small { font-size: 11px; color: var(--fg-3); }
.newsletter-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(16,28,126,0.05);
}
.newsletter-item--active { background: rgba(254, 80, 0, 0.05); }
.newsletter-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 6px; flex-shrink: 0; }
.newsletter-item strong { display: block; font-size: 11px; color: var(--fg-1); line-height: 1.3; margin-bottom: 2px; }
.newsletter-item small { font-size: 9px; color: var(--fg-3); }
.newsletter-preview {
  padding: 14px 16px;
  background: var(--paper);
  flex: 1;
}
.newsletter-preview-eyebrow {
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--fg-3); font-weight: 700; display: block; margin-bottom: 6px;
}
.newsletter-preview h5 { font-size: 13px; font-weight: 700; color: var(--fg-1); margin-bottom: 6px; line-height: 1.25; }
.newsletter-preview p { font-size: 10px; color: var(--fg-2); line-height: 1.5; }

.mockup-replace-tag { display: none; }
.mockup-replace-tag--legacy {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(254, 80, 0, 0.08);
  border: 1px dashed var(--accent);
  color: var(--accent);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== PROOF GRID ===== */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.proof-card.proof-card--clone-prev,
.proof-card.proof-card--clone-next { display: none; }
@media (max-width: 960px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .proof-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline-start: 20px;
    touch-action: pan-x pan-y;
    padding: 4px 20px 12px;
    margin: 0;
    max-width: none;
    width: 100%;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .proof-grid::-webkit-scrollbar { display: none; }
  .proof-grid .proof-card {
    flex: 0 0 calc(100vw - 80px);
    max-width: calc(100vw - 80px);
    scroll-snap-align: start;
  }
  .proof-card.proof-card--clone-next { display: flex; flex-direction: column; gap: 18px; }
}

.proof-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.proof-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(16, 28, 126, 0.22);
  cursor: pointer;
  border: 0;
  padding: 0;
  transition: background var(--dur-base, 200ms) ease, transform var(--dur-base, 200ms) ease;
}
.proof-dot.is-active {
  background: var(--accent);
  transform: scale(1.4);
  animation: proofDotPulse 2.4s ease-in-out infinite;
}
@keyframes proofDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(254, 80, 0, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(254, 80, 0, 0); }
}
@media (max-width: 620px) {
  .proof-dots { display: flex; }
}

.proof-card {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}
.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(254, 80, 0, 0.10);
  border-color: rgba(254, 80, 0, 0.35);
}
.proof-card-image {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-subtle);
  height: 440px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.proof-card-image img {
  width: 100%;
  height: auto;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 960px) { .proof-card-image { height: 420px; } }
@media (max-width: 620px) { .proof-card-image { height: 380px; } }
.proof-tag {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-core);
  letter-spacing: -0.01em;
  line-height: 1.25;
  padding: 2px 0 2px 12px;
  border-left: 3px solid var(--accent);
  background: transparent;
  border-radius: 0;
  text-transform: none;
}
.proof-quote {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-1);
  margin: 0;
  font-weight: 400;
}
.proof-quote strong { color: var(--fg-1); font-weight: 700; }
.proof-card footer {
  display: flex; align-items: center; gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--fg-3);
}
.proof-card--featured footer { border-top-color: rgba(255,255,255,0.1); color: rgba(242, 241, 237, 0.65); }
.proof-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-1);
}
.proof-disclaimer {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--fg-3);
  font-style: italic;
}

/* ===== BAND CTA ===== */
.bandcta {
  background: var(--accent);
  color: #fff;
  padding: 64px 0 72px;
  overflow: hidden;
  position: relative;
}
.bandcta-marquee-wrap {
  position: relative;
  width: 100%;
  max-width: 100vw;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 32px;
  margin-bottom: 32px;
  overflow: hidden;
}
.bandcta-marquee {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.6);
  animation: marquee calc(15s / var(--motion, 1)) linear infinite;
  will-change: transform;
}
.bandcta-marquee-set {
  display: flex;
  gap: 24px;
  padding-right: 24px;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.bandcta-content {
  text-align: center;
  padding: 0 32px;
}
.bandcta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
  text-wrap: balance;
}
.bandcta-content p { color: rgba(255,255,255,0.9); font-size: 16px; margin-bottom: 28px; }
.bandcta-content h2 em.num-mark,
.bandcta-content h2 em.num-mark--on-dark,
.bandcta-content h2 em.editorial-mark {
  color: var(--blue-core);
  font-style: normal;
}
.bandcta .btn--dark { background: var(--ink); color: #fff; }
.bandcta .btn--dark:hover { background: var(--blue-core); color: #fff; }
.bandcta .btn--dark:hover { background: var(--ink); color: #fff; }

/* ===== ROADMAP ===== */
.roadmap {
  display: flex; flex-direction: column;
  max-width: 820px;
  margin: 0;
}
.roadmap-item {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 24px 0;
  border-bottom: 1px dashed rgba(16, 28, 126, 0.15);
}
.roadmap-item:last-child { border-bottom: 0; }
.roadmap-marker {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--ink);
  color: var(--orange-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.roadmap-when {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.roadmap-content h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg-1);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.roadmap-content p { font-size: 17px; color: var(--fg-2); line-height: 1.55; }
.roadmap-content p strong { color: var(--fg-1); }

/* ===== FOUNDERS ===== */
.founders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .founders { grid-template-columns: 1fr; } }

.founder {
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  margin: 0;
  background: var(--accent);
}
.founder-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
}
.founder-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--lilac-connect), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--ink);
}
.founder-avatar::after {
  content: attr(data-initial);
}
.founder-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg-1);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.founder-role {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.founder p { font-size: 17px; color: var(--fg-2); line-height: 1.6; }

/* ===== OFFER ===== */
.section--offer {
  background: var(--ink);
  color: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.offer-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.5; }
.offer-container { position: relative; z-index: 2; }

.offer-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  color: var(--fg-1);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.35),
    0 20px 60px rgba(254, 80, 0, 0.28),
    0 0 0 1px rgba(254, 80, 0, 0.12);
  position: relative;
  border-top: 3px solid var(--accent);
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(254, 80, 0, 0.3), transparent 40%, transparent 60%, rgba(254, 80, 0, 0.2));
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
}
@media (max-width: 640px) { .offer-card { padding: 28px 20px; } }
.offer-card-head { margin-bottom: 28px; }
.offer-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-stack { margin-bottom: 28px; }
.offer-stack-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg-1);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--border-subtle);
}
.stack-list { list-style: none; }
.stack-list li {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  padding: 13px 0;
  font-size: 16px;
  color: var(--fg-1);
  border-bottom: 1px solid rgba(16,28,126,0.08);
  align-items: baseline;
}
.stack-list li:last-child { border-bottom: 0; }
.stack-list li .stack-value { text-decoration: line-through; text-decoration-color: var(--accent); text-decoration-thickness: 1.5px; color: var(--fg-1); font-weight: 700; font-size: 14px; }
.stack-list li .stack-value--bonus { text-decoration: none; color: #fff; font-size: 12px; }
.stack-list li.stack-highlight { background: rgba(254, 80, 0, 0.06); margin: 0 -12px; padding: 10px 12px; border-radius: 8px; border-bottom: 0; }
.stack-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}
.stack-label { line-height: 1.4; font-weight: 700; }
.stack-value {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 600;
  white-space: nowrap;
}
.stack-value--bonus {
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.stack-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1.5px solid var(--fg-1);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg-1);
}
.stack-total-num {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
}

.offer-soon {
  padding: 20px;
  background: rgba(216, 179, 253, 0.18);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}
.offer-soon-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lilac-deep);
  margin-bottom: 10px;
}
.offer-soon ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.offer-soon li {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 4px 10px;
  align-items: baseline;
  font-size: 15px;
  color: var(--fg-2);
}
.offer-soon-label { line-height: 1.4; font-weight: 700; }
.offer-soon li small {
  font-family: var(--font-mono);
  color: var(--fg-1);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1.5px;
}
@media (max-width: 480px) {
  .offer-soon li { grid-template-columns: 20px 1fr; }
  .offer-soon li small { grid-column: 2; padding-top: 2px; }
}
.offer-soon-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(216, 179, 253, 0.4);
  font-size: 14px;
  color: var(--lilac-deep);
}
.offer-soon-total strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.offer-price {
  text-align: center;
  padding: 8px 0 16px;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
  /* Center the price comparison vertically: offset the scroll target so the
     R$ 247 (the focal price) lands near the middle of the viewport. */
  scroll-margin-top: calc(50vh - 320px);
}
@media (max-width: 768px) {
  .offer-price { scroll-margin-top: calc(50vh - 255px); }
}
.price-anchor {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  margin-bottom: 8px;
  color: #d32a2a;
}
.price-anchor-label {
  font-size: 13px;
  font-weight: 800;
  color: #d32a2a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-anchor-value {
  font-size: 20px;
  font-weight: 800;
  color: #d32a2a;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-color: #d32a2a;
  text-decoration-thickness: 2px;
}
.price-vs {
  display: block;
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--fg-3);
  margin: 6px 0 8px;
  letter-spacing: 0.02em;
}
.price-prelaunch-label {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.price-locked-tag {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 8px 0 18px;
  padding: 0;
  background: transparent;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.price-big {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-display);
  color: var(--fg-1);
  letter-spacing: -0.04em;
  margin: 0;
}
.price-currency { font-size: 32px; font-weight: 700; color: var(--accent); }
.price-num {
  font-size: 112px; font-weight: 900; color: var(--accent); line-height: 1;
  text-shadow: 0 6px 16px rgba(254, 80, 0, 0.18);
}
.price-period { font-size: 22px; font-weight: 500; color: var(--accent); }
.price-plan {
  display: block;
  /* Cancela o gap (16px) do .offer-price pra ficar colado no preço. */
  margin-top: -14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
.price-pretty {
  display: inline-block;
  font-size: 14px;
  color: var(--fg-1);
  margin: 0 0 14px;
  padding: 8px 16px;
  background: rgba(254, 80, 0, 0.10);
  border: 1px solid rgba(254, 80, 0, 0.35);
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.price-pretty strong { color: var(--accent); font-weight: 800; }

.offer-guarantee {
  display: flex; gap: 16px; align-items: center;
  padding: 20px;
  margin-top: 24px;
  background: rgba(16, 28, 126, 0.04);
  border-radius: var(--radius-md);
}
.offer-guarantee-seal { color: var(--accent); flex-shrink: 0; }
.offer-guarantee strong {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--fg-1);
  display: block;
  margin-bottom: 4px;
}
.offer-guarantee p { font-size: 13.5px; color: var(--fg-2); line-height: 1.5; margin: 0; }

/* ===== GARANTIA ===== */
.guarantee-bubble {
  position: relative;
  display: inline-block;
  background: var(--blue-support);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  border-radius: 18px 18px 18px 4px;
  padding: 16px 22px;
  margin: 0 0 32px;
  max-width: 460px;
}
.guarantee-bubble p {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 19px;
  line-height: 1.35;
  color: #fff;
  margin: 0;
}
.guarantee-bubble-tail {
  position: absolute;
  bottom: -10px; left: 18px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 12px 0 0;
  border-color: var(--blue-support) transparent transparent transparent;
}
.guarantee-intro {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
}
.guarantee-intro strong { color: #fff; }
.guarantee-verb {
  display: inline;
  font-weight: 700;
  color: var(--accent);
}
.guarantee-lede {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 24px;
  color: var(--fg-1);
  margin-bottom: 20px;
  line-height: 1.4;
}
.guarantee-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}
@media (max-width: 640px) { .guarantee-list { grid-template-columns: 1fr; } }
.guarantee-list li {
  display: block;
  padding-left: 24px;
  position: relative;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.55;
}
.guarantee-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.guarantee-signoff { margin-top: 32px; }
.guarantee-signoff p { font-size: 17px; color: rgba(255, 255, 255, 0.82); line-height: 1.6; margin-bottom: 12px; }
.guarantee-signoff p strong { color: #fff; }
.guarantee-signoff .strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.guarantee-sig {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.guarantee-sig span {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 20px;
  color: #fff;
  display: block;
}
.guarantee-sig small { font-size: 13px; color: rgba(255, 255, 255, 0.55); }

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-standard);
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--fg-1);
  display: flex; align-items: center;
  list-style: none;
  position: relative;
  padding-right: 52px;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--accent);
  transition: transform var(--dur-base) var(--ease-standard);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  padding: 0 24px 20px;
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.65;
  margin: 0;
}

/* ===== FINAL ===== */
.final {
  padding: 96px 0;
  background: var(--ink);
  color: var(--bg-base);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(254, 80, 0, 0.2), transparent 60%);
}
.final h2 {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--bg-base);
  margin-bottom: 36px;
  text-wrap: balance;
}
.final .btn { position: relative; z-index: 1; }
.final-highlight {
  color: var(--orange-light);
  font-style: normal;
  display: inline;
}
.final-lede {
  position: relative; z-index: 1;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin: 18px auto 28px;
}
.final-lede strong { color: #fff; font-weight: 700; }
.final-foot {
  position: relative; z-index: 1;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(242, 241, 237, 0.55);
}

/* ===== FOOTER ===== */
.site-foot {
  padding: 32px 0;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.site-foot p { font-size: 13px; color: rgba(242, 241, 237, 0.5); }
.site-foot a { color: var(--orange-light); text-decoration: none; border-bottom: 1px solid currentColor; }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity calc(0.7s / var(--motion, 1)) var(--ease-standard),
              transform calc(0.7s / var(--motion, 1)) var(--ease-standard);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ===== VARIANT: CONSERVADORA ===== */
/* Limpa, sem orbs, sem marquee animado, tipografia mais contida */
body[data-variant="conservadora"] .hero-orb { display: none; }
body[data-variant="conservadora"] .bandcta-marquee { animation: none; }
body[data-variant="conservadora"] .hero-headline em {
  background: none;
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
  animation: none;
}
body[data-variant="conservadora"] em.underline-mark { background: none; color: var(--accent); }
body[data-variant="conservadora"] .btn--primary.btn--xl { animation: none; }
body[data-variant="conservadora"] .pillar-card--featured { background: var(--paper); color: var(--fg-1); border-color: var(--border-default); }
body[data-variant="conservadora"] .pillar-card--featured h4,
body[data-variant="conservadora"] .pillar-card--featured .pillar-card-tag { color: var(--accent); }
body[data-variant="conservadora"] .pillar-card--featured p { color: var(--fg-2); }

/* ===== VARIANT: OUSADA ===== */
/* Tipografia XL, mais lilás/laranja, bloco de display gigante, mais animação */
body[data-variant="ousada"] .hero-headline {
  font-size: clamp(48px, 6.5vw, 108px);
  line-height: 0.92;
  font-weight: 800;
}
body[data-variant="ousada"] .section-head h2 {
  font-size: clamp(42px, 6vw, 84px);
}
body[data-variant="ousada"] .hero-orb--1 { width: 560px; height: 560px; opacity: 0.5; }
body[data-variant="ousada"] .hero-orb--2 { width: 480px; height: 480px; opacity: 0.4; }
body[data-variant="ousada"] .pillar-head h3 { font-size: clamp(30px, 4vw, 52px); font-weight: 800; }
body[data-variant="ousada"] .bandcta-marquee {
  font-size: 32px;
  color: rgba(255,255,255,0.4);
  animation-duration: calc(22s / var(--motion, 1));
}
body[data-variant="ousada"] .proof-card blockquote { font-size: 19px; font-weight: 600; }
body[data-variant="ousada"] .price-num { font-size: 128px; }
body[data-variant="ousada"] .resolve-line { font-size: clamp(26px, 3.6vw, 40px); }
body[data-variant="ousada"] .pillar-card:hover { transform: translateY(-5px) scale(1.015); }

/* ===== DARK MODE EXTRA (body[data-mode]) ===== */
body[data-mode="dark"] {
  --bg-base: #0A1254;
  --paper: #111E5E;
  --fg-1: #F2F1ED;
  --fg-2: rgba(242,241,237,0.75);
  --fg-3: rgba(242,241,237,0.5);
  --border-subtle: rgba(255,255,255,0.1);
  --border-default: rgba(255,255,255,0.18);
  --page-hue: var(--bg-base);
}
body[data-mode="dark"] .nav { background: rgba(10, 18, 84, 0.78); border-bottom-color: rgba(255,255,255,0.08); }
body[data-mode="dark"] .nav-cta { background: var(--accent); color: #fff; }

/* Reveal off option */
body[data-reveal="off"] .reveal { opacity: 1; transform: none; transition: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(28px, 8vw, 36px); line-height: 1.05; overflow-wrap: anywhere; }
  .hero { padding: 28px 0 56px; }
  .hero-headline { font-size: clamp(36px, 10vw, 48px); line-height: 1.05; overflow-wrap: anywhere; }
  .hero-kicker { font-size: 18px; }
  .hero-checks li { font-size: 17.5px; line-height: 1.5; }
  .eyebrow-badge {
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
  }
  .eyebrow-dot { width: 6px; height: 6px; }
  /* .hero-meta gap controlado pelas regras de pillars acima — não sobrescrever
     aqui (estava jogando o vertical divider pra fora do centro). */
  .hero-meta-num { font-size: 20px; white-space: normal; }
  .hero-meta-label { font-size: 13px; }
  .pillar { padding: 36px 0; }
  .pillar-head h3, .pillar-split-content h3 { font-size: clamp(26px, 7vw, 32px); line-height: 1.18; overflow-wrap: anywhere; }
  .offer-card { padding: 24px 16px; }
  .price-num { font-size: 72px !important; }
  .bandcta { padding: 48px 0 56px; }
  .bandcta-marquee { font-size: 18px; }
  .bandcta-content h2 { font-size: clamp(26px, 7vw, 36px); line-height: 1.1; }
  .final h2 { font-size: clamp(28px, 8vw, 40px); line-height: 1.1; }
  .pillar-card, .pain-card, .work-level, .proof-card, .founder, .faq-item, .roadmap-item, .desktop-mockup, .offer-card, .resolve-box {
    max-width: 100%;
    box-sizing: border-box;
  }
  /* Cards never overflow */
  .pillar-grid, .pain-grid, .work-levels, .proof-grid, .founders { width: 100%; }
}

/* ===== MOCKUP IMAGES (PNGs com chrome embutido) ===== */
.mockup-img { display: block; line-height: 0; }
.mockup-img--browser {
  margin: 44px auto 0;
  width: 100%;
  max-width: 980px;
}
.mockup-img--browser img,
.mockup-img--browser picture {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 60px rgba(16, 28, 126, 0.18),
    0 6px 18px rgba(16, 28, 126, 0.08);
}
.mockup-img--phone {
  display: block;
  width: 100%;
  max-width: 288px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(16, 28, 126, 0.18));
}
@media (max-width: 720px) {
  .mockup-img--browser {
    margin-top: 28px;
    max-width: 288px;
  }
  .mockup-img--browser img,
  .mockup-img--browser picture {
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 30px 60px rgba(16, 28, 126, 0.18));
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
