/* ============================================================
   PROMETA — prometa.app.br · design v3 "app-premium"
   Direção: a mesma identidade visual do aplicativo, em
   acabamento premium de site de produto — azul-marinho de
   fundo, azul vivo nas ações de atleta, laranja nas ações de
   organizador/destaque, cards arredondados, gradientes aurora,
   mockup do app como protagonista.
   Tipografia: Bricolage Grotesque (títulos) + Outfit (texto).
   ============================================================ */

:root {
  /* Cores — mesmas famílias do app */
  --navy-950: #060e22;
  --navy-900: #0a1730;
  --navy-800: #10224a;
  --navy-700: #17306a;
  --blue: #2e6bff;
  --blue-soft: #6d9aff;
  --orange: #ff7a2f;
  --orange-deep: #f05f0e;
  --bg-light: #f5f8ff;
  --white: #ffffff;
  --ink: #101b33;
  --ink-soft: #4e5c7d;
  --line: rgba(16, 27, 51, 0.09);
  --line-nav: rgba(255, 255, 255, 0.1);

  /* Tipografia */
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Outfit", sans-serif;

  /* Medidas */
  --container: 1180px;
  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;
  --shadow-card: 0 14px 44px rgba(10, 23, 48, 0.1);
  --shadow-deep: 0 30px 80px rgba(6, 14, 34, 0.5);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--blue); color: #fff; }

/* ---------- Utilidades ---------- */
.container { width: min(var(--container), 100% - 48px); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}
.eyebrow--orange { color: var(--orange); }
.eyebrow--light { color: var(--blue-soft); }

.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
}
h2.display { font-size: clamp(2rem, 4.4vw, 3.3rem); margin: 18px 0 18px; }
h2.display .tint { color: var(--blue); }
h2.display .tint--orange { color: var(--orange); }

