/* =========================================================
   Programa de Aceleracao — Fundamentos Sistemicos
   logos.nika.cl
   ========================================================= */

:root {
  --primary: #FC720B;
  --primary-dark: #D85F00;
  --bg-dark: #111111;
  --bg-darker: #0A0A0A;
  --bg-light: #FFFFFF;
  --bg-muted: #F8F8F8;
  --bg-subtle: #EFEFEF;
  --text-dark: #111111;
  --text-medium: #3B3B3B;
  --text-light: #6C6C6C;
  --text-mute: #C1C1C1;
  --border: #EFEFEF;
  --border-strong: #C1C1C1;

  --font-serif: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;

  --max-content: 760px;
  --max-wide: 1080px;
  --max-hero: 1200px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 8rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--primary); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-md);
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.2rem; }

strong { font-weight: 600; color: var(--text-dark); }

.accent { color: var(--primary); }

/* ============ LAYOUT ============ */
.section {
  padding: var(--space-xl) var(--space-md);
}
@media (max-width: 880px) {
  .section { padding: var(--space-lg) var(--space-md); }
}
@media (max-width: 720px) {
  .section { padding: 2.6rem var(--space-md); }
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-mute);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--bg-light); }
.section-dark p { color: #BDBDBD; }
.section-dark strong { color: var(--bg-light); }

.section-muted { background: var(--bg-muted); }

.container {
  max-width: var(--max-content);
  margin: 0 auto;
}
.container-wide {
  max-width: var(--max-wide);
  margin: 0 auto;
}

.text-center { text-align: center; }

/* ============ HEADER (preto solido por padrao) ============ */
.site-header {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  padding: 0;
  border-bottom: 0;
}
.site-header .header-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-md) var(--space-md) var(--space-sm);
}
.site-header .logo {
  max-width: 220px;
  margin: 0 auto;
  display: block;
}

/* ============ HERO (preto solido por padrao) ============ */
.hero {
  background: var(--bg-dark);
  color: var(--bg-light);
  padding: var(--space-md) var(--space-md) var(--space-xl);
  position: relative;
  overflow: hidden;
}

/* ============ Home (Pagina A e B): hero com foto B&W de fundo ============ */
/* Header NAO tem foto de fundo: fica preto solido para nao duplicar verticalmente
   nem competir com o logo. Foto fica so no hero. */
