@import url("https://www.strong360.com.br/assets/css/system.css");
/* >>> Cores, fontes, tokens e o botão primário vêm do system.css hospedado no
       site institucional (fonte ÚNICA). Para mudar a marca, edite o system.css
       lá — NÃO duplique aqui. Ao publicar: institucional primeiro, deck depois. */
/* ============================================================
   STRONG 360° / Presença+ Digital — Deck v2.6
   Sistema de design herdado da LP institucional v6 (fonte da verdade)
   Direção A "Método" · dark premium · Fraunces + Geist + âmbar
   Base #070d18 · navy #0d2d56 · azul #2f8ff5 · âmbar #f2a93b
   ============================================================ */

/* ---------- 1. RESET E TOKENS ---------- */


html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background:
    radial-gradient(900px 480px at 82% -8%, rgba(47, 143, 245, 0.15), transparent 56%),
    radial-gradient(720px 420px at 4% 5%, rgba(13, 45, 86, 0.5), transparent 52%),
    linear-gradient(180deg, #070d18 0%, #04070e 42%, #070d18 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.08) 60%, transparent);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.08) 60%, transparent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  color: var(--text-primary);
}

em {
  color: var(--text-secondary);
}

/* Foco visível — WCAG AA */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible,
.nav__cta:focus-visible {
  outline-offset: 4px;
}

.faq summary:focus-visible {
  outline-offset: 2px;
  border-radius: var(--radius-md);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.85rem 1.2rem;
  background: var(--accent);
  color: var(--brand-white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- 2. LAYOUT BASE ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.section + .section,
.divider + .section {
  border-top: 1px solid var(--border-soft);
}

.section--dark,
.section--light,
.section--gray,
.cta-final {
  color: var(--text-primary);
  background: transparent;
}

.section--light::before,
.section--gray::before,
.section--dark::before,
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.section--light::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(13,45,86,0.035));
}

.section--gray::before {
  background: linear-gradient(180deg, rgba(13,45,86,0.18), rgba(0,0,0,0.10));
}

.section--dark::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(47,143,245,0.12), transparent 36%),
    linear-gradient(180deg, rgba(13,45,86,0.28), rgba(0,0,0,0.05));
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-xl) 0;
  }
}

/* ---------- 3. TIPOGRAFIA ---------- */
h1, h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--text-primary);
}

h3, h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.022em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.6rem);
  max-width: 880px;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

h4 {
  font-size: 1.075rem;
}

/* Exceções Sage — Fraunces (serif editorial) no hero h1 */
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.032em;
  line-height: 1.02;
  font-size: clamp(2.4rem, 4.6vw, 3.95rem);
}

h1 em, h2 em, .hero h1 em {
  color: var(--accent);
  font-style: normal;
  font-weight: inherit;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(47,143,245,0.7);
}

.eyebrow--badge {
  font-family: var(--font-subtitle);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--brand-white);
  background: rgba(47, 143, 245, 0.10);
  border: 1px solid var(--border-blue);
  padding: 0.62rem 0.95rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(14px);
}

.eyebrow--badge::before {
  display: none;
}

.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.76;
  color: var(--text-secondary);
  max-width: 66ch;
}

.text-muted { color: var(--text-muted); }

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--space-xl);
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header .lead {
  margin: 0 auto;
}

.text-center { text-align: center; }
.mt-md { margin-top: var(--space-md); }
.mb-md { margin-bottom: var(--space-md); }

/* ---------- 4. BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.78rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  text-align: center;
  white-space: normal;
}

.btn--secondary {
  background: rgba(255,255,255,0.035);
  color: var(--text-primary);
  border-color: var(--border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.btn--secondary:hover {
  background: var(--surface-hover);
  border-color: var(--border-blue);
  color: var(--brand-white);
  transform: translateY(-2px);
}

.btn--lg {
  min-height: 54px;
  padding: 1rem 1.7rem;
  font-size: 0.98rem;
}

.btn--block {
  display: flex;
  width: 100%;
}

/* ---------- 5. NAV ----------
   Estrutura, hambúrguer e dropdown vêm do system.css compartilhado.
   Aqui só a logo do deck (maior, com brilho azul). */