.section { padding: 110px 0; position: relative; }
.section--light { background: var(--bg-light); }
.section--navy { background: var(--navy-900); color: #fff; }
.section-lead { font-size: 1.14rem; color: var(--ink-soft); max-width: 620px; }
.section--navy .section-lead { color: rgba(255, 255, 255, 0.72); }

/* ---------- Botões ----------
   AZUL = ação de atleta · LARANJA = ação de organizador (regra da marca) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.005em;
  transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.22s ease, background 0.22s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.01); }
.btn:active { transform: translateY(0) scale(0.99); }
.btn .arrow { transition: transform 0.2s ease; font-weight: 400; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--blue {
  background: linear-gradient(180deg, #4a80ff, var(--blue));
  color: #fff;
  box-shadow: 0 12px 32px rgba(46, 107, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn--blue:hover { box-shadow: 0 18px 44px rgba(46, 107, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.28); }

.btn--orange {
  background: linear-gradient(180deg, #ff9350, var(--orange-deep));
  color: #fff;
  box-shadow: 0 12px 32px rgba(255, 122, 47, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn--orange:hover { box-shadow: 0 18px 44px rgba(255, 122, 47, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: rgba(255, 255, 255, 0.65); background: rgba(255, 255, 255, 0.1); }

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(16, 27, 51, 0.22);
}
.btn--ghost-dark:hover { border-color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(6, 14, 34, 0.85);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 10px 34px rgba(6, 14, 34, 0.4);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* Logo oficial (PRO)META — versão invertida para fundos escuros */
.logo {
  display: flex;
  align-items: center;
  gap: 7px;
}
.logo-pro {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1;
}
.logo-meta {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  line-height: 1;
  background: #fff;
  color: #2b3c4e;
  padding: 5px 10px 4px;
  border-radius: 2px;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  font-size: 0.96rem;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav .btn { padding: 11px 24px; font-size: 0.92rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 120; }
.nav-toggle span { width: 23px; height: 2px; border-radius: 2px; background: #fff; transition: transform 0.25s ease, opacity 0.25s ease; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-950);
  color: #fff;
  padding: 170px 0 120px;
  overflow: hidden;
}
/* aurora de marca: azul + laranja */
.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(46% 42% at 74% 24%, rgba(46, 107, 255, 0.34), transparent 68%),
    radial-gradient(34% 34% at 16% 78%, rgba(255, 122, 47, 0.2), transparent 70%),
    radial-gradient(50% 48% at 40% 8%, rgba(23, 48, 106, 0.85), transparent 72%);
  filter: blur(10px);
  animation: aurora 14s ease-in-out infinite alternate;
}
@keyframes aurora {
  from { transform: translate3d(-1.5%, 0, 0) scale(1); }
  to { transform: translate3d(1.5%, 2%, 0) scale(1.05); }
}
/* grão sutil para dar textura */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  margin: 22px 0 22px;
  letter-spacing: -0.03em;
}
/* H1 da home: duas frases, corpo menor que o slogan antigo de 3 palavras */
.hero .hero-h1 { font-size: clamp(2.3rem, 4.8vw, 3.9rem); }
.hero h1 .h1-line {
  display: block;
  opacity: 0;
  transform: translateY(34px);
  animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero h1 .h1-line:nth-child(1) { animation-delay: 0.06s; }
.hero h1 .h1-line:nth-child(2) { animation-delay: 0.18s; }
.hero h1 .h1-line:nth-child(3) { animation-delay: 0.3s; }
.hero h1 .acc-blue { color: var(--blue-soft); }
.hero h1 .acc-orange {
  background: linear-gradient(92deg, var(--orange) 20%, #ffb26b 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-size: 1.18rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.76);
  max-width: 530px;
  margin-bottom: 34px;
  opacity: 0;
  animation: rise 0.7s 0.42s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  opacity: 0;
  animation: rise 0.7s 0.54s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-micro {
  margin-top: 22px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.52);
  opacity: 0;
  animation: rise 0.7s 0.66s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-micro .sep { margin: 0 10px; color: var(--blue-soft); }

/* ---------- Mockup do app (protagonista do hero) ----------
   Réplica da Home do app: saudação, progresso no desafio,
   feed com mapa, navegação Início/Feed/Você/Desafios.
   Substituir por render/foto real do app quando houver. */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  opacity: 0;
  animation: rise 0.9s 0.4s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.phone-wrap {
  position: relative;
  transform: rotate(-4deg);
  animation: phonefloat 7s ease-in-out infinite;
}
@keyframes phonefloat {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-12px); }
}
/* sombra projetada no "chão" */
.phone-wrap::after {
  content: "";
  position: absolute;
  bottom: -42px; left: 50%;
  transform: translateX(-50%) rotate(4deg);
  width: 72%; height: 46px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(2, 6, 16, 0.6), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}
/* botões físicos laterais */
.pbtn {
  position: absolute;
  width: 3.5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #1a2745, #050a18);
  z-index: 0;
}
.pbtn--power { right: -3px; top: 27%; height: 64px; }
.pbtn--volup { left: -3px; top: 20%; height: 38px; }
.pbtn--voldn { left: -3px; top: 27.5%; height: 38px; }

.phone {
  width: min(310px, 82vw);
  aspect-ratio: 9 / 19;
  background: linear-gradient(180deg, #0d1c3f, var(--navy-950));
  border: 10px solid #0b0f1d;
  border-radius: 50px;
  box-shadow:
    var(--shadow-deep),
    0 0 0 2px #2a3350,
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 90px rgba(46, 107, 255, 0.22);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
/* reflexo de vidro por cima da tela */
.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  pointer-events: none;
  z-index: 6;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.025) 26%, transparent 42%),
    radial-gradient(130% 60% at 108% -8%, rgba(255, 255, 255, 0.07), transparent 55%);
}
/* ilha dinâmica */
.phone-island {
  position: absolute;
  top: 13px; left: 50%;
  transform: translateX(-50%);
  width: 29%; height: 21px;
  background: #04060d;
  border-radius: 999px;
  z-index: 5;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.12);
}
.phone-island::after {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #24344f, #05070c 70%);
}
.phone-screen {
  position: absolute;
  inset: 0;
  padding: 12px 15px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
}
/* barra de status */
.app-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 8px 6px;
  color: rgba(255, 255, 255, 0.9);
}
.app-status .st-time { font-weight: 600; font-size: 0.74rem; letter-spacing: 0.02em; }
.app-status .st-icons { display: flex; align-items: center; gap: 5px; }
.app-status .st-icons svg { width: 15px; height: 11px; }
.st-bat {
  width: 21px; height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 3.5px;
  position: relative;
  display: inline-block;
}
.st-bat::before {
  content: "";
  position: absolute;
  inset: 1.5px;
  right: 5.5px;
  background: #fff;
  border-radius: 1.5px;
}
.st-bat::after {
  content: "";
  position: absolute;
  right: -3.5px; top: 50%;
  transform: translateY(-50%);
  width: 2px; height: 4.5px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 2px 2px 0;
}
/* selo de conexão com o Strava */
.app-strava {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 600;
  color: #ffb26b;
  background: rgba(252, 82, 0, 0.14);
  border: 1px solid rgba(252, 82, 0, 0.35);
  border-radius: 999px;
  padding: 4px 10px;
}
.app-strava::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fc5200;
  box-shadow: 0 0 8px rgba(252, 82, 0, 0.9);
}
.app-greet { display: flex; align-items: center; justify-content: space-between; }
.app-greet .hi { font-weight: 600; color: #fff; font-size: 0.95rem; }
.app-greet .hi small { display: block; font-weight: 400; font-size: 0.68rem; color: rgba(255,255,255,0.5); }
.app-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy-700));
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 0.72rem;
}
.app-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 13px 14px;
}
.app-card .k {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.app-progress .row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 7px; }
.app-progress .name { color: #fff; font-weight: 600; font-size: 0.8rem; }
.app-progress .val { color: var(--orange); font-weight: 700; font-size: 0.8rem; }
.app-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.app-bar i {
  display: block;
  height: 100%;
  width: 68%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-soft));
  box-shadow: 0 0 12px rgba(46, 107, 255, 0.7);
}
.app-progress .sub { margin-top: 7px; font-size: 0.64rem; color: rgba(255,255,255,0.45); }
.app-map {
  height: 86px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  position: relative;
  overflow: hidden;
  margin-bottom: 9px;
}
.app-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.app-map path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(255, 122, 47, 0.7));
}
.app-feed .who { display: flex; align-items: center; gap: 8px; }
.app-feed .who .dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 0.6rem;
}
.app-feed .who b { color: #fff; font-size: 0.74rem; font-weight: 600; display: block; line-height: 1.25; }
.app-feed .who span { font-size: 0.62rem; color: rgba(255,255,255,0.45); }
.app-feed .stats { margin-left: auto; text-align: right; }
.app-feed .stats b { color: var(--blue-soft); font-size: 0.78rem; }
.app-feed .stats span { display: block; font-size: 0.6rem; color: rgba(255,255,255,0.45); }
.app-nav {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 9px 6px;
}
.app-nav span {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  display: grid;
  justify-items: center;
  gap: 4px;
}
.app-nav span svg { width: 17px; height: 17px; }
.app-nav .on { color: var(--blue-soft); font-weight: 600; }
.app-nav .on svg { filter: drop-shadow(0 0 6px rgba(109, 154, 255, 0.7)); }

/* chips flutuando ao redor do celular */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13, 28, 63, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 18px 44px rgba(6, 14, 34, 0.5);
  font-size: 0.82rem;
  color: #fff;
  animation: chipfloat 6s ease-in-out infinite;
  z-index: 4;
}
@keyframes chipfloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-chip b { font-weight: 700; }
.float-chip small { display: block; font-size: 0.68rem; color: rgba(255, 255, 255, 0.55); }
.float-chip .ico {
  width: 34px; height: 34px;
  border-radius: 11px;
  display: grid; place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.float-chip--medal { top: 9%; right: 0; animation-delay: 0.8s; }
.float-chip--medal .ico { background: rgba(255, 122, 47, 0.18); }
.float-chip--rank { bottom: 13%; left: 0; animation-delay: 2s; }
.float-chip--rank .ico { background: rgba(46, 107, 255, 0.2); }
.float-chip--rank .up { color: #35e08c; font-weight: 700; }

/* ---------- Barra de prova social ---------- */
.proof-bar {
  background: var(--navy-950);
  color: #fff;
  padding: 30px 0;
  border-top: 1px solid var(--line-nav);
}
.proof-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 60px;
}
.proof-item { display: flex; align-items: baseline; gap: 12px; }
.proof-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--orange);
}
.proof-label { font-size: 0.98rem; color: rgba(255, 255, 255, 0.68); }
.proof-dot { color: rgba(255, 255, 255, 0.22); font-size: 1.4rem; }

