/* ============================================================
   ANA TAVARES — CUIDANDO DA CARREIRA
   Fontes: Cormorant Garamond (títulos) + DM Sans (corpo)
   Paleta: Azul e branco
============================================================ */

:root {
  --blue-950: #07162E;
  --blue-900: #0C2050;
  --blue-800: #113070;
  --blue-700: #1A4396;
  --blue-600: #2255B8;
  --blue-500: #2B68D4;
  --blue-400: #4D86E8;
  --blue-200: #AECAF6;
  --blue-100: #D6E8FC;
  --blue-50:  #EDF5FE;
  --blue-25:  #F5F9FF;

  --white:    #FFFFFF;
  --text-900: #080F1D;
  --text-700: #1C3050;
  --text-500: #4A6585;
  --text-300: #90AABE;

  --fh: 'DM Sans', system-ui, -apple-system, sans-serif;
  --fb: 'DM Sans', system-ui, -apple-system, sans-serif;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  36px;

  --sh-sm: 0 2px 8px rgba(12, 32, 80, 0.08);
  --sh-md: 0 6px 24px rgba(12, 32, 80, 0.12);
  --sh-lg: 0 16px 48px rgba(12, 32, 80, 0.16);

  --mw: 1160px;
  --sp: clamp(72px, 9vw, 112px);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a     { color: inherit; text-decoration: none; }
img   { display: block; max-width: 100%; }

/* ── UTILS ── */
.container { max-width: var(--mw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.section-pad { padding: var(--sp) 0; }
.bg-white   { background: var(--white); }
.bg-blue-25 { background: var(--blue-25); }
.bg-blue-50 { background: var(--blue-50); }
.bg-blue-900{ background: var(--blue-900); }

.text-center { text-align: center; }
.text-muted  { color: var(--text-500); }

/* ── ANIMAÇÕES DE ENTRADA ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── TIPOGRAFIA ── */
h1, h2, h3 {
  font-family: var(--fh);
  font-weight: 600;
  line-height: 1.15;
  color: var(--blue-900);
}

h1  { font-size: clamp(2.6rem, 5.5vw, 4.4rem); letter-spacing: -0.01em; }
h2  { font-size: clamp(2rem, 4vw, 3.2rem); }
h3  { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 500; }

.section-title {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--blue-900);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-500);
  max-width: 560px;
  line-height: 1.7;
}

/* ── BOTÕES ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #0B2468 0%, #1848BB 30%, #2B6BDB 55%, #1848BB 78%, #0B2468 100%);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(70, 130, 230, 0.6);
  box-shadow:
    0 0 0 1.5px rgba(0, 0, 0, 0.65),
    0 0 0 3.5px rgba(12, 48, 140, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #112E80 0%, #2058CC 30%, #3676EE 55%, #2058CC 78%, #112E80 100%);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1.5px rgba(0, 0, 0, 0.65),
    0 0 0 3.5px rgba(18, 60, 170, 0.5),
    0 14px 36px rgba(12, 45, 140, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border: 1.5px solid var(--blue-400);
}
.btn-outline:hover {
  background: var(--blue-50);
  border-color: var(--blue-700);
}
.btn-ghost-white {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-lg { padding: 18px 42px; font-size: 16px; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blue-100);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--sh-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.header-logo {
  font-family: var(--fh);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--blue-900);
  letter-spacing: -0.01em;
}
.header-logo span {
  color: var(--blue-600);
  font-style: italic;
}

/* ── HERO ── */
#hero {
  background: linear-gradient(155deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--blue-500) 100%);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../imgs/ana-head.png) no-repeat center / cover;
  pointer-events: none;
}

@media (max-width: 768px) {
  #hero::before {
    background: url(../imgs/ana-head-mobile.png) no-repeat center / cover;
  }
  #hero {
    padding-top: 400px;
  }
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-200);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--fh);
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--blue-200);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}