.home-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/fundo-1.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
/* unifica visualmente header + hero como se fossem um banner so */
.home-page .site-header { box-shadow: 0 1px 0 rgba(255,255,255,0.05); }
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.hero-inner h1 {
  color: var(--bg-light);
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: var(--space-md);
  font-weight: 600;
}
.hero-inner h1 .accent { color: var(--primary); }
.hero-inner .hero-vsl {
  margin: var(--space-lg) auto;
  max-width: 760px;
}
.hero-inner .hero-sub {
  color: #D5D5D5;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto var(--space-lg);
}
.hero-inner .hero-sub strong { color: #fff; }

/* ============ HERO PROGRAM BLOCK (card laranja com preco/garantia/vagas + CTA) ============ */
.hero-program-block {
  max-width: 620px;
  margin: var(--space-md) auto var(--space-lg);
  padding: 1.8rem 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(252, 114, 11, 0.4);
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.hero-program-block .hero-program-tag {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.7rem;
}
.hero-program-block .hero-program-meta {
  color: #D5D5D5;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 1.2rem;
}
.hero-program-block .hero-program-meta strong { color: #fff; }
.hero-program-block .hero-program-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
.hero-program-block .hero-program-price small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 400;
  color: #BDBDBD;
  margin-top: 0.2rem;
}
.hero-program-block .hero-program-perks {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.4rem;
}
.hero-program-block .hero-program-perks li {
  font-size: 0.92rem;
  color: #D5D5D5;
  position: relative;
  padding-left: 1.2rem;
}
.hero-program-block .hero-program-perks li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.hero-program-block .btn { width: 100%; max-width: 480px; }
@media (max-width: 720px) {
  .hero-program-block { padding: 1.4rem 1.1rem; }
  .hero-program-block .hero-program-perks { flex-direction: column; gap: 0.3rem; align-items: center; }
}

/* ============ HERO PRICE BLOCK (preco abaixo do video) ============ */
.hero-price-block {
  text-align: center;
  margin: var(--space-md) auto 0;
  max-width: 540px;
}
.hero-price-block .hero-price-installments {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 0.3rem;
}
.hero-price-block .hero-price-installments small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 400;
  color: #BDBDBD;
  margin-top: 0.3rem;
}
.hero-price-block .hero-price-cash {
  font-size: 1rem;
  color: #D5D5D5;
  margin: 0;
}
.hero-price-block .hero-price-cash strong { color: #fff; }
@media (max-width: 720px) {
  .hero-price-block .hero-price-installments { font-size: 1.5rem; }
}

/* ============ STRIP BAR (selos laranja) ============ */
.strip-bar {
  background: var(--primary);
  color: var(--bg-light);
  padding: 1.4rem var(--space-md);
}
.strip-bar-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  text-align: center;
  align-items: center;
}
.strip-bar-item {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.strip-bar-item::before {
  content: "✓";
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .strip-bar-inner { grid-template-columns: 1fr; gap: 0.6rem; }
}

/* ============ TWO-COL BULLETS + PHOTO ============ */
.bullets-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  max-width: var(--max-wide);
  margin: 0 auto;
}
.bullets-photo-grid .bullets-side h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: var(--space-md);
}
.bullets-photo-grid .photo-side img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.bullets-icon-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}
.bullets-icon-list li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 1.4rem;
  font-size: 1rem;
  line-height: 1.6;
}
.bullets-icon-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: rgba(252, 114, 11, 0.12);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.bullets-icon-list li h4 {
  margin: 0 0 0.3rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--primary);
  font-weight: 600;
}
.bullets-icon-list li p {
  margin: 0;
  color: var(--text-medium);
}
@media (max-width: 880px) {
  .bullets-photo-grid { grid-template-columns: 1fr; text-align: left; }
  .bullets-photo-grid .photo-side { order: -1; max-width: 320px; margin: 0 auto; }
  .bullets-photo-grid .photo-side img {
    aspect-ratio: 5 / 6;
    object-position: center top;
  }
}

/* ============ INSTITUTION CARD COM MOCKUP CELULAR ============ */
.cert-card {
  background: var(--bg-muted);
  border-radius: 16px;
  padding: var(--space-lg);
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.cert-card .cert-content h3 {
  margin-bottom: var(--space-md);
}
.cert-card .cert-content .bullets {
  margin: 0 0 var(--space-md);
}
.cert-card .cert-content .bullets li {
  font-size: 0.97rem;
  padding: 0.4rem 0 0.4rem 1.8rem;
}
.cert-card .cert-mockup img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: block;
}
.cert-card .cert-content .cert-footnote {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: var(--space-md);
}
@media (max-width: 880px) {
  .cert-card { grid-template-columns: 1fr; padding: var(--space-md); }
  .cert-card .cert-mockup { max-width: 240px; margin: 0 auto; }
}

/* ============ SECTION EYEBROW (label superior) ============ */
.section-eyebrow {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 0.7rem;
  font-weight: 700;
}

/* ============ FORMACAO COMPLETA — 4 niveis com laptop CSS ============ */
.formation-list {
  margin-top: var(--space-xl);
}
.formation-level {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-xl);
}
.formation-level:last-child { margin-bottom: 0; }
.formation-level:nth-child(even) .formation-text { order: 2; }

.formation-text .formation-num {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 0.6rem;
}
.formation-text h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin: 0 0 var(--space-sm);
}
.formation-text p {
  margin: 0;
  color: var(--text-medium);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Laptop CSS-only mockup */
.laptop-mockup {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,0.18));
}
.laptop-screen {
  background: #1a1a1a;
  border: 10px solid #1f1f1f;
  border-radius: 14px 14px 4px 4px;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.laptop-screen-content {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 20%, rgba(252, 114, 11, 0.18), transparent 55%),
    linear-gradient(135deg, #181818 0%, #0a0a0a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  color: #fff;
  text-align: center;
}
.laptop-screen-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.2rem;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.laptop-screen-num {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--primary);
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  font-weight: 700;
}
.laptop-screen-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  max-width: 80%;
}
.laptop-base {
  height: 12px;
  background: linear-gradient(180deg, #2a2a2a 0%, #0a0a0a 60%);
  border-radius: 0 0 14px 14px;
  width: 108%;
  margin-left: -4%;
  position: relative;
}
.laptop-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-30px);
  width: 60px;
  height: 4px;
  background: #050505;
  border-radius: 0 0 8px 8px;
}

