/* ── Landing Page ────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 20px 40px;
  text-align: center;
  gap: 20px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,75,75,.15);
  border: 1px solid rgba(255,75,75,.3);
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
}
.hero-sub {
  color: var(--text-sec);
  font-size: 1rem;
  max-width: 360px;
  margin: 0 auto;
}
.hero-note {
  font-size: .8rem;
  color: var(--text-sec);
}

.section {
  padding: 60px 20px;
  max-width: 480px;
  margin: 0 auto;
}
.section--center { text-align: center; }

.steps { display: flex; flex-direction: column; gap: 20px; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: .9rem;
}
.step-text h3 { font-size: 1rem; margin-bottom: 4px; }
.step-text p  { font-size: .875rem; color: var(--text-sec); }

.testimonials { display: flex; flex-direction: column; gap: 16px; }
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--border);
  object-fit: cover;
}
.testimonial-name { font-weight: 600; font-size: .9rem; }
.testimonial-handle { font-size: .8rem; color: var(--text-sec); }
.testimonial-text { font-size: .9rem; color: var(--text-sec); line-height: 1.5; }

/* ── Loading ─────────────────────────────────────────────── */
.loading-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 20px;
  text-align: center;
}
.loading-icon {
  width: 80px; height: 80px;
  border: 4px solid var(--border);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loading-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid var(--red);
  object-fit: cover;
}
.loading-msg {
  font-size: 1rem;
  color: var(--text-sec);
  min-height: 1.5em;
  transition: opacity .3s;
}

/* ── Login ───────────────────────────────────────────────── */
.login-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px;
  max-width: 420px;
  margin: 0 auto;
  gap: 24px;
}
.login-title { font-size: 1.6rem; font-weight: 800; text-align: center; }
.login-sub   { font-size: .9rem; color: var(--text-sec); text-align: center; }

/* ── Preview ─────────────────────────────────────────────── */
.preview-page {
  padding: 24px 20px 80px;
  max-width: 480px;
  margin: 0 auto;
}
.profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.profile-avatar-wrap { position: relative; flex-shrink: 0; width: 64px; height: 64px; }
.profile-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--red);
  object-fit: cover;
  background: var(--border);
}
.profile-initials {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--red);
}
.profile-name     { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; }
.profile-handle   { font-size: .85rem; color: var(--text-sec); }
.profile-followers{ font-size: .85rem; color: var(--text-sec); }

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.metric-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
}
.metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.metric-label {
  font-size: .68rem;
  color: var(--text-sec);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.problems-list { display: flex; flex-direction: column; gap: 10px; }

.paywall {
  margin-top: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.paywall-header { margin-bottom: 20px; }
.paywall-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.paywall-price-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 12px 0; }
.paywall-sub { font-size: .8rem; color: var(--text-sec); margin-bottom: 16px; }
.paywall-guarantee {
  font-size: .8rem;
  color: var(--text-sec);
  margin-top: 12px;
}
.paywall-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: .8rem;
  color: var(--text-sec);
}
.paywall-urgency {
  font-size: .8rem;
  color: var(--yellow);
  margin-top: 8px;
}

/* ── PIX ─────────────────────────────────────────────────── */
.pix-page {
  padding: 40px 20px;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}
.pix-steps {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.pix-step {
  display: flex;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-sec);
}
.pix-step-num {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
}

/* ── Processando ─────────────────────────────────────────── */
.processando-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px 20px;
  text-align: center;
}
.processando-icon {
  width: 80px; height: 80px;
  position: relative;
}
.processando-ring {
  width: 80px; height: 80px;
  border: 4px solid var(--border);
  border-top-color: var(--red);
  border-right-color: var(--red);
  border-radius: 50%;
  animation: spin .9s linear infinite;
  position: absolute;
  inset: 0;
}

/* ── Relatório ───────────────────────────────────────────── */
.relatorio-page {
  padding: 24px 20px 80px;
  max-width: 480px;
  margin: 0 auto;
}
.relatorio-header {
  text-align: center;
  margin-bottom: 32px;
}
.relatorio-title {
  font-size: 1rem;
  color: var(--text-sec);
  margin-bottom: 4px;
}
.percentile {
  font-size: .85rem;
  color: var(--text-sec);
  margin-top: 8px;
}

.metrics-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.metrics-table th, .metrics-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.metrics-table th { color: var(--text-sec); font-weight: 500; }
.metrics-table td:last-child { text-align: right; }

.acoes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: acao;
}
.acao-item {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  line-height: 1.5;
}
.acao-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .8rem;
  font-weight: 700;
}
