/* =========================================================================
   EVOLUTION SPINS — folha de estilo principal
   Paleta oficial: roxo #812DD5 (Pantone 266 C) · preto-roxo #29203A · branco
   Tipografia: Maven Pro (300 / 400 / 500 / 700 / 900)
   ========================================================================= */

:root {
  --roxo: #812DD5;
  --roxo-claro: #a566e8;
  --roxo-glow: rgba(129, 45, 213, 0.45);
  --preto-roxo: #29203A;
  --preto-roxo-2: #1d1729;
  --preto-roxo-3: #15101f;
  --branco: #ffffff;
  --cinza: #b9b2c9;
  --cinza-2: #837c95;
  --linha: rgba(255, 255, 255, 0.08);
  --max: 1180px;
  --r: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Maven Pro', system-ui, sans-serif;
  background: var(--preto-roxo);
  color: var(--branco);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* fundo atmosférico de vórtex em toda a página */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 80% -5%, rgba(129,45,213,0.30), transparent 60%),
    radial-gradient(900px 600px at 10% 100%, rgba(129,45,213,0.18), transparent 55%),
    linear-gradient(180deg, var(--preto-roxo) 0%, var(--preto-roxo-2) 60%, var(--preto-roxo-3) 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='150' viewBox='0 0 180 150'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.6' transform='translate(24,20) scale(3.5)'%3E%3Cpolygon points='7,0 34,0 28,7 0,7'/%3E%3Cpolygon points='7,10 25,10 19,16 0,16'/%3E%3Cpolygon points='7,20 16,20 10,26 0,26'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 300px;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ----------------------------------------------------------------- texto */
h1, h2, h3, h4 { font-weight: 900; line-height: 1.05; letter-spacing: -0.01em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.74rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--roxo-claro);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--roxo);
}

.lead { color: var(--cinza); font-size: 1.12rem; font-weight: 400; }
.muted { color: var(--cinza-2); }
.hl { color: var(--roxo-claro); }

/* ----------------------------------------------------------------- botões */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em;
  padding: 15px 28px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: all 0.3s var(--ease);
  text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.06em;
}
.btn-primary {
  background: var(--roxo); color: var(--branco);
  box-shadow: 0 10px 30px -8px var(--roxo-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -10px var(--roxo-glow);
  background: var(--roxo-claro);
}
.btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--branco);
  border-color: var(--linha);
}
.btn-ghost:hover { border-color: var(--roxo); background: rgba(129,45,213,0.12); }
.btn .arr { transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ----------------------------------------------------------------- header */
header.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(29,23,41,0.72);
  border-bottom: 1px solid var(--linha);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo-h { height: 44px; width: auto; display: block; }
.foot-brand .logo-h { height: 40px; width: auto; margin-bottom: 14px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-weight: 500; font-size: 0.92rem; color: var(--cinza);
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--branco); }
.nav-links a.cta {
  background: var(--roxo); color: #fff; padding: 10px 20px; border-radius: 999px;
  font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em;
  box-shadow: 0 8px 24px -8px var(--roxo-glow);
}
.nav-links a.cta:hover { background: var(--roxo-claro); color: #fff; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }

/* ----------------------------------------------------------------- hero */
.hero { position: relative; padding: 88px 0 96px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  text-transform: uppercase;
  margin: 22px 0 22px;
}
.hero h1 .spin { color: var(--roxo-claro); display: inline-block; }
.hero p.lead { max-width: 30em; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 40px; display: flex; gap: 34px; flex-wrap: wrap;
  border-top: 1px solid var(--linha); padding-top: 26px;
}
.hero-meta .n { font-size: 1.9rem; font-weight: 900; color: #fff; }
.hero-meta .l { font-size: 0.82rem; color: var(--cinza-2); text-transform: uppercase; letter-spacing: 0.08em; }

/* vórtex animado no hero */
.vortex {
  position: relative; aspect-ratio: 1; display: grid; place-items: center;
}
.vortex .ring {
  position: absolute; border: 1.5px solid rgba(129,45,213,0.3); border-radius: 50%;
}
.vortex .ring.r1 { inset: 0; animation: spin 26s linear infinite; }
.vortex .ring.r2 { inset: 12%; border-color: rgba(129,45,213,0.22); animation: spin 18s linear infinite reverse; }
.vortex .ring.r3 { inset: 26%; border-color: rgba(129,45,213,0.4); animation: spin 12s linear infinite; }
.vortex .ring::before {
  content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px;
  background: var(--roxo); border-radius: 50%; box-shadow: 0 0 14px 2px var(--roxo);
}
.vortex .core {
  width: 46%; filter: drop-shadow(0 0 30px var(--roxo-glow));
  animation: float 6s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-10px); } }

