
/* ============================================================
   miolo.css — Estilos do preview.html
   Escopado sob .miolo e .l1-*
   ============================================================ */

/* ── RESET ESCOPADO ─────────────────────────────────────────── */
.miolo *,
.miolo *::before,
.miolo *::after {
  box-sizing: border-box;
}

/* ── BASE ────────────────────────────────────────────────────── */
.miolo {
font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: #3c4858;
  background: #fff;
}

/* ── TIPOGRAFIA ──────────────────────────────────────────────── */
.miolo h1,
.miolo h2,
.miolo h4 {
  font-weight: 700;
  color: #3c4858;
  line-height: 1.3;
  margin: 0 0 20px;
}

.miolo h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
.miolo h2 { margin-top: 0; }

.miolo p {
  font-weight: 300;
  color: #3c4858;
  margin: 0 0 14px;
}

.miolo p:last-child { margin-bottom: 0; }

.miolo strong { font-weight: 500; }

/* ── HERO ────────────────────────────────────────────────────── */
.miolo-hero {
  margin-bottom: 20px;
}

.miolo-lead {
  font-size: 16px !important;
  font-weight: 300;
  color: #999 !important;
  margin: 0 !important;
}

.miolo-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 24px 0 0;
}

/* ── SEÇÕES ──────────────────────────────────────────────────── */
.miolo-section {
  margin-bottom: 35px;
}

/* ── BENEFÍCIOS ──────────────────────────────────────────────── */
.miolo-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.miolo-benefits li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #f5f5f5;
}

.miolo-benefits li:last-child {
  border-bottom: none;
}

.miolo-emoji {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.miolo-benefits strong {
  display: block;
  font-weight: 500;
  color: #3c4858;
  margin-bottom: 4px;
}

.miolo-benefits p {
  color: #999;
  margin: 0;
}

/* ── PASSOS ──────────────────────────────────────────────────── */
.miolo-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: steps;
}

.miolo-steps li {
  counter-increment: steps;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f5;
}

.miolo-steps li:last-child {
  border-bottom: none;
}

.miolo-steps li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #9c27b0;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  border-radius: 50%;
  box-shadow: 0 4px 20px 0 rgba(0,0,0,.14),
              0 7px 10px -5px rgba(156,39,176,.4);
}

.miolo-steps strong {
  display: block;
  font-weight: 500;
  color: #3c4858;
  margin-bottom: 4px;
}

.miolo-steps p {
  color: #999;
  margin: 0;
}

/* ── BOTÃO ───────────────────────────────────────────────────── */
.miolo-btn {
  display: inline-block;
  background: #9c27b0;
  color: #fff !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  padding: 12px 30px;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),
              0 3px 1px -2px rgba(0,0,0,.2),
              0 1px 5px 0 rgba(0,0,0,.12);
  transition: box-shadow 0.2s cubic-bezier(.4,0,1,1),
              background 0.2s cubic-bezier(.4,0,.2,1);
  text-align: center;
}

.miolo-btn:hover {
  background: #89229b;
  box-shadow: 0 14px 26px -12px rgba(156,39,176,.42),
              0 4px 23px 0 rgba(0,0,0,.12),
              0 8px 10px -5px rgba(156,39,176,.2);
}

.miolo-btn--lg {
  font-size: 13px;
  padding: 14px 40px;
}

/* ── CTA BOX ─────────────────────────────────────────────────── */
.miolo-cta-box {
  background: #faf5fb;
  border-left: 4px solid #9c27b0;
  border-radius: 0 6px 6px 0;
  padding: 28px 24px;
  margin-bottom: 48px;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,.08);
}

.miolo-cta-box h4 {
  font-size: 1.2rem;
  color: #3c4858;
  margin: 0 0 10px;
}

.miolo-cta-box p {
  color: #999;
  font-size: 13px;
  margin-bottom: 20px;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.miolo-faq {
  border-top: 1px solid #e5e5e5;
}

.miolo-faq__item {
  border-bottom: 1px solid #e5e5e5;
}

.miolo-faq__item:last-of-type {
	  border-bottom: none;
}

.miolo-faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #3c4858;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.miolo-faq__question:hover { color: #9c27b0; }

.miolo-faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: #9c27b0;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}

.miolo-faq__answer {
  font-weight: 300;
  color: #999;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.miolo-faq__item.is-open .miolo-faq__answer {
  max-height: 300px;
  padding-bottom: 16px;
}

.miolo-faq__item.is-open .miolo-faq__icon {
  transform: rotate(45deg);
}

/* ── TOC CARD (lander-01) ────────────────────────────────────── */
.l1-card {
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.07),
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 15px;
  margin-bottom: 20px;
}

.l1-toc {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.l1-toc a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-radius: 10px;

  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1.3;
  transition: filter 0.18s ease, transform 0.15s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

.l1-toc a:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.l1-toc a:active { transform: translateY(0); }

.l1-toc__text {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.l1-toc__arrow {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.9;
  flex-shrink: 0;
}

.l1-toc--indigo a { background: #5b5fc7; }
.l1-toc--gold   a { background: #d4920a; }
.l1-toc--teal   a { background: #0097a7; }
.l1-toc--purple a { background: #8e24aa; }
.l1-toc--red    a { background: #e53935; }

.l1-card-note {
  text-align: center;
  font-size: 13px;
  color: #1a73e8;
  margin-top: 4px;
}

p.l1-card-note {
	font-size: 13px;
}

/* ── RESPONSIVO ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  .miolo-btn--lg {
    width: 100%;
    display: block;
  }

  .miolo-cta-box {
    padding: 20px 16px;
  }
}