/* ---------- Passos (como funciona) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 58px;
}
.steps--four { grid-template-columns: repeat(4, 1fr); }
.step {
  position: relative;
  padding: 34px 30px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 18px rgba(10, 23, 48, 0.05);
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.28s ease;
}
.step:hover { transform: translateY(-7px); box-shadow: var(--shadow-card); }
.step-num {
  width: 46px; height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, #4a80ff, var(--blue));
  box-shadow: 0 8px 22px rgba(46, 107, 255, 0.38);
  margin-bottom: 20px;
}
.step--orange .step-num {
  background: linear-gradient(135deg, #ff9350, var(--orange-deep));
  box-shadow: 0 8px 22px rgba(255, 122, 47, 0.38);
}
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; margin-bottom: 10px; letter-spacing: -0.01em; }
.step p { color: var(--ink-soft); font-size: 0.98rem; }
.section-cta { margin-top: 54px; text-align: center; }

/* ---------- Cards de desafios ---------- */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 58px;
}
.challenge-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(10, 23, 48, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.28s ease;
}
.challenge-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-card); }
/* capa com FOTO: trocar o gradiente por <img> real do desafio quando houver */
.challenge-cover {
  position: relative;
  height: 175px;
  background:
    radial-gradient(120% 90% at 20% 0%, rgba(46, 107, 255, 0.55), transparent 60%),
    linear-gradient(150deg, var(--navy-700), var(--navy-950));
  overflow: hidden;
}
.challenge-cover--orange {
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(255, 122, 47, 0.5), transparent 60%),
    linear-gradient(150deg, var(--navy-700), var(--navy-950));
}
.challenge-cover svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.85; }
.challenge-cover path { fill: none; stroke: rgba(255, 255, 255, 0.85); stroke-width: 2.6; stroke-linecap: round; }
.challenge-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; }
.badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  color: #fff;
  backdrop-filter: blur(6px);
}
.badge--free { background: var(--blue); box-shadow: 0 6px 16px rgba(46, 107, 255, 0.45); }
.badge--paid { background: var(--orange); box-shadow: 0 6px 16px rgba(255, 122, 47, 0.45); }
.challenge-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.challenge-sport {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.challenge-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.24rem; letter-spacing: -0.01em; }
.challenge-period { font-size: 0.9rem; color: var(--ink-soft); }
.challenge-body .btn { margin-top: 14px; align-self: flex-start; padding: 12px 26px; font-size: 0.92rem; }

