/* =====================================================================
   ACADEMIA DA FAMÍLIA — Landing Page
   Design system: navy #001737 / dourado #fbb03b / branco / creme
   Tipografia: Plus Jakarta Sans (evolução refinada do Arial do manual de
   marca — mesma neutralidade e alta legibilidade, com melhor desenho em
   títulos grandes). Fallback: Arial, Helvetica, sans-serif.
   ===================================================================== */

:root {
  --navy: #001737;
  --navy-2: #062a52;
  --navy-3: #0c3866;
  --gold: #fbb03b;
  --gold-dark: #e39a1f;
  --gold-light: #ffd589;
  --white: #ffffff;
  --cream: #f7f2e7;
  --cream-2: #f0e8d8;
  --ink: #12203a;
  --muted: #5b6b85;
  --muted-light: #9fb0c9;
  --line: #e2d9c6;

  /* cores de apoio só para variação dos cards de trilha */
  --teal: #2f7a78;
  --terracotta: #c4622d;
  --plum: #5b3a63;

  --radius-pill: 999px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 12px 30px rgba(0, 23, 55, 0.12);
  --shadow-soft: 0 6px 18px rgba(0, 23, 55, 0.08);

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
section { position: relative; }

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

h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif; margin: 0; line-height: 1.15; }

.section-head { max-width: 720px; margin: 0 0 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.section-head p { margin-top: 14px; font-size: 17px; color: var(--muted); line-height: 1.6; }
.section-head.on-dark p { color: var(--muted-light); }

.section-pad { padding: 92px 0; }
@media (max-width: 720px) { .section-pad { padding: 64px 0; } }

.bg-navy { background: var(--navy); color: var(--white); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-gold { background: var(--gold); color: var(--navy); }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.23s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.37s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.44s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.51s; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: bold;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--pill { border-radius: var(--radius-pill); padding: 12px 26px; font-size: 13.5px; }
.btn--gold { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-soft); }
.btn--gold:hover { background: var(--gold-dark); box-shadow: 0 10px 24px rgba(251, 176, 59, 0.35); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-2); }
.btn--outline-light { border-color: rgba(255, 255, 255, 0.55); color: var(--white); }
.btn--outline-light:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn--outline-navy { border-color: var(--navy); color: var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 36px; font-size: 15.5px; }

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.header::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0, 23, 55, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
  pointer-events: none;
}
.header.is-scrolled { padding: 10px 0; box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
.header.is-scrolled::before { opacity: 1; }

.header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.logo { display: flex; align-items: center; }
.logo-img { height: 34px; width: auto; display: block; }
.logo-img--icon { display: none; }

.header-actions { display: flex; align-items: center; gap: 10px; }

/* ===================== HERO ===================== */
.hero {
  background: radial-gradient(120% 140% at 85% -10%, #0c3d78 0%, var(--navy) 55%), var(--navy);
  color: var(--white);
  padding: 150px 0 80px;
  overflow: hidden;
}
.hero .container {
  max-width: 1360px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  align-items: center;
}
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-caption {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted-light);
  text-align: center;
  font-style: italic;
}
.hero-title {
  font-size: clamp(32px, 4.4vw, 50px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.16;
  letter-spacing: -0.015em;
}
.hero-sub {
  margin-top: 22px;
  font-size: 18.5px;
  line-height: 1.65;
  color: #dbe4f2;
  max-width: 560px;
}
.hero-sub strong { color: var(--white); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: var(--muted-light); }

.hero-trust {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 22px;
}
.hero-trust-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: #cbd6e8; line-height: 1.4; }
.hero-trust-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); margin-top: 1px; }


