/* ===================== DESIGN TOKENS ===================== */
:root {
  --navy-900: #070b15;
  --navy-800: #0a0e1a;
  --navy-700: #0b1220;
  --navy-600: #111a2e;
  --navy-500: #16213a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --blue: #1668ff;
  --blue-bright: #2e7dff;
  --blue-soft: rgba(46, 125, 255, 0.14);
  --gold: #e3b04b;

  --text: #e8edf7;
  --text-dim: #aab3c5;
  --text-muted: #8a93a6;

  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1140px;
  --space: clamp(64px, 9vw, 112px);

  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* ===================== RESET / BASE ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 24px; overflow-x: hidden; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--navy-800);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Foco visível para navegação por teclado (acessibilidade) */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Âncoras não colam no topo ao navegar */
section[id] { scroll-margin-top: 24px; }

/* Respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.grad {
  background: linear-gradient(90deg, var(--blue-bright), #79b0ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.muted { color: var(--text-muted); font-weight: 600; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 0.98rem; border-radius: 999px;
  padding: 13px 26px; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  color: #fff; box-shadow: 0 10px 26px rgba(22, 104, 255, 0.4);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(22, 104, 255, 0.55); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--blue-bright); color: #fff; background: var(--blue-soft); }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--sm { padding: 10px 18px; font-size: 0.9rem; }
.btn--block { display: flex; width: 100%; }

/* ===================== BRAND ===================== */
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 700; }
.brand__logo { width: 34px; height: 34px; border-radius: 50%; }
.brand__name strong { color: var(--blue-bright); }

/* ===================== SECTION SHELL ===================== */
.section { padding-block: var(--space); }
.section--alt { background: var(--navy-700); border-block: 1px solid var(--line); }
.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__lead { color: var(--text-dim); margin-top: 14px; font-size: 1.05rem; }
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue-bright); margin-bottom: 14px;
}
.subhead { font-size: 1.2rem; color: var(--text); font-weight: 600; margin: 6px 0 16px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-bright); background: var(--blue-soft);
  border: 1px solid rgba(46, 125, 255, 0.3); padding: 7px 14px; border-radius: 999px;
  white-space: nowrap;
}

/* ===================== HERO ===================== */
.hero {
  position: relative; padding-block: clamp(32px, 5vw, 56px) clamp(56px, 8vw, 100px);
  background:
    radial-gradient(900px 500px at 75% -10%, rgba(46, 125, 255, 0.18), transparent 60%),
    radial-gradient(700px 480px at 0% 110%, rgba(227, 176, 75, 0.08), transparent 60%),
    var(--navy-800);
}
.hero__brand {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  max-width: var(--maxw); margin: 0 auto clamp(28px, 5vw, 48px); padding-inline: 20px;
}
.hero__grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
/* Permite que as colunas encolham: sem isto, a largura intrínseca do mockup (850px)
   forçaria a coluna a estourar a tela no mobile. */
