/* ═══════════════════════════════════════════════════════════
   Striveon — tema claro (fundo branco), gradiente roxo→rosa
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink: #1a0b2e;
  --muted: rgba(26,11,46,0.62);
  --muted-2: rgba(26,11,46,0.45);
  --line: rgba(26,11,46,0.08);
  --purple: #a855f7;
  --purple-text: #7c3aed;
  --pink: #ec4899;
  --green: #059669;
  --card: #ffffff;
  --card-soft: #fbf8fd;
  --shadow: 0 8px 24px rgba(74,15,138,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.strive-root { min-height: 100vh; background: #ffffff; }

.gradient {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168,85,247,0.18);
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-img { height: 36px; width: 36px; border-radius: 8px; object-fit: cover; }
.nav-logo-text { font-size: 22px; font-weight: 900; letter-spacing: -0.5px; color: var(--ink); }
.nav-logo-text .b { color: #ec4899; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--muted); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white !important; font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: 100px;
  white-space: nowrap; transition: opacity 0.2s;
  box-shadow: 0 6px 18px rgba(236,72,153,0.25);
}
.nav-cta:hover { opacity: 0.88; }
.nav-cta--mobile { display: none; }
.menu-toggle {
  display: none; width: 40px; height: 40px;
  background: transparent; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; padding: 72px 24px 80px; background: linear-gradient(180deg, #fdf7fc 0%, #ffffff 100%); }
.hero-glow-1 {
  position: absolute; top: -120px; left: 0;
  width: 600px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: -80px; right: -60px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(236,72,153,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-logo { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.hero-badge {
  display: inline-block;
  background: rgba(168,85,247,0.10);
  border: 1px solid rgba(168,85,247,0.35);
  color: var(--purple-text); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
}
.hero-eyebrow {
  font-size: 14px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.04em; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 2px; background: #ec4899; }
.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 20px;
  color: var(--ink);
}
.hero-sub {
  max-width: 560px; margin-bottom: 32px;
  font-size: 18px; line-height: 1.7; color: var(--muted);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white; font-weight: 800; font-size: 16px;
  padding: 16px 36px; border-radius: 100px;
  transition: transform 0.2s, opacity 0.2s;
  box-shadow: 0 10px 30px rgba(168,85,247,0.30);
}
.hero-cta:hover { transform: translateY(-2px); opacity: 0.92; }
.hero-cta--ghost {
  background: #ffffff;
  border: 1px solid rgba(168,85,247,0.4);
  box-shadow: none; color: var(--purple-text);
}
.hero-free { margin-top: 16px; font-size: 13px; color: var(--muted-2); }
.hero-img-wrap { border-radius: 28px; overflow: hidden; aspect-ratio: 4/5; position: relative; box-shadow: 0 20px 50px rgba(74,15,138,0.18); }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(168,85,247,0.2) 0%, rgba(236,72,153,0.1) 100%);
}
.hero-img-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 16px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero-img-dot { width: 10px; height: 10px; border-radius: 50%; background: #ec4899; flex-shrink: 0; animation: pdot 1.5s infinite; }
@keyframes pdot { 0%,100%{opacity:1} 50%{opacity:0.5} }
.hero-img-badge-text { font-size: 13px; font-weight: 700; color: var(--ink); }
.hero-img-badge-sub { font-size: 11px; color: var(--muted); }

/* ── Section ── */
.section { padding: 72px 24px; max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: #9333ea; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px); font-weight: 900;
  letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 12px;
  color: var(--ink);
}
.section-sub {
  font-size: 16px; color: var(--muted);
  max-width: 560px; line-height: 1.7; margin-bottom: 48px;
}

/* ── Stats (diamond-card) ── */
.diamond-info { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 48px; }
.stats-info { grid-template-columns: repeat(3, 1fr); margin-bottom: 0; }
.diamond-card {
  background: rgba(168,85,247,0.06);
  border: 1px solid rgba(168,85,247,0.22);
  border-radius: 20px; padding: 24px; text-align: center;
}
.diamond-card .label { font-size: 15px; color: var(--muted); }
.diamond-card .value { font-size: 36px; font-weight: 900; color: var(--green); margin-bottom: 6px; }

