/* ─────────────────────────────────────────
   sections.css — estilos por seção
───────────────────────────────────────── */

/* ── Sticky ── */
.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--ch);
  border-bottom: .5px solid var(--te);
  padding: 10px var(--pad-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--du);
  transform: translateY(-100%);
  transition: transform .3s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar .btn-s {
  background: var(--oc);
  color: var(--k);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 600;
  padding: 8px 20px;
  border: none;
  white-space: nowrap;
  transition: background .2s;
}
.sticky-bar .btn-s:hover { background: var(--em); }

/* ── Hero ── */
.hero {
  padding: 72px var(--pad-h) 56px;
  text-align: center;
  position: relative;
  background: var(--k);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 55%, rgba(155,92,30,.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .28em;
  color: var(--oc);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.vsl-wrap {
  width: min(380px, 100%, 45vh);
  aspect-ratio: 9/16;
  background: var(--ch);
  border: .5px solid var(--ash);
  box-shadow: 0 0 60px rgba(200,136,42,.12);
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
/* Vídeo do YouTube é enviado em 9:16, mas o player do YouTube sempre
   embeda em 16:9 com barras pretas nas laterais. Ampliamos o iframe
   para que o vídeo (já 9:16 dentro do player) preencha o container
   9:16, cortando apenas as barras pretas para fora da área visível. */
.vsl-iframe {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 316%;
  transform: translateX(-50%);
  border: 0;
  pointer-events: none;
}
.vsl-sound-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--oc);
  background: rgba(20,14,8,.55);
  color: var(--oc);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  pointer-events: auto;
  transition: border-color .2s, color .2s;
}
.vsl-sound-btn:hover {
  border-color: var(--em);
  color: var(--em);
}
.vsl-sound-btn .icon-unmuted { display: none; }
.vsl-sound-btn.is-unmuted .icon-muted { display: none; }
.vsl-sound-btn.is-unmuted .icon-unmuted { display: block; }
.vsl-wrap::before,
.vsl-wrap::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--oc);
  opacity: .6;
  pointer-events: none;
  transition: opacity .2s;
}
.vsl-wrap::before {
  top: -9px;
  left: -9px;
  border-right: none;
  border-bottom: none;
}
.vsl-wrap::after {
  bottom: -9px;
  right: -9px;
  border-left: none;
  border-top: none;
}
.vsl-wrap:hover::before,
.vsl-wrap:hover::after { opacity: 1; border-color: var(--em); }
.vsl-play-btn {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--oc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: border-color .2s;
}
.vsl-wrap:hover .vsl-play-btn { border-color: var(--em); }
.vsl-triangle {
  width: 0; height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid var(--oc);
  margin-left: 5px;
  transition: border-left-color .2s;
}
.vsl-wrap:hover .vsl-triangle { border-left-color: var(--em); }
.vsl-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--sm);
}
.hero-title {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 600;
  color: var(--cr);
  line-height: 1.0;
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--oc);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 19px;
  color: var(--du);
  max-width: 500px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.8;
}

/* ── Seções gerais ── */
.sec {
  padding: 64px var(--pad-h);
  max-width: var(--max-w);
  margin: 0 auto;
}
.sec-full {
  padding: 64px var(--pad-h);
  background: var(--ch);
}
.sec-full-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Para quem ── */
.pq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.pq-item {
  background: var(--ash);
  border: .5px solid rgba(155,92,30,.22);
  padding: 20px 22px;
}
.pq-num {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--oc);
  margin-bottom: 10px;
}
.pq-text {
  font-size: 16px;
  color: var(--du);
  line-height: 1.6;
  font-weight: 300;
}
.disc-mark {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--oc);
  margin-bottom: 10px;
}

/* ── Módulos ── */
.mod-list { margin-top: 16px; }
.mod-row {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: .5px solid var(--ash);
  align-items: flex-start;
}
.mod-row:last-child { border-bottom: none; }
.mod-num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--te);
  letter-spacing: .15em;
  min-width: 30px;
  padding-top: 3px;
}
.mod-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--cr);
  margin-bottom: 6px;
}
.mod-desc {
  font-size: 15px;
  color: var(--sm);
  line-height: 1.6;
  font-weight: 300;
}
.mod-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .15em;
  color: var(--te);
  border: .5px solid var(--te);
  padding: 3px 9px;
  margin-top: 10px;
}

