:root {
  --bg-main: #120e1c;
  --bg-card: #1d1829;
  --accent: #f2c94c;
  --accent-soft: #f7d97b;
  --text-main: #f5f5f5;
  --text-soft: #d0cde1;
  --text-muted: #a29cbf;
  --btn-primary: #f2c94c;
  --btn-primary-hover: #f7d97b;
  --radius-lg: 18px;
  --radius-full: 999px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --shadow-btn: 0 10px 25px rgba(0, 0, 0, 0.4);
  --max-width: 480px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  background: radial-gradient(circle at top, #2a1f4a 0, #120e1c 36%, #050308 100%);
  color: var(--text-main);
  display: flex;
  justify-content: center;
  padding: 24px 12px 36px;
}

.page {
  width: 100%;
  max-width: var(--max-width);
  background: linear-gradient(160deg, #1b1527 0, #0d0915 80%);
  border-radius: 28px;
  padding: 22px 18px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* CABEÇALHO */

.hero-header {
  text-align: center;
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(242, 201, 76, 0.12);
  color: var(--accent-soft);
  font-size: 0.78rem;
  margin-bottom: 8px;
  border: 1px solid rgba(242, 201, 76, 0.3);
}

.hero-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 6px;
  line-height: 1.4;
}

.hero-line {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* BOTÕES */

.cta-main {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--btn-primary);
  color: #2b1c09;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  box-shadow: var(--shadow-btn);
  margin-bottom: 10px;
  text-decoration: none;
  transition: 0.12s;
}

.cta-main:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-1px);
}

.cta-back {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--text-soft);
  text-decoration: none;
}

.cta-back:hover {
  text-decoration: underline;
}

/* SEÇÕES */

.section-block {
  margin-top: 20px;
  padding: 14px 12px;
  background: rgba(14, 9, 23, 0.85);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.section-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-list {
  list-style: disc;
  padding-left: 18px;
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.section-list li+li {
  margin-top: 4px;
}

.section-list.numbered {
  list-style: decimal;
}

/* CARDS */

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  background: #1d1829;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(242, 201, 76, 0.13);
}

.card-title {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-text {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.45;
}

/* BLOCO FINAL */

.section-block.final {
  text-align: center;
}

.final-text {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 12px;
}

/* RODAPÉ */

.footer {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 22px;
}

.footer span {
  color: var(--text-soft);
}

/* RESPONSIVO */

@media (min-width: 520px) {
  .hero-title {
    font-size: 1.55rem;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}
