/* ═══════════════════════════════════════════════════════════════
   TRANSCENDERTE 50+ — Landing Page Stylesheet (v2)
   Paleta: Roxo Profundo + Verde Vibrante + Dourado Sutil
   Acessibilidade: WCAG AA · Público 50+ · Corpo ≥16px · Títulos ≥24px
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Cores primárias */
  --purple-deep:    #3B1861;
  --purple-medium:  #5C2D91;
  --purple-light:   #7B4FAF;
  --purple-subtle:  #F3EDF9;

  /* Cores secundárias */
  --green-vibrant:  #13A89E; 
  --green-hover:    #12766A; 
  --green-light:    #E8F5EC; 

  /* Dourado (acentos premium) */
  --gold:           #B89947; 
  --gold-hover:     #9E8036; 
  --gold-light:     #F5ECD5; 

  /* Neutros */
  --white:          #FFFFFF;
  --off-white:      #F9F7F4;
  --gray-100:       #F0EEEB;
  --gray-200:       #E0DDD8;
  --gray-400:       #A09C96;
  --gray-600:       #6B6560;
  --gray-800:       #333333;
  --black-soft:     #1A1A1A;

  /* Tipografia */
  --font-heading:   'Playfair Display', 'Georgia', serif;
  --font-body:      'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Espaçamento */
  --space-xs:       0.5rem;
  --space-sm:       1rem;
  --space-md:       1.5rem;
  --space-lg:       2.5rem;
  --space-xl:       4rem;
  --space-2xl:      6rem;

  /* Bordas */
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;

  /* Sombras */
  --shadow-card:    0 4px 24px rgba(59, 24, 97, 0.08);
  --shadow-hover:   0 8px 40px rgba(59, 24, 97, 0.14);
  --shadow-btn:     0 4px 16px rgba(46, 158, 90, 0.30);

  /* Transições */
  --transition:     0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Header */
  --topbar-height:  160px;
}

/* ─── RESET & BASE ──────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--topbar-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.3rem;
  line-height: 1.75;
  color: var(--gray-800);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green-vibrant);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--green-hover);
}

/* ─── UTILIDADES ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 820px;
}

/* Animação de entrada */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── TIPOGRAFIA ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  color: var(--purple-deep);
  line-height: 1.25;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 4.5vw, 2.85rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 3.2vw, 1.75rem); font-weight: 600; }
h4 { font-size: clamp(1.2rem, 2.8vw, 1.4rem); font-weight: 600; }

p {
  margin-bottom: var(--space-sm);
  max-width: 65ch;
}

strong {
  font-weight: 600;
  color: var(--purple-medium);
}

/* ═══════════════════════════════════════════════════════════════
   CABEÇALHO FIXO
   ═══════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px; /* Mude de 100px para 160px */
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.header__logo-link {
  display: flex;
  align-items: center;
  z-index: 2;
}

.header__logo-img {
  max-height: 130px; /* Alterado para o tamanho da Landing Page */
  width: auto;
  display: block;
}

.header__btn {
  padding: 0.8em 3.0em; /* Aumenta a largura e altura do botão */
  font-size: 1.4rem;    /* Aumenta o tamanho da letra */
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 2;
  white-space: nowrap;
}

/* ─── SEÇÕES (BASE) ─────────────────────────────────────────── */
.section {
  padding: var(--space-2xl) 0;
}

.section--light {
  background-color: var(--off-white);
}

.section--purple {
  background-color: var(--purple-deep);
  color: var(--white);
}

.section--purple strong {
  color: var(--gold);
}

.section--purple p {
  color: rgba(255, 255, 255, 0.9);
}

.section--dark {
  background-color: var(--black-soft);
  color: var(--gray-200);
}

.section--dark strong {
  color: var(--gold);
}