.nav__logo img {
  height: 38px;
  border-radius: 8px;
  filter: drop-shadow(0 0 18px rgba(47, 143, 245, 0.08));
}

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  padding: var(--space-2xl) 0 var(--space-xl);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 10%, rgba(47,143,245,0.16), transparent 40%),
    radial-gradient(circle at 15% 80%, rgba(13,45,86,0.40), transparent 45%);
}

.hero__inner {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.hero__copy {
  max-width: 880px;
}

.hero h1 {
  margin: 0.6rem 0 1.4rem;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 64ch;
  margin-bottom: 1.6rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
}

.hero__proof-item {
  min-width: 0;
}

.hero__proof-num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1;
  color: var(--brand-white);
  margin-bottom: 0.3rem;
}

.hero__proof-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* ---------- 7. SECTION HEADER PADRÃO ---------- */
.divider-block {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.divider-block .eyebrow {
  margin-bottom: 1.4rem;
}

/* ---------- 8. CARD BASE / DESTAQUE ---------- */
.highlight-box {
  position: relative;
  margin: 2rem auto 0;
  max-width: 760px;
  padding: 1.6rem 1.8rem;
  background: var(--surface);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-secondary);
  box-shadow: var(--shadow-blue);
}

.highlight-box strong {
  color: var(--brand-white);
}

/* ---------- 9. ICP GRID (Para quem é) ---------- */
.icp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px,100%),1fr));
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.icp-card {
  padding: 1.6rem 1.5rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.icp-card:hover {
  border-color: var(--border-blue);
  background: var(--surface-hover);
  transform: translateY(-2px);
}

.icp-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.icp-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icp-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--brand-white);
  margin-bottom: 0.4rem;
}

.icp-desc {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- 10. STEPS (Como funciona) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px,100%),1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  padding: 1.4rem 1.4rem 1.6rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease;
}

.step:hover {
  border-color: var(--border-blue);
}

.step-num {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  padding-top: 0.1rem;
  min-width: 28px;
}

.step-content {
  min-width: 0;
}

.step-title {
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--brand-white);
  margin-bottom: 0.35rem;
}

.step-desc {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ---------- 11. CASES (Quem já usa) ---------- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px,100%),1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.case-card {
  display: block;
  padding: 1.6rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

/* cards de cliente são links para o perfil real (abrir em nova aba); herdam cor e sem sublinhado de a{} */
.case-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-2px);
}

.case-card__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.case-card__logo {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.case-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__meta {
  min-width: 0;
}

.case-card__name {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--brand-white);
  line-height: 1.25;
}

.case-card__segment {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.case-card__desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.case-card__stats {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border-soft);
}

.case-stat {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.case-stat__num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
  color: var(--accent);
}

.case-stat__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Card "prova própria" (LinkedIn Autoral): diferenciado discretamente dos cards de cliente */
.case-card--own {
  border-color: var(--border-blue);
}
.case-card--own .case-card__logo {
  background: rgba(47, 143, 245, 0.12);
  border-color: var(--border-blue);
}
.case-card__logo--icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}
.case-card__badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(47, 143, 245, 0.10);
  border: 1px solid var(--border-blue);
  padding: 0.32rem 0.62rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

/* ---------- 12. ANTES E DEPOIS (O que muda) ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 700px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

.compare-col {
  padding: 1.6rem 1.5rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.compare-col--after {
  border-color: var(--border-blue);
  background: var(--surface-hover);
}

.compare-col h3 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.compare-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
}

.compare-col--after .compare-tag {
  background: var(--accent-soft);
  color: var(--accent);
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-soft);
}

.compare-list li:first-child {
  border-top: none;
}

.compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-faint);
}

.compare-col--after .compare-list li::before {
  background: var(--accent);
}

/* ---------- 13. PLANOS — ENTREGÁVEIS (sem preço) ---------- */
.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px,100%),1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.plano-card {
  position: relative;
  padding: 1.7rem 1.6rem 1.5rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.plano-card.featured {
  border-color: var(--border-blue);
  background: var(--surface);
  box-shadow: var(--shadow-blue);
}

.plano-badge {
  position: absolute;
  top: -10px;
  right: 18px;
  font-family: var(--font-subtitle);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  background: linear-gradient(180deg, var(--accent-hover), var(--accent));
  color: var(--brand-white);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px rgba(47,143,245,0.32);
}

.plano-channel {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.plano-name {
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--brand-white);
  margin-bottom: 0.5rem;
}

.plano-desc {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.plano-items {
  list-style: none;
  padding: 0;
  margin: 0 0 0.3rem;
}

.plano-items li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-soft);
}