/* ----------------------------------------------------------------- seções */
section { position: relative; padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem); text-transform: uppercase; margin: 16px 0 16px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.divider-skew {
  height: 1px; background: var(--linha);
  width: 100%; transform: skewY(-1.2deg); transform-origin: left;
}

/* provocação */
.provoke { background: linear-gradient(180deg, transparent, rgba(129,45,213,0.06)); }
.provoke-card {
  border: 1px solid var(--linha); border-radius: var(--r);
  padding: 44px; background: rgba(255,255,255,0.02);
  position: relative; overflow: hidden;
}
.provoke-card::before {
  content: "?"; position: absolute; right: -10px; top: -50px;
  font-size: 18rem; font-weight: 900; color: rgba(129,45,213,0.08); line-height: 1;
}
.provoke-card h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 18px; }
.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px;
}
.compare .col {
  border: 1px solid var(--linha); border-radius: 14px; padding: 26px;
  background: rgba(0,0,0,0.18);
}
.compare .col.win { border-color: rgba(129,45,213,0.5); background: rgba(129,45,213,0.08); }
.compare .col h4 { text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.95rem; margin-bottom: 14px; }
.compare .col h4 .tag { font-size: 0.66rem; color: var(--roxo-claro); display: block; margin-bottom: 4px; letter-spacing: 0.18em; }
.compare ul { list-style: none; display: grid; gap: 10px; }
.compare li { font-size: 0.94rem; color: var(--cinza); padding-left: 24px; position: relative; }
.compare li::before { content: "—"; position: absolute; left: 0; color: var(--cinza-2); }
.compare .win li::before { content: "+"; color: var(--roxo-claro); font-weight: 900; }

/* passos / como funciona */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  border: 1px solid var(--linha); border-radius: var(--r); padding: 28px 24px;
  background: rgba(255,255,255,0.02); transition: all 0.3s var(--ease); position: relative;
}
.step:hover { transform: translateY(-6px); border-color: rgba(129,45,213,0.4); background: rgba(129,45,213,0.06); }
.step .num {
  font-size: 0.78rem; font-weight: 900; color: var(--roxo-claro);
  letter-spacing: 0.2em; margin-bottom: 18px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 10px; }
.step p { font-size: 0.92rem; color: var(--cinza); }

/* turmas */
.turmas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.turma {
  border: 1px solid var(--linha); border-radius: var(--r); padding: 32px;
  background: rgba(255,255,255,0.02); transition: all 0.35s var(--ease); position: relative; overflow: hidden;
}
.turma::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--roxo), transparent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.turma:hover { transform: translateY(-6px); border-color: rgba(129,45,213,0.45); }
.turma:hover::after { transform: scaleX(1); }
.turma .icon { font-size: 2rem; margin-bottom: 16px; }
.turma h3 { font-size: 1.4rem; text-transform: uppercase; margin-bottom: 6px; }
.turma .stake { color: var(--roxo-claro); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; margin-bottom: 16px; }
.turma p { font-size: 0.94rem; color: var(--cinza); }