/* ── STATS BAND ── */
#stats {
  background: var(--white);
  padding: 60px 0;
  border-bottom: 1px solid var(--blue-100);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 28px 32px;
  border-right: 1px solid var(--blue-100);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--fh);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 600;
  color: var(--blue-700);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-500);
  line-height: 1.4;
  font-weight: 500;
}

/* ── PARA QUEM ── */
#para-quem { padding: var(--sp) 0; background: var(--blue-25); }
.para-quem-header { margin-bottom: 56px; }
.para-quem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pq-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--blue-100);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.pq-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--sh-md);
}
.pq-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pq-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pq-card h3 {
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-900);
  margin-bottom: 10px;
  line-height: 1.4;
}
.pq-card p {
  font-size: 14px;
  color: var(--text-500);
  line-height: 1.65;
}

/* ── ENTREGÁVEIS ── */
#entregaveis { padding: var(--sp) 0; background: var(--white); }
.entregaveis-header { margin-bottom: 64px; }
.entregaveis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.entregavel-item {
  display: flex;
  gap: 24px;
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--blue-100);
  background: var(--blue-25);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.entregavel-item:hover {
  border-color: var(--blue-300);
  transform: translateY(-2px);
}
.entregavel-num {
  font-family: var(--fh);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--blue-200);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}
.entregavel-content h3 {
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.entregavel-content p {
  font-size: 14px;
  color: var(--text-500);
  line-height: 1.65;
}

/* Bloco ao vivo em destaque */
.entregavel-item.destaque {
  background: var(--blue-900);
  border-color: var(--blue-800);
  grid-column: 1 / -1;
  align-items: center;
  gap: 40px;
}
.entregavel-item.destaque .entregavel-num { color: var(--blue-400); }
.entregavel-item.destaque .entregavel-content h3 { color: var(--white); }
.entregavel-item.destaque .entregavel-content p  { color: var(--blue-200); }
.entregavel-item.destaque:hover { transform: translateY(-2px); border-color: var(--blue-600); }

/* Diferenciais */
.diferenciais-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.diferencial-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 100%);
  border-radius: var(--r-md);
  border: 1px solid var(--blue-100);
}
.diferencial-chip svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.diferencial-chip p {
  font-size: 14px;
  color: var(--text-700);
  line-height: 1.5;
}
.diferencial-chip strong {
  display: block;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 2px;
}

/* ── SOBRE ANA ── */
#sobre { padding: var(--sp) 0; background: var(--blue-25); }
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.sobre-img-wrap {
  position: relative;
}
.sobre-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  background: linear-gradient(145deg, var(--blue-100) 0%, var(--blue-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sobre-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
}
.sobre-img-placeholder .img-hint {
  font-size: 13px;
  color: var(--blue-500);
  text-align: center;
  padding: 20px;
}
.sobre-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--blue-100);
}
.sobre-badge-num {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 600;
  color: var(--blue-700);
  line-height: 1;
  margin-bottom: 4px;
}
.sobre-badge-label {
  font-size: 12px;
  color: var(--text-500);
  font-weight: 500;
}
.sobre-content .section-title { margin-bottom: 28px; }
.sobre-content p {
  font-size: clamp(15px, 1.5vw, 16px);
  color: var(--text-700);
  line-height: 1.8;
  margin-bottom: 20px;
}
.sobre-content p:last-of-type { margin-bottom: 36px; }
.sobre-aprovacoes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.aprovacao-linha {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
}
.aprovacao-pos {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blue-600);
  min-width: 52px;
  line-height: 1;
}
.aprovacao-desc {
  color: var(--text-700);
  line-height: 1.5;
}

/* ── DEPOIMENTOS ── */
#depoimentos { padding: var(--sp) 0; background: var(--white); overflow: hidden; }
.depoimentos-header { margin-bottom: 56px; }
.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.carousel-track {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: carousel-scroll 240s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-slide { flex-shrink: 0; }
.testimonial-img {
  width: 260px;
  border-radius: var(--r-lg);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  overflow: hidden;
  display: block;
}
.testimonial-img img {
  display: block;
  width: 100%;
  height: auto;
}
.testimonial-img .img-placeholder-label {
  font-size: 12px;
  color: var(--text-300);
  text-align: center;
  padding: 16px;
  line-height: 1.5;
}
@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 10px)); }
}