@media (max-width: 880px) {
  .formation-level {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
  }
  .formation-level:nth-child(even) .formation-text { order: 0; }
  .formation-mockup { order: -1; }
}
@media (max-width: 720px) {
  .laptop-screen-title { font-size: 1.05rem; }
  .laptop-screen-icon { width: 48px; height: 48px; margin-bottom: 0.8rem; }
}

/* ============ BUTTON / CTA ============ */
.btn {
  display: inline-block;
  padding: 1.1rem 2rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  line-height: 1.3;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--bg-light);
  box-shadow: 0 4px 14px rgba(252, 114, 11, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--bg-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(252, 114, 11, 0.4);
}
.btn-large {
  font-size: 1.1rem;
  padding: 1.3rem 2.4rem;
}
.btn-block {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.btn-ghost {
  background: transparent;
  color: var(--bg-light);
  border: 1.5px solid var(--bg-light);
}
.btn-ghost:hover {
  background: var(--bg-light);
  color: var(--bg-dark);
}

.cta-meta {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

/* ============ VSL ============ */
.vsl-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}
.vsl-aspect {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vsl-aspect iframe,
.vsl-aspect video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 100%);
  color: var(--bg-light);
  text-align: center;
  padding: var(--space-md);
}
.vsl-placeholder .play-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 2rem;
}
.vsl-placeholder p { color: #D5D5D5; max-width: 480px; }

/* ============ BULLETS ============ */
.bullets {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}
.bullets li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
}
.bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.6rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}
.bullets-dark li::before { color: var(--primary); }

/* ============ QUOTE ============ */
.quote {
  background: var(--bg-muted);
  border-left: 4px solid var(--primary);
  padding: var(--space-md) var(--space-md) var(--space-md) 2.5rem;
  margin: var(--space-lg) auto;
  max-width: 680px;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-medium);
  border-radius: 0 6px 6px 0;
}
.quote .quote-author {
  display: block;
  margin-top: var(--space-sm);
  font-style: normal;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.section-dark .quote {
  background: rgba(255, 255, 255, 0.04);
  color: #D5D5D5;
}
.section-dark .quote .quote-author { color: var(--bg-light); }

/* ============ TWO COL ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  max-width: var(--max-wide);
  margin: 0 auto;
}
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ============ SCENE (cena clinica) ============ */
.scene {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto;
}
.scene .scene-aside {
  margin-top: var(--space-md);
  padding: var(--space-sm) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
}

/* ============ NUMBERED LIST ============ */
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: var(--space-lg) 0;
}
.steps li {
  counter-increment: step;
  padding-left: 4rem;
  position: relative;
  margin-bottom: var(--space-lg);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -0.2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-light);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps li h3 { margin-bottom: var(--space-xs); font-size: 1.2rem; }
.steps li p { margin-bottom: 0; }

/* ============ FOR/NOT FOR — cards com icones ============ */
.audience-grid {
  max-width: var(--max-wide);
  margin: var(--space-lg) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.audience-grid-no {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin-top: var(--space-md);
}
.audience-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.audience-card.audience-yes:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(252, 114, 11, 0.1);
}
.audience-icon {
  width: 52px;
  height: 52px;
  background: rgba(252, 114, 11, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}
.audience-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.audience-card.audience-no {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
}
.audience-card.audience-no .audience-icon {
  background: rgba(252, 114, 11, 0.18);
  border-radius: 14px;
}
.audience-card.audience-no .audience-icon svg {
  stroke: var(--primary);
  stroke-width: 1.8;
}
.audience-card h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 0.6rem;
}
.audience-card.audience-no h4 {
  color: var(--primary);
}
.audience-card p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--text-medium);
}
.audience-card.audience-no p {
  color: #BDBDBD;
}
.audience-card.audience-no p strong {
  color: #fff;
}
.section-divider-label {
  margin: var(--space-md) 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  font-weight: 600;
}
.audience-grid-no { margin-top: 1rem; }
@media (max-width: 880px) {
  .audience-grid,
  .audience-grid-no { grid-template-columns: 1fr; gap: 0.9rem; }
  .audience-grid { margin-top: var(--space-md); }
  .audience-grid-no { margin-top: 0.8rem; }
  .section-divider-label { margin-top: var(--space-md); }
}