/* card de novatos */
.challenge-card--new {
  background:
    radial-gradient(130% 100% at 100% 0%, rgba(255, 122, 47, 0.24), transparent 55%),
    var(--navy-900);
  color: #fff;
  border: 1px solid rgba(255, 122, 47, 0.3);
  justify-content: center;
  padding: 36px 30px;
  gap: 10px;
}
.challenge-card--new .eyebrow-sm {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.challenge-card--new h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; letter-spacing: -0.01em; }
.challenge-card--new p { color: rgba(255, 255, 255, 0.7); font-size: 0.96rem; }
.link-arrow {
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.link-arrow .arrow { transition: transform 0.2s ease; }
.link-arrow:hover .arrow { transform: translateX(5px); }

/* ---------- Seção medalha ---------- */
.medal-section {
  background:
    radial-gradient(70% 90% at 85% 20%, rgba(255, 122, 47, 0.14), transparent 60%),
    radial-gradient(60% 80% at 10% 90%, rgba(46, 107, 255, 0.14), transparent 60%),
    var(--navy-900);
  color: #fff;
  overflow: hidden;
}
.medal-section .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
}
/* medalha ilustrada — SUBSTITUIR por fotografia real da medalha */
.medal-visual { position: relative; display: grid; place-items: center; min-height: 420px; }
.medal-glow {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 47, 0.28), transparent 65%);
  filter: blur(12px);
}
.medal-ribbon {
  position: absolute;
  top: 6%;
  width: 96px; height: 40%;
  background: linear-gradient(180deg, var(--blue), var(--navy-700));
  clip-path: polygon(0 0, 100% 0, 76% 100%, 24% 100%);
  border-radius: 6px;
  z-index: 1;
}
.medal-disc {
  position: relative;
  z-index: 2;
  width: 265px; height: 265px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ffc487, var(--orange) 52%, #b8500c 100%);
  box-shadow:
    0 34px 80px rgba(255, 122, 47, 0.4),
    inset 0 -10px 28px rgba(0, 0, 0, 0.3),
    inset 0 6px 18px rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  animation: medalfloat 7s ease-in-out infinite;
}
@keyframes medalfloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.medal-disc::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.5);
}
.medal-inner { text-align: center; color: #fff; font-family: var(--font-display); }
.medal-inner .medal-km { font-weight: 800; font-size: 3.1rem; line-height: 1; text-shadow: 0 3px 10px rgba(0,0,0,0.25); }
.medal-inner .medal-label { font-weight: 600; font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.9; margin-top: 6px; }

.testimonials { display: grid; gap: 14px; margin-top: 36px; }
.testimonial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 20px 24px;
}
.testimonial p { font-size: 0.99rem; color: rgba(255, 255, 255, 0.88); }
.testimonial cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-soft);
}

