/* ===========================================================
   Curso Completo Específicas SES-PE Farmacêutico — Sales Page
   Paleta placeholder — TROCAR quando a identidade visual oficial
   (logo + cores da marca) for enviada. Ver seção "TOKENS".
=========================================================== */

/* ===== TOKENS ===== */
:root {
  --ink: #2c233a;             /* texto principal — igual ao preto da logo Risotril */
  --ink-soft: #565064;        /* texto secundário */
  --muted: #6e6980;           /* texto tferciário / legendas — 4.6:1 sobre branco (WCAG AA) */
  --line: #e8e5ee;            /* bordas padrão */
  --line-soft: #f1eef6;
  --surface: #ffffff;
  --surface-alt: #f8f7fb;     /* fundo neutro alternado entre seções */
  --surface-dark: #2c233a;    /* usado só na seção de CTA final — mesmo tom do texto da logo */

  /* Acento — roxo oficial da marca Risotril (Logo Risotril.svg) */
  --accent: #7647e5;
  --accent-dark: #5935ac;
  --accent-soft: #f2edfc;
  --accent-line: #ded0f9;

  --success: #178a5f;

  --shadow-xs: 0 1px 2px rgba(20, 18, 28, 0.05);
  --shadow-sm: 0 4px 14px rgba(20, 18, 28, 0.06);
  --shadow-md: 0 12px 32px rgba(20, 18, 28, 0.09);
  --shadow-btn: 0 6px 18px rgba(118, 71, 229, 0.24);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --container: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;

  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 40px;
  --gap-xl: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* overflow-x também no html (não só no body) — no Safari iOS, "hidden" só no body
   não impede o arrasto horizontal da página caso algum elemento vaze da viewport. */
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--ink-soft);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ===== ACESSIBILIDADE: foco visível e movimento reduzido ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@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;
  }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 16px;
  height: 1.5px;
  background: var(--accent);
}

.eyebrow-box {
  /* align-self evita que o box estique na largura total quando o pai é flex-column */
  align-self: flex-start;
  background: var(--surface-dark);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
}
.eyebrow-box::before {
  display: none;
}

.section { padding: 96px 0; position: relative; }
/* Cola a seção na anterior, evitando 96+96px de respiro acumulado entre blocos */
.section.no-top { padding-top: 0; }
.section.no-bottom { padding-bottom: 0; }
.section-head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin: 0 0 48px; text-align: left; }

/* margin-top:0 é intencional — a seção anterior já fecha com padding-bottom normal
   (só o padding-top dela é zerado), então somar margin-top aqui dobraria o respiro. */
.mid-cta { display: flex; justify-content: center; margin-top: 0; margin-bottom: 96px; }

h1, h2, h3, h4 { color: var(--ink); font-weight: 700; letter-spacing: -0.02em; }
h1, h2, h3 { color: var(--accent); }
h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.18; }
h3 { font-size: 21px; line-height: 1.35; }
.section-sub { font-size: 16.5px; color: var(--ink-soft); margin-top: 14px; line-height: 1.65; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px) scale(0.98); transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1); }
.reveal.in-view { opacity: 1; transform: translateY(0) scale(1); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px) scale(0.98); transition: opacity 0.6s cubic-bezier(.16,1,.3,1), transform 0.6s cubic-bezier(.16,1,.3,1); }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0) scale(1); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.20s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.26s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.32s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 0.38s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 0.44s; }
.reveal-stagger.in-view > *:nth-child(9) { transition-delay: 0.50s; }
.reveal-stagger.in-view > *:nth-child(10) { transition-delay: 0.56s; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn-primary { position: relative; z-index: 0; background: var(--accent); color: #fff; box-shadow: var(--shadow-btn); overflow: hidden; }
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.32) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(118, 71, 229, 0.3); }
.btn-primary:active { transform: translateY(0) scale(0.97); }
.btn-secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-secondary:hover { border-color: var(--ink); background: var(--surface-alt); transform: translateY(-2px); }
.btn-secondary:active { transform: translateY(0) scale(0.97); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 30px; font-size: 15.5px; }
.btn svg { width: 17px; height: 17px; transition: transform 0.25s cubic-bezier(.34,1.56,.64,1); position: relative; }
.btn:hover svg { transform: translateX(3px); }

/* ===== Shared card style (reused across every content card on the page) ===== */
.problem-card,
.phase-block,
.check-card,
.module-item,
.price-card,
.stat-box,
.trajetoria-card,
.carreira-card,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.problem-card,
.check-card {
  transition: transform 0.25s cubic-bezier(.16,1,.3,1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.problem-card:hover,
.check-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-line);
}

.check-ico {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
  background: var(--accent-soft);
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), background 0.3s ease;
}
.check-ico svg { width: 11px; height: 11px; stroke: var(--accent); transition: stroke 0.3s ease; }
.check-card:hover .check-ico { transform: scale(1.15); background: var(--accent); }
.check-card:hover .check-ico svg { stroke: #fff; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  /* Trava na largura de layout: sem isso, em viewports onde a viewport visual é mais larga
     que a de layout, o header fixo estica além da página e desloca o logo centralizado. */
  max-width: 100vw;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 14.5px; color: var(--ink); }