/* ── Pilares ── */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pillar-card {
  background: var(--card);
  border: 1px solid rgba(168,85,247,0.16);
  border-radius: 20px; padding: 26px 24px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
}
.pillar-card:hover { border-color: rgba(168,85,247,0.4); transform: translateY(-3px); }
.pillar-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(168,85,247,0.28);
}
.pillar-title { font-size: 17px; font-weight: 800; margin-bottom: 8px; color: var(--ink); }
.pillar-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Como funciona ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.step-card {
  background: var(--card);
  border: 1px solid rgba(168,85,247,0.18);
  border-radius: 20px; padding: 24px;
  box-shadow: var(--shadow);
  display: flex; gap: 16px; align-items: flex-start;
}
.step-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: white;
}
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Benefícios ── */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.benefit-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px; padding: 20px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
}
.benefit-card:hover { border-color: rgba(168,85,247,0.4); transform: translateY(-3px); }
.benefit-icon { font-size: 24px; margin-bottom: 10px; }
.benefit-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.benefit-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── Importante ── */
.info-box {
  background: rgba(168,85,247,0.06);
  border: 1px solid rgba(168,85,247,0.22);
  border-radius: 20px; padding: 28px 32px;
  margin-bottom: 48px;
}
.info-box h3 { font-size: 18px; font-weight: 800; margin-bottom: 16px; color: var(--ink); }
.info-list { display: flex; flex-direction: column; gap: 10px; }
.info-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(26,11,46,0.78); line-height: 1.5; }
.info-item .dot {
  flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #ec4899); margin-top: 6px;
}
.info-link { display: inline-block; margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--purple-text); }
.info-link:hover { color: #ec4899; }

/* ── CTA Final ── */
.cta-section {
  text-align: center; padding: 80px 24px;
  background: linear-gradient(180deg, rgba(168,85,247,0.07) 0%, #ffffff 100%);
  border-top: 1px solid rgba(168,85,247,0.15);
}
.cta-title { font-size: clamp(28px, 5vw, 48px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 16px; line-height: 1.15; color: var(--ink); }
.cta-sub { font-size: 17px; color: var(--muted); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white; font-weight: 800; font-size: 17px;
  padding: 18px 42px; border-radius: 100px;
  box-shadow: 0 12px 36px rgba(168,85,247,0.32);
  transition: transform 0.2s, opacity 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.cta-btn--ghost { background: #ffffff; border: 1px solid rgba(168,85,247,0.4); box-shadow: none; color: var(--purple-text); }

/* ── Divider ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(168,85,247,0.3), transparent); margin: 0 24px; }

/* ── Footer ── */
.footer { text-align: center; padding: 28px 24px 40px; font-size: 13px; color: var(--muted-2); line-height: 2; border-top: 1px solid var(--line); }
.footer a { color: var(--purple-text); }
.footer a:hover { color: #ec4899; }
.footer-social { display: flex; justify-content: center; gap: 18px; margin-bottom: 8px; }
.footer-social a { font-weight: 600; color: var(--muted); }

/* ── WhatsApp flutuante ── */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 10px 28px rgba(168,85,247,0.4);
  transition: transform 0.18s;
}
.wa-float:hover { transform: scale(1.06); }

/* ── Diamantes (página entrar) ── */
.diamond-card .big { font-size: 36px; font-weight: 900; color: var(--ink); }
.diamond-card .arrow { font-size: 28px; margin: 8px 0; color: var(--muted-2); }
.diamond-card .big + .arrow + .label + .value { font-size: 28px; margin-bottom: 0; }

/* ── Tabela de bônus ── */
.bonus-section {
  background: var(--card);
  border: 1px solid rgba(168,85,247,0.18);
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}
.bonus-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(236,72,153,0.08));
  border-bottom: 1px solid rgba(168,85,247,0.18);
}
.bonus-header h3 { font-size: 18px; font-weight: 800; color: var(--ink); }
.bonus-header p { font-size: 13px; color: var(--muted); margin-top: 4px; }
.bonus-table-wrap { overflow-x: auto; }
.bonus-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.bonus-table thead tr th {
  padding: 14px 16px; font-size: 12px; font-weight: 700; text-align: center;
  border-bottom: 1px solid var(--line); color: var(--muted);
}
.bonus-table thead tr th:first-child { text-align: left; }
.bonus-table .th-req { font-size: 10px; font-weight: 400; color: var(--muted-2); }
.bonus-table tbody tr { border-bottom: 1px solid var(--line); transition: background 0.15s; }
.bonus-table tbody tr:hover { background: rgba(168,85,247,0.05); }
.bonus-table tbody tr:last-child { border-bottom: none; }
.bonus-table td { padding: 12px 16px; font-size: 14px; text-align: center; color: var(--ink); }
.bonus-table td:first-child { text-align: left; font-weight: 800; font-size: 15px; color: var(--purple-text); }
.bonus-table td .note {
  font-size: 10px; font-weight: 400; color: var(--muted-2); display: block;
  max-width: 180px; line-height: 1.4; margin-top: 2px;
}
.bonus-table td.has-value { font-weight: 700; color: var(--green); }
.bonus-table td.no-value { color: rgba(26,11,46,0.2); }

/* ── Nível requerido ── */
.level-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.level-badge {
  padding: 10px 18px; border-radius: 100px; font-size: 13px; font-weight: 700;
  display: flex; flex-direction: column; gap: 2px; border: 1px solid;
}
.level-badge .lvl-name { font-size: 12px; opacity: 0.7; }

/* ── Bônus de entrada (novatos) ── */
.newcomer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 18px; }
.newcomer-card { background: var(--card); border: 1px solid rgba(168,85,247,0.25); border-radius: 16px; padding: 18px 20px; }
.newcomer-card-title { font-size: 15px; font-weight: 800; margin-bottom: 8px; color: var(--ink); }
.newcomer-card-meta { display: flex; flex-direction: column; gap: 3px; font-size: 12px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.newcomer-tiers { display: flex; flex-direction: column; }
.newcomer-tier { display: flex; align-items: center; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.newcomer-tier:last-child { border-bottom: none; }
.newcomer-tier .tier-diamond { font-weight: 700; color: var(--purple-text); }
.newcomer-tier .tier-value { font-weight: 800; color: var(--green); }

/* ── Prêmios físicos ── */
.rewards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-bottom: 48px; }
.reward-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 18px 14px; text-align: center; box-shadow: var(--shadow); }
.reward-diamond { font-size: 20px; font-weight: 900; color: var(--purple-text); margin-bottom: 6px; }
.reward-item { font-size: 13px; font-weight: 600; color: var(--ink); }

/* ── Critérios mínimos ── */
.criteria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.criteria-card {
  background: var(--card); border: 1px solid rgba(168,85,247,0.25);
  border-radius: 16px; padding: 18px; text-align: center;
  box-shadow: var(--shadow);
}
.criteria-value {
  font-size: 40px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.criteria-label { font-size: 13px; color: var(--muted); margin-top: 6px; }
.criteria-note { font-size: 13px; color: var(--muted); margin-top: 14px; line-height: 1.5; }

/* ── Tabela simples de metas ── */
.bonus-table--simple { min-width: 0; }
.bonus-table--simple thead tr th { text-align: left; }
.bonus-table--simple thead tr th:last-child, .bonus-table--simple td:last-child { text-align: right; }
.bonus-table--simple td { text-align: left; }
.bonus-table--simple td:nth-child(2) { color: var(--muted); font-size: 13px; }
.bonus-table--simple td.has-value { font-size: 17px; }
.bonus-footnote {
  padding: 14px 24px; font-size: 13px; color: var(--muted); line-height: 1.5;
  border-top: 1px solid var(--line); background: rgba(5,150,105,0.06);
}
.bonus-footnote strong { color: var(--green); }
.bonus-footnote--loose { margin-top: 14px; border: 1px solid rgba(5,150,105,0.25); border-radius: 14px; }

/* ── Rankings ── */
.ranking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.ranking-card { background: var(--card); border: 1px solid rgba(168,85,247,0.25); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow); }
.ranking-card--single { max-width: 520px; }
.ranking-title { font-size: 15px; font-weight: 800; margin-bottom: 10px; color: var(--ink); }
.ranking-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; padding: 8px 0; border-bottom: 1px dashed var(--line); color: var(--ink);
}
.ranking-row:last-of-type { border-bottom: none; }
.ranking-note { font-size: 12px; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.tier-value { font-weight: 800; color: var(--green); }

/* ── Corrida ── */
.bonus-table--race { min-width: 0; }
.bonus-table--race thead tr th { text-align: left; }
.bonus-table--race thead tr th:last-child, .bonus-table--race td:last-child { text-align: right; }
.bonus-table--race td { text-align: left; }
.bonus-table--race td:first-child { color: var(--ink); font-weight: 700; font-size: 14px; }
.bonus-table--race td:not(:first-child):not(:last-child) { color: var(--muted); }
.bonus-table--race td.has-value { font-size: 16px; }
.race-sub { padding: 18px 24px 6px; border-top: 1px solid var(--line); }
.race-sub-title { font-size: 14px; font-weight: 800; color: var(--purple-text); margin-bottom: 4px; }
.race-sub p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── Responsivo ── */
@media (max-width: 1024px) {
  .nav-links { gap: 18px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-actions .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 65px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168,85,247,0.2);
    box-shadow: 0 20px 40px rgba(26,11,46,0.10);
    padding: 8px 24px 20px;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform .22s, opacity .22s;
  }
  .nav-links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .nav-cta--mobile { display: inline-flex; justify-content: center; margin-top: 16px; border-bottom: 0 !important; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { aspect-ratio: 16/9; order: -1; }
  .stats-info { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { padding: 12px 16px; }
  .hero { padding: 40px 16px 60px; }
  .section { padding: 48px 16px; }
  .hero-title { font-size: 32px !important; }
  .hero-sub { font-size: 15px; }
  .hero-cta { font-size: 15px; padding: 14px 28px; width: 100%; justify-content: center; }
  .section-title { font-size: 24px !important; }
  .pillars-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .info-box { padding: 20px; }
  .cta-title { font-size: 26px !important; }
  .cta-btn { font-size: 15px; padding: 15px 28px; width: 100%; justify-content: center; }
  .criteria-grid, .ranking-grid { grid-template-columns: 1fr; }
  .bonus-table--simple td:nth-child(2) { font-size: 12px; }
  .bonus-table--race td, .bonus-table--race th { padding: 10px 10px; font-size: 12px; }
  .bonus-table--race td:first-child { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-img-dot { animation: none; }
}