/* ---------- Ponte organizador ---------- */
.bridge { padding: 110px 0; background: var(--bg-light); }
.bridge-card {
  position: relative;
  border-radius: 36px;
  padding: clamp(48px, 7vw, 84px);
  text-align: center;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(80% 120% at 85% 0%, rgba(255, 122, 47, 0.4), transparent 55%),
    radial-gradient(70% 100% at 10% 100%, rgba(46, 107, 255, 0.3), transparent 60%),
    var(--navy-900);
  box-shadow: var(--shadow-deep);
}
.bridge-card h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 16px; }
.bridge-card p { color: rgba(255, 255, 255, 0.76); max-width: 620px; margin: 0 auto 34px; font-size: 1.12rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 52px auto 0; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: 0 3px 14px rgba(10, 23, 48, 0.04);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-card); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 60px 22px 26px;
  font-weight: 600;
  font-size: 1.06rem;
  position: relative;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(46, 107, 255, 0.1);
  color: var(--blue);
  font-weight: 500;
  font-size: 1.2rem;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-item[open] summary { color: var(--blue); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); background: var(--blue); color: #fff; }
.faq-item .faq-answer { padding: 0 26px 24px; color: var(--ink-soft); max-width: 700px; }
.faq-answer a { color: var(--blue); font-weight: 600; }

/* ---------- CTA final ---------- */
.final-cta { padding: 110px 0; }
.final-cta-card {
  position: relative;
  border-radius: 36px;
  padding: clamp(52px, 8vw, 96px) clamp(28px, 6vw, 80px);
  text-align: center;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(70% 110% at 50% -10%, rgba(46, 107, 255, 0.5), transparent 60%),
    radial-gradient(50% 80% at 90% 100%, rgba(255, 122, 47, 0.25), transparent 60%),
    var(--navy-950);
  box-shadow: var(--shadow-deep);
}
.final-cta-card h2 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); margin-bottom: 18px; }
.final-cta-card p { color: rgba(255, 255, 255, 0.75); font-size: 1.15rem; margin-bottom: 38px; }
.final-cta-card .hero-ctas { justify-content: center; opacity: 1; animation: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 40px;
  font-size: 0.92rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.footer-col ul { display: grid; gap: 9px; }
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 11px 18px;
  font-weight: 500;
  color: #fff;
  font-size: 0.88rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.store-badge:hover { border-color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.05); }
.footer-bottom {
  border-top: 1px solid var(--line-nav);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.55); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   /ORGANIZADORES
   ============================================================ */