.hero__grid > * { min-width: 0; }
.hero__title { font-size: clamp(2rem, 6vw, 4rem); font-weight: 900; margin: 20px 0 18px; }
.hero__sub { font-size: 1.15rem; color: var(--text-dim); max-width: 560px; }
.hero__sub strong { color: var(--text); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.microcopy { color: var(--text-muted); font-size: 0.9rem; margin-top: 16px; }
.microcopy--center { text-align: center; margin-top: 28px; }

.price-anchor {
  margin-top: 30px; padding: 18px 22px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--navy-600); max-width: 420px;
}
.price-anchor__label { font-size: 0.85rem; color: var(--text-muted); }
.price-anchor__row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-top: 4px; flex-wrap: wrap; }
.price-anchor__value { font-size: 2rem; font-weight: 900; color: #fff; }
.price-anchor__value small { font-size: 1rem; font-weight: 600; color: var(--text-muted); }
.stars { color: var(--gold); font-weight: 700; font-size: 0.95rem; white-space: nowrap; }

.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__mockup { max-height: 560px; width: auto; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55)); }
.stat-card {
  position: absolute; bottom: 10px; left: -10px; width: 230px;
  background: rgba(17, 26, 46, 0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow);
}
.stat { display: flex; flex-direction: column; margin-bottom: 12px; }
.stat strong { font-size: 1.7rem; font-weight: 900; color: var(--blue-bright); line-height: 1; }
.stat span { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.stat-card__tags { display: flex; gap: 6px; flex-wrap: wrap; margin: 6px 0 10px; }
.stat-card__tags span {
  font-size: 0.72rem; font-weight: 700; color: var(--text-dim);
  border: 1px solid var(--line-strong); border-radius: 6px; padding: 3px 8px;
}
.stat-card__note { font-size: 0.74rem; color: var(--text-muted); border-top: 1px solid var(--line); padding-top: 8px; }
/* Cópia do card exibida no fluxo do texto apenas no mobile (ver media query 900px). */
.stat-card--inline { display: none; }

/* ===================== O QUE É ===================== */
.whatis { max-width: 680px; margin-inline: auto; }
.whatis p { color: var(--text-dim); margin-bottom: 24px; }
.whatis p strong { color: var(--text); }

.checklist { display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 32px; color: var(--text-dim); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; display: grid; place-items: center;
  font-size: 0.72rem; font-weight: 800; color: #fff;
  background: var(--blue); border-radius: 50%;
}

/* ===================== STEPS ===================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative; background: var(--navy-600); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 26px;
}
.step__num {
  display: inline-block; font-size: 1.1rem; font-weight: 900;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  width: 46px; height: 46px; line-height: 46px; text-align: center;
  border-radius: 12px; margin-bottom: 18px; color: #fff;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 0.96rem; }

/* ===================== AUDIENCE (PARA QUEM É) ===================== */
.audience { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.audience__card {
  background: var(--navy-600); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 22px; transition: border-color 0.2s, transform 0.2s;
}
.audience__card:hover { border-color: var(--blue-bright); transform: translateY(-4px); }
.audience__tag {
  display: inline-grid; place-items: center; min-width: 54px; height: 40px; padding: 0 12px;
  font-weight: 900; font-size: 1.1rem; color: var(--blue-bright);
  background: var(--blue-soft); border-radius: 10px; margin-bottom: 16px;
}
.audience__card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.audience__card p { color: var(--text-dim); font-size: 0.92rem; }

/* Rótulos dos grupos de cobertura (Avião / Helicóptero) */
.coverage-group__label {
  font-size: 0.95rem; font-weight: 800; color: var(--text);
  margin: 0 0 16px; letter-spacing: -0.01em;
}
.coverage-group__label--soon { margin-top: 32px; color: var(--text-muted); }

/* Cards de categorias "em breve" (helicóptero) */
.audience--soon { grid-template-columns: repeat(2, 1fr); }
.audience__card--soon {
  position: relative; opacity: 0.62;
  border-style: dashed; border-color: var(--line-strong);
}
.audience__card--soon:hover { border-color: var(--line-strong); transform: none; }
.soon-flag {
  position: absolute; top: 16px; right: 16px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); background: rgba(227, 176, 75, 0.12);
  border: 1px solid rgba(227, 176, 75, 0.32); padding: 4px 10px; border-radius: 999px;
}

/* ===================== COMPARE ===================== */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 920px; margin-inline: auto; }
.compare__col { border-radius: var(--radius); padding: 30px 28px; border: 1px solid var(--line); }
.compare__col h3 { font-size: 1.2rem; margin-bottom: 18px; }
.compare__col ul { display: grid; gap: 12px; }
.compare__col li { padding-left: 26px; position: relative; color: var(--text-dim); }
.compare__col--bad { background: rgba(255, 90, 90, 0.05); border-color: rgba(255, 90, 90, 0.18); }
.compare__col--bad li::before { content: "✕"; position: absolute; left: 0; color: #ff7a7a; font-weight: 800; }
.compare__col--good { background: rgba(46, 125, 255, 0.07); border-color: rgba(46, 125, 255, 0.28); }
.compare__col--good li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-bright); font-weight: 800; }

/* ===================== HERO FEATURE PILLS ===================== */
.feature-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.feature-pills .pill {
  font-size: 0.82rem; font-weight: 600; color: var(--text-dim);
  background: var(--navy-600); border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 7px 14px;
}