/* Roxo mais escuro — substitui o preto mantendo a paleta */
.section--purple-dark {
  background: linear-gradient(145deg, #2A0E47 0%, #1A0830 100%);
  color: var(--white);
}

.section--purple-dark strong {
  color: var(--gold);
}

.section--green {
  background: linear-gradient(135deg, var(--green-vibrant) 0%, #1B7A42 100%);
  color: var(--white);
}

.section--green strong {
  color: var(--gold-light);
}

.section--green p {
  color: rgba(255, 255, 255, 0.92);
}

/* Seção alternativa para substituir o verde — fundo off-white com contraste */
.section--alt {
  background-color: var(--gray-100);
  color: var(--gray-800);
}

.section--alt strong {
  color: var(--purple-medium);
}

.section--alt p {
  color: var(--gray-800);
}

.section--alt .aplicacao__lead {
  color: var(--purple-deep);
}

.section--alt .aplicacao__content p {
  color: var(--gray-800);
}

.section--alt .aplicacao__criterio-letra {
  background: var(--purple-subtle);
  color: var(--purple-deep);
}

.section--alt .aplicacao__criterio p {
  color: var(--gray-800);
}

.section--alt .aplicacao__urgencia {
  background: var(--purple-subtle);
  border: 1px solid var(--purple-light);
}

.section--alt .aplicacao__urgencia p {
  color: var(--gray-800);
}

.section--alt .aplicacao__urgencia strong {
  color: var(--purple-deep);
}

.section--alt .aplicacao__criterios-titulo {
  color: var(--purple-deep);
}

.section--alt .section__heading {
  color: var(--purple-deep);
}

.section__heading {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
}

.section__heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

.section__heading--light {
  color: var(--white);
}

.section__subheading {
  text-align: center;
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: var(--space-xl);
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}

.section__subheading--light {
  color: rgba(255, 255, 255, 0.75);
}

.section__subheading--dark {
  color: rgba(255, 255, 255, 0.8);
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÃO 1 — HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, var(--purple-deep) 0%, #2A0E47 60%, #1A0830 100%);
  overflow: hidden;
  padding-top: var(--topbar-height);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(92, 45, 145, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
  padding: var(--space-xl) 0;
}

.hero__content {
  color: var(--white);
}

.hero__badge {
  display: inline-block;
  background: rgba(197, 165, 90, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4em 1.2em;
  border-radius: 50px;
  margin-bottom: var(--space-md);
}

.hero__headline {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  max-width: 16ch;
}

.hero__headline-accent {
  display: block;
  color: var(--gold);
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  max-width: 45ch;
}

.hero__tagline strong {
  color: var(--gold);
}

.hero__subheadline {
  font-size: 1.2rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-lg);
  max-width: 50ch;
}

.hero__cta {
  margin-bottom: var(--space-lg);
}

.hero__proof-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero__proof-item strong {
  color: var(--gold);
}

.hero__proof-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Foto placeholder */
.hero__image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__image-placeholder {
  width: 360px;
  height: 440px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(197, 165, 90, 0.15), rgba(92, 45, 145, 0.20));
  border: 2px dashed rgba(197, 165, 90, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.4;
}

/* Hero image box — sem borda tracejada */
.hero__image-box {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__foto-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero__legenda {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.15em;
  margin-top: var(--space-sm);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
  width: 100%;
  max-width: 420px;
}

.hero__legenda-nome {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-indicator span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-indicator span::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÃO 2 — PROVOCAÇÃO
   ═══════════════════════════════════════════════════════════════ */
.provocacao__content {
  max-width: 65ch;
  margin: 0 auto;
}

.provocacao__lead {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--purple-deep);
  line-height: 1.5;
}

.provocacao__destaque {
  background: var(--purple-subtle);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}

.provocacao__destaque p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: var(--space-xs);
  max-width: none;
}

.provocacao__destaque p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÃO 3 — O PROBLEMA (Dilema da Cadeira Vazia)
   ═══════════════════════════════════════════════════════════════ */
.problema__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.problema__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: transform var(--transition), border-color var(--transition);
}

.problema__card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 165, 90, 0.3);
}