/* evolução / patentes */
.ladder { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.rank {
  border: 1px solid var(--linha); border-radius: 14px; padding: 24px 18px; text-align: center;
  background: rgba(255,255,255,0.02); transition: all 0.3s var(--ease);
}
.rank:hover { border-color: rgba(129,45,213,0.45); background: rgba(129,45,213,0.07); transform: translateY(-5px); }
.rank .deal { font-size: 2rem; font-weight: 900; color: #fff; }
.rank .name { text-transform: uppercase; font-weight: 700; letter-spacing: 0.08em; font-size: 0.9rem; margin: 6px 0 4px; color: var(--roxo-claro); }
.rank .range { font-size: 0.76rem; color: var(--cinza-2); }

/* features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 28px; border: 1px solid var(--linha); border-radius: var(--r); background: rgba(255,255,255,0.02); }
.feature .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(129,45,213,0.14); color: var(--roxo-claro); margin-bottom: 18px; font-weight: 900; }
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { font-size: 0.92rem; color: var(--cinza); }

/* faq */
.faq-item { border-bottom: 1px solid var(--linha); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; color: #fff;
  font-family: inherit; font-weight: 700; font-size: 1.1rem; padding: 24px 40px 24px 0;
  position: relative; display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-q .plus { color: var(--roxo-claro); font-size: 1.6rem; transition: transform 0.3s var(--ease); flex: none; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 40px 24px 0; color: var(--cinza); font-size: 0.98rem; }

/* cta final */
.cta-final {
  border: 1px solid rgba(129,45,213,0.4); border-radius: 26px; padding: 64px 48px; text-align: center;
  background: radial-gradient(600px 300px at 50% 0%, rgba(129,45,213,0.22), transparent 70%), rgba(255,255,255,0.02);
  position: relative; overflow: hidden;
}
.cta-final h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); text-transform: uppercase; margin-bottom: 18px; }
.cta-final p { max-width: 34em; margin: 0 auto 30px; }

/* ----------------------------------------------------------------- footer */
footer.site {
  border-top: 1px solid var(--linha); padding: 60px 0 30px; margin-top: 40px;
  background: rgba(0,0,0,0.2);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 44px; }
.foot-grid h5 { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; color: var(--cinza-2); margin-bottom: 16px; }
.foot-grid a, .foot-grid p { display: block; color: var(--cinza); font-size: 0.92rem; margin-bottom: 10px; }
.foot-grid a:hover { color: var(--roxo-claro); }
.foot-brand .word { font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.1rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.foot-brand .word span { color: var(--roxo-claro); }
.foot-tag { color: var(--roxo-claro); font-weight: 700; font-size: 0.92rem; }
.foot-bottom { border-top: 1px solid var(--linha); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--cinza-2); font-size: 0.82rem; }

/* ----------------------------------------------------------------- blog */
.page-hero { padding: 70px 0 40px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); text-transform: uppercase; margin: 18px 0 16px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card {
  border: 1px solid var(--linha); border-radius: var(--r); overflow: hidden;
  background: rgba(255,255,255,0.02); transition: all 0.35s var(--ease); display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); border-color: rgba(129,45,213,0.45); }