.logo-img { height: 30px; width: auto; flex-shrink: 0; }
.logo-divider { width: 1px; height: 26px; background: var(--line); flex-shrink: 0; }
.logo small { display: block; font-size: 10px; font-weight: 500; color: var(--muted); letter-spacing: 0.02em; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-soft); position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--ink); transition: width 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-burger { display: none; width: 44px; height: 44px; border-radius: 9px; align-items: center; justify-content: center; }
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ""; display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; transition: all 0.2s ease;
}
.nav-burger span::before { position: absolute; top: -6px; }
.nav-burger span::after { position: absolute; top: 6px; }
.nav.menu-open .nav-burger span { background: transparent; }
.nav.menu-open .nav-burger span::before { transform: rotate(45deg); top: 0; }
.nav.menu-open .nav-burger span::after { transform: rotate(-45deg); top: 0; }

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--surface);
  margin-top: 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.mobile-panel a { padding: 12px 14px; border-radius: 9px; font-weight: 500; font-size: 15px; color: var(--ink-soft); }
.mobile-panel a:hover { background: var(--surface-alt); }
.mobile-panel .btn { margin-top: 6px; }
.mobile-panel a.btn-primary { color: #fff; }
.nav.menu-open .mobile-panel { display: flex; }

/* ===== HERO ===== */
.hero { position: relative; padding: 152px 0 0; background: #fbfafe; overflow: hidden; }
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; pointer-events: none;
  animation: blob-drift 22s ease-in-out infinite;
}
.hero-blob.b1 { width: 460px; height: 460px; background: var(--accent-soft); top: -180px; right: -140px; }
.hero-blob.b2 { width: 320px; height: 320px; background: #eef1fb; bottom: -140px; left: -100px; animation-delay: -11s; animation-direction: reverse; }

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, 18px) scale(1.06); }
  66% { transform: translate(-16px, 10px) scale(0.96); }
}

/* Grid com altura mínima fixa e align-items:stretch (padrão) — as duas colunas sempre
   ocupam a mesma altura de linha, então a foto (âncorada embaixo dentro da coluna) fica
   sempre colada na borda inferior da seção, sem precisar de position:absolute nem de
   margens negativas para "empurrar" a foto até a próxima seção. */
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 46% 1fr;
  gap: 28px; min-height: 720px;
}