.problema__card-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.problema__card-titulo {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.problema__card-texto {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  max-width: none;
}

.problema__cta-wrapper {
  text-align: center;
}

.btn.btn--cta-final.problema__cta-btn {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1.2em 2.8em;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÃO 4 — SOLUÇÃO
   ═══════════════════════════════════════════════════════════════ */
.solucao__content {
  max-width: 65ch;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.solucao__pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.solucao__pilar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
  border-bottom: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.solucao__pilar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.solucao__pilar-icone {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.solucao__pilar-titulo {
  font-family: var(--font-body);
  color: var(--purple-deep);
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

.solucao__pilar-texto {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 0;
  max-width: none;
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÃO 5 — COMO FUNCIONA (12 Semanas)
   ═══════════════════════════════════════════════════════════════ */

/* Timeline */
.jornada__timeline {
  max-width: 720px;
  margin: 0 auto var(--space-2xl);
  position: relative;
  padding-left: 80px;
}

.jornada__timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(197, 165, 90, 0.25);
}

.jornada__fase {
  position: relative;
  padding-bottom: var(--space-xl);
}

.jornada__fase:last-child {
  padding-bottom: 0;
}

.jornada__fase-marker {
  position: absolute;
  left: -80px;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--purple-medium);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.jornada__fase-numero {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.jornada__fase--destaque .jornada__fase-marker {
  background: var(--gold);
}

.jornada__fase--destaque .jornada__fase-numero {
  color: var(--purple-deep);
}

.jornada__fase-semanas {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3em;
}

.jornada__fase-titulo {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.jornada__fase-texto {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0;
  max-width: 55ch;
}

/* Entregáveis Tangíveis */
.entregaveis {
  margin-bottom: var(--space-2xl);
}

.entregaveis__titulo {
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.entregaveis__titulo::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-xs) auto 0;
}

.entregaveis__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

/* Grid 8 cards: 2 por linha, 4 linhas */
.entregaveis__grid--8 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.entregaveis__grid--8 .entregavel-card {
  display: flex;
  flex-direction: column;
}

@media (max-width: 600px) {
  .entregaveis__grid--8 {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

.entregavel-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: border-color var(--transition);
}

.entregavel-card:hover {
  border-color: rgba(197, 165, 90, 0.3);
}

.entregavel-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.entregavel-card__titulo {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.entregavel-card__texto {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0;
  max-width: none;
}

/* Entregáveis Intangíveis */
.intangiveis {
  margin-bottom: var(--space-2xl);
}

.intangiveis__titulo {
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  font-style: italic;
}

.intangiveis__titulo::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-xs) auto 0;
}

.intangiveis__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.intangivel-item {
  text-align: center;
  padding: var(--space-md);
}

.intangivel-item strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3em;
}

.intangivel-item p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  max-width: none;
}

/* Bônus */
.bonus {
  margin-bottom: var(--space-xl);
}

.bonus__titulo {
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.bonus__titulo::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-xs) auto 0;
}

.bonus__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.bonus__item {
  display: flex;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.bonus__item-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.15em;
}

.bonus__item strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.3em;
}

.bonus__item p {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0;
  max-width: none;
}

/* Cercadinho de Ouro */
.bonus__ouro {
  background: linear-gradient(135deg, rgba(197, 165, 90, 0.1) 0%, rgba(197, 165, 90, 0.05) 100%);
  border: 1px solid rgba(197, 165, 90, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.bonus__ouro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #E8D48B, var(--gold));
}

.bonus__ouro-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--purple-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4em 1.2em;
  border-radius: 50px;
  margin-bottom: var(--space-sm);
}

.bonus__ouro-titulo {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.bonus__ouro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.bonus__ouro-item {
  display: flex;
  gap: var(--space-sm);
}

.bonus__ouro-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.15em;
}

.bonus__ouro-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.2em;
}

.bonus__ouro-item p {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0;
  max-width: none;
}

.jornada__cta-wrapper {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÃO 6 — PROCESSO DE APLICAÇÃO
   ═══════════════════════════════════════════════════════════════ */
.aplicacao__content {
  max-width: 65ch;
  margin: 0 auto var(--space-xl);
}

.aplicacao__lead {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

.aplicacao__content p {
  color: rgba(255, 255, 255, 0.9);
}

.aplicacao__criterios {
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}

.aplicacao__criterios-titulo {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  text-align: center;
}

.aplicacao__criterios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.aplicacao__criterio {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.aplicacao__criterio-letra {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.aplicacao__criterio p {
  color: var(--gray-800);
  font-size: 1.1rem;
  margin-bottom: 0;
  max-width: none;
}

.aplicacao__urgencia {
  max-width: 65ch;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.aplicacao__urgencia p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  max-width: none;
}

.aplicacao__urgencia strong {
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÃO 7A — AUTORIDADE (versão roxo)
   SEÇÃO 7B — PROVA SOCIAL (versão light)
   ═══════════════════════════════════════════════════════════════ */
.autoridade__bio-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-bottom: var(--space-xl);
}

.autoridade__foto-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--purple-subtle), var(--gold-light));
  border: 2px dashed rgba(197, 165, 90, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1rem;
  text-align: center;
}

.autoridade__nome {
  color: var(--purple-deep);
  margin-bottom: var(--space-xs);
  font-size: 1.5rem;
}

.autoridade__titulo-profissional {
  color: var(--purple-medium);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.autoridade__bio-texto {
  color: var(--gray-600);
  margin-bottom: var(--space-md);
}

.autoridade__credenciais {
  list-style: none;
  padding: 0;
}

.autoridade__credenciais li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: var(--space-xs);
  color: var(--gray-600);
  font-size: 1.15rem;
}

.autoridade__credenciais li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6em;
  top: 0.55em;
}

/* Logos */
.autoridade__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.autoridade__logo-item {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 0.6em 1.4em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}

/* ─── Autoridade sobre fundo roxo (section--purple) ──────── */
.section--purple .autoridade__nome {
  color: var(--white);
}

.section--purple .autoridade__titulo-profissional {
  color: var(--gold);
}

.section--purple .autoridade__bio-texto {
  color: rgba(255, 255, 255, 0.9);
}

.section--purple .autoridade__credenciais li {
  color: rgba(255, 255, 255, 0.85);
}

.section--purple .autoridade__credenciais li strong {
  color: var(--gold);
}

.section--purple .autoridade__logos {
  border-top-color: rgba(255, 255, 255, 0.15);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.section--purple .autoridade__logo-item {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Depoimentos */
.depoimentos__titulo {
  color: var(--purple-deep);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.depoimento-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}

.depoimento-card__texto {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.depoimento-card__autor {
  font-size: 0.9rem;
  color: var(--purple-medium);
}

/* ═══════════════════════════════════════════════════════════════
   DEPOIMENTOS (Estilo Exato Google Reviews)
   ═══════════════════════════════════════════════════════════════ */
.depoimentos-google__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .depoimentos-google__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.depoimento-card-google {
  background-color: #ffffff;
  border: 1px solid #E2E8F0;
  border-top: 4px solid var(--gold); /* Borda superior da marca Transcenderte */
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}

.depoimento-card-google:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

.depoimento-card-google__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.depoimento-card-google__stars {
  display: flex;
  gap: 2px;
}

.depoimento-card-google__stars svg {
  width: 16px;
  height: 16px;
  fill: #F59E0B;
}

.depoimento-card-google__texto {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}

.depoimento-card-google footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.depoimento-card-google cite {
  font-style: normal;
  font-weight: 700;
  color: #1E293B;
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.depoimento-card-google__source {
  font-size: 0.85rem;
  color: #94A3B8;
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÃO 8 — CUSTO DA INAÇÃO (Ancoragem)
   ═══════════════════════════════════════════════════════════════ */
.ancoragem__content {
  max-width: 65ch;
  margin: 0 auto var(--space-xl);
}

.ancoragem__tabela {
  max-width: 580px;
  margin: 0 auto var(--space-xl);
}

.ancoragem__linha {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ancoragem__item-nome {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 65%;
}

.ancoragem__item-valor {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  text-align: right;
}

.ancoragem__item-valor--gold {
  color: var(--gold);
  font-style: italic;
}

.ancoragem__linha--destaque {
  border-bottom-color: rgba(197, 165, 90, 0.25);
}

.ancoragem__linha--total {
  border-bottom: none;
  border-top: 2px solid var(--gold);
  padding-top: var(--space-md);
  margin-top: var(--space-xs);
}

.ancoragem__linha--total .ancoragem__item-nome {
  font-weight: 600;
  color: var(--white);
}

.ancoragem__linha--total .ancoragem__item-valor {
  font-size: 1.35rem;
  color: var(--gold);
}

.ancoragem__conclusao {
  max-width: 65ch;
  margin: 0 auto;
  text-align: center;
}

.ancoragem__conclusao p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  max-width: none;
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÃO 9 — INVESTIMENTO
   ═══════════════════════════════════════════════════════════════ */
.investimento__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 165, 90, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.investimento__principal {
  margin-bottom: var(--space-lg);
}

.investimento__label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: var(--space-xs);
}

.investimento__valor {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.investimento__centavos {
  font-size: 0.5em;
  color: var(--gray-400);
}

.investimento__condicao {
  font-size: 0.95rem;
  color: var(--gray-400);
  margin-bottom: 0;
}

.investimento__divider {
  width: 60px;
  height: 1px;
  background: rgba(197, 165, 90, 0.3);
  margin: 0 auto var(--space-lg);
}

.investimento__reserva {
  margin-bottom: var(--space-lg);
}

.investimento__reserva-label {
  font-size: 1rem;
  color: var(--gray-200);
  margin-bottom: var(--space-sm);
  max-width: none;
}

.investimento__reserva-valor {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.investimento__reserva-nota {
  font-size: 1rem;
  color: var(--gray-400);
  max-width: none;
}

.investimento__reserva-nota strong {
  color: var(--gold);
}

.investimento__cta-wrapper {
  margin-top: var(--space-md);
}

.investimento__vagas {
  font-size: 1rem;
  color: var(--gray-400);
  margin-top: var(--space-sm);
}

.investimento__vagas strong {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÃO FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq__lista {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.faq__pergunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: var(--space-md) 0;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--purple-deep);
  list-style: none;
  transition: color var(--transition);
}

.faq__pergunta::-webkit-details-marker {
  display: none;
}

.faq__pergunta::marker {
  display: none;
  content: '';
}

.faq__pergunta::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--green-vibrant);
  flex-shrink: 0;
  margin-left: var(--space-sm);
  transition: transform var(--transition);
}

details[open] > .faq__pergunta::after {
  content: '−';
}

.faq__pergunta:hover {
  color: var(--purple-light);
}

.faq__resposta {
  padding: 0 0 var(--space-md) 0;
}

.faq__resposta p {
  color: var(--gray-600);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.faq__resposta p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════════════ */
.cta-final {
  text-align: center;
}

.cta-final__content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-final__titulo {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: var(--space-md);
}

.cta-final__titulo::after {
  display: none;
}

.cta-final__texto {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  max-width: none;
}

.cta-final__vagas {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: var(--space-sm);
}

/* ═══════════════════════════════════════════════════════════════
   BOTÕES
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  line-height: 1.2;
}

.btn--primary {
  background: var(--green-vibrant);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  background: var(--green-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(46, 158, 90, 0.40);
}

.btn--cta-final {
  background: var(--white);
  color: var(--green-vibrant);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--cta-final:hover {
  background: var(--gold-light);
  color: var(--purple-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.20);
}

.btn--large {
  font-size: 1.125rem;
  padding: 1em 2.25em;
  min-height: 56px;
  border-radius: var(--radius-sm);
}

/* Foco acessível */
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════════
   RODAPÉ (Estilo Landing Page - Claro e Compacto)
   ═══════════════════════════════════════════════════════════════ */
.footer-legal {
  background-color: var(--off-white); 
  color: var(--purple-deep); 
  padding: 2rem 0 1rem;
  border-top: 1px solid var(--gray-200); 
  text-align: center;
}

.footer-legal .footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.footer-legal .footer__logo-img {
  max-height: 120px; 
  width: auto;
  display: block;
  margin: 0 auto; 
}

.footer-legal p {
  max-width: 100% !important; 
  margin: 0 auto; 
  line-height: 1.4; 
}

.footer-legal .footer__info p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--purple-deep); 
}

/* Links Legais */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.footer-links a {
  color: var(--green-vibrant);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--green-hover);
  text-decoration: underline;
}

.footer-links .separator {
  color: var(--gray-400);
}

/* Textos de Disclaimer e Copyright */
.footer-disclaimer {
  font-size: 0.85rem;
  color: var(--gray-600);
  max-width: 800px !important;
  margin: 0.5rem auto !important;
}

.footer-legal .footer__legal p {
  font-size: 0.8rem;
  color: var(--gray-600); 
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__headline {
    max-width: none;
  }

  .hero__tagline {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__subheadline {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__proof-bar {
    justify-content: center;
  }

  .hero__image-wrapper {
    order: -1;
  }

  .hero__image-placeholder {
    width: 240px;
    height: 300px;
  }

  .hero__image-box {
    max-width: 280px;
  }

  .hero__legenda {
    max-width: 280px;
  }

  .hero__cta {
    width: 100%;
  }

  .problema__grid {
    grid-template-columns: 1fr;
  }

  .solucao__pilares {
    grid-template-columns: 1fr;
  }

  .autoridade__bio-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .autoridade__foto-placeholder {
    max-width: 240px;
    margin: 0 auto;
  }

  .autoridade__credenciais li {
    text-align: left;
  }

  .jornada__timeline {
    padding-left: 60px;
  }

  .jornada__fase-marker {
    left: -60px;
    width: 40px;
    height: 40px;
  }

  .jornada__timeline::before {
    left: 28px;
  }

  .jornada__fase-numero {
    font-size: 0.85rem;
  }

    .ancoragem__linha {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25em;
  }

  .ancoragem__item-nome {
    max-width: none;
  }

  .ancoragem__item-valor {
    text-align: left;
  }
}

@media (max-width: 600px) {
  :root {
  --topbar-height: 80px;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .hero {
    min-height: auto;
    padding-top: var(--topbar-height);
  }

  .hero__grid {
    padding: var(--space-md) 0;
  }

  .topbar__logo-text {
    font-size: 1rem;
  }

  .btn--header {
    font-size: 0.8rem;
    padding: 0.5em 1em;
    min-height: 40px;
  }

  .btn--large {
    width: 100%;
    font-size: 1rem;
    padding: 1em 1.5em;
  }

  .hero__proof-bar {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .hero__proof-divider {
    display: none;
  }

  .investimento__valor {
    font-size: 2.5rem;
  }

  .aplicacao__criterios-grid {
    grid-template-columns: 1fr;
  }

  .bonus__ouro-grid {
    grid-template-columns: 1fr;
  }

  .intangiveis__grid {
    grid-template-columns: 1fr;
  }

    .header {
      height: 80px;
    }
    
    .header__logo-img {
      max-height: 56px;
    }
    
    .header__btn {
    font-size: 0.85rem; /* Letra menor para caber no celular */
    padding: 0.6em 1.2em; /* Botão mais enxuto */
    white-space: normal; /* Permite que o texto quebre em duas linhas se necessário */
    text-align: center;
  }
  
  /* Garante a centralização geral no contêiner principal */
    .autoridade__logos {
      display: flex;
      flex-direction: column;
      align-items: center; 
      justify-content: center;
      text-align: center;
      width: 100%;
    }
    
    /* Se você copiou a estrutura da Landing Page que usa <div> por linha: 
       Isso força o conteúdo de CADA linha a quebrar e centralizar no mobile */
    .autoridade__logos div {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: 10px;
      width: 100%;
    }
    
    /* Garante que os itens individuais não quebrem o layout */
    .autoridade__logo-item {
      text-align: center;
      display: inline-block; /* Evita comportamentos estranhos do flex no mobile */
      margin-bottom: 5px; /* Dá um respiro caso eles encavalem no celular */
    }
}
/* ─── Preferência de movimento reduzido ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

.autoridade__foto-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4; 
  object-fit: cover; 
  border-radius: var(--radius-md); 
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2); 
}