/* ============ MARIZETE BIO ============ */
.bio-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-lg);
  align-items: start;
  max-width: var(--max-wide);
  margin: 0 auto;
}
.bio-card .bio-photo img {
  width: 100%;
  border-radius: 12px;
}
.bio-card .bio-content h3 { margin-bottom: var(--space-xs); }
.bio-card .bio-content .bio-role {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}
.bio-card .bio-credentials {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}
.bio-card .bio-credentials li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.4rem;
  font-size: 0.97rem;
  color: var(--text-medium);
}
.bio-card .bio-credentials li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}
@media (max-width: 720px) {
  .bio-card { grid-template-columns: 1fr; text-align: center; }
  .bio-card .bio-photo { max-width: 220px; margin: 0 auto; }
}

/* ============ CREDENTIALS STRIP (selos institucionais) ============ */
.credentials-strip {
  max-width: var(--max-wide);
  margin: var(--space-lg) auto 0;
  padding: 1.8rem 2rem;
  background: var(--bg-light);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.credentials-strip-label {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  margin: 0 0 1.4rem;
}
.credentials-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.6rem;
  flex-wrap: wrap;
}
.credentials-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  flex: 0 0 auto;
  filter: grayscale(0.05);
  transition: filter 0.2s, transform 0.2s;
}
.credentials-item:hover {
  filter: grayscale(0);
  transform: translateY(-2px);
}
.credentials-item img {
  max-height: 100%;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}
.credentials-item.credentials-mec img,
.credentials-item.credentials-atf img { max-width: 80px; }
.credentials-item.credentials-anhanguera img { max-width: 160px; }
.credentials-item.credentials-abratef img { max-width: 200px; }
.credentials-footnote {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .credentials-list { gap: 1.6rem; }
  .credentials-item { height: 56px; }
  .credentials-item.credentials-mec img,
  .credentials-item.credentials-atf img { max-width: 60px; }
  .credentials-item.credentials-anhanguera img { max-width: 120px; }
  .credentials-item.credentials-abratef img { max-width: 140px; }
}

/* ============ INSTITUTION CARD ============ */
.institution-card {
  background: var(--bg-muted);
  padding: var(--space-md);
  border-radius: 12px;
  max-width: 680px;
  margin: var(--space-lg) auto;
  border: 1px solid var(--border);
}
.institution-card h4 { margin-bottom: var(--space-sm); }
.institution-card .footnote {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* ============ MECHANISM CARDS (3 pontos do mecanismo) ============ */
.mechanism-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: var(--space-lg) auto;
  max-width: var(--max-wide);
}
.mechanism-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem 1.6rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.mechanism-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(252, 114, 11, 0.12);
}
.mechanism-card-num {
  display: inline-flex;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--bg-light);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 16px rgba(252, 114, 11, 0.3);
}
.mechanism-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.mechanism-card p {
  font-size: 0.97rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 880px) {
  .mechanism-cards { grid-template-columns: 1fr; gap: 1rem; }
  .mechanism-card { padding: 1.6rem 1.4rem; }
}

/* ============ AULAS GRID (10 aulas em cards 2x5) ============ */
.aulas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 1.2rem 0 0;
}
.aula-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  transition: border-color 0.2s;
}
.aula-card:hover { border-color: var(--primary); }
.aula-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 28px;
}
.aula-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}
@media (max-width: 720px) {
  .aulas-grid { grid-template-columns: 1fr; }
}