/* ── PREÇO ── */
#preco {
  padding: var(--sp) 0;
  background: linear-gradient(175deg, var(--blue-900) 0%, var(--blue-800) 100%);
  position: relative;
  overflow: hidden;
}
#preco::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 104, 212, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.preco-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.preco-inner .section-title { color: var(--white); margin-bottom: 12px; }
.preco-sub {
  color: var(--blue-200);
  font-size: 15px;
  margin-bottom: 48px;
}
.preco-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xl);
  padding: 48px;
}
.preco-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin-bottom: 44px;
  text-align: left;
}
.preco-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}
.preco-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
  flex-shrink: 0;
}
.preco-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}
.preco-valor {
  margin-bottom: 32px;
}
.preco-valor-num {
  font-family: var(--fh);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.preco-valor-detalhe {
  font-size: 14px;
  color: var(--blue-200);
  margin-top: 8px;
}
.preco-cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 20px;
}

/* ── FAQ ── */
#faq { padding: var(--sp) 0; background: var(--blue-25); }
.faq-header { margin-bottom: 56px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--blue-100);
  padding: 6px 0;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-900);
  transition: color 0.2s ease;
  user-select: none;
}
.faq-question:hover { color: var(--blue-700); }
.faq-question.open { color: var(--blue-700); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.3s ease;
}
.faq-question.open .faq-icon {
  background: var(--blue-700);
  transform: rotate(45deg);
}
.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--blue-700);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}
.faq-question.open .faq-icon svg { stroke: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 14px;
  color: var(--text-500);
  line-height: 1.75;
}

/* ── SUPORTE ── */
#suporte {
  padding: clamp(60px, 8vw, 96px) 0;
  background: var(--white);
  text-align: center;
}
.suporte-inner { max-width: 600px; margin: 0 auto; }
.suporte-inner h2 {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.suporte-inner p {
  font-size: 15px;
  color: var(--text-500);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--blue-950);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: right;
  line-height: 1.6;
}

/* ── DOBRAS ENTREGÁVEIS ── */
.section-pad-sm { padding: clamp(48px, 6vw, 72px) 0; }

.dobra-entregavel { padding: var(--sp) 0; overflow: hidden; }

.dobra-inner {
  display: flex;
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.dobra-entregavel.reversed .dobra-inner { flex-direction: row-reverse; }

.dobra-content { flex: 1; min-width: 0; }

.dobra-num {
  display: block;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--blue-100);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.dobra-entregavel.dark .dobra-num { color: rgba(255, 255, 255, 0.12); }

.dobra-content h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--blue-900);
  margin-bottom: 20px;
  line-height: 1.15;
  font-weight: 600;
}

.dobra-entregavel.dark .dobra-content h2 { color: var(--white); }

.dobra-content p {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-500);
  line-height: 1.8;
  max-width: 480px;
}

.dobra-entregavel.dark .dobra-content p { color: var(--blue-200); }

.dobra-visual { flex: 0 0 46%; }

.dobra-visual-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  background: linear-gradient(145deg, var(--blue-50) 0%, var(--blue-100) 100%);
  border: 1px solid var(--blue-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  position: relative;
}

.dobra-visual-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dobra-visual-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
}

.dobra-visual-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--blue-600);
}

.dobra-visual-label {
  font-size: 13px;
  color: var(--text-300);
  letter-spacing: 0.02em;
}

