/* ══════════════════════════════════════════
   sections.css — Todas as seções da landing
   Alobaça v3 · Tata Hiago Salles
   ══════════════════════════════════════════ */

/* ── Textura de fundo compartilhada ── */
.has-texture {
  background-image: url('../img/bg-textura-ritual.jpg');
  background-repeat: repeat;
  background-size: 320px auto;
  background-blend-mode: overlay;
}

/* ── VSL ── */
.vsl-section {
  background: var(--bg3);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}
.vsl-container { max-width: 760px; margin: 0 auto; text-align: center; }
.vsl-placeholder {
  background: #0d0b08;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}
.vsl-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.04), transparent);
}
.vsl-play {
  width: 72px; height: 72px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 24px;
  opacity: 0.5;
}
.vsl-placeholder p { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.2em; color: var(--text-dim); text-transform: uppercase; margin: 0; }
.vsl-embed { width: 100%; aspect-ratio: 16/9; border: 1px solid var(--border); }

/* ── Problem ── */
.problem-section {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}
.problem-section blockquote {
  border-left: 2px solid var(--gold-dim);
  padding-left: 28px;
  margin: 36px 0;
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--cream-dim);
  line-height: 1.5;
}

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 48px;
  background: var(--border2);
}
.feature-card { background: var(--bg2); padding: 32px 28px; position: relative; overflow: hidden; }
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-num { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.2em; color: var(--gold-dim); margin-bottom: 14px; display: block; }
.feature-card h3 { margin-bottom: 10px; font-size: 14px; letter-spacing: 0.08em; }
.feature-card p  { font-size: 15px; color: var(--text-dim); line-height: 1.7; margin: 0; font-family: 'Lora', serif; }


/* ── Teacher ── */
.teacher-section { background: var(--bg2); }
.teacher-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
.teacher-img-wrap { position: relative; }
.teacher-img-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: sepia(20%) contrast(1.05);
  border: 1px solid var(--border);
}
.teacher-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent 60%);
  pointer-events: none;
}
.teacher-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 36px; background: var(--border2); }
.stat-block { background: var(--bg3); padding: 20px 16px; text-align: center; }
.stat-num   { font-family: 'Cinzel', serif; font-size: 28px; color: var(--gold); display: block; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; color: var(--text-dim); line-height: 1.3; }

/* ── Seal icon (garantia visual) ── */
.seal-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 0.85;
}