.post-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--roxo) 0%, var(--preto-roxo-2) 90%); display: grid; place-items: center; }
.post-thumb svg, .post-thumb img { width: 38%; opacity: 0.95; filter: drop-shadow(0 6px 20px rgba(0,0,0,0.4)); }
.post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--roxo-claro); margin-bottom: 12px; }
.post-card h3 { font-size: 1.22rem; line-height: 1.2; margin-bottom: 10px; }
.post-card p { font-size: 0.92rem; color: var(--cinza); flex: 1; margin-bottom: 16px; }
.post-meta { font-size: 0.78rem; color: var(--cinza-2); display: flex; gap: 14px; }
.read-more { color: var(--roxo-claro); font-weight: 700; font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* artigo */
.article { max-width: 760px; margin: 0 auto; padding: 50px 0 40px; }
.article .post-cat { margin-bottom: 18px; }
.article h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); line-height: 1.08; text-transform: none; margin-bottom: 20px; }
.article .meta-row { color: var(--cinza-2); font-size: 0.9rem; margin-bottom: 36px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.article .hero-band { aspect-ratio: 21/9; border-radius: var(--r); margin-bottom: 40px; display: grid; place-items: center;
  background: radial-gradient(500px 250px at 70% 20%, rgba(129,45,213,0.5), transparent), var(--preto-roxo-2); border: 1px solid var(--linha); }
.article .hero-band svg, .article .hero-band img { width: 16%; opacity: 0.95; }
.article-body { font-size: 1.08rem; color: #e9e5f1; }
.article-body p { margin-bottom: 22px; }
.article-body h2 { font-size: 1.7rem; margin: 42px 0 16px; text-transform: none; }
.article-body h3 { font-size: 1.28rem; margin: 30px 0 12px; text-transform: none; }
.article-body ul, .article-body ol { margin: 0 0 22px 22px; color: #e9e5f1; }
.article-body li { margin-bottom: 10px; }
.article-body strong { color: #fff; }
.article-body blockquote {
  border-left: 3px solid var(--roxo); padding: 6px 0 6px 24px; margin: 28px 0;
  font-size: 1.2rem; font-weight: 500; color: #fff; font-style: italic;
}
.article-body a { color: var(--roxo-claro); text-decoration: underline; text-underline-offset: 3px; }
.article-cta {
  margin: 50px 0 20px; border: 1px solid rgba(129,45,213,0.4); border-radius: var(--r);
  padding: 36px; text-align: center; background: rgba(129,45,213,0.07);
}
.article-cta h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 10px; }
.article-cta p { color: var(--cinza); margin-bottom: 22px; }
.related { border-top: 1px solid var(--linha); padding-top: 40px; }
.related h4 { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.9rem; color: var(--cinza-2); margin-bottom: 24px; }

/* ----------------------------------------------------------------- reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ----------------------------------------------------------------- responsivo */
/* ----------------------------------------------------------------- equipe */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card {
  border: 1px solid var(--linha); border-radius: var(--r); overflow: hidden;
  background: rgba(255,255,255,0.02); transition: all 0.35s var(--ease); display: flex; flex-direction: column;
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(129,45,213,0.45); }
.team-photo {
  aspect-ratio: 1; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--roxo) 0%, var(--preto-roxo-2) 90%);
  display: grid; place-items: center;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo .initials { font-size: 4rem; font-weight: 900; color: rgba(255,255,255,0.85); letter-spacing: -0.02em; }
.team-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.team-role { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--roxo-claro); margin-bottom: 10px; }
.team-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.team-card .alias { color: var(--cinza-2); font-size: 0.88rem; margin-bottom: 14px; font-style: italic; }
.team-card p { font-size: 0.94rem; color: var(--cinza); flex: 1; }

/* ----------------------------------------------------------------- jackpots */
.jackpots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 24px 0; }
.jackpot-card {
  border: 1px solid var(--linha); border-radius: var(--r); overflow: hidden;
  background: rgba(255,255,255,0.02); transition: all 0.35s var(--ease); display: flex; flex-direction: column;
}
.jackpot-card:hover { transform: translateY(-6px); border-color: rgba(129,45,213,0.45); }
.jackpot-photo { aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, var(--roxo) 0%, var(--preto-roxo-2) 90%); position: relative; }
.jackpot-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jackpot-photo.placeholder::after {
  content: '🎯'; position: absolute; inset: 0; display: grid; place-items: center; font-size: 2.6rem; opacity: 0.4;
}
.jackpot-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.jackpot-date { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--roxo-claro); }
.jackpot-card h3 { font-size: 1.2rem; line-height: 1.25; }
.jackpot-card p { font-size: 0.94rem; color: var(--cinza); }

.jackpots-empty {
  display: none; text-align: center; padding: 70px 24px; border: 1px dashed var(--linha);
  border-radius: var(--r); background: rgba(255,255,255,0.02);
}
.jackpots-empty .empty-icon { font-size: 3rem; margin-bottom: 14px; opacity: 0.55; }
.jackpots-empty h3 { font-size: 1.2rem; margin-bottom: 10px; }
.jackpots-empty p { color: var(--cinza); max-width: 36em; margin: 0 auto; }

/* ----------------------------------------------------------------- depoimentos */
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.depo-card {
  border: 1px solid var(--linha); border-radius: var(--r); padding: 28px;
  background: rgba(255,255,255,0.02); display: flex; flex-direction: column; gap: 18px;
  transition: all 0.35s var(--ease);
}
.depo-card:hover { transform: translateY(-4px); border-color: rgba(129,45,213,0.45); }
.depo-card .quote-mark { color: var(--roxo); font-size: 2.4rem; line-height: 1; font-family: Georgia, serif; }
.depo-card .quote { font-size: 1rem; line-height: 1.6; color: #fff; flex: 1; }
.depo-card .author { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.depo-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--roxo), var(--preto-roxo-2)); display: grid; place-items: center; font-weight: 800; font-size: 0.95rem; flex-shrink: 0; }
.depo-card .author-info .name { font-weight: 700; font-size: 0.95rem; }
.depo-card .author-info .meta { font-size: 0.82rem; color: var(--cinza-2); }