.dobra-entregavel.dark .dobra-visual-box {
  background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

.dobra-entregavel.dark .dobra-visual-icon {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.dobra-entregavel.dark .dobra-visual-icon svg { stroke: var(--blue-200); }
.dobra-entregavel.dark .dobra-visual-label { color: rgba(255, 255, 255, 0.3); }

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  .dobra-inner,
  .dobra-entregavel.reversed .dobra-inner { flex-direction: column; }
  .dobra-visual   { flex: none; width: 100%; max-width: 480px; margin: 0 auto; }
  .dobra-content p { max-width: 100%; }
  .stats-grid           { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--blue-100); border-top: 1px solid var(--blue-100); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--blue-100); }
  .para-quem-grid       { grid-template-columns: repeat(2, 1fr); }
  .entregaveis-grid     { grid-template-columns: 1fr; }
  .entregavel-item.destaque { grid-column: 1; }
  .diferenciais-row     { grid-template-columns: 1fr; }
  .sobre-inner          { grid-template-columns: 1fr; }
  .sobre-img-wrap       { max-width: 400px; margin: 0 auto; }
  .sobre-badge          { left: 0; }
  .preco-includes       { grid-template-columns: 1fr; }
  .footer-inner         { flex-direction: column; text-align: center; }
  .footer-copy          { text-align: center; }
}

@media (max-width: 600px) {
  .para-quem-grid       { grid-template-columns: 1fr; }
  .hero-actions         { flex-direction: column; align-items: flex-start; }
  .header-logo          { font-size: 1.1rem; }
  .preco-card           { padding: 32px 24px; }
  .faq-question         { font-size: 14px; }
  .testimonial-img      { width: 190px; }
}

/* ═══════════════════════════════════════════════
   MOCKUPS DOS ENTREGÁVEIS
═══════════════════════════════════════════════ */

.dobra-visual-box.mock {
  padding: 0;
  gap: 0;
  align-items: stretch;
  justify-content: flex-start;
  font-size: clamp(11px, 1.1vw, 14px);
}