.plano-items li:first-child {
  border-top: none;
}

.plano-items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.55rem;
  font-size: 0.78rem;
  color: var(--success);
  font-weight: 700;
}

.plano-items li.extra::before {
  color: var(--accent);
}

/* ---------- 14. INVESTIMENTO (preços) ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px,100%),1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.price-card {
  position: relative;
  padding: 1.7rem 1.6rem 1.5rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.price-card.featured {
  border-color: var(--border-blue);
  background: var(--surface);
  box-shadow: var(--shadow-blue);
}

.price-card__name {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.price-card__value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.4vw, 2.8rem);
  line-height: 1;
  color: var(--brand-white);
  margin-bottom: 0.3rem;
}

.price-card__value .period {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.2rem;
}

.price-card__setup {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--border-soft);
}

.price-card__note {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.price-disclaimer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- 15. FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.7rem;
}

.faq details {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq details[open] {
  border-color: var(--border-blue);
  background: var(--surface);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 3rem 1.1rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-white);
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq__answer {
  padding: 0 1.4rem 1.3rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ---------- 16. PRÓXIMOS PASSOS ---------- */
.steps-next {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px,100%),1fr));
  gap: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 2.4rem;
}

.step-next {
  padding: 1.5rem 1.4rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.step-next__num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.step-next__title {
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--brand-white);
  margin-bottom: 0.45rem;
}

.step-next__desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ---------- 17. CTA FINAL ---------- */
.cta-final {
  text-align: center;
  position: relative;
}

.cta-final::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(47,143,245,0.16), transparent 40%),
    linear-gradient(180deg, rgba(13,45,86,0.25), rgba(0,0,0,0.05));
}

