:root {
  /* BASE */
  --bg: #0b0d10;
  --bg-dark: #0e1015;
  --bg-light: #12141a;
  --bg-card: #161922;

  /* TEXTO */
  --text: #ffffff;
  --text-dark: #ffffff;
  --text-muted: #9aa0aa;

  /* ACENTO */
  --primary: #ffffff;
  --accent: #5170ff ;

  /* BORDAS */
  --border: #232634;
  --border-light: #2c3040;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.4;
  font-size: 1rem;
}

/* CONTAINER */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.container.narrow {
  max-width: 720px;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 40;
  background: rgba(11,13,16,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO (PADRÃO SALVO) */
.logo {
  height: 38px;
  width: auto;
  display: block;
}

/* HERO */
.hero {
  position: relative;
  padding: 160px 0 46px;
  background:
    radial-gradient(
      800px 360px at 50% -20%,
      rgba(63,108,255,0.18),
      transparent 70%
    ),
    var(--bg-dark);
  text-align: center;
}

/* BADGE FLUTUANTE */
.hero-badge {
  position: absolute;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);

  background: rgba(255, 255, 255, 0.08);   /* vidro escuro */
  color: #ffffff;

  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;

  /*border: 1px solid rgba(255, 255, 255, 0.18);*/
  border: 1px solid rgba(79,108,255,0.5);

  backdrop-filter: blur(6px);

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.35);
}

/* CONTEÚDO */
.hero-content {
  max-width: 720px;
  margin: 0 auto;        /* centraliza o bloco */
}

/* TEXTO */
.hero h1 {
  font-size: 3.9rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.highlight {
  color: #5170ff ; /* azul */
}

.hero p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.2rem;
}

/* AÇÕES */
.hero-actions {
  display: flex;
  justify-content: center;   /* centraliza horizontal */
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;           /* quebra no mobile */
}

/* HERO — MOBILE */
@media (max-width: 768px) {

  .hero {
    padding-top: 112px; /* header + respiro */
  }

  .hero-badge {
    position: relative;
    top: auto;
    left: auto;
    transform: none;

    display: inline-block;
    margin: 0 auto 24px;

    font-size: 0.75rem;
    padding: 8px 18px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* BOTÕES */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
}

.btn-primary {
  background: #5170ff ; /* azul */
  color: #ffffff;
}

.btn-outline {
  border: 1px solid var(--border-light);
  color: var(--text);
  background: var(--accent);
}

.btn-link {
  background: #ffffff;
  color: #0f1115;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
}

.btn-link:hover {
  background: #f0f1f4;
}

.btn-large {
  margin-top: 24px;
}

/* SECTIONS */
.section {
  padding: 46px 0;
}

.section:not(.section-light):not(.cta) {
  background: var(--bg);
}

.section-light {
  background: var(--bg-light);
}

.section-light .muted {
  color: var(--text-muted);
}

.context-box {
  position: relative;
  max-width: 640px;      /* controla largura editorial */
  margin: 0 auto;        /* centraliza o bloco na página */
  padding-left: 32px;    /* espaço para a linha lateral */

  background: transparent;
  border: none;
}

/* linha editorial lateral */
.context-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;

  width: 3px;
  height: 100%;

  background: linear-gradient(
    180deg,
    var(--accent),
    transparent
  );

  border-radius: 2px;
}

/* FRASE DE IMPACTO */
.context-box h2 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}

/* CONTRAPONTO */
.context-box .emphasis {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 28px;
}

/* TEXTO */
.context-box p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;   /* mantém leitura confortável */
}

/* FECHAMENTO */
.context-box .stacked {
  margin-top: 32px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* BLOCO 2 — MOBILE */
@media (max-width: 768px) {
  .context-box h2 {
    font-size: 1.8rem;
  }

  .context-box .emphasis {
   font-size: 1.6rem;
 }
 .btn,
  .btn-primary,
  .btn-outline,
  .btn-link {
    padding: 6px 12px;
  }
}

/* BLOCO 3 — COMO FUNCIONA */
#como-funciona h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 2.2rem;
}