/* Shared: cada mockup preenche a caixa */
.mock-player,
.mock-quiz,
.mock-simulado,
.mock-mapa,
.mock-flashcard,
.mock-ref,
.mock-live {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

/* ─── 01 Player ─── */
.mock-player-screen {
  flex: 0 0 54%;
  background: linear-gradient(155deg, #091A40 0%, #14306E 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
}
.mock-play-btn {
  width: 2.8em; height: 2.8em;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-play-btn svg { width: 1em; height: 1em; margin-left: 0.15em; }
.mock-player-meta { font-size: 0.7em; color: rgba(255,255,255,0.4); letter-spacing: 0.03em; }
.mock-player-track {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
}
.mock-player-track-fill { width: 45%; height: 100%; background: var(--blue-400); }
.mock-player-list {
  flex: 1;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 0.5em 0.9em;
  gap: 0.15em;
}
.mock-lesson {
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.42em 0.5em;
  border-radius: 5px;
  font-size: 0.8em;
}
.mock-lesson.active { background: var(--blue-50); }
.mock-lesson-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-300);
  flex-shrink: 0;
}
.mock-lesson.active .mock-lesson-dot { background: var(--blue-600); }
.mock-lesson-title { flex: 1; color: var(--text-500); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock-lesson.active .mock-lesson-title { color: var(--blue-900); font-weight: 600; }
.mock-lesson-dur { flex-shrink: 0; color: var(--text-300); font-size: 0.85em; }

/* ─── 02 Quiz ─── */
.mock-quiz { background: var(--white); }
.mock-quiz-header {
  padding: 0.75em 1em 0.6em;
  border-bottom: 1px solid var(--blue-100);
  display: flex;
  flex-direction: column;
  gap: 0.45em;
}
.mock-quiz-count { font-size: 0.7em; font-weight: 600; color: var(--text-500); letter-spacing: 0.05em; text-transform: uppercase; }
.mock-quiz-prog { height: 3px; background: var(--blue-100); border-radius: 2px; }
.mock-quiz-prog-fill { width: 20%; height: 100%; background: var(--blue-600); border-radius: 2px; }
.mock-quiz-body {
  flex: 1;
  padding: 0.75em 1em;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  overflow: hidden;
}
.mock-quiz-q { font-size: 0.8em; color: var(--text-900); line-height: 1.5; font-weight: 500; margin-bottom: 0.15em; }
.mock-option {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  padding: 0.48em 0.6em;
  border-radius: 6px;
  border: 1px solid var(--blue-100);
  font-size: 0.76em;
  color: var(--text-700);
  line-height: 1.4;
}
.mock-option.correct { background: #F0FDF4; border-color: #86EFAC; color: #14532D; }
.mock-option.wrong   { background: #FEF2F2; border-color: #FCA5A5; color: #7F1D1D; }
.mock-opt-letter { font-weight: 700; flex-shrink: 0; color: var(--blue-600); }
.mock-option.correct .mock-opt-letter { color: #16A34A; }
.mock-option.wrong   .mock-opt-letter { color: #DC2626; }

/* ─── 03 Simulado ─── */
.mock-simulado { background: var(--white); }
.mock-sim-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7em 1em;
  border-bottom: 1px solid var(--blue-100);
  font-size: 0.72em;
  color: var(--text-500);
  flex-shrink: 0;
}
.mock-sim-badge {
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #86EFAC;
  border-radius: 20px;
  padding: 0.15em 0.65em;
  font-weight: 600;
}
.mock-sim-body { flex: 1; display: flex; min-height: 0; overflow: hidden; }
.mock-sim-score {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  border-right: 1px solid var(--blue-100);
  padding: 1em 0.7em;
}
.mock-sim-ring {
  width: 4.2em; height: 4.2em;
  border-radius: 50%;
  border: 3px solid var(--blue-600);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-sim-pct { font-size: 1em; font-weight: 700; color: var(--blue-700); line-height: 1; }
.mock-sim-label { font-size: 0.65em; color: var(--text-500); text-align: center; }
.mock-sim-stats { display: flex; gap: 0.7em; }
.mock-stat { display: flex; flex-direction: column; align-items: center; gap: 0.05em; }
.mock-stat-n { font-weight: 700; font-size: 0.95em; }
.mock-stat-n.green { color: #16A34A; }
.mock-stat-n.red   { color: #DC2626; }
.mock-stat-l { font-size: 0.62em; color: var(--text-300); }
.mock-sim-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6em;
  padding: 0.9em;
  overflow: hidden;
}
.mock-bar-row { display: flex; align-items: center; gap: 0.5em; font-size: 0.7em; color: var(--text-700); }
.mock-bar-row > span:first-child { width: 6em; flex-shrink: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock-bar-row > span:last-child  { width: 2em; text-align: right; flex-shrink: 0; font-weight: 600; color: var(--blue-700); }
.mock-bar-track { flex: 1; height: 5px; background: var(--blue-100); border-radius: 3px; overflow: hidden; }
.mock-bar-fill  { height: 100%; background: var(--blue-600); border-radius: 3px; }

/* ─── 04 Mapa mental ─── */
.mock-mapa { background: var(--white); align-items: center; justify-content: center; padding: 0.6em; }
.mock-mapa svg { width: 100%; height: 100%; }

/* ─── 05 Flash cards ─── */
.mock-flashcard { background: var(--blue-25); align-items: center; justify-content: center; padding: 1.2em; gap: 0.9em; }
.mock-fc-stack { position: relative; width: 100%; flex: 1; min-height: 0; }
.mock-fc { position: absolute; border-radius: 10px; }
.mock-fc-back2 { inset: 10px 14px 0 14px; background: var(--blue-100); border: 1px solid var(--blue-200); }
.mock-fc-back1 { inset: 5px 7px 0 7px;   background: var(--blue-50);  border: 1px solid var(--blue-100); }
.mock-fc-front {
  inset: 0;
  background: var(--white);
  border: 1px solid var(--blue-100);
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2em;
  gap: 0.6em;
}
.mock-fc-tag  { font-size: 0.62em; font-weight: 700; letter-spacing: 0.1em; color: var(--blue-500); text-transform: uppercase; }
.mock-fc-q    { font-size: 0.84em; color: var(--text-900); text-align: center; line-height: 1.55; font-weight: 500; }
.mock-fc-hint { font-size: 0.65em; color: var(--text-300); }
.mock-fc-nav  { display: flex; align-items: center; gap: 1em; flex-shrink: 0; }
.mock-fc-btn  {
  width: 2em; height: 2em;
  border-radius: 50%;
  border: 1px solid var(--blue-200);
  background: var(--white);
  cursor: default;
  color: var(--blue-700);
  font-size: 0.85em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-fc-counter { font-size: 0.72em; color: var(--text-500); }

/* ─── 06 Referencial teórico ─── */
.mock-ref { background: var(--white); }
.mock-ref-top {
  padding: 0.85em 1.05em;
  border-bottom: 1px solid var(--blue-100);
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  flex-shrink: 0;
}
.mock-ref-breadcrumb { font-size: 0.62em; font-weight: 600; color: var(--blue-500); letter-spacing: 0.06em; text-transform: uppercase; }
.mock-ref-title-doc  { font-size: 0.92em; font-weight: 700; color: var(--blue-900); line-height: 1.3; }
.mock-ref-cite       { font-size: 0.65em; color: var(--text-300); font-style: italic; }
.mock-ref-body {
  flex: 1;
  padding: 0.85em 1.05em;
  display: flex;
  flex-direction: column;
  gap: 0.42em;
  overflow: hidden;
}
.mock-ref-line          { height: 7px; border-radius: 4px; background: var(--blue-100); }
.mock-ref-line.l-full   { width: 100%; }
.mock-ref-line.l-80     { width: 80%; }
.mock-ref-line.l-70     { width: 70%; }
.mock-ref-line.l-60     { width: 60%; }
.mock-ref-line.l-40     { width: 40%; }
.mock-ref-line.highlight{ background: #FEF08A; }
.mock-ref-spacer        { height: 0.4em; }
.mock-ref-quote {
  border-left: 2.5px solid var(--blue-300);
  padding: 0.5em 0.8em;
  background: var(--blue-25);
  border-radius: 0 4px 4px 0;
  font-size: 0.7em;
  color: var(--text-700);
  line-height: 1.55;
  font-style: italic;
}

/* ─── 07 Aula ao vivo ─── */
.mock-live { background: #07101F; }
.mock-live-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55em 1em;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.mock-live-indicator {
  display: flex;
  align-items: center;
  gap: 0.45em;
  font-size: 0.67em;
  font-weight: 700;
  color: white;
  letter-spacing: 0.09em;
}
.mock-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #EF4444;
  animation: mock-pulse 1.4s ease infinite;
}
@keyframes mock-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
.mock-live-count { font-size: 0.67em; color: rgba(255,255,255,0.28); }
.mock-live-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 0;
}
.mock-live-avatar {
  width: 3.2em; height: 3.2em;
  border-radius: 50%;
  background: var(--blue-800);
  border: 2px solid var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-live-initials { font-weight: 700; color: white; font-size: 0.85em; letter-spacing: 0.05em; }
.mock-live-name     { font-size: 0.68em; color: rgba(255,255,255,0.5); }
.mock-live-chat {
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 0.6em 1em;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
.mock-chat-msg {
  font-size: 0.67em;
  color: rgba(255,255,255,0.45);
  display: flex;
  gap: 0.35em;
  line-height: 1.4;
}
.mock-chat-author { font-weight: 600; color: var(--blue-300); flex-shrink: 0; }
.mock-chat-msg.highlight .mock-chat-text { color: rgba(255,255,255,0.82); }
.mock-chat-input {
  margin-top: 0.3em;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 0.42em 0.9em;
  font-size: 0.67em;
  color: rgba(255,255,255,0.18);
}