/* ============ DELIVERY (com icones SVG) ============ */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: var(--max-wide);
  margin: var(--space-lg) auto;
}
.delivery-item {
  background: var(--bg-light);
  padding: 1.6rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  transition: border-color 0.2s;
}
.delivery-item:hover { border-color: var(--primary); }
.delivery-item.delivery-full {
  grid-column: 1 / -1;
}
.delivery-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(252, 114, 11, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.delivery-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.delivery-content { flex: 1; }
.delivery-content h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 0.5rem;
  font-weight: 700;
}
.delivery-content > p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--text-medium);
  line-height: 1.6;
}
.delivery-summary {
  text-align: center;
  margin-top: var(--space-md);
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
}
@media (max-width: 720px) {
  .delivery-grid { grid-template-columns: 1fr; }
}

/* ============ TESTIMONIALS V2 ============ */
.testimonials-wrap {
  max-width: var(--max-wide);
  margin: var(--space-lg) auto 0;
}
.testimonial-featured {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 2.4rem 2.6rem 2rem;
  margin-bottom: 1.2rem;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);
  overflow: hidden;
}
.testimonial-featured::before {
  content: "\201C";
  position: absolute;
  top: -1.4rem;
  left: 1.4rem;
  font-family: var(--font-serif);
  font-size: 7rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.18;
  font-weight: 700;
}
.testimonial-featured blockquote {
  margin: 0 0 1.4rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--text-dark);
  position: relative;
}
.testimonial-featured .testimonial-meta { display: flex; align-items: center; gap: 0.9rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.testimonial-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(252, 114, 11, 0.08);
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem;
  right: 1.2rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.18;
  font-weight: 700;
}
.testimonial-card blockquote {
  margin: 0 0 1.2rem;
  font-style: italic;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--text-medium);
  flex: 1;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.testimonial-author .testimonial-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.testimonial-author .testimonial-role {
  font-size: 0.85rem;
  color: var(--text-light);
}
@media (max-width: 720px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { padding: 2rem 1.6rem 1.6rem; }
  .testimonial-featured blockquote { font-size: 1.05rem; }
}

/* ============ BONUS V2 (cards horizontais com mockup) ============ */
.bonus-list { max-width: var(--max-wide); margin: var(--space-lg) auto 0; }
.bonus-card-v2 {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
  margin-bottom: 1.4rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.bonus-card-v2:nth-child(even) .bonus-text { order: 2; }
.bonus-card-v2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2.4rem;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(252, 114, 11, 0.1);
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.bonus-tag svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}
.bonus-text h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin: 0 0 0.9rem;
  line-height: 1.25;
}
.bonus-text p {
  margin: 0;
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.7;
}

/* Mockup area */
.bonus-mockup {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Bonus mockups V2: foto real com backdrop laranja gradiente */
.bonus-mockup img.bonus-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.bonus-mockup.bonus-mockup-photo {
  background: radial-gradient(circle at 30% 30%, rgba(252,114,11,0.18), rgba(252,114,11,0.42));
  padding: 1.2rem;
}
.bonus-mockup.bonus-mockup-photo img {
  box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}
.bonus-mockup.bonus-mockup-photo-light {
  background: radial-gradient(circle at 30% 30%, #f8f1ea 0%, #ead8c8 100%);
  padding: 1.2rem;
}
.bonus-mockup.bonus-mockup-photo-light img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.2));
}