/* GRID */
.steps {
  display: grid;
  gap: 32px;
}

/* CARD */
.step {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.01)
  );
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 32px 36px;
}

/* NÚMERO */
.step span {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

/* TÍTULO */
.step h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXTO */
.step p {
  color: var(--text-muted);
  max-width: 420px;
}

/* BLOCO 3 LINHA SUTIL DE CONEXÃO (DESKTOP) */
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .step::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -16px;
    width: 32px;
    height: 1px;
    background: linear-gradient(
      90deg,
      var(--border),
      transparent
    );
  }

  .step:last-child::after {
    display: none;
  }
}

/* BLOCO 3 — MOBILE */
@media (max-width: 768px) {
  #como-funciona h2 {
   font-size: 1.8rem;
  }
}

/* PLANOS — BASE */
.plans {
  display: grid;
  gap: 12px;
  margin-top: 56px;
}

#planos h2 {
  text-align: center;
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.plan-group-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0px;
  text-align: center;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;

  font-size: 0.9rem;
  color: var(--text-muted);
}

.plan-list i {
  color: var(--accent);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

#planos .muted {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* CARD */
.plan {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px 18px 18px; /* mais espaço no topo */
  transition: transform 0.25s ease, border-color 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

/* SELO CENTRAL */
.plan-badge-pro {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  white-space: nowrap;   
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #e11d48;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.plan-badge-edition {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
/* TÍTULO */
.plan h3 {
  font-size: 1.4rem;
  margin-top: 12px;
  text-align: center;
}

/* PREÇO */
.price {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* PREÇO EM DESTAQUE */
.price.highlight {
  color: var(--accent);
}

/* DESCRIÇÃO */
.plan-desc {
  margin-bottom: 20px;
  color: var(--text-muted);
  text-align: center;
}
/* LISTA */
.plan ul {
  list-style: none;
  margin: 24px 0 32px;
}

.plan li {
  margin-bottom: 10px;
  font-size: 0.75rem;
}

/* empurra o botão para o fundo */
.plan .btn {
  margin-top: auto;
  align-self: center;
}

/* RESPONSIVO */
@media (min-width: 768px) {
  .plans {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* BLOCO 4 — MOBILE */
@media (max-width: 768px) {
  #planos h2 {
   font-size: 1.8rem;
 }
}
/* BLOCO 5 — PARA QUEM É (CENTRALIZAÇÃO REAL) */
.section .container.narrow {
  display: flex;
  justify-content: center;
}

/* o bloco em si */
.filter-box {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding-left: 32px;

  background: transparent;
  border: none;
}

/* linha editorial */
.filter-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;

  width: 3px;
  height: 100%;

  background: linear-gradient(
    180deg,
    var(--accent),
    transparent
  );

  border-radius: 2px;
}

/* título */
.filter-box h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 28px;
}

/* checklist */
.checklist {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* marcador */
.checklist li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* fechamento */
.filter-box .muted {
  margin-top: 36px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.85;
}

/* BLOCO 5 — MOBILE */
@media (max-width: 768px) {
  .filter-box h2 {
   font-size: 1.8rem;
 }
}

/* CTA FINAL — FECHAMENTO */
.cta {
  position: relative;
  padding: 46px 0;
  background: #07080c;
  text-align: center;
}

/* centralização real */
.cta .container.narrow {
  max-width: 720px;
  margin: 0 auto;
}

/* título */
.cta h2 {
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.2;
}

/* botão principal */
.cta .btn-large {
  padding: 18px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(63,108,255,0.35);
}

/* hover elegante */
.cta .btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(63,108,255,0.45);
}

/* link secundário */
.cta-link {
  display: block;
  margin-top: 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
}

/* mobile */
@media (max-width: 768px) {
  .cta h2 {
    font-size: 1.6rem;
  }
}

/* FOOTER */
.footer {
  background: #08090d;
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* lado direito */
.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* instagram */
.footer-instagram {
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-instagram:hover {
  color: var(--accent);
}

/* mobile */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
  }
}
