:root {
  /* Cores editaveis */
  --bg: #0f0e11;
  --bg-soft: #17151a;
  --surface: #1e1b22;
  --border: rgba(255, 255, 255, 0.10);
  --text: #f6f4f8;
  --text-soft: rgba(246, 244, 248, 0.64);
  --accent: #ff2e7e;
  --accent-2: #ffb347;
  --accent-soft: rgba(255, 46, 126, 0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1120px;
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: 760px; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===================== TYPO HELPERS ===================== */
.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow--dark { color: var(--accent); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #17151a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 46, 126, 0.35); }
.btn--sm { padding: 11px 20px; font-size: 14px; min-height: 42px; }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: rgba(255,255,255,0.05); box-shadow: none; }
.btn--block { width: 100%; }

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 14, 17, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.06em;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--text); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(255,46,126,0.30), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero__sub {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 26px;
}
.hero__stats .stat { display: flex; flex-direction: column; }
.hero__stats .stat__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
}
.hero__stats .stat__label {
  font-size: 12.5px;
  color: var(--text-soft);
  margin-top: 6px;
}

.hero__media { position: relative; }
.media-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255,46,126,0.22), rgba(255,179,71,0.12)),
    var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  overflow: hidden;
}
.media-frame::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
  color: var(--text-soft);
  font-size: 14px;
}
.media-frame__tag {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(15,14,17,0.6);
  border: 1px solid var(--border);
}

/* ===================== SECTIONS ===================== */
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 760px;
}
.section__lead {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 640px;
  margin-top: 18px;
}

/* ===================== PILLARS ===================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.pillar:hover { transform: translateY(-4px); border-color: rgba(255,46,126,0.45); }
.pillar__icon {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--accent);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--accent-soft);
  margin-bottom: 22px;
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 12px;
}
.pillar__text { color: var(--text-soft); font-size: 15.5px; }

/* ===================== FORMAT ===================== */
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.format-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.format-card__label {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.format-card__value { font-size: 18px; font-weight: 600; }
.audience {
  margin-top: 40px;
  background: linear-gradient(140deg, var(--accent-soft), transparent 70%), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
}
.audience h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 12px;
}
.audience p { color: var(--text-soft); max-width: 720px; font-size: 16.5px; }

/* ===================== RESULTS ===================== */
.results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.result {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: left;
}
.result__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  color: var(--accent);
}
.result__label { color: var(--text-soft); font-size: 14px; margin-top: 12px; }

/* ===================== CTA / FORM ===================== */
.cta {
  padding: 100px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,46,126,0.18), transparent 45%),
    var(--bg);
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.cta__text { color: var(--text-soft); font-size: 17px; max-width: 500px; margin-bottom: 26px; }
.cta__perks { display: grid; gap: 12px; }
.cta__perks li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
}
.cta__perks li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
}
.form__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 22px;
}
.field { display: block; margin-bottom: 18px; }
.field span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.field input, .field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form__note { font-size: 13px; color: var(--text-soft); margin-top: 14px; text-align: center; }

/* ===================== FAQ ===================== */
.faq { margin-top: 40px; display: grid; gap: 12px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__q::after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  color: var(--text-soft);
  padding: 0 24px;
}
.faq__item.is-open .faq__a { max-height: 260px; padding: 0 24px 22px; }

/* ===================== FOOTER ===================== */
.footer { padding: 56px 0 30px; border-top: 1px solid var(--border); }
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand { font-family: var(--font-display); font-weight: 900; font-size: 20px; letter-spacing: 0.06em; }
.footer__tagline { color: var(--text-soft); font-size: 14px; margin-top: 4px; }
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.footer__social a:hover { border-color: var(--accent); color: var(--accent); }
.footer__legal { color: var(--text-soft); font-size: 13px; margin-top: 32px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { order: -1; max-width: 360px; }
  .cta__inner { grid-template-columns: 1fr; gap: 36px; }
  .pillars, .format-grid { grid-template-columns: 1fr; }
  .results { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .section { padding: 68px 0; }
  .hero { padding: 56px 0 68px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .results { grid-template-columns: 1fr; }
}