/* ===================== PROBLEMA (evidências) ===================== */
.evidence-list { display: flex; flex-direction: column; gap: 28px; margin-top: 8px; }
.evidence-row { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px; align-items: stretch; }
.evidence-row--reverse { direction: rtl; }
.evidence-row--reverse > * { direction: ltr; }
.evidence-row__media { min-height: 220px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.evidence-row__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.evidence-row__text {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.evidence-row__stat { font-size: clamp(18px, 2.2vw, 23px); font-weight: 800; margin: 0 0 10px; line-height: 1.32; }
.evidence-row__desc { font-size: 14.5px; line-height: 1.6; color: #cbd6e8; margin: 0; }

.evidence-closing { max-width: 720px; margin: 48px auto 0; text-align: center; }
.evidence-closing p { font-size: 16.5px; line-height: 1.7; color: var(--ink); margin: 0 0 14px; }
.evidence-closing p:last-child { margin-bottom: 0; font-weight: 700; color: var(--navy); }

/* ===================== SINAIS (2 col texto) ===================== */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.split-title { font-size: clamp(26px, 3.2vw, 34px); font-weight: 800; color: var(--gold); line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 20px; }
.split-body p { font-size: 16.5px; line-height: 1.7; color: #dbe4f2; margin: 0 0 16px; }
.split-body p:last-child { margin-bottom: 0; }

/* variante só de texto: título bem maior para ocupar a mesma altura do bloco de leitura */
.split--text-only { align-items: start; }
.split--text-only .split-title {
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.18;
  margin-bottom: 0;
}

/* ===================== MÉTODO ===================== */
.metodo-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 54px; align-items: center; margin-bottom: 56px; }
.metodo-intro .section-head { margin-bottom: 0; max-width: none; }
.metodo-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.metodo-visual img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 1 / 1; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 12px; position: relative; }
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  position: relative;
  border-top: 4px solid var(--gold);
}
.step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
  font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.step-card p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.step-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11.5px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(251,176,59,0.14);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}

.center-cta { text-align: center; margin-top: 44px; }

/* ===================== VEJA COMO FUNCIONA (mockups laptop + celular) ===================== */
.demo-stage { position: relative; max-width: 1040px; margin: 0 auto; padding: 20px 20px 10px; }

.demo-devices { position: relative; z-index: 3; display: flex; align-items: flex-end; justify-content: center; gap: 56px; }
.demo-device { display: flex; flex-direction: column; align-items: center; }
.demo-device--laptop { flex: 3.46 1 0; min-width: 0; max-width: 560px; }
.demo-device--phone { flex: 1 1 0; min-width: 90px; max-width: 162px; }
.demo-caption { margin-top: 18px; font-size: 13px; font-weight: 700; color: var(--muted); text-align: center; }

/* laptop */
.laptop { position: relative; width: 100%; }
.laptop__lid {
  position: relative;
  background: linear-gradient(155deg, #132743 0%, #0a1526 55%, #060d1a 100%);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.5);
}
.laptop__cam {
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: #223759; box-shadow: 0 0 0 2px #17233d, 0 0 4px rgba(120, 170, 255, 0.35);
  z-index: 2;
}
.laptop__screen {
  position: relative;
  background: #050f1f;
  border-radius: 3px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.laptop__screen::after {
  /* leve reflexo de vidro, reforça a leitura de "tela" */
  content: "";
  position: absolute; inset: 0; pointer-events: none; z-index: 6;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 22%);
}

/* celular */
.phone { position: relative; width: 100%; }
.phone__screen {
  position: relative;
  background: #050f1f;
  border: 9px solid #0a1526;
  border-radius: 30px;
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}
.phone__notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 42%; height: 16px; background: #0a1526; border-radius: 9px;
  z-index: 5;
}

/* mecanismo de slide (compartilhado entre laptop e celular) */
.demo-viewport { flex: 1; overflow: hidden; position: relative; }
.demo-track { display: flex; height: 100%; width: 500%; transition: transform 0.75s cubic-bezier(0.65, 0, 0.35, 1); }
.demo-track.is-jumping { transition: none; }
.demo-slide { flex: 0 0 20%; width: 20%; height: 100%; display: flex; flex-direction: column; background: var(--cream); }