/* ── Bônus ── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}
.bonus-card {
  background: var(--ash);
  border: .5px solid rgba(155,92,30,.2);
  padding: 28px 22px 24px;
  position: relative;
}
.bonus-badge {
  position: absolute;
  top: -1px; left: -1px;
  background: var(--te);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: .15em;
  color: var(--cr);
  padding: 4px 10px;
}
.bonus-num {
  font-family: var(--font-display);
  font-size: 34px;
  color: rgba(155,92,30,.15);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  margin-top: 14px;
}
.bonus-cover {
  display: block;
  width: 100%;
  max-width: 180px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: .5px solid rgba(155,92,30,.25);
  margin: 14px 0 16px;
}
.bonus-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--cr);
  margin-bottom: 8px;
  line-height: 1.3;
}
.bonus-desc {
  font-size: 18px;
  color: var(--sm);
  line-height: 1.55;
  font-weight: 300;
}

/* ── Depoimentos ── */
.dep-section {
  padding: 64px 0 56px;
  background: var(--k);
  text-align: center;
}
.dep-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.dep-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  min-height: 260px;
  margin-top: 40px;
  user-select: none;
}
.dep-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--oc);
  font-size: 36px;
  line-height: 1;
  opacity: .6;
  transition: opacity .2s;
  padding: 8px;
  z-index: 10;
}
.dep-arr:hover { opacity: 1; }
.dep-arr-l { left: 4px; }
.dep-arr-r { right: 4px; }
.dep-viewport {
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  position: relative;
}
.dep-track {
  display: flex;
  width: 200%;
}
.dep-slot {
  width: 50%;
  flex-shrink: 0;
}
.dep-card {
  background: var(--ch);
  border: .5px solid rgba(155,92,30,.3);
  border-radius: 4px;
  padding: 36px 40px 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s;
  position: relative;
}
.dep-card:hover { border-color: var(--oc); }
.dep-stars {
  color: var(--oc);
  font-size: 19px;
  letter-spacing: 3px;
  margin-bottom: 22px;
}
.dep-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--cr);
  line-height: 1.7;
  margin-bottom: 22px;
}
.dep-author {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--oc);
  margin-bottom: 6px;
}
.dep-role {
  font-size: 14px;
  color: var(--sm);
}
.dep-hint {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: .15em;
  color: var(--sm);
  opacity: .6;
}
.dep-ph {
  background: var(--ch);
  border: .5px dashed var(--ash);
  border-radius: 4px;
  padding: 52px 40px;
  text-align: center;
}
.dep-ph-text {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--sm);
  line-height: 2;
}
.dep-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.dep-dot {
  width: 6px;
  height: 6px;
  background: var(--ash);
  cursor: pointer;
  transition: background .2s, width .3s;
}
.dep-dot.active {
  background: var(--oc);
  width: 22px;
}

/* Lightbox depoimentos */
.dep-lb {
  position: fixed;
  inset: 0;
  background: rgba(13,11,9,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  padding: 20px;
}
.dep-lb.open { opacity: 1; pointer-events: all; }
.dep-lb-box { position: relative; max-width: 480px; width: 100%; }
.dep-lb-img { width: 100%; display: block; border: .5px solid var(--ash); }
.dep-lb-close {
  position: absolute;
  top: -34px;
  right: 0;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--du);
  background: none;
  border: none;
  transition: color .2s;
}
.dep-lb-close:hover { color: var(--cr); }

/* ── Professor ── */
.prof-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: stretch;
}
.prof-img {
  width: 80%;
  height: 80%;
  min-height: 340px;
  background: var(--ash);
  border: .5px solid var(--te);
  display: block;
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: .1em;
  color: var(--sm);
  text-align: center;
  line-height: 1.8;
}
.prof-name {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--cr);
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.prof-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--oc);
  margin-bottom: 16px;
}
.prof-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
}
.prof-stat-num {
  font-family: var(--font-display);
  font-size: 25px;
  color: var(--oc);
  line-height: 1;
}
.prof-stat-label {
  font-size: 12px;
  color: var(--sm);
  margin-top: 3px;
}
.prof-body {
  font-size: 16px;
  color: var(--du);
  line-height: 1.8;
  font-weight: 300;
}

/* ── FAQ ── */
.faq-item {
  border-bottom: .5px solid var(--ash);
  padding: 20px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--cr);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-icon {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--te);
  min-width: 18px;
  text-align: center;
  transition: transform .25s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 16px;
  color: var(--du);
  line-height: 1.75;
  font-weight: 300;
  margin-top: 14px;
  padding-right: 28px;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── Garantia ── */
.garantia-wrap {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.garantia-icon {
  width: 68px;
  height: 68px;
  border: 1px solid var(--te);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.garantia-num {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--oc);
  font-weight: 600;
  line-height: 1;
}
.garantia-dias {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: .1em;
  color: var(--te);
}
.garantia-title {
  font-family: var(--font-serif);
  font-size: 25px;
  color: var(--cr);
  margin-bottom: 10px;
}
.garantia-body {
  font-size: 16px;
  color: var(--du);
  line-height: 1.8;
  font-weight: 300;
}

/* ── CTA Final ── */
.cta-final {
  padding: 72px var(--pad-h);
  text-align: center;
  background: var(--k);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(155,92,30,.09) 0%, transparent 70%);
  pointer-events: none;
}
.cta-price-lbl {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--sm);
  margin-bottom: 10px;
}
.cta-price-old {
  font-size: 25px;
  color: var(--sm);
  text-decoration: line-through;
  margin-bottom: 8px;
}
.cta-price {
  font-family: var(--font-display);
  font-size: 50px;
  color: var(--em);
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.cta-price-note {
  font-size: 25px;
  color: var(--sm);
  font-style: italic;
  margin-bottom: 32px;
}
.cta-guarantee {
  font-size: 13px;
  color: var(--sm);
  margin-top: 16px;
  letter-spacing: .05em;
}

/* ── Footer ── */
.footer {
  background: var(--ch);
  padding: 28px var(--pad-h);
  text-align: center;
  border-top: .5px solid var(--ash);
}
.footer-text {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--sm);
}

/* ── Responsivo ── */
@media (max-width: 600px) {
  .hero-title { font-size: 42px; }
  .pq-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr 1fr; }
  .prof-wrap { grid-template-columns: 1fr; }
  .prof-img { width: 100%; height: 320px; min-height: 0; }
  .prof-stats { gap: 20px; }
  .dep-stage { padding: 0 44px; }
  .dep-card { padding: 28px 24px 28px; }
  .garantia-wrap { flex-direction: column; align-items: center; text-align: center; }
  .sticky-bar span { display: none; }
}

@media (max-width: 400px) {
  .bonus-grid { grid-template-columns: 1fr; }
}