/* ── History / Timeline ── */
.history-section { background: var(--bg3); }
.timeline { margin-top: 48px; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim) 20%, var(--gold-dim) 80%, transparent);
}
.timeline-item  { padding-left: 56px; margin-bottom: 48px; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot   { position: absolute; left: 10px; top: 4px; width: 18px; height: 18px; border: 1px solid var(--gold-dim); background: var(--bg3); transform: rotate(45deg); }
.timeline-era   { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.2em; color: var(--gold-dim); text-transform: uppercase; margin-bottom: 8px; display: block; }
.timeline-item h3 { margin-bottom: 10px; font-size: 17px; }
.timeline-item p  { font-size: 16px; margin: 0; font-family: 'Lora', serif; line-height: 1.8; color: var(--text); }

/* ── Modules ── */
.modules-section { background: var(--bg2); }
.module-list { margin-top: 48px; display: flex; flex-direction: column; gap: 2px; }
.module-item {
  background: var(--bg3);
  border: 1px solid var(--border2);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  transition: border-color 0.25s;
}
.module-item:hover { border-color: var(--gold-dim); }
.module-item:hover .module-tag { color: var(--gold); }
.module-tag     { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 0.2em; color: var(--gold-dim); text-transform: uppercase; padding-top: 3px; transition: color 0.25s; }
.module-item h3 { font-size: 15px; letter-spacing: 0.06em; margin-bottom: 6px; }
.module-item p  { font-size: 15px; color: var(--text-dim); margin: 0 0 8px; line-height: 1.7; font-family: 'Lora', serif; }
.module-outcome { font-size: 13px; color: var(--gold2); font-family: 'Cinzel', serif; letter-spacing: 0.05em; }

/* ── Bonuses ── */
.bonuses-section { background: var(--bg3); border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 48px;
  background: var(--border2);
}
.bonus-card     { background: var(--bg2); padding: 36px 28px; position: relative; }
.bonus-icon     { font-size: 28px; margin-bottom: 16px; display: block; }
.bonus-card h3  { font-size: 15px; letter-spacing: 0.06em; margin-bottom: 10px; color: var(--cream); }
.bonus-card p   { font-size: 15px; color: var(--text-dim); margin: 0 0 16px; line-height: 1.7; font-family: 'Lora', serif; }
.bonus-value    { font-family: 'Cinzel', serif; font-size: 12px; color: var(--gold2); letter-spacing: 0.1em; }
.bonus-badge    { position: absolute; top: 16px; right: 16px; background: var(--red); color: #ffd0d0; font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; }

/* Preço riscado nos cards de e-book */
.bonus-price-original {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-decoration: line-through;
  margin-bottom: 4px;
}
.bonus-price-tag {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  color: var(--gold2);
  letter-spacing: 0.1em;
}

/* Bloco de somatória de valor */
.bonus-total-block {
  max-width: 600px;
  margin: 48px auto 0;
  border: 1px solid var(--border);
  background: var(--bg2);
  padding: 40px 48px;
  text-align: center;
}
.bonus-total-label {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 24px;
}
.bonus-total-breakdown {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: 'Lora', serif;
  font-size: 18px;
  color: var(--text-dim);
  padding: 10px 0;
  border-bottom: 1px solid var(--border2);
}
.bonus-total-breakdown span:last-child {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  color: var(--cream-dim);
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.bonus-total-breakdown--bonus span:last-child {
  color: var(--gold-dim);
  font-style: italic;
}
.bonus-total-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin: 20px 0;
}
.bonus-total-sum {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.bonus-total-crossed {
  font-size: 20px;
  color: var(--cream-dim);
  text-decoration: line-through;
  letter-spacing: 0.05em;
}
.bonus-total-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bonus-total-price p {
  font-family: 'Lora', serif;
  font-size: 15px;
  color: var(--text);
  margin: 0;
  font-style: italic;
}
.bonus-total-highlight {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-weight: 400;
}
.bonus-total-or {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Responsivo — bonus-total-block */
@media (max-width: 600px) {
  .bonus-total-block { padding: 32px 24px; }
  .bonus-total-highlight { font-size: 22px; }
  .bonus-total-breakdown { font-size: 13px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .bonus-total-breakdown span:last-child { align-self: flex-end; }
}

/* ── Testimonials ── */
.testimonials-section { background: var(--bg2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 48px;
  background: var(--border2);
}
.testimonial-card       { background: var(--bg3); padding: 32px 28px; }
.testimonial-stars      { color: var(--gold); font-size: 12px; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: var(--cream-dim);
  line-height: 1.75;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}
.testimonial-footer  { display: flex; align-items: center; gap: 14px; margin-top: 4px; }
.testimonial-avatar  {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 17px;
  color: var(--gold2);
  flex-shrink: 0;
}
.testimonial-author  { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.12em; color: var(--cream-dim); text-transform: uppercase; }
.testimonial-city    { font-family: 'Lora', serif; font-size: 12px; color: var(--text-dim); font-style: italic; margin-top: 2px; }

/* ── FAQ ── */
.faq-section { background: var(--bg); }
.faq-list    { margin-top: 48px; display: flex; flex-direction: column; }
.faq-item    { border-bottom: 1px solid var(--border2); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold2); }
.faq-icon    { color: var(--gold-dim); font-size: 18px; flex-shrink: 0; transition: transform 0.3s; font-style: normal; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a       { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 0 24px; }
.faq-a p     { font-size: 16px; color: var(--text); line-height: 1.8; margin: 0; font-family: 'Lora', serif; }

/* ── Final CTA ── */
.final-cta {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 100px 24px;
}
.final-cta .big-ornament {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold2);
  margin-bottom: 28px;
  display: block;
  text-transform: uppercase;
}
.final-quote {
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--cream-dim);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

/* ── Final CTA price reminder ── */
.final-price-reminder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
  padding: 18px 32px;
  border: 1px solid var(--border);
  background: rgba(201,168,76,0.04);
  flex-wrap: wrap;
}
.fpr-installment {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: var(--gold2);
  letter-spacing: 0.04em;
}
.fpr-sep {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.fpr-cash {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
}

/* ── Teacher title ── */
.teacher-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--gold2);
  text-transform: uppercase;
  margin-bottom: 20px;
}