.cta-final h2 {
  margin-bottom: 1rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final .lead {
  margin: 0 auto 2rem;
  text-align: center;
}

.cta-final__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

/* ---------- 18. RODAPÉ ---------- */
.footer {
  padding: 2.4rem 0 2.6rem;
  border-top: 1px solid var(--border-soft);
  background: rgba(0,0,0,0.4);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer__brand img {
  height: 30px;
  width: auto;
  border-radius: 6px;
}

.footer__tagline {
  font-family: var(--font-subtitle);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer__links a:hover {
  color: var(--brand-white);
}

/* ---------- 19. STANDALONE PAGES (planos/precos) ---------- */
.page-standalone {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-standalone main {
  flex: 1;
  padding: var(--space-xl) 0;
}

.page-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.page-header h1 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  max-width: none;
  margin-bottom: 0.6rem;
}

.page-header .lead {
  margin: 0 auto;
  text-align: center;
}

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 2rem;
  transition: color 0.18s ease;
}

.page-back:hover {
  color: var(--brand-white);
}

/* Tabela comparativa de entregáveis */
.compare-table {
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-elevated);
}

.compare-table__row {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  border-bottom: 1px solid var(--border-soft);
}

.compare-table__row:last-child {
  border-bottom: none;
}

.compare-table__row--head {
  background: var(--surface);
  font-weight: 600;
}

.compare-table__cell {
  padding: 1rem 1.1rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-right: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
}

.compare-table__cell:last-child {
  border-right: none;
}

.compare-table__cell--head {
  color: var(--brand-white);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  justify-content: center;
}

.compare-table__cell--feat {
  background: rgba(0,0,0,0.2);
  color: var(--brand-white);
  font-weight: 500;
}

.compare-table__cell--check {
  justify-content: center;
  color: var(--success);
  font-size: 1.05rem;
}

.compare-table__cell--cross {
  justify-content: center;
  color: var(--text-faint);
  font-size: 1.05rem;
}

.compare-table__cell--featured {
  background: var(--surface-hover);
}

@media (max-width: 720px) {
  .compare-table__row {
    grid-template-columns: 1.3fr repeat(3, 0.9fr);
  }
  .compare-table__cell {
    padding: 0.8rem 0.5rem;
    font-size: 0.84rem;
  }
}

/* ---------- 19b. TABELA DE ESCOPO / EXTRAS (/precos) ---------- */
.scope-table {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-elevated);
}
.scope-table__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--border-soft);
}
.scope-table__row:last-child {
  border-bottom: none;
}
.scope-table__row--head {
  background: var(--surface);
}
.scope-table__cell {
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-right: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
}
.scope-table__cell:last-child {
  border-right: none;
}
.scope-table__cell--head {
  color: var(--brand-white);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.scope-table__cell--label {
  color: var(--brand-white);
  font-weight: 500;
}
.scope-table__cell--price {
  font-family: var(--font-mono);
  color: var(--brand-white);
}
.extras-table {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.extras-table .scope-table__row {
  grid-template-columns: 1.4fr 1fr;
}
.extras-table .scope-table__cell {
  padding: 0.7rem 1.1rem;
}
@media (max-width: 560px) {
  .scope-table__cell {
    padding: 0.7rem 0.7rem;
    font-size: 0.82rem;
  }
}
@media (max-width: 480px) {
  .scope-table__cell {
    padding: 0.55rem 0.5rem;
    font-size: 0.74rem;
  }
  .scope-table__cell--head {
    font-size: 0.6rem;
    letter-spacing: 0.03em;
  }
  /* na grade de escopo (3 colunas), os preços curtos ficam em 1 linha; na de extras (texto longo) deixa quebrar */
  .scope-table:not(.extras-table) .scope-table__cell--price {
    white-space: nowrap;
  }
}

/* ---------- 19c. AUTORIDADE DO FUNDADOR (banda /home) ---------- */
.founder-band {
  padding: var(--space-xl) 0;
}
.founder-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.founder-card .eyebrow {
  margin-bottom: 0.9rem;
}
.founder-card__text {
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 auto;
  max-width: 62ch;
}
.founder-card__text strong {
  color: var(--brand-white);
}

/* ---------- 20. RESPONSIVIDADE GERAL ---------- */
@media (max-width: 720px) {
  .hero__proof {
    gap: 1.2rem;
  }
  .case-card__stats {
    gap: 1rem;
  }
}

/* ---------- 21. REVEAL ANIMATIONS (controlado por main.js) ---------- */
html.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   18. SUPERFÍCIES NAVY (alinhado à LP institucional v6)
   Aplicação semântica do azul-marinho (--navy) como camada de
   governança translúcida sobre o fundo dark, com hairlines sutis
   (--line) para estrutura. Acento âmbar reservado a métricas/selo.
   ============================================================ */

/* ---------- 18.1  Section variant: --navy ---------- */
.section--navy {
  position: relative;
}

.section--navy::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(47,143,245,0.12), transparent 38%),
    linear-gradient(180deg, rgba(13,45,86,0.62), rgba(13,45,86,0.30));
}

/* Hairline cinza estrutural entre header e conteúdo */
.section--navy .section-header {
  position: relative;
  padding-bottom: 2.6rem;
  margin-bottom: 0.6rem;
}

.section--navy .section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 1px;
  background: var(--brand-gray);
  opacity: 0.35;
}

