/* ==========
   BASE / TOKENS
   ========== */

:root {
  --color-bg: #020617;
  --color-bg-soft: #020617;
  --color-surface: #020617;
  --color-surface-elevated: rgba(15, 23, 42, 0.96);

  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-accent: #22c55e;
  --color-border: rgba(148, 163, 184, 0.35);

  --color-text: #e5e7eb;
  --color-muted: #9ca3af;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.85);
  --shadow-btn: 0 12px 30px rgba(37, 99, 235, 0.5);

  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --page-max-width: 1120px;
}

/* RESET SIMPLIFICADO */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #1f2937, #020617);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========
   LAYOUT
   ========== */

.page {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 20px 16px 48px;
}

/* HEADER */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo__subtitle {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.nav__link {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav__link:hover {
  opacity: 1;
}

.nav__cta {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.8rem;
}

/* ==========
   HERO
   ========== */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 40px;
}

.hero__content {
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), transparent 55%),
    rgba(15, 23, 42, 0.95);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.85);
  margin-bottom: 10px;
}

.hero__badge-label {
  font-size: 0.7rem;
  color: var(--color-muted);
}

.hero__badge-pill {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
  font-weight: 600;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero__title span {
  background: linear-gradient(135deg, #bfdbfe, #22c55e);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: 0.95rem;
  color: var(--color-muted);
  max-width: 460px;
  margin-bottom: 20px;
}

.hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.metric {
  padding: 10px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
}

.metric strong {
  font-size: 0.95rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.hero__note {
  font-size: 0.75rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.hero__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.9);
}

/* HERO ASIDE */

.hero__aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card {
  padding: 16px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface-elevated);
  font-size: 0.85rem;
}

.card--highlight {
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 60%),
    var(--color-surface-elevated);
}

.card__kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.card__title {
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.card__text {
  color: var(--color-muted);
  margin-bottom: 10px;
}

.card__disclaimer {
  font-size: 0.7rem;
  color: var(--color-muted);
  margin-top: 8px;
}

/* Before / After mini grid */

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ba {
  padding: 8px;
  border-radius: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  text-align: center;
  font-size: 0.78rem;
}

.ba__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  margin-bottom: 3px;
}

.ba__value {
  font-weight: 600;
  margin-bottom: 2px;
}

.ba__value--positive {
  color: var(--color-accent);
}

.ba__desc {
  font-size: 0.7rem;
  color: var(--color-muted);
}

.ba__desc--positive {
  color: #bbf7d0;
}

/* Pills */

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.pill {
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* ==========
   BOTÕES
   ========== */

.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  padding: 11px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease,
    border-color 0.12s ease, opacity 0.12s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.65);
}

.btn__sub {
  font-size: 0.7rem;
  opacity: 0.9;
}

.btn--ghost {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.7);
  font-size: 0.85rem;
}

.btn--ghost:hover {
  background: rgba(15, 23, 42, 1);
}

/* ==========
   SEÇÕES COMUNS
   ========== */

.section {
  margin-top: 40px;
  padding: 20px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface-elevated);
}

.section__header {
  margin-bottom: 14px;
}

.section__kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.section__title {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.section__subtitle {
  font-size: 0.88rem;
  color: var(--color-muted);
}

/* GRID UTILITÁRIO */

.grid {
  display: grid;
  gap: 14px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* FEATURES / BENEFÍCIOS */

.feature {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background:
    radial-gradient(circle at top, rgba(37, 99, 235, 0.2), transparent 60%),
    rgba(15, 23, 42, 0.96);
}

.feature__title {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.feature__text {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* STEPS */

.step {
  padding: 14px;
  border-radius: 18px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.96);
  font-size: 0.85rem;
}

.step__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.step__title {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.step__text {
  color: var(--color-muted);
}

/* TESTEMUNHOS */

.testimonial {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(34, 197, 94, 0.4);
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 60%),
    rgba(15, 23, 42, 0.96);
  font-size: 0.85rem;
}

.testimonial__name {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.testimonial__text {
  color: var(--color-muted);
}

.testimonial__badge {
  margin-top: 8px;
  display: inline-block;
  font-size: 0.74rem;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  background: rgba(34, 197, 94, 0.15);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.6);
}

/* FAQ */

.faq {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.faq__item {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.96);
  padding: 10px 12px;
}

.faq__question {
  cursor: pointer;
  list-style: none;
  font-size: 0.9rem;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__answer {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* CTA FINAL */

.cta-final {
  margin-top: 20px;
  text-align: center;
}

.cta-final__text {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 12px;
}

/* FOOTER */

.footer {
  margin-top: 32px;
  font-size: 0.75rem;
  color: var(--color-muted);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer a {
  text-decoration: underline;
  text-decoration-style: dotted;
}

/* ==========
   RESPONSIVO
   ========== */

@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__aside {
    order: -1;
  }
}

@media (max-width: 720px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .nav__link {
    font-size: 0.8rem;
  }

  .page {
    padding-inline: 14px;
  }

  .section {
    padding-inline: 14px;
  }

  .grid--3 {
    grid-template-columns: minmax(0, 1fr);
  }
}