.demo-topbar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--navy); flex-shrink: 0; }
.demo-dot { width: 8px; height: 8px; border-radius: 50%; }
.demo-dot--r { background: #ff5f57; }
.demo-dot--y { background: #febc2e; }
.demo-dot--g { background: #28c840; }
.demo-url { margin-left: 10px; font-size: 10.5px; color: var(--muted-light); background: rgba(255,255,255,0.08); padding: 3px 10px; border-radius: 6px; }

.demo-app { flex: 1; display: flex; flex-direction: column; padding: 20px 26px; overflow: hidden; }
.demo-app__header { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.demo-app__logo { width: 26px; height: 26px; }
.demo-app__header span { font-weight: 800; color: var(--navy); font-size: 14px; }

/* quiz */
.demo-quiz { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.demo-quiz__q { font-size: clamp(15px, 2.4vw, 19px); font-weight: 800; color: var(--navy); margin: 0 0 18px; }
.demo-quiz__opts { display: flex; flex-direction: column; gap: 10px; }
.demo-chip {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: 10px; padding: 12px 16px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.demo-chip.is-picked { border-color: var(--gold); background: rgba(251, 176, 59, 0.14); color: var(--navy); }
.demo-chip svg {
  width: 16px; height: 16px; color: var(--gold-dark); flex-shrink: 0;
  opacity: 0; transform: scale(0.5);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.demo-chip.is-picked svg { opacity: 1; transform: scale(1); }

/* resultado */
.demo-app--result { justify-content: flex-start; padding-top: 18px; }
.demo-result__label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin: 0; }
.demo-app--result h4 { font-size: clamp(15px, 2.4vw, 18px); font-weight: 800; color: var(--navy); margin: 4px 0 12px; }
.demo-result__list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.demo-result__item { display: flex; align-items: center; gap: 10px; background: var(--white); border-radius: 10px; padding: 6px; box-shadow: var(--shadow-soft); }
.demo-result__item img { width: 38px; height: 38px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.demo-result__item span { display: flex; flex-direction: column; gap: 1px; font-size: 11px; color: var(--muted); }
.demo-result__item span b { color: var(--navy); font-size: 11.5px; font-weight: 800; }
.demo-result__btn { display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: var(--navy); font-weight: 800; font-size: 12px; padding: 8px 15px; border-radius: var(--radius-pill); width: fit-content; }
.demo-result__btn svg { width: 13px; height: 13px; }

/* ajustes específicos do celular (fonte fixa, não depende de vw) */
.demo-app--phone { padding: 24px 15px 16px; }
.demo-app--phone .demo-quiz__q { font-size: 13px; margin-bottom: 12px; }
.demo-app--phone .demo-chip { font-size: 10.5px; padding: 9px 11px; border-radius: 8px; }
.demo-app--phone .demo-chip svg { width: 13px; height: 13px; }
.demo-app--phone.demo-app--result h4 { font-size: 14px; margin: 4px 0 10px; }
.demo-app--phone .demo-result__label { font-size: 9px; }
.demo-app--phone .demo-result__list { gap: 6px; margin-bottom: 12px; }
.demo-app--phone .demo-result__item { padding: 6px; gap: 8px; border-radius: 8px; }
.demo-app--phone .demo-result__item img { width: 32px; height: 32px; border-radius: 5px; }
.demo-app--phone .demo-result__item span { font-size: 9px; }
.demo-app--phone .demo-result__item span b { font-size: 9.5px; }
.demo-app--phone .demo-result__btn { font-size: 10px; padding: 7px 12px; }

/* destaques acima dos mockups */
.demo-highlights { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; margin-bottom: 30px; }
.demo-highlight { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--navy); }
.demo-highlight svg { width: 17px; height: 17px; color: var(--gold-dark); flex-shrink: 0; }

/* ===================== TRILHAS (carrossel) ===================== */
.section-head .trilhas-hint { color: var(--navy); font-weight: 700; }
.trilhas-wrap { position: relative; padding: 0 8px; }
.trilhas-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 10px;
  scrollbar-width: none;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}
.trilhas-track::-webkit-scrollbar { display: none; }
.trilhas-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.trilha-card {
  scroll-snap-align: start;
  flex: 0 0 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.trilha-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.trilha-card:hover { transform: translateY(-6px); }

.trilhas-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  z-index: 5;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.trilhas-arrow:hover { background: var(--navy); color: var(--white); }
.trilhas-arrow:active { transform: translateY(-50%) scale(0.94); }
.trilhas-arrow svg { width: 20px; height: 20px; }
.trilhas-arrow--prev { left: -14px; }
.trilhas-arrow--next { right: -14px; }


/* ===================== FILOSOFIA (bloco vibrante) ===================== */
.philosophy-split { display: grid; grid-template-columns: 1fr 1.15fr; gap: 54px; align-items: center; }

.persona-gallery {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
  height: 100%;
  min-height: 420px;
}
.persona-gallery__item {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(0, 23, 55, 0.18);
}
.persona-gallery__item--main { grid-column: 1 / 2; grid-row: 1 / 3; }
.persona-gallery__item:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
.persona-gallery__item:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
.persona-gallery__item:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 4; }
.persona-gallery__item:nth-child(5) { grid-column: 2 / 3; grid-row: 3 / 4; }

.philosophy h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.philosophy p {
  margin: 18px 0 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(0,23,55,0.82);
}
.philosophy .center-cta { text-align: left; margin-top: 34px; }

/* ===================== PROVA SOCIAL ===================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; align-items: start; }
.testi-grid--secondary { grid-template-columns: repeat(2, 1fr); max-width: 620px; margin: 24px auto 0; }
.testi-shot {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testi-shot:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0, 23, 55, 0.18); }
.testi-shot img { width: 100%; height: auto; display: block; }

/* ===================== CITAÇÃO ===================== */
.quote-frame {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 96px 64px;
  margin-top: 56px;
}
.quote-frame .qmark-bg {
  position: absolute;
  width: 46%;
  max-width: 340px;
  height: auto;
  aspect-ratio: 1;
  color: var(--gold);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.quote-frame .qmark-bg.tl {
  top: -8%;
  left: -6%;
  -webkit-mask-image: linear-gradient(120deg, transparent 8%, black 60%);
  mask-image: linear-gradient(120deg, transparent 8%, black 60%);
}
.quote-frame .qmark-bg.br {
  bottom: -10%;
  right: -6%;
  transform: rotate(180deg);
  -webkit-mask-image: linear-gradient(120deg, transparent 8%, black 60%);
  mask-image: linear-gradient(120deg, transparent 8%, black 60%);
}
.quote-block { text-align: center; position: relative; z-index: 1; }
.quote-eyebrow {
  display: block;
  margin-bottom: 22px;
  font-size: 15px;
  color: var(--muted-light);
}
.quote-block blockquote {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
}
.quote-block .center-cta { margin-top: 40px; }

/* ===================== O QUE VOCÊ RECEBE ===================== */
.receive-list { display: flex; flex-direction: column; }
.receive-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line);
}
.receive-item:first-child { padding-top: 0; }
.receive-item svg.check { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold-dark); margin-top: 2px; }
.receive-item p { margin: 0; font-size: 16px; line-height: 1.55; color: var(--ink); }
.receive-item b { color: var(--navy); }
.receive-item.bonus b { color: var(--gold-dark); }

.receive-group__title { font-size: 16px; font-weight: 800; color: var(--navy); margin: 0 0 14px; }

.receive-icon {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
}
.receive-icon svg { width: 19px; height: 19px; }
.receive-icon--navy { background: rgba(0, 23, 55, 0.09); color: var(--navy); }
.receive-icon--gold { background: rgba(251, 176, 59, 0.18); color: var(--gold-dark); }
.receive-icon--teal { background: rgba(47, 122, 120, 0.14); color: var(--teal); }
.receive-icon--terracotta { background: rgba(196, 98, 45, 0.14); color: var(--terracotta); }
.receive-icon--plum { background: rgba(91, 58, 99, 0.14); color: var(--plum); }

/* Dentro de um grupo, os itens ficam soltos — só existe divisor entre grupos */
.receive-list--compact { gap: 4px; }
.receive-list--compact .receive-item { padding: 8px 0; border-bottom: none; }
.receive-list--compact .receive-item:first-child { padding-top: 8px; }
.receive-list--compact p { font-size: 15.5px; }
.receive-list--grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 28px; }
.receive-list--grid .receive-item { border-bottom: none; }

/* ===================== RECEBE + PREÇO (card único) ===================== */
.combo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 23, 55, 0.14);
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
}
.combo-card__band {
  background: linear-gradient(100deg, var(--navy) 0%, var(--navy-3) 55%, var(--gold-dark) 130%);
  padding: 16px 32px;
  text-align: center;
}
.combo-card__band span { font-size: 12.5px; font-weight: bold; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); }
.combo-card__body { padding: 44px 40px 48px; }
.combo-card__divider { border-top: 1px dashed var(--line); margin: 40px 0; }