/* ---------- 18.2  case-card sobre navy ---------- */
.section--navy .case-card {
  background: linear-gradient(180deg, rgba(0,0,0,0.32), rgba(0,0,0,0.14));
  border: 1px solid rgba(204,204,204,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.section--navy .case-card:hover {
  background: linear-gradient(180deg, rgba(0,0,0,0.40), rgba(0,0,0,0.20));
  border-color: rgba(47,143,245,0.32);
}

/* ---------- 18.3  plano-card sobre navy ---------- */
.section--navy .plano-card {
  background: linear-gradient(180deg, rgba(0,0,0,0.32), rgba(0,0,0,0.14));
  border: 1px solid rgba(204,204,204,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.section--navy .plano-card.featured {
  background:
    radial-gradient(circle at 50% 0%, rgba(47,143,245,0.24), transparent 52%),
    linear-gradient(180deg, rgba(47,143,245,0.10), rgba(0,0,0,0.05));
  border: 1px solid rgba(47,143,245,0.55);
  box-shadow:
    0 0 0 1px rgba(47,143,245,0.22),
    0 28px 80px rgba(47,143,245,0.22);
}

/* plano-channel tag em cinza claro — rótulo estrutural */
.section--navy .plano-channel {
  color: var(--brand-gray);
  opacity: 0.82;
}

/* ---------- 18.4  cta-final sobre navy ---------- */
/* Quando .cta-final convive com .section--navy, o ::before navy
   prevalece pela ordem de cascata (este bloco é o último). */
.section--navy.cta-final::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(47,143,245,0.18), transparent 42%),
    linear-gradient(180deg, rgba(13,45,86,0.62), rgba(13,45,86,0.30));
}

/* ---------- 18.5  page-header nas sub-páginas (/planos, /precos) ---------- */
/* Tratamento sutil de entrada navy para coerência com a LP/deck principal */
.page-header {
  position: relative;
  padding: 2.4rem 0 2.8rem;
  margin-bottom: 0.8rem;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: -2rem 0 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(47,143,245,0.10), transparent 50%),
    linear-gradient(180deg, rgba(13,45,86,0.55) 0%, rgba(8,30,61,0.20) 100%);
  border-bottom: 1px solid rgba(204,204,204,0.12);
}

/* ---------- 18.6  kpi-card + inflexion (deck /aberc/) sobre navy ---------- */
.section--navy .kpi-card {
  background: linear-gradient(180deg, rgba(0,0,0,0.32), rgba(0,0,0,0.14));
  border: 1px solid rgba(204,204,204,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.section--navy .kpi-card:hover {
  background: linear-gradient(180deg, rgba(0,0,0,0.40), rgba(0,0,0,0.20));
  border-color: rgba(47,143,245,0.32);
}

.section--navy .inflexion {
  background: linear-gradient(180deg, rgba(0,0,0,0.32), rgba(0,0,0,0.14));
  border: 1px solid rgba(204,204,204,0.10);
}

/* Inflexion header row no navy — leve diferenciação */
.section--navy .inflexion__row--head {
  background: rgba(13,45,86,0.45);
}

/* ============================================================
   V6 ALIGNMENT — fidelidade à LP institucional v6
   Títulos de seção em Fraunces 400; selo do plano e métricas
   de prova em âmbar (assinatura do sistema). Aplicado por
   último para prevalecer na cascata.
   ============================================================ */
.section-header h2,
.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.012em;
}

.page-header h1 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.014em;
}

/* Palavra em destaque no hero: itálico (como na LP) */
.hero h1 em {
  font-style: italic;
}

/* Selo "Mais escolhido" em âmbar — padrão da LP institucional */
.plano-badge {
  background: var(--amber);
  color: #1a1206;
  box-shadow: 0 8px 22px rgba(242, 169, 59, 0.34);
}

/* Números de métrica de prova em âmbar */
.case-stat__num {
  color: var(--amber);
}


/* ============================================================
   V6 INTERACTIONS — paridade com a LP institucional
   Barra de progresso, botão voltar-ao-topo e glow nos cards.
   Tudo failsafe + prefers-reduced-motion (controle em main.js).
   ============================================================ */

/* Barra de progresso de leitura (azul → âmbar) */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 110;
  background: linear-gradient(90deg, var(--blue), var(--amber));
  box-shadow: 0 0 12px rgba(47, 143, 245, 0.6);
  transition: width 0.1s linear;
}

/* Botão voltar ao topo */
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(7, 13, 24, 0.8);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.2s ease, background 0.2s ease;
  z-index: 105;
}

.to-top.is-shown {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.to-top:hover {
  border-color: rgba(47, 143, 245, 0.5);
  background: rgba(47, 143, 245, 0.12);
}

.to-top svg {
  width: 18px;
  height: 18px;
}

/* glow (brilho que segue o cursor) agora vive no system.css compartilhado — herdado pelos dois sites.
   O JS do deck (main.js) continua aplicando a classe .glow a .plano-card/.case-card/.price-card. */

@media (prefers-reduced-motion: reduce) {
  .progress { display: none; }
  .to-top { transition: none; }
}