.hero-content { display: flex; flex-direction: column; justify-content: center; padding: 44px 0; }
.hero-content h1 { max-width: 590px; font-size: clamp(38px, 4.5vw, 62px); line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 22px; }
.hero-content h1 .accent { color: var(--accent); }
.hero-content p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); max-width: 540px; margin-bottom: 32px; }
.br-m { display: none; }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }
.hero-ctas .btn { height: 58px; padding: 0 30px; border-radius: var(--radius-full); font-size: 16px; }
.hero-ctas .btn-primary { background: linear-gradient(135deg, #7240e3, #8249ed); }
.hero-ctas .btn-primary:hover { background: linear-gradient(135deg, #6a37d6, #7847e0); }
.hero-ctas .btn-secondary { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(6px); border-color: #efebf4; }

/* Hero visual: coluna estica para a altura da linha do grid (stretch), e a foto se ancora
   embaixo dentro dela — por isso a base da foto sempre encosta exatamente na borda inferior
   da seção, em qualquer altura de conteúdo do texto ao lado. */
.hero-visual {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  /* "Sangra" para fora do container aproveitando só a margem lateral livre da tela,
     assim a foto cresce sem afetar o alinhamento do texto com o logo do menu. */
  margin-right: calc(-1 * clamp(0px, (100vw - 1180px) / 2 - 30px, 130px));
}
.hero-photo-wrap { position: relative; width: 100%; max-width: 700px; height: 100%; margin: 0 auto; display: flex; align-items: flex-end; justify-content: center; }
.hero-photo-blob {
  position: absolute;
  width: 610px; height: 610px;
  border-radius: 50%;
  background: linear-gradient(155deg, #eae2fd, rgba(246, 242, 254, 0.6));
  top: 30px; left: 50%; transform: translateX(-50%);
  z-index: 0;
}
.hero-photo-glow {
  position: absolute;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: rgba(217, 203, 255, 0.28);
  filter: blur(70px);
  top: 10px; left: 50%; transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}
.hero-photo {
  position: relative;
  z-index: 1;
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.hero-tag-chip {
  position: absolute;
  z-index: 2;
  display: flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: 13px 20px 13px 13px;
  box-shadow: 0 12px 35px rgba(50, 38, 67, 0.09);
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  white-space: nowrap;
  animation: float-card 7s ease-in-out infinite;
}
.hero-tag-chip.chip-1 { top: 66px; right: -14px; }
.hero-tag-chip.chip-2 { top: 182px; left: -10px; animation-delay: -2.3s; }
.hero-tag-chip.chip-3 { top: 400px; right: -18px; animation-delay: -4.6s; }

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== STATS BAR (padrão do site atual: números em destaque sobre fundo escuro) ===== */
.stats-bar { background: var(--surface-dark); padding: 44px 0; }
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-bar-item b { display: block; font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 6px; }
.stats-bar-item span { display: block; font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, 0.6); line-height: 1.2; }
.stats-bar-trophy b { font-size: 28px; margin-bottom: 8px; }

/* Números "pipocam" ao entrar na tela, acompanhando o stagger do container */
@keyframes stat-pop {
  0%   { transform: scale(0.72); }
  62%  { transform: scale(1.09); }
  100% { transform: scale(1); }
}
.stats-bar-grid.in-view .stats-bar-item b {
  animation: stat-pop 0.75s cubic-bezier(.16, 1, .3, 1) backwards;
}
.stats-bar-grid.in-view .stats-bar-item:nth-child(1) b { animation-delay: 0.02s; }
.stats-bar-grid.in-view .stats-bar-item:nth-child(2) b { animation-delay: 0.08s; }
.stats-bar-grid.in-view .stats-bar-item:nth-child(3) b { animation-delay: 0.14s; }
.stats-bar-grid.in-view .stats-bar-item:nth-child(4) b { animation-delay: 0.20s; }
.stats-bar-grid.in-view .stats-bar-item:nth-child(5) b { animation-delay: 0.26s; }

/* Troféu: entra com o mesmo pop e depois balança continuamente */
@keyframes trophy-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  20%      { transform: translateY(-7px) rotate(-9deg); }
  45%      { transform: translateY(-1px) rotate(0deg); }
  70%      { transform: translateY(-5px) rotate(9deg); }
}
.stats-bar-grid.in-view .stats-bar-trophy b {
  animation:
    stat-pop 0.75s cubic-bezier(.16, 1, .3, 1) 0.26s backwards,
    trophy-bounce 2.8s ease-in-out 1.05s infinite;
}

/* ===== PROBLEM ===== */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.problem-card { padding: 26px 22px; transition: transform 0.25s cubic-bezier(.16,1,.3,1), box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease; }
.problem-card .num { font-size: 12.5px; font-weight: 700; color: var(--muted); margin-bottom: 16px; transition: color 0.25s ease; }
.problem-card h3 { font-size: 16px; margin-bottom: 10px; line-height: 1.4; color: var(--ink); transition: color 0.25s ease; }
.problem-card p { font-size: 14px; color: var(--ink-soft); transition: color 0.25s ease; }

/* Hover: o card assume a cor da marca e inverte o texto para branco */
.problem-card:hover { background: var(--accent); border-color: var(--accent); }
.problem-card:hover .num { color: rgba(255, 255, 255, 0.7); }
.problem-card:hover h3 { color: #fff; }
.problem-card:hover p { color: rgba(255, 255, 255, 0.88); }

/* ===== PHASES — um quadro de cada cor da identidade (roxo + tinta escura) ===== */
.phases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.phase-block { padding: 36px 32px; border-color: transparent; }
.phase-block .step-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 13px; border-radius: var(--radius-full); margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.16); color: #fff;
}
.phase-block h3 { font-size: 22px; margin-bottom: 12px; color: #fff; }
.phase-block p.desc { font-size: 14.5px; margin-bottom: 24px; color: rgba(255, 255, 255, 0.9); }
.phase-block .feat-list { display: flex; flex-direction: column; gap: 13px; }
.phase-block .feat-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; font-weight: 500; color: #fff; }
.phase-block .feat-list .check-ico { background: rgba(255, 255, 255, 0.18); }
.phase-block .feat-list .check-ico svg { stroke: #fff; }

.phase-block.pre { background: var(--accent); }
.phase-block.pos { background: var(--ink); }

.phases-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 24px; color: var(--muted); font-size: 13px; font-weight: 500; }

/* ===== ALTERNATING FEATURE ROWS ===== */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 48px 0; }
/* O respiro das bordas é do .section — sem isso a primeira/última linha somaria 96+48px */
.feature-row:first-of-type { padding-top: 0; }
.feature-row:last-of-type { padding-bottom: 0; }
.feature-row.reverse .feature-visual { order: 2; }
.feature-row.reverse .feature-text { order: 1; }
.feature-text h3 { font-size: 25px; margin-bottom: 12px; }
.feature-text p { font-size: 15px; color: var(--ink-soft); margin-bottom: 20px; }
.feature-text .mini-list { display: flex; flex-direction: column; gap: 10px; }
.feature-text .mini-list li { display: flex; gap: 10px; align-items: center; font-size: 13.5px; font-weight: 500; color: var(--ink); }
.feature-text .mini-list li svg { width: 15px; height: 15px; stroke: var(--accent); flex-shrink: 0; }

.feature-visual {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
}

/* Mockup: frequency bars */
.mock-bars { width: 100%; display: flex; flex-direction: column; gap: 16px; }
.mock-bars .bar-row { display: flex; align-items: center; gap: 12px; }
.mock-bars .bar-label { width: 128px; font-size: 12.5px; font-weight: 600; color: var(--ink); flex-shrink: 0; }
.mock-bars .bar-track { flex: 1; height: 8px; background: var(--line-soft); border-radius: var(--radius-full); overflow: hidden; }
.mock-bars .bar-fill { height: 100%; border-radius: var(--radius-full); background: var(--accent); width: 0%; transition: width 1.1s cubic-bezier(.16,1,.3,1); }
.mock-bars .bar-pct { width: 36px; text-align: right; font-size: 12.5px; font-weight: 700; color: var(--ink); }

/* Mockup: funil da aprovação — cada etapa é mais estreita que a anterior, formando o funil */
.mock-funnel { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mock-funnel .funnel-step { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mock-funnel .bar-fill { height: 16px; width: 0%; border-radius: var(--radius-sm); background: var(--accent); }
.mock-funnel .funnel-label { font-size: 10.5px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.mock-funnel .funnel-final .bar-fill { background: var(--ink); }
.mock-funnel .funnel-final .funnel-label { color: var(--accent); font-weight: 800; font-size: 11px; }

/* Mockup: banca profile card */
.mock-banca { width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; }
.mock-banca .top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.mock-banca .avatar { width: 38px; height: 38px; border-radius: 10px; background: var(--ink); }
.mock-banca .top b { display: block; font-size: 14px; color: var(--ink); }
.mock-banca .top span { font-size: 12px; color: var(--muted); }
.mock-banca .pill-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.mock-banca .pill { font-size: 11.5px; font-weight: 600; padding: 6px 12px; border-radius: var(--radius-full); background: var(--surface-alt); color: var(--ink-soft); border: 1px solid var(--line); }
.mock-banca .meter-label { display: flex; justify-content: space-between; font-size: 12px; font-weight: 500; color: var(--ink-soft); margin-bottom: 6px; }
.mock-banca .meter { height: 6px; background: var(--line-soft); border-radius: var(--radius-full); overflow: hidden; margin-bottom: 14px; }
.mock-banca .meter-fill { display: block; height: 100%; width: 0%; background: var(--accent); border-radius: var(--radius-full); transition: width 1.1s cubic-bezier(.16,1,.3,1); }

/* ===== Movimento das barras (gráfico de temas + medidores da banca) =====
   1) preenchimento em cascata: cada barra parte depois da anterior
   2) brilho que percorre a barra continuamente depois de preenchida */
.mock-bars .bar-row:nth-child(1) .bar-fill { transition-delay: 0.05s; }
.mock-bars .bar-row:nth-child(2) .bar-fill { transition-delay: 0.18s; }
.mock-bars .bar-row:nth-child(3) .bar-fill { transition-delay: 0.31s; }
.mock-bars .bar-row:nth-child(4) .bar-fill { transition-delay: 0.44s; }
.mock-banca .meter-fill { transition-delay: 0.05s; }
.mock-banca .meter ~ .meter .meter-fill { transition-delay: 0.18s; }
.mock-funnel .funnel-step:nth-child(1) .bar-fill { transition-delay: 0.05s; }
.mock-funnel .funnel-step:nth-child(2) .bar-fill { transition-delay: 0.16s; }
.mock-funnel .funnel-step:nth-child(3) .bar-fill { transition-delay: 0.27s; }
.mock-funnel .funnel-step:nth-child(4) .bar-fill { transition-delay: 0.38s; }
.mock-funnel .funnel-step:nth-child(5) .bar-fill { transition-delay: 0.49s; }
.mock-funnel .funnel-step:nth-child(6) .bar-fill { transition-delay: 0.60s; }

.mock-bars .bar-fill,
.mock-banca .meter-fill,
.mock-funnel .bar-fill {
  position: relative;
  overflow: hidden;
  transition: width 1.1s cubic-bezier(.16,1,.3,1);
}
.mock-bars .bar-fill::after,
.mock-banca .meter-fill::after,
.mock-funnel .bar-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 15%, rgba(255, 255, 255, 0.6) 50%, transparent 85%);
  transform: translateX(-110%);
  animation: bar-shine 3s ease-in-out infinite;
}
.mock-bars .bar-row:nth-child(2) .bar-fill::after { animation-delay: 0.35s; }
.mock-bars .bar-row:nth-child(3) .bar-fill::after { animation-delay: 0.7s; }
.mock-bars .bar-row:nth-child(4) .bar-fill::after { animation-delay: 1.05s; }
.mock-banca .meter ~ .meter .meter-fill::after { animation-delay: 0.5s; }
.mock-funnel .funnel-step:nth-child(2) .bar-fill::after { animation-delay: 0.3s; }
.mock-funnel .funnel-step:nth-child(3) .bar-fill::after { animation-delay: 0.6s; }
.mock-funnel .funnel-step:nth-child(4) .bar-fill::after { animation-delay: 0.9s; }
.mock-funnel .funnel-step:nth-child(5) .bar-fill::after { animation-delay: 1.2s; }
.mock-funnel .funnel-step:nth-child(6) .bar-fill::after { animation-delay: 1.5s; }

@keyframes bar-shine {
  0%        { transform: translateX(-110%); }
  55%, 100% { transform: translateX(110%); }
}

/* Mockup: roadmap */
.mock-roadmap { width: 100%; display: flex; flex-direction: column; gap: 0; }
.mock-roadmap .rm-item { display: flex; gap: 16px; padding-bottom: 22px; position: relative; }
.mock-roadmap .rm-item:last-child { padding-bottom: 0; }
.mock-roadmap .rm-item::before { content: ""; position: absolute; left: 12px; top: 28px; bottom: 0; width: 1.5px; background: var(--line); }
.mock-roadmap .rm-item:last-child::before { display: none; }
.mock-roadmap .rm-dot { position: relative; width: 26px; height: 26px; border-radius: 50%; background: var(--surface); border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 11.5px; font-weight: 700; color: var(--muted); flex-shrink: 0; z-index: 1; transition: background-color 0.6s ease, border-color 0.6s ease; }
.mock-roadmap .rm-item.done .rm-dot { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Marcador: o número dá lugar ao check quando a etapa é concluída (loop via JS) */
.mock-roadmap .rm-num,
.mock-roadmap .rm-check {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px; height: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(.22, 1, .36, 1);
}
.mock-roadmap .rm-check { opacity: 0; transform: scale(0.55); }
.mock-roadmap .rm-item.done .rm-num { opacity: 0; transform: scale(0.55) rotate(-14deg); }
.mock-roadmap .rm-item.done .rm-check { opacity: 1; transform: scale(1); }

/* Pequeno "pop" no marcador no instante em que vira check */
.mock-roadmap .rm-item.done .rm-dot { animation: rm-pop 0.9s cubic-bezier(.22, 1, .36, 1); }
@keyframes rm-pop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.14); }
  100% { transform: scale(1); }
}

/* A linha que liga as etapas vai sendo preenchida junto */
.mock-roadmap .rm-item::after {
  content: "";
  position: absolute;
  left: 12px; top: 28px; bottom: 0;
  width: 1.5px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.1s cubic-bezier(.33, 1, .68, 1);
}
.mock-roadmap .rm-item.done::after { transform: scaleY(1); }
.mock-roadmap .rm-item:last-child::after { display: none; }
.mock-roadmap .rm-text b { display: block; font-size: 13.5px; color: var(--ink); margin-bottom: 2px; }
.mock-roadmap .rm-text span { font-size: 12px; color: var(--muted); }

/* Mockup: atualização pós-edital (lista de status, no lugar do ring animado) */
.mock-update { width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; }
.mock-update .mu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mock-update .mu-head span { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.mock-update .mu-head b { font-size: 12px; font-weight: 700; color: var(--success); background: #e7f6ef; padding: 4px 10px; border-radius: var(--radius-full); }
.mock-update .mu-row { display: flex; align-items: center; gap: 11px; padding: 10px 0; border-top: 1px solid var(--line-soft); }
.mock-update .mu-row:first-of-type { border-top: none; }
.mock-update .mu-row span { font-size: 13.5px; font-weight: 500; color: var(--ink); }

/* ===== CHECKLIST GRID ===== */
.checklist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.check-card { display: flex; align-items: flex-start; gap: 13px; padding: 18px 20px; }
.check-card span { font-size: 14.5px; font-weight: 500; color: var(--ink); }

/* ===== MODULES ===== */
.modules-list { display: flex; flex-direction: column; gap: 10px; }
.module-item { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--surface); transition: border-color 0.2s ease; }
.module-item.open { border-color: #cfc7e8; }
.module-head { display: flex; align-items: center; gap: 16px; padding: 18px 22px; width: 100%; text-align: left; }
.module-head .m-num {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  background: var(--surface-alt); color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px;
  transition: background 0.2s ease, color 0.2s ease;
}
.module-item.open .m-num { background: var(--ink); color: #fff; }
.module-head h3 { flex: 1; font-size: 15px; font-weight: 600; color: var(--ink); }
.module-head .chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.35s cubic-bezier(.34,1.56,.64,1); stroke: var(--muted); }
.module-item.open .chevron { transform: rotate(180deg); stroke: var(--ink); }
.module-body { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(.16,1,.3,1); }
.module-body-inner { padding: 0 22px 20px 70px; opacity: 0; transform: translateY(-6px); transition: opacity 0.3s ease, transform 0.3s ease; }
.module-item.open .module-body-inner { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.module-body-inner p { font-size: 14px; color: var(--ink-soft); }

/* ===== PROFESSORA ===== */
.professora-wrap { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 48px; align-items: stretch; }
/* margin-top compensa a altura do eyebrow do texto, alinhando o topo da foto com o h2 */
.prof-avatar-box { display: flex; flex-direction: column; align-items: center; height: calc(100% - 40px); margin-top: 40px; }
.prof-avatar {
  width: 100%; max-width: 300px; height: 100%; border-radius: var(--radius-lg);
  background: var(--surface-alt); border: 1px solid var(--line);
  overflow: hidden;
}
.prof-avatar-img { width: 100%; height: 100%; object-fit: cover; object-position: 35% center; display: block; }
/* Grid 2×2: os selos ficam alinhados e com a mesma altura por linha */
.prof-badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-top: 18px; width: 100%; max-width: 400px; }
.prof-badges .b {
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 10.5px; font-weight: 600; line-height: 1.35;
  padding: 10px 8px;
  border-radius: var(--radius-full);
  background: var(--surface-dark); color: #fff; border: 1px solid var(--surface-dark);
}

.prof-content .eyebrow { margin-bottom: 12px; }
.prof-content h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.prof-content p { font-size: 15px; color: var(--ink-soft); margin-bottom: 14px; }
.prof-content .role { font-size: 14px; color: var(--ink); font-weight: 600; margin-bottom: 18px; }

.why-directed { margin-top: 26px; padding: 22px; border-radius: var(--radius-md); background: var(--surface-alt); border: 1px solid var(--line); }
.why-directed h3 { font-size: 15px; margin-bottom: 8px; display: flex; align-items: center; gap: 9px; }
.why-directed h3 svg { width: 18px; height: 18px; stroke: var(--accent); flex-shrink: 0; }
.why-directed p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* ===== MÉTODO RIA (bloco escuro) ===== */
.metodo-ria { background: var(--surface-dark); }
.metodo-ria .eyebrow { color: #fff; }
.metodo-ria .eyebrow::before { background: rgba(255, 255, 255, 0.45); }
.metodo-ria h2 { color: #fff; }
.metodo-ria .section-sub { color: rgba(255, 255, 255, 0.72); }

.ria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ria-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.25s cubic-bezier(.16, 1, .3, 1), background-color 0.25s ease, border-color 0.25s ease;
}
.ria-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.32); }
.ria-card h3 { font-size: 17px; line-height: 1.35; color: #fff; margin-bottom: 14px; }
.ria-card p { font-size: 14.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.72); }

/* ===== CARREIRA (mesmo padrão visual da Trajetória: box branco + lista com ícone) ===== */
.carreira { background: var(--surface-dark); }
.carreira .eyebrow { color: #fff; }
.carreira .eyebrow::before { background: rgba(255, 255, 255, 0.45); }
.carreira h2 { color: #fff; }

.carreira-card { padding: 10px 26px; max-width: 720px; margin: 56px auto 0; }
.carreira-row {
  display: grid; grid-template-columns: 20px 1fr; align-items: center; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--line-soft);
}
.carreira-row:last-child { border-bottom: none; }
.carreira-text { font-size: 14.5px; font-weight: 500; color: var(--ink); }

/* ===== TRAJETÓRIA (linha do tempo de aprovações) ===== */
.trajetoria { margin-top: 60px; }
.trajetoria-head { max-width: 620px; margin: 0 auto 26px; text-align: center; }
.trajetoria-head h3 { font-size: 21px; }
.trajetoria-card { padding: 10px 26px; max-width: 720px; margin: 0 auto; }
.tj-item {
  display: grid;
  grid-template-columns: 20px 54px 1fr;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}
.tj-item:last-child { border-bottom: none; }
/* Ícone acende em sequência (mesmo padrão do roadmap da Estratégia de estudo) */
.tj-item .check-ico { transition: background-color 0.6s ease, transform 0.6s cubic-bezier(.22, 1, .36, 1); }
.tj-item .check-ico svg { transition: stroke 0.6s ease; }
.tj-item.lit .check-ico { background: var(--accent); animation: rm-pop 0.9s cubic-bezier(.22, 1, .36, 1); }
.tj-item.lit .check-ico svg { stroke: #fff; }

.tj-year { font-size: 15px; font-weight: 700; color: var(--accent); letter-spacing: -0.01em; }
.tj-text { font-size: 14.5px; font-weight: 500; color: var(--ink); }
.tj-text i { font-style: normal; color: var(--muted); font-weight: 500; }

/* ===== DESTAQUE (vídeo + foto acima dos depoimentos) ===== */
.alcione-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; margin-bottom: 48px; }
.alcione-video,
.alcione-photo { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface-alt); }
/* O vídeo é vertical (478x850) e mais alongado que a foto (1086x1448, 3:4) — força
   a mesma proporção da foto e recorta o excesso do vídeo (centralizado) pra igualar
   as alturas sem distorcer nenhum dos dois. */
.alcione-video { aspect-ratio: 1086 / 1448; object-fit: cover; object-position: center top; }

/* ===== TESTIMONIALS (marquee: rola sozinho da direita pra esquerda, em loop) ===== */
/* Duas cópias idênticas do conteúdo lado a lado; a animação anda exatamente metade
   da largura total (uma cópia inteira), então quando "reinicia" em 0% o visual é
   idêntico ao instante anterior — o loop fica imperceptível. */
.testi-marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.testi-track { display: flex; width: max-content; animation: testi-scroll 70s linear infinite; }
.testi-marquee:hover .testi-track { animation-play-state: paused; }
.testi-loop { display: flex; align-items: flex-start; gap: 18px; padding-bottom: 4px; }
.testi-col { display: flex; flex-direction: column; gap: 10px; width: 230px; flex-shrink: 0; }
.testi-col img { display: block; width: 100%; height: auto; border-radius: var(--radius-md); border: 1px solid var(--line); }

@keyframes testi-scroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .testi-track { animation: none; }
}

.stats-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.stats-strip .stat-box { text-align: center; padding: 26px; border-radius: var(--radius-md); background: var(--surface-alt); border: 1px solid var(--line); }
.stats-strip .stat-box b { display: block; font-size: 28px; color: var(--ink); font-weight: 700; margin-bottom: 4px; }
.stats-strip .stat-box span { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ===== PRICING ===== */
/* overflow:hidden é essencial aqui — o .hero-blob reaproveitado tem offsets negativos
   grandes; sem isso ele vaza da tela e causa scroll horizontal no mobile (iOS Safari
   arrasta a página inteira pro lado). */
.pricing-section { position: relative; overflow: hidden; background: var(--surface-alt); }
.price-card { max-width: 440px; margin: 0 auto; background: var(--surface); padding: 36px; text-align: center; }
.price-card .badge-top {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-soft); color: var(--accent-dark);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 6px 13px; border-radius: var(--radius-full); margin-bottom: 18px;
}
.price-card .badge-lote {
  display: inline-flex; align-items: center;
  background: var(--accent-dark); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  padding: 5px 12px; border-radius: var(--radius-full); margin-bottom: 18px;
}
.price-card h3 { font-size: 19px; margin-bottom: 18px; }
.price-card .price-old { font-size: 14px; color: var(--muted); text-decoration: line-through; }
/* align-items:center alinha o "R$" pelo meio do número, e não pela linha de base */
.price-card .price-new { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 6px; }
.price-card .price-new b { font-size: 60px; line-height: 1; color: var(--ink); font-weight: 800; letter-spacing: -0.03em; }
.price-card .price-new span.currency { font-size: 22px; font-weight: 700; color: var(--ink); }
.price-card .price-install { font-size: 13px; color: var(--muted); margin: 6px 0 26px; }
.price-card .price-feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.price-card .price-feats li { display: flex; gap: 10px; align-items: center; text-align: left; font-size: 13.5px; font-weight: 500; color: var(--ink); }
.price-card .price-feats svg { width: 15px; height: 15px; stroke: var(--accent); flex-shrink: 0; }
.guarantee-strip { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.guarantee-strip svg { width: 30px; height: 30px; stroke: var(--ink-soft); flex-shrink: 0; }
.guarantee-strip b { display: block; font-size: 13px; color: var(--ink); }
.guarantee-strip span { font-size: 11.5px; color: var(--muted); }

/* ===== FAQ ===== */
.faq-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.faq-tab { padding: 9px 18px; border-radius: var(--radius-full); font-size: 13.5px; font-weight: 600; color: var(--ink-soft); background: var(--surface-alt); border: 1px solid transparent; transition: all 0.2s ease; }
.faq-tab.active { background: var(--ink); color: #fff; }

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.faq-item.hidden { display: none; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 18px 22px; text-align: left; }
.faq-q h3 { font-size: 15px; font-weight: 600; color: var(--ink); }
.faq-q .chevron { width: 17px; height: 17px; flex-shrink: 0; stroke: var(--muted); transition: transform 0.35s cubic-bezier(.34,1.56,.64,1); }
.faq-item.open .chevron { transform: rotate(180deg); stroke: var(--ink); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(.16,1,.3,1); }
.faq-a-inner { padding: 0 22px 18px; font-size: 14px; color: var(--ink-soft); opacity: 0; transform: translateY(-6px); transition: opacity 0.3s ease, transform 0.3s ease; }
.faq-item.open .faq-a-inner { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }

/* ===== FINAL CTA ===== */
.final-cta { background: var(--surface-dark); border-radius: var(--radius-lg); margin: 0 24px; padding: 68px 40px; text-align: center; }
.final-cta h2 { color: #fff; margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 500px; margin: 0 auto 30px; }
.final-cta .btn-primary { background: #fff; color: var(--ink); box-shadow: none; }
.final-cta .btn-primary:hover { background: var(--surface-alt); color: var(--ink); }

/* ===== FOOTER ===== */
footer { padding: 64px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer-brand p { font-size: 13.5px; color: var(--ink-soft); margin: 16px 0 18px; max-width: 270px; }
.footer-col h3 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 11px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--ink); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: var(--surface-alt); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 15px; height: 15px; stroke: var(--ink-soft); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12.5px; color: var(--muted); }

/* ===========================================================
   RESPONSIVE
=========================================================== */
@media (max-width: 1080px) {
  .container { padding: 0 20px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .ria-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card { flex: 0 0 calc(50% - 9px); }
}

@media (max-width: 980px) {
  .hero { padding: 128px 0 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; min-height: auto; }
  .hero-content { padding: 0; text-align: center; align-items: center; }
  .hero-content .eyebrow-box { margin-left: auto; margin-right: auto; }
  .hero-content h1 { max-width: none; }
  .hero-content p { max-width: none; }
  .hero-ctas { justify-content: center; }
  .br-d { display: none; }
  .br-m { display: inline; }
  .hero-visual { width: auto; height: 440px; margin-top: 8px; margin-right: 0; margin-bottom: 0; overflow: visible; }
  .hero-photo-wrap { max-width: 400px; }
  .hero-photo-blob { width: 350px; height: 350px; }
  .hero-tag-chip { font-size: 12.5px; padding: 9px 15px 9px 10px; }
  .hero-tag-chip.chip-1 { top: 16px; right: -10px; }
  .hero-tag-chip.chip-2 { top: 148px; left: -20px; }
  .hero-tag-chip.chip-3 { top: 264px; right: -16px; }
  .professora-wrap { grid-template-columns: 1fr; }
  /* Foto ocupa a largura total da coluna, igual aos boxes de lista da seção anterior. */
  .prof-avatar-box { max-width: none; width: 100%; margin: 0; height: auto; }
  .prof-avatar { max-width: none; width: 100%; height: auto; aspect-ratio: 1 / 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section { padding: 76px 0; }
  .mid-cta { margin-top: 0; margin-bottom: 76px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .nav-burger { display: flex; }
  /* O painel é filho do container flex; sem wrap ele entraria na mesma linha do logo. */
  .nav .container { flex-wrap: wrap; row-gap: 0; }
  .mobile-panel { width: 100%; }
  .nav .container::before { content: ""; flex: 0 0 44px; }
  .nav .logo { flex: 1; justify-content: center; min-width: 0; }
  .nav .logo span { white-space: nowrap; }
  .phases-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; padding: 32px 0; }
  .feature-row.reverse .feature-visual, .feature-row.reverse .feature-text { order: unset; }
  .checklist-grid { grid-template-columns: 1fr; }
  /* Empilha vídeo (primeiro, por ordem do HTML) acima da foto no mobile. */
  .alcione-feature { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
  .stats-strip { grid-template-columns: 1fr; }
  .stats-bar-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
  .stats-bar-item b { font-size: 27px; }
}

@media (max-width: 680px) {
  /* Alinhamento à esquerda só no mobile — no desktop o bloco segue centralizado. */
  .section-head.left-m { text-align: left; margin-left: 0; margin-right: 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .ria-grid { grid-template-columns: 1fr; }
  .ria-card { padding: 24px 20px; text-align: center; }
  .testi-card { flex: 0 0 88%; }
  .trajetoria-card { padding: 6px 18px; }
  .tj-item { grid-template-columns: 20px 44px 1fr; gap: 10px; align-items: start; padding: 12px 0; }
  .tj-year { font-size: 13.5px; }
  .tj-text { font-size: 13.5px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .price-card { padding: 28px 22px; }
  .final-cta { padding: 48px 22px; margin: 0 16px; }
  .hero-visual { height: 360px; }
  .hero-photo-wrap { max-width: 300px; }
  .hero-photo-blob { width: 270px; height: 270px; }
  .hero-tag-chip { font-size: 11.5px; padding: 8px 13px 8px 9px; gap: 7px; }
  .hero-tag-chip .check-ico { width: 17px; height: 17px; }
  .hero-tag-chip.chip-1 { top: 10px; right: -6px; }
  .hero-tag-chip.chip-2 { top: 118px; left: -14px; }
  .hero-tag-chip.chip-3 { top: 226px; right: -10px; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .mid-cta { margin-top: 0; margin-bottom: 60px; }
  .section-head { margin-bottom: 36px; }
  h2 { font-size: 26px; }
  .module-body-inner { padding-left: 22px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .price-card .price-new b { font-size: 48px; }
  .stats-bar { padding: 36px 0; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
  .stats-bar-item span { font-size: 12px; }

  /* Nesta faixa o logo em tamanho cheio encosta no ícone do menu — reduz para criar folga. */
  .nav .container { gap: 12px; }
  .logo { font-size: 12.5px; gap: 9px; }
  .logo-img { height: 25px; }

  .hero-content .eyebrow-box { font-size: 10.5px; padding: 8px 16px; }
  .hero-content h1 { font-size: 48px; }
}

/* ===== PÁGINAS LEGAIS (termos, privacidade, reembolso) ===== */
.legal-header { border-bottom: 1px solid var(--line); padding: 20px 0; }
.legal-header .container { display: flex; align-items: center; justify-content: space-between; }
.legal-back { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.legal-back:hover { color: var(--accent); }

.legal-main { padding: 64px 0 96px; }
.legal-container { max-width: 720px; margin: 0 auto; }
.legal-container h1 { font-size: clamp(28px, 4vw, 38px); letter-spacing: -0.02em; margin-bottom: 8px; }
.legal-updated { font-size: 13.5px; color: var(--muted); margin-bottom: 40px; }
.legal-container h2 { font-size: 19px; margin: 40px 0 12px; letter-spacing: -0.01em; }
.legal-container p, .legal-container li { font-size: 15px; line-height: 1.75; color: var(--ink-soft); }
.legal-container ul { padding-left: 20px; margin: 8px 0 16px; }
.legal-container li { margin-bottom: 6px; }
.legal-container a { color: var(--accent); font-weight: 600; }
.legal-container strong { color: var(--ink); }
.legal-footer { border-top: 1px solid var(--line); padding: 28px 0; }
.legal-footer .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.legal-footer p { font-size: 13px; color: var(--muted); }
.legal-footer nav { display: flex; gap: 20px; }
.legal-footer nav a { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.legal-footer nav a:hover { color: var(--accent); }

@media (max-width: 480px) {
  .legal-footer .container { flex-direction: column; align-items: flex-start; }
}