/* (legado mantido por compat — Zoom-style CSS) */
.bonus-mockup.bonus-mockup-zoom {
  background: radial-gradient(circle at 50% 30%, rgba(252,114,11,0.2), rgba(252,114,11,0.45));
  padding: 1.4rem;
}
.zoom-frame {
  width: 100%;
  background: #0f0f0f;
  border-radius: 14px;
  padding: 0.7rem;
  box-shadow: 0 16px 32px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.zoom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0.5rem 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.zoom-title {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.zoom-title::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e64545;
  box-shadow: 0 0 6px rgba(230,69,69,0.6);
}
.zoom-time {
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.zoom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  aspect-ratio: 16/9;
}
.zoom-tile {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.zoom-tile-main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: linear-gradient(135deg, rgba(252,114,11,0.18), rgba(252,114,11,0.06));
  border: 1.5px solid rgba(252,114,11,0.55);
}
.zoom-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
}
.zoom-tile-main .zoom-avatar { width: 60px; height: 60px; font-size: 1.05rem; }
.zoom-tile-main::after {
  content: "Supervisor · Logos";
  position: absolute;
  bottom: 6px;
  left: 8px;
  font-size: 0.6rem;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 500;
}
.zoom-tile-name {
  position: absolute;
  bottom: 4px;
  left: 4px;
  font-size: 0.55rem;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 1px 4px;
  border-radius: 2px;
}
.zoom-controls {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.3rem 0 0.1rem;
}
.zoom-control {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zoom-control::before {
  content: "";
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 1px;
}
.zoom-control-leave {
  background: #d12c2c;
  width: 36px;
  border-radius: 11px;
}
.zoom-control-leave::before { background: #fff; border-radius: 50%; }

/* Bonus 2: apostila clean (single book) */
.bonus-mockup.bonus-mockup-book {
  background: linear-gradient(135deg, #1f1410 0%, #0f0a08 100%);
  padding: 1.6rem;
}
.apostila-book {
  width: 52%;
  aspect-ratio: 3/4;
  position: relative;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.5));
  margin: 0 auto;
}
.apostila-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 4px 8px 8px 4px;
  padding: 1.3rem 1rem 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  color: #fff;
}
.apostila-cover::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 10px;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.15));
  border-radius: 4px 0 0 4px;
}
.apostila-cover::after {
  content: "";
  position: absolute;
  right: -3px; top: 6px; bottom: 6px;
  width: 5px;
  background:
    repeating-linear-gradient(0deg, #f5f5f5 0px, #f5f5f5 1px, #d8d8d8 1px, #d8d8d8 2px);
  border-radius: 0 3px 3px 0;
}
.apostila-tag {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}
.apostila-divider {
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.6);
  margin: 0.5rem 0 0.7rem;
}
.apostila-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.apostila-author {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}
@media (max-width: 720px) {
  .apostila-book { width: 60%; }
  .apostila-title { font-size: 1rem; }
  .zoom-grid { aspect-ratio: 16/10; }
  .zoom-avatar { width: 28px; height: 28px; font-size: 0.62rem; }
  .zoom-tile-main .zoom-avatar { width: 44px; height: 44px; font-size: 0.85rem; }
}
@media (max-width: 880px) {
  .bonus-card-v2 { grid-template-columns: 1fr; gap: 1.6rem; padding: 1.8rem; }
  .bonus-card-v2:nth-child(even) .bonus-text { order: 0; }
  .bonus-card-v2:nth-child(even) .bonus-mockup { order: -1; }
}

