/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(68px + 32px);
  padding-bottom: var(--sec-pad);
  padding-left: var(--h-pad);
  padding-right: var(--h-pad);
}
/* Orbs / glows de fundo */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}
.hero-glow--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(212,168,71,.13) 0%, transparent 70%);
  top: -100px;
  right: -80px;
}
.hero-glow--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(184,144,46,.10) 0%, transparent 70%);
  bottom: 40px;
  left: -60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(88vh - 68px);
}
/* Badge de urgência no topo da hero */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(212,168,71,.30);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.22;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.hero-lede p + p { margin-top: 12px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
/* Coluna da imagem com badge flutuante */
.hero-col-img {
  position: relative;
}
.hero-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(212,168,71,.12);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--r-xl);
}
.hero-emoji {
  font-size: 120px;
  line-height: 1;
}
/* Badge flutuante sobre imagem */
.hero-floating-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(26,18,8,.10);
  min-width: 220px;
}

/* ===== MARQUEE ===== */
.marquee-band {
  background: var(--bg-band);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  padding: 0 28px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 28px;
}
.marquee-item.gold { color: var(--gold); font-weight: 600; }
.marquee-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .5;
  vertical-align: middle;
  margin-left: 28px;
}
@keyframes marquee {
  from { transform: translateX(0) }
  to   { transform: translateX(-50%) }
}

/* ===== PROFESSORA ===== */
.professora-section {
  padding: var(--sec-pad) var(--h-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.professora-grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 72px;
  align-items: start;
}
.professora-img-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Wrapper para sombra sem cortar a animação */
.professora-photo-wrap {
  animation: prof-float 4s ease-in-out infinite;
  will-change: transform;
  filter: drop-shadow(0 24px 40px rgba(212,168,71,.18));
}
@keyframes prof-float {
  0%,  100% { transform: translateY(0px); }
  50%        { transform: translateY(-14px); }
}

.professora-photo {
  width: 300px;
  height: 360px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.professora-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* KPIs: três lado a lado em uma única linha */
.prof-kpis {
  width: 100%;
}
.prof-kpi-row {
  display: flex;
  gap: 12px;
}
.prof-kpi {
  flex: 1;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 12px;
}
.prof-kpi-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.prof-kpi-label {
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}

/* Bio */
.professora-bio h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.2;
}
.professora-bio p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* "Oi, eu sou a Bruna." — parágrafo de destaque */
.bio-intro {
  margin-bottom: 18px !important;
}
.bio-intro-mark {
  display: inline;
  background: #1A3A5C;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 2px 8px 3px;
  border-radius: 4px;
  line-height: 1.6;
}

/* Marcadores de destaque no texto */
.bio-mark {
  background: rgba(212,168,71,.22);
  color: var(--cream);
  border-radius: 3px;
  padding: 0 3px;
  font-style: normal;
}
.bio-strong {
  font-weight: 700;
  color: var(--cream);
}

/* ===== TESE ===== */
.tese-section {
  padding: var(--sec-pad) var(--h-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.tese-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tese-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 16px;
}
.tese-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
}
.tese-points { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tese-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 18px;
  transition: border-color .2s, box-shadow .2s;
}
.tese-point:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(212,168,71,.10);
}
.tese-point-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.tese-chart-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px 24px;
}
.tese-chart-legend {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}
.gap-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 8px;
}

