/* =========================================================
   Mestres dos Negócios Stone — LP de vendas (programa.html)
   Carregado depois de styles.css; só estilos aditivos.
   ========================================================= */

body.lp { display: block; }

.lp-container {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-container--narrow { max-width: 680px; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Hero ---------- */
.hero {
  background: var(--verde-escuro);
  color: var(--branco);
  text-align: center;
  padding: 72px 0 88px;
}

.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-logo {
  width: min(340px, 72vw);
  margin-bottom: 40px;
}

.hero-kicker {
  font-size: 1rem;
  font-weight: 600;
  color: var(--verde-claro);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.55;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--verde-vibrante);
  text-transform: uppercase;
}

.hero-text {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 32px;
}

.hero-text strong { color: var(--verde-claro); }

.hero-checks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 36px;
  padding: 0;
}

.hero-checks li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(210, 255, 126, 0.35);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-checks li::before {
  content: "✔";
  color: var(--verde-vibrante);
  margin-right: 8px;
}

/* ---------- Seções ---------- */
.section { padding: 88px 0; }

.section--white { background: var(--branco); }
.section--gray { background: var(--cinza-claro); }
.section--lime { background: var(--verde-claro); }

.section--dark {
  background: var(--verde-escuro);
  color: var(--branco);
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 44px;
}

.section-prose {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.section-prose p { margin-bottom: 16px; }

.section-prose--center { text-align: center; }

.prose-lead { font-weight: 600; }

.prose-highlight {
  font-size: 1.18rem;
  font-weight: 600;
}

.section--white .prose-highlight strong,
.section--gray .prose-highlight strong {
  background: linear-gradient(transparent 62%, var(--verde-claro) 62%);
}

.section-cta { text-align: center; margin-top: 44px; }

.section-cta .btn { text-transform: uppercase; font-size: 0.98rem; letter-spacing: 0.02em; }

/* ---------- Diagrama (cadeia) ---------- */
.chain {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.chain-item {
  background: var(--cinza-claro);
  border: 2px solid var(--verde-escuro);
  color: var(--verde-escuro);
  font-weight: 700;
  border-radius: 14px;
  padding: 16px 24px;
  text-align: center;
}

.chain-arrow {
  color: var(--verde-vibrante);
  font-size: 1.6rem;
  font-weight: 800;
}

/* ---------- Checklist em grade ---------- */
.check-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
}

.check-grid li {
  background: var(--cinza-claro);
  border-radius: 14px;
  padding: 20px 22px 20px 54px;
  font-size: 1.02rem;
  font-weight: 500;
  position: relative;
}

.check-grid li::before {
  content: "✔";
  position: absolute;
  left: 20px;
  top: 19px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--verde-vibrante);
  color: var(--verde-escuro);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Encontros ---------- */
.meetings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.meeting {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(210, 255, 126, 0.25);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.meeting-number {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--verde-vibrante);
  line-height: 1;
}

.meeting-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--verde-claro);
  margin: 6px 0 16px;
}

.meeting-title {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

.meeting-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- Comparativo ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-card {
  border-radius: var(--radius);
  padding: 36px 32px;
}

.compare-card--no {
  background: var(--cinza-claro);
}

.compare-card--yes {
  background: var(--verde-escuro);
  color: var(--branco);
}

.compare-title {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 22px;
}

.compare-title em { font-style: normal; text-decoration: underline; text-underline-offset: 4px; }

.compare-card--yes .compare-title em { color: var(--verde-vibrante); }

.x-list, .v-list { list-style: none; padding: 0; }

.x-list li, .v-list li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 1rem;
}

.x-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 8px;
  color: #c04747;
  font-weight: 800;
}

.v-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--verde-vibrante);
  font-weight: 800;
}

/* ---------- Benefícios (seção lima) ---------- */
.section--lime .section-title { color: var(--verde-escuro); }

.benefit-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
}

.benefit-list li {
  background: var(--branco);
  border-radius: 14px;
  padding: 18px 22px 18px 54px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 70, 30, 0.08);
}

.benefit-list li::before {
  content: "✔";
  position: absolute;
  left: 20px;
  top: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--verde-vibrante);
  color: var(--verde-escuro);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footnote {
  max-width: 640px;
  margin: 18px auto 0;
  font-size: 0.85rem;
  color: rgba(16, 37, 26, 0.6);
}

/* ---------- Manifesto ---------- */
.manifesto { text-align: center; }

.manifesto-title {
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 32px;
}

.manifesto-title span {
  background: linear-gradient(transparent 62%, var(--verde-claro) 62%);
}

.manifesto p {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.manifesto strong {
  background: linear-gradient(transparent 62%, var(--verde-claro) 62%);
}

/* ---------- Mentor ---------- */
.mentor {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}

.mentor-photo {
  width: 260px;
  height: 300px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--verde-escuro), #0a5e2e);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mentor-photo span {
  font-size: 3.4rem;
  font-weight: 800;
  color: rgba(210, 255, 126, 0.5);
}

.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mentor-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.mentor-name span {
  color: var(--verde-escuro);
  font-weight: 600;
}

.mentor-bio p {
  font-size: 1.02rem;
  margin-bottom: 12px;
}

/* ---------- Fechamento ---------- */
.section--closing { text-align: center; }

.section--closing .badge {
  background: var(--verde-vibrante);
  color: var(--verde-escuro);
  margin-bottom: 24px;
}

.closing-title {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 28px;
}

.section--closing .section-prose { color: rgba(255, 255, 255, 0.85); }

.section--closing .prose-highlight {
  color: var(--verde-claro);
  font-size: 1.25rem;
  font-weight: 700;
}

.closing-realization {
  margin-top: 44px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.closing-realization strong { color: var(--verde-claro); }

/* ---------- Mobile ---------- */
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 68px; }
  .meetings { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .mentor { grid-template-columns: 1fr; }
  .mentor-photo { margin: 0 auto; }
  .chain { flex-direction: column; }
  .chain-arrow { transform: rotate(90deg); }
  .chain-item { width: 100%; max-width: 320px; }
  .section-cta .btn { width: 100%; box-sizing: border-box; }
}