/* ===================== FEATURE GRID / CARDS ===================== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--navy-600); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: var(--blue-bright); transform: translateY(-4px); }
.feature-card__icon {
  display: inline-grid; place-items: center; width: 52px; height: 52px;
  font-size: 1.5rem; background: var(--blue-soft);
  border: 1px solid rgba(46, 125, 255, 0.28); border-radius: 14px; margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-dim); font-size: 0.94rem; }

/* ===================== SCREENSHOT FRAME (janela macOS) ===================== */
.shot {
  margin: 40px auto 0; max-width: 760px;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: var(--navy-700); box-shadow: var(--shadow); overflow: hidden;
}
.shot--wide { max-width: 980px; }
.shot img { width: 100%; height: auto; display: block; }
.shot__bar {
  display: flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 16px;
  background: var(--navy-600); border-bottom: 1px solid var(--line);
}
.shot__dot { width: 12px; height: 12px; border-radius: 50%; }
.shot__dot--red { background: #ff5f57; }
.shot__dot--yellow { background: #febc2e; }
.shot__dot--green { background: #28c840; }

/* ===================== COMPANY LOGOS ===================== */
.company-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(28px, 6vw, 64px); margin-bottom: 44px;
}
.company-logo {
  height: 58px; border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35); transition: transform 0.2s ease;
}
.company-logo:hover { transform: translateY(-3px); }
/* GOL/LATAM: arquivos reais (fundo da marca) preenchendo o tile */
.company-logo--fill { width: 188px; object-fit: cover; }
/* Azul/Qatar: logo (fundo transparente/branco) sobre card branco */
.company-logo--card { width: 188px; object-fit: contain; background: #fff; padding: 9px 16px; }
/* Emirates: logo branco centralizado sobre o vermelho da marca, sem corte */
.company-logo--emirates { width: 188px; object-fit: contain; background: #d71a21; }

/* ===================== GAMIFICATION CHIPS ===================== */
.game-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  max-width: 920px; margin: 0 auto 36px;
}
.game-chip {
  background: var(--navy-600); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 18px; text-align: center;
}
.game-chip strong { display: block; font-size: 1.02rem; color: #fff; margin-bottom: 4px; }
.game-chip span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }

/* ===================== STAT LIST (DESEMPENHO) ===================== */
.stat-list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 980px; margin: 36px auto 0;
}
.stat-list li {
  background: var(--navy-600); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px 20px;
}
.stat-list strong { display: block; color: #fff; font-size: 1rem; margin-bottom: 4px; }
.stat-list span { color: var(--text-muted); font-size: 0.86rem; }

/* ===================== CTA INTERMEDIÁRIO ===================== */
.mid-cta {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(40px, 6vw, 64px) 20px;
  text-align: center;
}
.mid-cta__text {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-weight: 800; color: #fff;
  letter-spacing: -0.01em; margin-bottom: 22px; max-width: 620px; margin-inline: auto;
}

/* ===================== DEPOIMENTOS ===================== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  background: var(--navy-600); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px; margin: 0;
}
.testimonial blockquote {
  margin: 0 0 16px; color: var(--text); font-size: 1rem; line-height: 1.55;
}
.testimonial blockquote::before { content: "“"; color: var(--blue-bright); font-weight: 800; margin-right: 2px; }
.testimonial figcaption { display: flex; flex-direction: column; }
.testimonial figcaption strong { color: #fff; font-size: 0.95rem; }
.testimonial figcaption span { color: var(--text-muted); font-size: 0.84rem; margin-top: 2px; }

/* ===================== PLANS ===================== */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 820px; margin-inline: auto; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--navy-600); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px;
}
.plan--featured {
  border-color: var(--blue-bright);
  background: linear-gradient(180deg, rgba(46, 125, 255, 0.1), var(--navy-600));
  box-shadow: 0 0 0 1px rgba(46, 125, 255, 0.3), var(--shadow);
}
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-900); background: var(--gold); padding: 6px 16px; border-radius: 999px;
  white-space: nowrap; max-width: calc(100% - 12px);
}
.plan__name { font-size: 1.3rem; margin-bottom: 6px; }
.plan__price { display: flex; align-items: baseline; flex-wrap: nowrap; white-space: nowrap; gap: 0 8px; margin-bottom: 4px; }
.plan__price span { font-size: clamp(1.9rem, 8vw, 2.4rem); font-weight: 900; color: #fff; }
.plan__price small { color: var(--text-muted); font-weight: 600; }
.plan__price-pre { font-size: clamp(1.2rem, 5vw, 1.5rem); font-weight: 800; color: #fff; }
.plan__save { color: var(--gold); font-weight: 700; font-size: 0.9rem; margin-bottom: 18px; }
.plan .checklist { margin: 18px 0 26px; flex: 1; }
.plan .checklist li { font-size: 0.94rem; }

/* ===================== FAQ ===================== */
.faq { max-width: 760px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item {
  background: var(--navy-600); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0 22px;
}
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  list-style: none; cursor: pointer; padding: 20px 0;
  font-weight: 700; font-size: 1.02rem; color: var(--text);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; flex: none; font-size: 1.5rem; font-weight: 400; line-height: 1;
  color: var(--blue-bright); transition: transform 0.2s ease;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item > p {
  color: var(--text-dim); font-size: 0.96rem;
  padding: 0 0 20px; margin: 0; max-width: 64ch;
}
.faq__item > p strong { color: var(--text); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--navy-900); border-top: 1px solid var(--line); padding-top: 60px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer__tagline { color: var(--text-muted); font-size: 0.92rem; margin: 16px 0 18px; max-width: 320px; }
.footer__social { display: flex; gap: 18px; }
.footer__social a { color: var(--text-dim); font-size: 0.9rem; font-weight: 600; }
.footer__social a:hover { color: var(--blue-bright); }
.footer__col h4 { font-size: 0.95rem; margin-bottom: 16px; color: #fff; }
.footer__col a { display: block; color: var(--text-muted); font-size: 0.92rem; margin-bottom: 10px; }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-block: 24px; color: var(--text-muted); font-size: 0.85rem;
}

/* ===================== STICKY CTA (mobile) ===================== */
.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10, 14, 26, 0.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-strong);
  transform: translateY(110%); transition: transform 0.28s ease;
}
.cta-bar.is-visible { transform: translateY(0); }
.cta-bar__price { display: flex; align-items: baseline; gap: 4px; line-height: 1; flex: none; white-space: nowrap; }
.cta-bar__price strong { font-size: 1.25rem; font-weight: 900; color: #fff; white-space: nowrap; }
.cta-bar__price small { color: var(--text-muted); font-weight: 600; }
.cta-bar .btn { flex: 1; min-width: 0; max-width: 230px; padding-inline: 18px; }

/* ===================== STORIES FAB (bolinha flutuante) ===================== */
.stories-fab {
  position: fixed; right: 20px; bottom: 24px; z-index: 70;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.stories-fab__btn { background: none; border: 0; padding: 0; cursor: pointer; line-height: 0; }
.stories-fab__btn { animation: storiesPulse 2.8s ease-in-out infinite; }
.stories-fab__ring {
  display: block; width: 70px; height: 70px; border-radius: 50%; padding: 3px;
  background: conic-gradient(from 0deg, var(--gold), #e75027, #d5292a, var(--blue-bright), var(--gold));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}
.stories-fab__img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--navy-800); background: var(--navy-700);
  transition: opacity 0.4s ease;
}
.stories-fab__img.is-fading { opacity: 0; }
.stories-fab__label {
  font-size: 0.72rem; font-weight: 700; color: var(--text-dim);
  background: rgba(10, 14, 26, 0.7); padding: 3px 9px; border-radius: 999px;
  backdrop-filter: blur(4px); white-space: nowrap;
}
.stories-fab__btn:hover { animation-play-state: paused; }
.stories-fab__btn:hover .stories-fab__ring { transform: scale(1.06); }
.stories-fab__btn:focus-visible { outline: 2px solid var(--blue-bright); outline-offset: 4px; border-radius: 50%; }
@keyframes storiesPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }

/* ===================== STORIES VIEWER (quase tela cheia) ===================== */
.stories-viewer { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; }
.stories-viewer[hidden] { display: none; }
.stories-viewer__backdrop {
  position: absolute; inset: 0; background: rgba(7, 11, 21, 0.92); backdrop-filter: blur(6px);
}
.stories-viewer__stage {
  position: relative; z-index: 1;
  width: min(440px, 94vw); height: min(92vh, calc(min(440px, 94vw) * 16 / 9));
  border-radius: 18px; overflow: hidden;
  background: #000; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.stories-viewer__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stories-bars { position: absolute; top: 10px; left: 10px; right: 10px; z-index: 3; display: flex; gap: 5px; }
.stories-bar { flex: 1; height: 3px; border-radius: 999px; background: rgba(255, 255, 255, 0.32); overflow: hidden; }
.stories-bar i { display: block; height: 100%; width: 0; background: #fff; border-radius: 999px; }
.stories-bar.is-done i { width: 100%; }
.stories-bar.is-active i { animation: storiesFill var(--story-dur, 5s) linear forwards; }
@keyframes storiesFill { from { width: 0; } to { width: 100%; } }
.stories-viewer__close {
  position: absolute; top: 16px; right: 12px; z-index: 4;
  width: 38px; height: 38px; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(0, 0, 0, 0.35); color: #fff; font-size: 1.6rem; line-height: 1;
}
.stories-viewer__close:hover { background: rgba(0, 0, 0, 0.6); }
.stories-nav {
  position: absolute; top: 0; bottom: 0; width: 38%; z-index: 2;
  background: none; border: 0; cursor: pointer; padding: 0;
}
.stories-nav--prev { left: 0; }
.stories-nav--next { right: 0; width: 62%; }
.stories-viewer__cta {
  position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 4;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .stories-fab__btn { animation: none; }
  .stories-bar.is-active i { animation: none; width: 100%; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  /* Hero centralizada e empilhada: texto -> stats -> celular */
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  /* Fluxo de bloco + text-align garante que h1/parágrafo quebrem linha e centralizem
     (flex column encolheria para max-content e estouraria a largura). */
  .hero__copy { text-align: center; }
  .hero__title { margin-inline: auto; }
  .hero__sub { margin-inline: auto; max-width: 460px; }
  .hero__cta { justify-content: center; }
  .badge { align-self: center; }

  /* Card de preço todo centralizado */
  .price-anchor { margin-inline: auto; text-align: center; width: 100%; max-width: 360px; }
  .price-anchor__row { flex-direction: column; align-items: center; justify-content: center; gap: 8px; max-width: 100%; }
  .price-anchor__value { font-size: 1.8rem; }

  /* Bloco visual: stats em cima (centralizado), celular embaixo (centralizado) */
  .hero__visual { flex-direction: column; align-items: center; gap: 28px; }
  .stat-card {
    position: static; left: 0; bottom: 0; order: -1;
    width: 100%; max-width: 360px; margin: 0 auto; text-align: center;
  }
  /* No mobile, o card de estatísticas aparece entre título e subtítulo
     (.stat-card--inline) e o card flutuante sobre o mockup fica oculto. */
  .hero__visual .stat-card { display: none; }
  .stat-card--inline { display: block; margin: 4px auto 26px; }
  .stat-card__stats { display: flex; justify-content: center; gap: 28px; }
  .stat { align-items: center; margin-bottom: 0; }
  .stat-card__tags { justify-content: center; }
  .stat-card__note { text-align: center; }
  /* Celular maior, preenchendo a largura no mobile */
  .hero { padding-bottom: 8px; }
  .hero__visual { gap: 16px; }
  .hero__mockup { width: 104%; max-width: 460px; max-height: none; height: auto; margin: 0 auto -6%; }

  .steps { grid-template-columns: 1fr; }
  .audience { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 420px; margin-top: 8px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { justify-content: center; text-align: center; }

  /* Novos blocos: grids caem para coluna única no mobile */
  .feature-grid { grid-template-columns: 1fr; }
  .feature-pills { justify-content: center; }
  .game-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-list { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }

  /* Barra de CTA fixa entra em cena no mobile */
  .cta-bar { display: flex; }
  body { padding-bottom: 76px; }

  /* Bolinha sobe para não cobrir a barra de CTA fixa */
  .stories-fab { right: 14px; bottom: 92px; }
  .stories-fab__ring { width: 60px; height: 60px; }
}

@media (max-width: 520px) {
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .audience, .audience--soon { grid-template-columns: 1fr; }
  .game-stats, .stat-list { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ===================== PÁGINAS INSTITUCIONAIS ===================== */
/* Barra de topo das páginas (logo + voltar) */
.page-head {
  border-bottom: 1px solid var(--line);
  background: var(--navy-900);
}
.page-head__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 18px;
}
.page-head__back {
  color: var(--text-dim); font-size: 0.92rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.page-head__back:hover { color: var(--blue-bright); }

/* Conteúdo das páginas */
.page { padding-block: clamp(40px, 6vw, 72px); }
.page__head { max-width: 760px; margin: 0 auto 40px; }
.page__head h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); font-weight: 900; margin: 12px 0 14px; }
.page__head .page__lead { color: var(--text-dim); font-size: 1.05rem; }
.page__updated { color: var(--text-muted); font-size: 0.88rem; margin-top: 12px; }

/* Texto longo (privacidade / termos) */
.legal { max-width: 760px; margin-inline: auto; }
.legal h2 {
  font-size: 1.3rem; margin: 40px 0 14px; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal h3 { font-size: 1.05rem; font-weight: 700; margin: 22px 0 8px; color: var(--text); }
.legal p { color: var(--text-dim); margin-bottom: 14px; }
.legal p strong, .legal li strong { color: var(--text); }
.legal a { color: var(--blue-bright); }
.legal a:hover { text-decoration: underline; }
.legal ul { display: grid; gap: 10px; margin: 0 0 16px; }
.legal li { position: relative; padding-left: 20px; color: var(--text-dim); }
.legal li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue-bright);
}
/* Índice numerado */
.legal__index { counter-reset: idx; }
.legal__index li { padding-left: 28px; }
.legal__index li::before {
  counter-increment: idx; content: counter(idx); top: 0;
  width: auto; height: auto; border-radius: 0; background: none;
  color: var(--blue-bright); font-weight: 800; font-size: 0.9rem;
}

/* Cartões de contato */
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 920px; margin: 0 auto 24px;
}
.contact-card {
  background: var(--navy-600); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px;
}
.contact-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.contact-card p { color: var(--text-dim); font-size: 0.94rem; margin-bottom: 12px; }
.contact-card a.contact-card__mail { color: var(--blue-bright); font-weight: 700; word-break: break-word; }
.contact-card a.contact-card__mail:hover { text-decoration: underline; }

.contact-info {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 920px; margin: 0 auto 24px;
}
.contact-info .contact-card h3 { margin-bottom: 12px; }

.contact-social {
  max-width: 920px; margin-inline: auto; text-align: center;
  padding-top: 8px;
}
.contact-social a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue-bright); font-weight: 700;
}
.contact-social a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
}

/* =====================================================================
   ===============  NOVOS COMPONENTES — PÁGINA DE VENDAS  ===============
   (site-vendas) Carrossel de prova social, cards+modal de categorias,
   bloco de ancoragem de valor e destaque do card de plano.
   ===================================================================== */

/* ---------- Bloco de valor na hero (linha acima do preço) ---------- */
.hero__value {
  margin-top: 26px; max-width: 460px; color: var(--text-dim);
  font-size: 0.98rem; line-height: 1.5;
}
.hero__value strong { color: var(--text); }

/* ---------- Prova social visível (carrossel horizontal) ---------- */
.proof-carousel {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr);
  gap: 18px; overflow-x: auto; padding: 4px 4px 18px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.proof-card {
  scroll-snap-align: center; background: var(--navy-600);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.proof-card__media { background: #000; }
.proof-card__media img { width: 100%; height: auto; display: block; aspect-ratio: 9 / 16; object-fit: cover; }
.proof-card__caption {
  padding: 14px 16px; color: var(--text-dim); font-size: 0.9rem; font-weight: 600;
  display: flex; align-items: flex-start; gap: 8px;
}
.proof-card__caption::before { content: "✓"; color: var(--blue-bright); font-weight: 800; }
.proof-hint { text-align: center; color: var(--text-muted); font-size: 0.82rem; margin-top: 6px; }

/* Faixa de reforço de confiança */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 22px;
  max-width: 760px; margin: 30px auto 0;
}
.trust-strip li {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-600); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 18px; font-size: 0.88rem; font-weight: 600; color: var(--text-dim);
}
.trust-strip li strong { color: var(--blue-bright); }

/* ---------- Bloco "Já estudo, mas não evoluo" (dor + método) ---------- */
.method { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; max-width: 1000px; margin-inline: auto; }
.method__copy h2 { margin-bottom: 16px; }
.method__copy > p { color: var(--text-dim); margin-bottom: 22px; max-width: 52ch; }
.method__copy > p strong { color: var(--text); }
.method .checklist { margin-bottom: 28px; }
.method__shot { margin: 0; }
.method__shot figcaption { color: var(--text-muted); font-size: 0.85rem; text-align: center; margin-top: 12px; }

/* ---------- Grid de categorias clicáveis + modal ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: 920px; margin-inline: auto; }
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  background: var(--navy-600); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 14px; cursor: pointer; color: inherit; font: inherit;
  transition: border-color 0.2s, transform 0.15s, background 0.2s;
}
.cat-card:hover { border-color: var(--blue-bright); transform: translateY(-4px); }
.cat-card:active { transform: translateY(-1px) scale(0.99); }
.cat-card__tag {
  display: inline-grid; place-items: center; min-width: 56px; height: 44px; padding: 0 12px;
  font-weight: 900; font-size: 1.2rem; color: var(--blue-bright);
  background: var(--blue-soft); border-radius: 12px;
}
.cat-card__name { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.cat-card__hint { font-size: 0.74rem; color: var(--text-muted); font-weight: 600; }
.cat-note { text-align: center; color: var(--text-muted); font-size: 0.86rem; margin-top: 18px; }

.cat-modal { position: fixed; inset: 0; z-index: 95; display: grid; place-items: center; padding: 20px; }
.cat-modal[hidden] { display: none; }
.cat-modal__backdrop { position: absolute; inset: 0; background: rgba(7, 11, 21, 0.86); backdrop-filter: blur(6px); }
.cat-modal__dialog {
  position: relative; z-index: 1; width: min(440px, 100%);
  background: var(--navy-600); border: 1px solid var(--line-strong);
  border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow);
}
.cat-modal__tag {
  display: inline-grid; place-items: center; min-width: 56px; height: 44px; padding: 0 14px;
  font-weight: 900; font-size: 1.2rem; color: var(--blue-bright);
  background: var(--blue-soft); border-radius: 12px; margin-bottom: 16px;
}
.cat-modal__title { font-size: 1.35rem; margin-bottom: 12px; }
.cat-modal__text { color: var(--text-dim); font-size: 0.98rem; margin-bottom: 18px; }
.cat-modal__list { display: grid; gap: 10px; margin-bottom: 26px; }
.cat-modal__list li { position: relative; padding-left: 28px; color: var(--text-dim); font-size: 0.92rem; }
.cat-modal__list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px;
  display: grid; place-items: center; font-size: 0.7rem; font-weight: 800; color: #fff;
  background: var(--blue); border-radius: 50%;
}
.cat-modal__close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  border: 0; border-radius: 50%; cursor: pointer; font-size: 1.5rem; line-height: 1;
  background: rgba(255, 255, 255, 0.06); color: var(--text-dim);
}
.cat-modal__close:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* ---------- Ancoragem de valor "Quanto custa reprovar" ---------- */
.value-anchor {
  max-width: 760px; margin: 0 auto 56px; text-align: center;
  background: var(--navy-600); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(28px, 5vw, 44px);
}
.value-anchor h2 { font-size: clamp(1.4rem, 3.4vw, 2rem); margin-bottom: 16px; }
.value-anchor > p { color: var(--text-dim); max-width: 56ch; margin: 0 auto 24px; }
.value-anchor__list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px;
  max-width: 560px; margin: 0 auto 24px; text-align: left;
}
.value-anchor__list li { position: relative; padding-left: 28px; color: var(--text-dim); font-size: 0.94rem; }
.value-anchor__list li::before {
  content: "→"; position: absolute; left: 0; color: var(--blue-bright); font-weight: 800;
}
.value-anchor__close {
  font-size: 1.05rem; font-weight: 800; color: #fff; max-width: 48ch; margin: 0 auto;
  letter-spacing: -0.01em;
}