/* ============ OFFER BLOCK V2 (split light/dark) ============ */
.offer-block {
  max-width: var(--max-wide);
  margin: var(--space-lg) auto 0;
  background: var(--bg-light);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
}
.offer-block-left {
  padding: 2.6rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.offer-mockup-stack {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, rgba(252,114,11,0.18), rgba(252,114,11,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-mockup-stack img {
  width: 88%;
  max-width: 380px;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.25));
}
.offer-block-left h3 {
  font-size: 1.4rem;
  margin: 0;
  line-height: 1.3;
}
.offer-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.offer-checklist li {
  padding: 0.7rem 0 0.7rem 2rem;
  position: relative;
  font-size: 0.97rem;
  line-height: 1.5;
  color: var(--text-medium);
  border-bottom: 1px solid var(--border);
}
.offer-checklist li:last-child { border-bottom: 0; }
.offer-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.offer-checklist li strong { color: var(--text-dark); }

.offer-block-right {
  background: var(--bg-dark);
  color: var(--bg-light);
  padding: 2.6rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offer-block-right .offer-promo {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: #D5D5D5;
  margin: 0 0 1.4rem;
  text-align: center;
}
.offer-block-right .offer-promo strong { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.offer-block-right .offer-pretext {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--primary);
  margin: 0 0 0.8rem;
  text-align: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.offer-block-right .offer-price-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.offer-block-right .offer-price-headline .plus {
  color: var(--primary);
  font-style: italic;
  margin: 0 0.15em;
}
.offer-block-right .offer-price-headline-meta {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: #BDBDBD;
  text-align: center;
  margin: 0.6rem 0 0;
  line-height: 1.5;
}
.offer-block-right .offer-price-headline-meta strong { color: #fff; font-weight: 600; }

.offer-block-right .offer-cash-alt {
  text-align: center;
  font-size: 0.97rem;
  color: #BDBDBD;
  line-height: 1.65;
  margin: 0;
}
.offer-block-right .offer-cash-alt strong {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: var(--font-serif);
}
.offer-block-right .offer-cash-alt .cash-discount {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.offer-block-right .offer-cash-alt small {
  display: block;
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.45rem;
  line-height: 1.5;
}
.offer-block-right hr {
  border: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 1.2rem 0;
}
.offer-block-right .btn {
  width: 100%;
  margin-top: 0.6rem;
}
.offer-block-right .offer-meta-secondary {
  text-align: center;
  font-size: 0.82rem;
  color: #999;
  margin: 1rem 0 0;
  line-height: 1.5;
}
.offer-block-right .offer-meta-secondary strong { color: #fff; }

@media (max-width: 880px) {
  .offer-block { grid-template-columns: 1fr; border-radius: 16px; }
  .offer-block-left, .offer-block-right { padding: 2rem 1.6rem; }
}

/* ============ OFFER ============ */
.offer-card {
  background: var(--bg-light);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: var(--space-lg) var(--space-md);
  max-width: 540px;
  margin: var(--space-lg) auto;
  text-align: center;
  box-shadow: 0 16px 48px rgba(252, 114, 11, 0.12);
}
.offer-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}
.offer-price-block { margin: var(--space-md) 0; }
.offer-price-installments {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}
.offer-price-installments small {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
  display: block;
  margin-top: 0.3rem;
}
.offer-price-cash {
  margin-top: var(--space-sm);
  font-size: 1.05rem;
  color: var(--text-medium);
}
.offer-price-cash strong { color: var(--text-dark); }

/* ============ GUARANTEE ============ */
.guarantee {
  background: var(--bg-muted);
  border-radius: 12px;
  padding: var(--space-md);
  max-width: 680px;
  margin: var(--space-lg) auto;
  border-left: 4px solid var(--primary);
}
.guarantee h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.guarantee h3::before {
  content: "🛡";
  font-size: 1.3rem;
}

/* ============ FAQ ============ */
.faq {
  max-width: 720px;
  margin: var(--space-lg) auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
}
.faq-item summary {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  padding: var(--space-sm) 0;
  position: relative;
  padding-right: 2rem;
  color: var(--text-dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 0 var(--space-sm);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-medium);
}

/* ============ WHATSAPP DOUBT BLOCK (Ainda tem dúvidas?) ============ */
.whatsapp-block {
  background: var(--bg-darker);
  color: var(--bg-light);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}
.whatsapp-block-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 1.2rem;
}
.whatsapp-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: #fff;
  margin: 0 auto 1.4rem;
  max-width: 760px;
  font-weight: 600;
}
.whatsapp-block h2 em {
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
}
.whatsapp-block p.lead {
  color: #B5B5B5;
  max-width: 540px;
  margin: 0 auto var(--space-lg);
  font-size: 1.05rem;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #25D366;
  color: #fff;
  padding: 1.2rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: #1FB155;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}
.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

/* ============ FINAL CTA ============ */
.final-cta {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: var(--bg-light);
}
.final-cta h2 { color: var(--bg-light); max-width: 680px; margin: 0 auto var(--space-md); }
.final-cta p { color: #D5D5D5; max-width: 560px; margin: 0 auto var(--space-lg); }

/* ============ FOOTER ============ */
.site-footer {
  padding: var(--space-lg) var(--space-md);
  background: var(--bg-darker);
  color: var(--text-mute);
  text-align: center;
  font-size: 0.9rem;
}
.site-footer p { margin: 0.4rem 0; color: var(--text-mute); }
.site-footer strong { color: var(--bg-light); }
.site-footer .payment-flags {
  margin-top: var(--space-md);
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.6;
}
.site-footer a { color: var(--text-mute); text-decoration: underline; }
.site-footer a:hover { color: var(--bg-light); }
.site-footer .footer-nika { color: var(--primary); text-decoration: none; }
.site-footer .footer-nika:hover { text-decoration: underline; }

/* ============ UTILS ============ */
.lead { font-size: 1.15rem; line-height: 1.7; color: var(--text-medium); max-width: 660px; margin-left: auto; margin-right: auto; }
.muted { color: var(--text-light); }
.small { font-size: 0.9rem; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-md { margin-bottom: var(--space-md); }
.divider {
  border: 0;
  height: 1px;
  background: var(--border);
  max-width: 80px;
  margin: var(--space-lg) auto;
}
.divider-orange {
  background: var(--primary);
  height: 2px;
}

/* ============ FORM (aplicacao) ============ */
.form {
  max-width: 600px;
  margin: var(--space-lg) auto;
}
.form-field {
  margin-bottom: var(--space-md);
}
.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: 8px;
  background: var(--bg-light);
  color: var(--text-dark);
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-sans);
}
.form-field .help {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============ QUIZ ============ */
.quiz-page {
  background: var(--bg-muted);
  min-height: 100vh;
  padding: var(--space-md) var(--space-md) var(--space-xl);
}
.quiz {
  max-width: 680px;
  margin: var(--space-md) auto;
  background: var(--bg-light);
  border-radius: 16px;
  padding: var(--space-lg) var(--space-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
@media (max-width: 720px) {
  .quiz { padding: var(--space-md) var(--space-sm); border-radius: 12px; }
}

.quiz-progress-wrap {
  margin-bottom: var(--space-md);
}
.quiz-progress-text {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.quiz-progress {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--primary);
  transition: width 0.4s ease;
  width: 0;
}

.quiz-step {
  display: none;
  animation: fadeIn 0.3s ease;
}
.quiz-step.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-intro {
  text-align: center;
  padding: var(--space-md) 0;
}
.quiz-intro h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: var(--space-md);
}
.quiz-intro p { color: var(--text-medium); }
.quiz-intro .quiz-intro-validation {
  background: var(--bg-muted);
  padding: 1rem 1.4rem;
  border-radius: 8px;
  margin: var(--space-md) auto;
  max-width: 480px;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.quiz-question h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  margin-bottom: var(--space-md);
  line-height: 1.35;
}
.quiz-options {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quiz-options li {
  margin-bottom: 0.7rem;
}
.quiz-options label {
  display: block;
  padding: 1rem 1.2rem;
  border: 1.5px solid var(--border-strong);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.1s;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
  user-select: none;
}
.quiz-options label:hover {
  border-color: var(--primary);
  background: rgba(252, 114, 11, 0.04);
}
.quiz-options input[type="radio"] {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.quiz-options input[type="radio"]:checked + label {
  border-color: var(--primary);
  background: rgba(252, 114, 11, 0.08);
  font-weight: 500;
}

.quiz-textarea-wrap textarea {
  width: 100%;
  min-height: 120px;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  resize: vertical;
}
.quiz-textarea-wrap textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.quiz-textarea-wrap .help {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.4rem;
}

.quiz-actions {
  margin-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}
.quiz-actions .btn {
  padding: 0.85rem 1.6rem;
}
.quiz-actions .btn-back {
  background: transparent;
  color: var(--text-light);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.quiz-actions .btn-back:hover { color: var(--text-dark); }
.quiz-actions .btn-next {
  background: var(--primary);
  color: var(--bg-light);
  border-radius: 8px;
}
.quiz-actions .btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Resultado */
.quiz-result-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--primary);
  color: var(--bg-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: var(--space-md);
}
.quiz-result-tag.complementar { background: #1e6ddb; }
.quiz-result-tag.exploratorio { background: #6c6c6c; }
.quiz-result h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: var(--space-md);
}
.quiz-result p {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.7;
}
.quiz-result-cta {
  margin-top: var(--space-lg);
  text-align: center;
}
.quiz-debug {
  margin-top: var(--space-md);
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  font-family: ui-monospace, monospace;
}