/* ===== ARGUMENTOS ===== */
.argumentos-section {
  padding: var(--sec-pad) var(--h-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}
.arg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.arg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.arg-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.arg-icon { font-size: 28px; margin-bottom: 14px; }
.arg-headline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}
.arg-lede {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

/* ===== O SERVICO ===== */
.oservico-section {
  padding: var(--sec-pad) var(--h-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.oservico-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.oservico-left h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 20px;
}
.oservico-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.oservico-left p.strong-note {
  color: var(--cream);
  font-weight: 600;
}
.price-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-top: 32px;
}
.price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--faint);
  margin-bottom: 6px;
}
.price-value {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.price-parcel {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 24px;
}
.price-parcel em { color: var(--gold); font-style: normal; }
.guarantee-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.feature-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.feature-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--cream);
  margin-bottom: 4px;
}
.feature-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===== CORRECAO PREVIEW ===== */
.correcao-section {
  padding: var(--sec-pad) var(--h-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.correcao-header { text-align: center; margin-bottom: 40px; }
.correcao-header h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  color: var(--cream);
  margin-bottom: 10px;
}
.correcao-sub { font-size: 15px; color: var(--muted); }

/* ===== DEPOIMENTOS ===== */
.depo-section {
  padding: var(--sec-pad) var(--h-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.depo-section h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
}
.depo-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.depo-kpi {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  text-align: center;
}
.depo-kpi-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.depo-kpi-text { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ===== WHY NOW ===== */
.whynow-section {
  padding: var(--sec-pad) var(--h-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.whynow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.whynow-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  transition: border-color .2s, transform .2s;
}
.whynow-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.whynow-icon { font-size: 32px; margin-bottom: 16px; }
.whynow-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.whynow-text { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ===== FAQ ===== */
.faq-section {
  padding: var(--sec-pad) var(--h-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 12px;
}
.faq-header .section-sub { margin: 0; text-align: left; max-width: none; }

/* ===== CTA FINAL ===== */
.cta-final-section {
  position: relative;
  padding: var(--sec-pad) var(--h-pad);
  text-align: center;
  overflow: hidden;
}
/* Glow de fundo grande atrás da caixa */
.cta-final-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212,168,71,.13) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Caixa com borda, brilho e linha dourada no topo */
.cta-final-box {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(212,168,71,.35);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  box-shadow:
    0 0 60px rgba(212,168,71,.10),
    0 0 120px rgba(212,168,71,.06),
    inset 0 1px 0 rgba(212,168,71,.25);
}
/* Faixa decorativa dourada no topo da caixa */
.cta-box-topline {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 1px;
}
.cta-final-inner {
  max-width: 620px;
  margin: 0 auto;
}
.cta-final-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-final-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.cta-price-line {
  font-size: 15px;
  color: var(--faint);
  margin-bottom: 28px;
}
.cta-price-line strong { color: var(--gold); font-size: 22px; }
.cta-below-btn {
  font-size: 13px;
  color: var(--faint);
  margin-top: 16px;
}
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(212,168,71,.25);
  border-radius: var(--r-md);
  padding: 14px 20px;
  margin-top: 32px;
}
.guarantee-badge-text { font-size: 14px; font-weight: 600; color: var(--gold-dark); }
.guarantee-badge-sub { font-size: 12px; color: var(--muted); }
.ps-block {
  margin-top: 48px;
  text-align: left;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.ps-block p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.ps-block strong { color: var(--cream); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-band);
  border-top: 1px solid var(--border);
  padding: 56px var(--h-pad) 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.footer-brand { max-width: 260px; }
.footer-logo {
  height: 40px;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.6; }
.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--gold);
  transition: opacity .2s;
}
.footer-ig:hover { opacity: .8; }
.footer-cols {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a,
.footer-col ul li {
  font-size: 13px;
  color: var(--muted);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--faint); }

/* ===== RESPONSIVO — TABLET (≤ 900px) ===== */
@media (max-width: 900px) {
  /* Hero — imagem vem primeiro no mobile */
  .hero { padding-top: calc(68px + 24px); }
  .hero-content { grid-template-columns: 1fr; min-height: auto; gap: 32px; }
  .hero-col-text { order: 2; }
  .hero-col-img  { order: 1; padding-bottom: 8px; }
  .hero-img-wrap { min-height: auto; max-height: none; height: auto; }
  .hero-floating-badge { left: 16px; bottom: -12px; }

  /* Professora */
  .professora-grid { grid-template-columns: 1fr; gap: 40px; }
  .professora-img-col { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 24px; align-items: flex-start; }
  .professora-photo-wrap { flex-shrink: 0; }
  .professora-photo { width: 220px; height: 270px; }
  .prof-kpis { flex: 1; min-width: 200px; }

  /* Tese */
  .tese-grid { grid-template-columns: 1fr; gap: 32px; }
  .tese-chart-wrap { max-width: 500px; margin: 0 auto; }

  /* Argumentos */
  .arg-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* O Serviço */
  .oservico-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Depoimentos */
  .depo-kpis { grid-template-columns: repeat(2, 1fr); }
  .depo-carousel { gap: 10px; }
  .depo-frame { height: 240px; }

  /* Why Now */
  .whynow-grid { grid-template-columns: 1fr; gap: 16px; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }

  /* CTA Final */
  .cta-final-box { padding: 40px 28px; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-brand { max-width: 100%; }
}

/* ===== RESPONSIVO — MOBILE (≤ 600px) ===== */
@media (max-width: 600px) {
  /* Hero */
  .hero-title { font-size: clamp(22px, 6.5vw, 32px); }
  .hero-badge { font-size: 11px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { text-align: center; justify-content: center; }
  .hero-floating-badge { display: none; }
  .hero-img-wrap { min-height: auto; max-height: none; height: auto; }

  /* Professora */
  .professora-img-col { flex-direction: column; align-items: center; }
  .professora-photo { width: 200px; height: 240px; }
  .prof-kpi-row { gap: 8px; }
  .prof-kpi { padding: 10px 8px; }
  .prof-kpi-num { font-size: 22px; }
  .prof-kpi-label { font-size: 9px; }

  /* Tese */
  .tese-chart-wrap { padding: 20px 14px 16px; }

  /* Argumentos */
  .arg-grid { grid-template-columns: 1fr; gap: 12px; }

  /* O Serviço */
  .feature-grid { grid-template-columns: 1fr; }
  .price-block { padding: 20px; }
  .price-value { font-size: 36px; }
  .btn-cta-large { font-size: 16px; padding: 16px 28px; }

  /* Carrossel — 1 imagem visível no mobile */
  .depo-carousel { gap: 8px; }
  .depo-viewport { overflow: hidden; }
  .depo-frame { height: 220px; flex: 0 0 100%; }
  .depo-frame + .depo-frame { display: none; }

  /* Depoimentos */
  .depo-kpis { grid-template-columns: 1fr; }

  /* Why Now */
  .whynow-card { padding: 24px 18px; }

  /* CTA Final */
  .cta-final-box { padding: 32px 20px; border-radius: var(--r-lg); }
  .cta-final-inner h2 { font-size: clamp(22px, 6vw, 32px); }
  .cta-final-sub { font-size: 15px; }
  .guarantee-badge { flex-direction: column; text-align: center; padding: 16px; }

  /* Footer */
  .footer-cols { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-copy { font-size: 11px; }

  /* Correcao preview */
  .correcao-section { padding-left: 16px; padding-right: 16px; }
}

/* ===== RESPONSIVO — MOBILE PEQUENO (≤ 400px) ===== */
@media (max-width: 400px) {
  .navbar-inner { padding: 0 16px; }
  .hero { padding-left: 16px; padding-right: 16px; }
  .hero-content { gap: 24px; }
  .btn-cta-large { font-size: 14px; padding: 14px 20px; }
  .professora-section,
  .tese-section,
  .argumentos-section,
  .oservico-section,
  .depo-section,
  .whynow-section,
  .faq-section,
  .cta-final-section,
  .footer { padding-left: 16px; padding-right: 16px; }
}