/* Alvo do scroll dos CTAs: não cola no topo da janela */
#escolha-plano { scroll-margin-top: 18px; }

/* ---------- Destaque temporário no card de plano (CTA do hero) ---------- */
.plan.is-highlight { animation: planPulse 1.6s ease; }
@keyframes planPulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 125, 255, 0.55); }
  40% { box-shadow: 0 0 0 6px rgba(46, 125, 255, 0.18), var(--shadow); }
  100% { box-shadow: 0 0 0 0 rgba(46, 125, 255, 0); }
}
@media (prefers-reduced-motion: reduce) { .plan.is-highlight { animation: none; } }

/* ---------- Rodapé sem coluna "Legal" (3 colunas) ---------- */
.footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }

/* ---------- Simulado animado (hero mobile) ---------- */
.sim-demo { display: none; }              /* aparece só no mobile (ver media query) */
.sim-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--navy-600), var(--navy-700));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow);
  text-align: left; transition: opacity 0.35s ease, transform 0.35s ease;
}
.sim-card.is-out { opacity: 0; transform: translateY(8px) scale(0.98); }

/* topo: selo + temporizador circular */
.sim-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.sim-card__badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.64rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--blue-bright); background: var(--blue-soft);
  border: 1px solid rgba(46, 125, 255, 0.3); padding: 4px 10px; border-radius: 999px;
}
.sim-timer { position: relative; width: 40px; height: 40px; flex: none; }
.sim-timer svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.sim-timer__track { fill: none; stroke: rgba(255, 255, 255, 0.1); stroke-width: 3; }
.sim-timer__bar {
  fill: none; stroke: var(--blue-bright); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 100; stroke-dashoffset: 0;
}
.sim-timer.is-ok .sim-timer__bar { stroke: #28c840; }
.sim-timer.is-wrong .sim-timer__bar { stroke: #ff6b6b; }
.sim-timer__num {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 0.74rem; font-weight: 800; color: var(--text);
}

/* progresso: bolinhas + contador */
.sim-progress { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.sim-dots { display: flex; gap: 6px; }
.sim-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, 0.16); transition: background 0.3s, transform 0.3s; }
.sim-dot.is-current { background: var(--blue-bright); transform: scale(1.3); }
.sim-dot.is-ok { background: #28c840; }
.sim-dot.is-wrong { background: #ff6b6b; }
.sim-count { font-size: 0.72rem; color: var(--text-muted); font-weight: 700; }

.sim-q { font-size: 0.95rem; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 12px; min-height: 2.6em; }

.sim-opts { display: grid; gap: 8px; }
.sim-opt {
  display: flex; align-items: center; gap: 10px; padding: 11px 12px;
  border: 1px solid var(--line-strong); border-radius: 12px; background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s, background 0.25s, transform 0.12s;
}
.sim-opt.is-tapping { transform: scale(0.97); }
.sim-opt__key {
  flex: none; width: 24px; height: 24px; display: grid; place-items: center;
  border-radius: 7px; font-size: 0.78rem; font-weight: 800; color: var(--text-dim);
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-strong);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.sim-opt__txt { font-size: 0.86rem; color: var(--text-dim); font-weight: 600; }
.sim-opt__mark { margin-left: auto; flex: none; opacity: 0; font-weight: 900; transition: opacity 0.2s; }
.sim-opt.is-selected { border-color: var(--blue-bright); background: rgba(46, 125, 255, 0.12); }
.sim-opt.is-selected .sim-opt__key { background: var(--blue); color: #fff; border-color: var(--blue); }
.sim-opt.is-correct { border-color: #28c840; background: rgba(40, 200, 64, 0.14); }
.sim-opt.is-correct .sim-opt__key { background: #28c840; color: #06210b; border-color: #28c840; }
.sim-opt.is-correct .sim-opt__mark { opacity: 1; color: #42d65a; }
.sim-opt.is-correct .sim-opt__mark::before { content: "✓"; }
.sim-opt.is-wrong { border-color: #ff6b6b; background: rgba(255, 90, 90, 0.12); }
.sim-opt.is-wrong .sim-opt__key { background: #ff6b6b; color: #2a0606; border-color: #ff6b6b; }
.sim-opt.is-wrong .sim-opt__mark { opacity: 1; color: #ff7a7a; }
.sim-opt.is-wrong .sim-opt__mark::before { content: "✕"; }

/* feedback com insight específico */
.sim-fb {
  margin-top: 12px; min-height: 46px; display: flex; align-items: flex-start; gap: 9px;
  opacity: 0; transform: translateY(4px); transition: opacity 0.3s, transform 0.3s;
}
.sim-fb.is-show { opacity: 1; transform: none; }
.sim-fb__icon {
  flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  font-size: 0.76rem; font-weight: 900; margin-top: 1px;
}
.sim-fb.is-ok .sim-fb__icon { background: #28c840; color: #06210b; }
.sim-fb.is-wrong .sim-fb__icon { background: #ffb020; color: #2a1a02; }
.sim-fb__txt { font-size: 0.8rem; line-height: 1.35; color: var(--text-dim); font-weight: 600; }
.sim-fb__txt b { color: #fff; }
.sim-fb.is-ok .sim-fb__txt b { color: #42d65a; }
.sim-fb.is-wrong .sim-fb__txt b { color: #ffc24d; }

/* rodapé: XP + streak (gamificação) */
.sim-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line); }
.sim-xp, .sim-streak { display: inline-flex; align-items: center; gap: 6px; font-size: 0.74rem; font-weight: 700; color: var(--text-muted); }
.sim-xp b { color: var(--blue-bright); font-size: 0.88rem; }
.sim-streak b { color: var(--gold); font-size: 0.88rem; }
.sim-xp.pop { animation: xpPop 0.5s ease; }
@keyframes xpPop { 0% { transform: scale(1); } 40% { transform: scale(1.18); } 100% { transform: scale(1); } }
.sim-plus { position: absolute; right: 16px; bottom: 46px; font-size: 0.82rem; font-weight: 800; color: #42d65a; opacity: 0; pointer-events: none; }
.sim-plus.go { animation: plusUp 1s ease forwards; }
@keyframes plusUp { 0% { opacity: 0; transform: translateY(6px); } 25% { opacity: 1; } 100% { opacity: 0; transform: translateY(-20px); } }

@media (prefers-reduced-motion: reduce) {
  .sim-card, .sim-opt, .sim-fb, .sim-dot, .sim-timer__bar { transition: none; }
  .sim-xp.pop, .sim-plus.go { animation: none; }
}

/* ---------- Mockup de celular + dashboard (hero) ---------- */
.phone {
  position: relative; width: min(300px, 80%);
  margin-inline: auto; border-radius: 42px; padding: 12px;
  background: linear-gradient(160deg, #1a2740, #0a1020);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), inset 0 0 0 2px rgba(46, 125, 255, 0.25);
}
.phone__screen {
  border-radius: 31px; overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, #0e1830, #070b15);
  display: flex; flex-direction: column; padding: 16px 13px 0;
}
.dash__bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.dash__title { font-size: 0.92rem; font-weight: 900; letter-spacing: 0.04em; color: #fff; }
.dash__icons { display: flex; align-items: center; gap: 11px; }
.dash__ico { font-size: 0.8rem; color: var(--text-dim); position: relative; }
.dash__badge {
  position: absolute; top: -6px; right: -7px; background: #ff4d4d; color: #fff;
  font-size: 0.5rem; font-weight: 800; font-style: normal; min-width: 13px; height: 13px;
  padding: 0 3px; border-radius: 999px; display: grid; place-items: center;
}
.dash__avatar {
  width: 24px; height: 24px; border-radius: 50%; font-size: 0.58rem; font-weight: 800;
  color: #fff; display: grid; place-items: center;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
}
.dash__stats { display: grid; grid-template-columns: 1fr; gap: 9px; }
.dash__stat {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.02); border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 14px;
}
.dash__stat-ico {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
}
.dash__stat-ico svg { width: 20px; height: 20px; }
.dash__stat-body { min-width: 0; }
.dash__stat--blue   .dash__stat-ico { background: rgba(46, 125, 255, 0.14); color: #5b9dff; }
.dash__stat--green  .dash__stat-ico { background: rgba(40, 200, 64, 0.14); color: #43d65a; }
.dash__stat--orange .dash__stat-ico { background: rgba(255, 150, 40, 0.14); color: #ff9f43; }
.dash__stat--purple .dash__stat-ico { background: rgba(150, 90, 255, 0.16); color: #a98bff; }
.dash__stat--cyan   .dash__stat-ico { background: rgba(40, 200, 200, 0.14); color: #3fd6d6; }
.dash__stat--gold   .dash__stat-ico { background: rgba(227, 176, 75, 0.14); color: #e3b04b; }
.dash__stat-label {
  display: block; font-size: 0.5rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 700; line-height: 1.2; margin-bottom: 2px;
}
.dash__stat-val {
  font-size: 1.1rem; font-weight: 800; color: #fff; line-height: 1.05;
  font-family: ui-monospace, "Cascadia Mono", "Roboto Mono", Menlo, monospace;
}
.dash__stat-val small { font-size: 0.6rem; color: var(--text-muted); font-weight: 700; font-family: inherit; }
.dash__map {
  display: flex; align-items: center; gap: 10px; margin-top: 10px; padding: 11px 12px;
  border: 1px solid rgba(46, 125, 255, 0.22); border-radius: 13px;
  background: linear-gradient(120deg, rgba(46, 125, 255, 0.12), rgba(255, 255, 255, 0.02));
}
.dash__map-ico { flex: none; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(46, 125, 255, 0.16); color: #5b9dff; }
.dash__map-ico svg { width: 20px; height: 20px; }
.dash__map-body { min-width: 0; }
.dash__map-title { display: block; font-size: 0.72rem; font-weight: 800; color: #fff; line-height: 1.2; margin-top: 1px; }
.dash__map-sub { font-size: 0.54rem; color: var(--text-muted); }
.dash__arrow { margin-left: auto; color: var(--blue-bright); font-weight: 800; font-size: 0.9rem; }
.dash__nav {
  margin-top: 14px; display: flex; justify-content: space-between; gap: 2px;
  padding: 9px 12px 11px; margin-inline: -13px;
  border-top: 1px solid var(--line); background: rgba(7, 11, 21, 0.55);
}
.dash__nav span { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-muted); }
.dash__nav svg { width: 18px; height: 18px; }
.dash__nav i { font-style: normal; font-size: 0.44rem; font-weight: 700; letter-spacing: 0.02em; }
.dash__nav .is-active { color: var(--blue-bright); }

/* ---------- Responsivo dos novos blocos ---------- */
@media (max-width: 900px) {
  /* Pílula da hero: centraliza e quebra linha se precisar (não estoura) */
  .hero .badge {
    white-space: normal; max-width: 100%; text-align: center; line-height: 1.3;
    font-size: 0.6rem; letter-spacing: 0.06em; padding: 6px 14px;
  }
  .sim-demo { display: block; margin: 6px auto 26px; max-width: 360px; width: 100%; }
  .phone { width: min(320px, 86%); }
  /* Rodapé mobile: marca no topo (largura total) + 2 colunas de links */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
  .footer__tagline { max-width: none; }
  .method { grid-template-columns: 1fr; gap: 28px; }
  .method__copy { text-align: center; }
  .method__copy > p { margin-inline: auto; }
  .method .checklist { text-align: left; max-width: 360px; margin-inline: auto; }
  .method__copy .btn { width: 100%; max-width: 360px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .value-anchor__list { grid-template-columns: 1fr; max-width: 320px; }
}
@media (max-width: 520px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-carousel { grid-auto-columns: minmax(78%, 1fr); }
  .plan__badge { letter-spacing: 0.05em; font-size: 0.68rem; padding: 6px 12px; }
}