@media (max-width: 980px) {
  .jackpots-grid, .depo-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .jackpots-grid, .depo-grid { grid-template-columns: 1fr; }
}


.form-wrap { max-width: 720px; margin: 0 auto; padding: 50px 0; }
.form-progress { display: flex; gap: 14px; margin-bottom: 40px; }
.form-progress .step-dot {
  flex: 1; height: 4px; border-radius: 2px; background: var(--linha); transition: background 0.4s var(--ease);
}
.form-progress .step-dot.done { background: var(--roxo); }
.form-progress .step-dot.current { background: var(--roxo-claro); }
.form-phase { display: none; }
.form-phase.active { display: block; animation: fadeUp 0.4s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.form-phase h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); text-transform: uppercase; margin-bottom: 12px; }
.form-phase .phase-desc { color: var(--cinza); margin-bottom: 32px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 8px; color: #fff; }
.field label .req { color: var(--roxo-claro); }
.field .hint { display: block; font-size: 0.8rem; color: var(--cinza-2); margin-top: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; font-family: inherit; font-size: 1rem;
  background: rgba(255,255,255,0.04); border: 1px solid var(--linha); border-radius: 10px;
  color: #fff; transition: all 0.2s var(--ease);
}
/* select: seta customizada + lista legível (fundo escuro, texto claro) */
.field select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8b3c4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
  color-scheme: dark; /* faz o navegador desenhar a lista nativa em tema escuro */
}
.field select option {
  background-color: #29203A;   /* preto-roxo da marca */
  color: #fff;
}
.field select option:checked,
.field select option:hover {
  background-color: #812DD5;   /* roxo da marca */
  color: #fff;
}
.field select:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A459E8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--roxo); background-color: rgba(129,45,213,0.06); box-shadow: 0 0 0 3px rgba(129,45,213,0.18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--cinza-2); }
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-error { color: #ff6b8a; font-size: 0.82rem; margin-top: 6px; display: none; }
.field.has-error input, .field.has-error select { border-color: #ff6b8a; }
.field.has-error .field-error { display: block; }
.radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-group label { padding: 12px 18px; border: 1px solid var(--linha); border-radius: 999px; cursor: pointer; font-weight: 500; font-size: 0.92rem; transition: all 0.2s; background: rgba(255,255,255,0.02); }
.radio-group input[type="radio"] { display: none; }
.radio-group input[type="radio"]:checked + label,
.radio-group label.checked { border-color: var(--roxo); background: rgba(129,45,213,0.12); color: #fff; }
.form-actions { display: flex; justify-content: space-between; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.form-success {
  text-align: center; padding: 40px 24px; border: 1px solid rgba(129,45,213,0.4); border-radius: var(--r);
  background: radial-gradient(400px 200px at 50% 0%, rgba(129,45,213,0.18), transparent 70%), rgba(255,255,255,0.02);
}
.form-success .check { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; background: var(--roxo); display: grid; place-items: center; font-size: 2rem; color: #fff; font-weight: 900; }
.form-success h2 { font-size: 1.8rem; margin-bottom: 12px; text-transform: uppercase; }
.form-success p { color: var(--cinza); margin-bottom: 6px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .vortex { max-width: 360px; margin: 0 auto; }
  .steps, .turmas, .features, .blog-grid { grid-template-columns: 1fr 1fr; }
  .ladder { grid-template-columns: 1fr 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .team-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-links { position: fixed; inset: 70px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--preto-roxo-2); border-bottom: 1px solid var(--linha); padding: 12px 24px 24px;
    transform: translateY(-130%); transition: transform 0.35s var(--ease); z-index: 90; }
  .nav-links.open { transform: none; }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--linha); }
  .nav-links a.cta { text-align: center; margin-top: 12px; border-bottom: 0; }
  .burger { display: block; }
  .steps, .turmas, .features, .blog-grid, .compare, .ladder, .foot-grid { grid-template-columns: 1fr; }
  .provoke-card, .cta-final { padding: 32px 24px; }
  .hero-meta { gap: 24px; }
}