.combo-price { max-width: 460px; margin: 0 auto; text-align: center; }
.price-eyebrow { font-size: 13px; font-weight: bold; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.price-main { font-size: clamp(34px, 5vw, 48px); font-weight: 800; color: var(--navy); margin-top: 14px; letter-spacing: -0.01em; }
.price-main span { color: inherit; }
.price-full { margin-top: 8px; font-size: 15px; color: var(--muted); }
.price-full strong { color: var(--ink); font-weight: 700; }
.combo-price .btn { margin-top: 28px; }
.price-rating { margin-top: 18px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.price-rating svg { width: 16px; height: 16px; color: var(--gold); }
.price-rating span { margin-left: 6px; font-size: 13px; font-weight: bold; color: var(--muted); }
.price-rating--social { margin: 36px 0 0; }
.price-rating--social svg { width: 20px; height: 20px; }
.price-rating--social span { font-size: 15px; }

/* ===================== FUNDADORA ===================== */
.founder { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 54px; align-items: center; }
.founder-frame { position: relative; }
.founder-photo-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: block;
}
.founder-photo-portrait {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 42%;
  max-width: 190px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 6px solid var(--white);
  box-shadow: 0 16px 32px rgba(0, 23, 55, 0.28);
}
.placeholder-box {
  border: 2px dashed #c9bfa2;
  background: repeating-linear-gradient(135deg, #efe6d2, #efe6d2 10px, #e9dfc7 10px, #e9dfc7 20px);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: #7a6d4c;
  padding: 20px;
}
.placeholder-box svg { width: 34px; height: 34px; opacity: 0.6; }
.placeholder-box .ph-title { font-size: 13px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.04em; }
.placeholder-box .ph-sub { font-size: 12px; opacity: 0.85; max-width: 240px; }
.placeholder-box.on-dark { background: repeating-linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.06) 10px, rgba(255,255,255,0.1) 10px, rgba(255,255,255,0.1) 20px); border-color: rgba(255,255,255,0.35); color: #cbd6e8; }
.founder h2 { font-size: clamp(26px, 3.4vw, 34px); font-weight: 800; color: var(--navy); }
.founder p { font-size: 15.5px; line-height: 1.7; color: var(--ink); margin: 14px 0 0; }
.founder .mantra { margin-top: 20px; font-style: italic; color: var(--gold-dark); font-weight: bold; font-size: 16px; }

/* linha de autoridade — cargos/marcos abaixo da foto e do texto */
.founder-authority {
  grid-column: 1 / -1;
  margin-top: 50px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}
.founder-authority__item { display: flex; align-items: center; gap: 12px; min-width: 0; }
.founder-authority__icon {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
}
.founder-authority__icon svg { width: 19px; height: 19px; }
.founder-authority__icon--gold { background: rgba(251, 176, 59, 0.18); color: var(--gold-dark); }
.founder-authority__icon--navy { background: rgba(0, 23, 55, 0.09); color: var(--navy); }
.founder-authority__icon--teal { background: rgba(47, 122, 120, 0.14); color: var(--teal); }
.founder-authority__icon--terracotta { background: rgba(196, 98, 45, 0.14); color: var(--terracotta); }
.founder-authority__icon--plum { background: rgba(91, 58, 99, 0.14); color: var(--plum); }
.founder-authority__item p { margin: 0; min-width: 0; font-size: 13.5px; font-weight: 800; color: var(--navy); line-height: 1.4; overflow-wrap: break-word; }

/* ===================== GARANTIA ===================== */
.guarantee { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.guarantee-visual { position: relative; }
.guarantee-visual__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.guarantee-visual__image img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 1 / 1; }
.guarantee-visual__badge {
  position: absolute;
  top: -15%;
  left: -15%;
  z-index: 2;
  filter: drop-shadow(0 14px 26px rgba(0, 23, 55, 0.45));
}
.guarantee-visual__badge svg { width: 34%; min-width: 130px; max-width: 190px; height: auto; }
.badge-ring { transform-origin: 120px 120px; animation: badgeSpin 22s linear infinite; }
@keyframes badgeSpin { to { transform: rotate(360deg); } }
.guarantee-copy h2 { font-size: clamp(26px, 3.4vw, 34px); font-weight: 800; color: var(--white); }
.guarantee-copy p { font-size: 16px; line-height: 1.7; color: #dbe4f2; margin-top: 16px; }

/* ===================== FAQ ===================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,23,55,0.1); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: transparent; border: none; color: var(--navy);
  text-align: left; font-size: 16.5px; font-weight: bold;
  padding: 22px 4px;
  transition: color 0.2s ease;
}
.faq-item.is-open .faq-q, .faq-q:hover { color: var(--gold-dark); }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s ease; color: var(--gold-dark); }
.faq-item.is-open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { margin: 0 4px 22px; font-size: 15px; line-height: 1.65; color: var(--muted); max-width: 720px; }
.faq-a p b { color: var(--navy); }
.faq-cta { margin: 0 4px 26px; }
.faq-cta .btn { padding: 13px 24px; font-size: 14px; white-space: normal; text-align: center; }

/* ===================== FOOTER ===================== */
.footer { background: var(--navy); color: var(--white); padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.footer-row .logo { justify-self: start; }
.footer-copy { justify-self: center; margin: 0; font-size: 14px; color: var(--muted-light); text-align: center; white-space: nowrap; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--muted-light); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-links--top { justify-self: end; }
.footer-links--top a { font-size: 14px; font-weight: bold; color: #dbe4f2; }
.footer-links--top a:hover { color: var(--gold); }

/* ===================== WHATSAPP FLUTUANTE ===================== */
.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  transition: transform 0.2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; color: var(--white); }

/* ===================== RESPONSIVO ===================== */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero { padding-top: 128px; }
  .hero-visual { margin-top: 8px; }
  .hero-photo-frame { max-width: 340px; }
  .demo-stage { padding-top: 0; }
  .split, .founder, .guarantee, .metodo-intro, .philosophy-split { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .persona-gallery { min-height: 320px; }
  .split--text-only .split-title { margin-bottom: 20px; }
  .founder { direction: ltr; }
  .founder-photo-main { height: 300px; }
  .founder-photo-portrait { bottom: -18px; right: -18px; width: 38%; max-width: 150px; }
  .founder-authority { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 28px; }
  .evidence-row, .evidence-row--reverse { grid-template-columns: 1fr; direction: ltr; }
  .evidence-row__media { min-height: 180px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .guarantee { text-align: center; }
  .guarantee-visual { max-width: 420px; margin: 0 auto; }
  .guarantee-visual__badge svg { min-width: 110px; max-width: 150px; }
  .trilha-card { flex-basis: 300px; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .quote-frame { padding: 56px 24px; margin-top: 40px; }
  .quote-frame .qmark-bg { width: 60%; max-width: 220px; opacity: 0.35; }
  .receive-list--grid { grid-template-columns: 1fr; }
  /* Mapa da Família: em telas pequenas mostra só o celular (o notebook some), maior e mais enquadrado */
  .demo-devices { justify-content: center; }
  .demo-device--laptop { display: none; }
  .demo-device--phone { width: 100%; max-width: 300px; min-width: 0; }
  .demo-app--phone { justify-content: center; padding: 26px 20px; }
  .demo-app--phone .demo-quiz__q { font-size: 16px; margin-bottom: 18px; }
  .demo-app--phone .demo-chip { font-size: 13px; padding: 12px 14px; border-radius: 10px; }
  .demo-app--phone .demo-chip svg { width: 15px; height: 15px; }
  .demo-app--phone.demo-app--result { justify-content: center; padding-top: 26px; }
  .demo-app--phone.demo-app--result h4 { font-size: 17px; margin: 6px 0 14px; }
  .demo-app--phone .demo-result__label { font-size: 11px; }
  .demo-app--phone .demo-result__list { gap: 10px; margin-bottom: 18px; }
  .demo-app--phone .demo-result__item { padding: 10px; gap: 12px; border-radius: 10px; }
  .demo-app--phone .demo-result__item img { width: 44px; height: 44px; border-radius: 7px; }
  .demo-app--phone .demo-result__item span { font-size: 11.5px; }
  .demo-app--phone .demo-result__item span b { font-size: 12.5px; }
  .demo-app--phone .demo-result__btn { font-size: 12.5px; padding: 10px 16px; }
  .header .logo-img--full { display: none; }
  .header .logo-img--icon { display: block; }
  .footer-row { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 14px; }
  .footer-row .logo, .footer-links--top { justify-self: center; }
  .footer-copy { white-space: normal; }
  .header-actions .btn { padding: 10px 16px; font-size: 12px; }
  .hero { padding: 118px 0 56px; }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-photo-frame { max-width: 280px; }
  .evidence-row__text { padding: 24px 22px; }
  .testi-grid { grid-template-columns: 1fr; }
  .combo-card__body { padding: 32px 22px 36px; }
  .combo-card__divider { margin: 32px 0; }
  .founder-authority { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 16px; }
  .founder-photo-portrait { bottom: -14px; right: -6px; width: 36%; max-width: 130px; }
  .trilhas-wrap { padding: 0; }
  .trilha-card { flex-basis: 240px; }
  .trilhas-arrow { width: 38px; height: 38px; }
  .trilhas-arrow svg { width: 16px; height: 16px; }
  .trilhas-arrow--prev { left: 4px; }
  .trilhas-arrow--next { right: 4px; }
  .whatsapp-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}

@media (max-width: 420px) {
  .container { padding: 0 14px; }
  .header .container { gap: 8px; }
  .header-actions { gap: 6px; }
  .header-actions .btn { padding: 9px 11px; font-size: 10.5px; letter-spacing: 0.01em; }
  .logo-img { height: 28px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .btn { white-space: normal; text-align: center; }
}