.hero--org::before {
  background:
    radial-gradient(46% 42% at 20% 20%, rgba(255, 122, 47, 0.3), transparent 66%),
    radial-gradient(38% 36% at 85% 70%, rgba(46, 107, 255, 0.26), transparent 68%),
    radial-gradient(50% 48% at 60% 0%, rgba(23, 48, 106, 0.85), transparent 72%);
}
.hero--org h1 { font-size: clamp(2.4rem, 5.4vw, 4.3rem); }
.hero--org h1 .accent {
  background: linear-gradient(92deg, var(--orange) 20%, #ffb26b 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* mockup do painel do organizador */
.dash {
  width: 100%;
  max-width: 460px;
  background: rgba(13, 28, 63, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  animation: chipfloat 8s ease-in-out infinite;
}
.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.dash-head b { color: #fff; font-weight: 600; font-size: 0.95rem; }
.dash-head span { font-size: 0.74rem; color: rgba(255, 255, 255, 0.5); }
.dash-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #35e08c;
}
.dash-live::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #35e08c;
  box-shadow: 0 0 10px #35e08c;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.3; } }
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px 22px 6px;
}
.dash-stat {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
}
.dash-stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
}
.dash-stat:nth-child(2) b { color: var(--blue-soft); }
.dash-stat:nth-child(3) b { color: var(--orange); }
.dash-stat span { font-size: 0.64rem; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.dash-rows { padding: 12px 22px 20px; }
.dash-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.85rem;
}
.dash-row:last-child { border-bottom: none; }
.dash-row .pos { color: rgba(255, 255, 255, 0.4); font-weight: 700; width: 22px; }
.dash-row:first-child .pos { color: var(--orange); }
.dash-row .nm { color: #fff; font-weight: 500; flex: 1; }
.dash-row .bar {
  flex: 0 0 110px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.dash-row .bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-soft));
}
.dash-row:first-child .bar i { background: linear-gradient(90deg, var(--orange), #ffb26b); }
.dash-row .km { color: rgba(255, 255, 255, 0.75); font-weight: 600; min-width: 56px; text-align: right; font-size: 0.8rem; }
.dash-foot {
  margin: 0 22px 20px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(46, 107, 255, 0.12);
  border: 1px dashed rgba(109, 154, 255, 0.4);
  text-align: center;
  font-size: 0.76rem;
  color: var(--blue-soft);
  font-weight: 600;
}

/* a dor */
.pain-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.pain-copy p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 20px; }
.pain-copy p strong { color: var(--ink); }
.pain-quote {
  margin-top: 6px;
  padding: 18px 24px;
  border-radius: var(--r-md);
  background: rgba(255, 122, 47, 0.08);
  border-left: 4px solid var(--orange);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.02rem;
}

/* ---------- Bento grid (o que está incluso) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 58px;
}
.bento-item {
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(10, 23, 48, 0.05);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.28s ease;
  overflow: hidden;
  position: relative;
}
.bento-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.bento-item h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.01em; }
.bento-item p { color: var(--ink-soft); font-size: 0.97rem; }
.bento--3 { grid-column: span 3; }
.bento--2 { grid-column: span 2; }
.bento--4 { grid-column: span 4; }
.bento--6 { grid-column: span 6; }
/* item de destaque em navy */
.bento-item--dark {
  background:
    radial-gradient(120% 120% at 90% 0%, rgba(46, 107, 255, 0.35), transparent 55%),
    var(--navy-900);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.bento-item--dark p { color: rgba(255, 255, 255, 0.72); }
/* mini-elementos ilustrativos dentro dos bentos */
.mini {
  margin-top: auto;
  padding-top: 18px;
}
.mini-bar-wrap { display: grid; gap: 8px; }
.mini-bar {
  height: 9px;
  border-radius: 999px;
  background: rgba(46, 107, 255, 0.14);
  overflow: hidden;
  position: relative;
}
.bento-item--dark .mini-bar { background: rgba(255, 255, 255, 0.12); }
.mini-bar i {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-soft));
  transform-origin: left;
}
.mini-code {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 122, 47, 0.1);
  border: 1.5px dashed rgba(255, 122, 47, 0.5);
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange-deep);
  font-size: 0.95rem;
}
.mini-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(46, 107, 255, 0.1);
  color: var(--blue);
}
.mini-chip--green { background: rgba(53, 224, 140, 0.12); color: #14a862; }
.mini-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Planos ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 58px;
  align-items: stretch;
}
.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 18px rgba(10, 23, 48, 0.05);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.28s ease;
}
.plan:hover { transform: translateY(-7px); box-shadow: var(--shadow-card); }
.plan-size {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.plan-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.plan-price--free { color: var(--blue); }
.plan-note {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0;
  color: var(--ink-soft);
  margin-top: 3px;
}
.plan p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.plan .btn { width: 100%; padding: 14px 20px; font-size: 0.94rem; }
.plan--featured {
  background:
    radial-gradient(130% 110% at 90% 0%, rgba(255, 122, 47, 0.3), transparent 55%),
    var(--navy-900);
  color: #fff;
  border: 1.5px solid rgba(255, 122, 47, 0.55);
  box-shadow: 0 24px 60px rgba(255, 122, 47, 0.18);
  position: relative;
}
.plan--featured .plan-size { color: var(--orange); }
.plan--featured .plan-price { color: #fff; }
.plan--featured .plan-note { color: rgba(255, 255, 255, 0.6); }
.plan--featured p { color: rgba(255, 255, 255, 0.78); }
.plan-flag {
  position: absolute;
  top: -14px; left: 28px;
  background: linear-gradient(135deg, #ff9350, var(--orange-deep));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 122, 47, 0.45);
}
.plans-micro {
  text-align: center;
  margin-top: 30px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* prova / case */
.proof-section blockquote {
  background: var(--white);
  border: 1.5px dashed rgba(255, 122, 47, 0.45);
  border-radius: var(--r-lg);
  padding: 42px;
  margin-top: 44px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* ============================================================
   BLOG
   ============================================================ */

.blog-hero {
  position: relative;
  background: var(--navy-950);
  color: #fff;
  padding: 165px 0 90px;
  overflow: hidden;
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(42% 40% at 78% 10%, rgba(46, 107, 255, 0.3), transparent 66%),
    radial-gradient(30% 30% at 12% 90%, rgba(255, 122, 47, 0.16), transparent 70%);
  filter: blur(10px);
}
.blog-hero .container { position: relative; }
.blog-hero h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); margin: 18px 0 14px; }
.blog-hero p { color: rgba(255, 255, 255, 0.72); font-size: 1.12rem; max-width: 600px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(10, 23, 48, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.28s ease;
}
.post-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-card); }
.post-cover {
  height: 150px;
  position: relative;
  background:
    radial-gradient(120% 90% at 20% 0%, rgba(46, 107, 255, 0.55), transparent 60%),
    linear-gradient(150deg, var(--navy-700), var(--navy-950));
}
.post-cover--orange {
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(255, 122, 47, 0.5), transparent 60%),
    linear-gradient(150deg, var(--navy-700), var(--navy-950));
}
.post-cover .post-emoji {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}
.post-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.post-body h2, .post-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.01em; line-height: 1.3; }
.post-excerpt { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.post-meta { font-size: 0.82rem; color: var(--ink-soft); opacity: 0.8; }

/* página do artigo */
.post-hero { padding: 165px 0 70px; }
.post-hero .post-meta { color: rgba(255, 255, 255, 0.6); margin-top: 12px; font-size: 0.92rem; }
.post-hero .crumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  display: inline-block;
  margin-bottom: 18px;
}
.post-hero .crumb a { color: var(--blue-soft); font-weight: 600; }

.prose {
  max-width: 740px;
  margin-inline: auto;
  font-size: 1.08rem;
  color: #33405e;
}
.prose h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 44px 0 14px;
}
.prose h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  margin: 30px 0 10px;
}
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 18px 24px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--blue); font-weight: 600; }
.prose blockquote {
  border-left: 4px solid var(--blue);
  background: rgba(46, 107, 255, 0.06);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 16px 22px;
  margin: 0 0 18px;
  color: var(--ink);
}

/* caixa de CTA dentro do artigo */
.cta-box {
  margin: 40px 0;
  padding: 30px 32px;
  border-radius: var(--r-lg);
  color: #fff;
  background:
    radial-gradient(90% 130% at 90% 0%, rgba(255, 122, 47, 0.35), transparent 55%),
    var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.cta-box b { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; display: block; margin-bottom: 4px; letter-spacing: -0.01em; }
.cta-box span { color: rgba(255, 255, 255, 0.75); font-size: 0.96rem; }
.cta-box .btn { padding: 13px 26px; font-size: 0.94rem; flex-shrink: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 85ms); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Páginas legais ---------- */
.legal-page { padding: 170px 0 100px; min-height: 70vh; }
.legal-page h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 24px; letter-spacing: -0.02em; }
.legal-page p { color: var(--ink-soft); max-width: 680px; margin-bottom: 16px; }
.legal-page a { color: var(--blue); font-weight: 600; }

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .steps--four { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento--3, .bento--2 { grid-column: span 1; }
  .bento--4, .bento--6 { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero .container,
  .medal-section .container,
  .pain-section .container {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: 0; margin-top: 26px; }
  .steps { grid-template-columns: 1fr; }
  .challenge-grid { grid-template-columns: repeat(2, 1fr); }

  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(6, 14, 34, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    font-size: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .hero { padding: 140px 0 90px; }
  .challenge-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .steps--four { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento--3, .bento--2, .bento--4, .bento--6 { grid-column: auto; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; align-items: flex-start; }
  .proof-bar .container { flex-direction: column; gap: 10px; }
  .proof-dot { display: none; }
  .hero-ctas .btn { width: 100%; }
  .float-chip--medal { right: -6px; }
  .float-chip--rank { left: -6px; }
}
