/* Fonte PricedownBlack: adicione os arquivos WOFF2/WOFF em /assets/fonts e ajuste os nomes abaixo. */
@font-face {
  font-family: 'PricedownBlack';
  src: url('/assets/fonts/pricedown-bl.woff2') format('woff2'),
       url('/assets/fonts/pricedown-bl.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0b0b12;
  --surface: #121225;
  --text: #e6e6f0;
  --muted: #b3b3c2;
  --neon: #8a5cf6;
  --neon-2: #4ad1ff;
  --accent: #7c4dff;
  --danger: #ff5577;
  --success: #19d18f;
  --heading-font: 'PricedownBlack', 'Anton', 'Black Ops One', system-ui, sans-serif;
  --body-font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(1200px 800px at 70% -10%, rgba(124,77,255,.06), transparent 60%),
              radial-gradient(1200px 800px at 10% -20%, rgba(74,209,255,.04), transparent 55%),
              var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--surface); color: var(--text); padding: 8px 12px; z-index: 100; }
.skip-link:focus { left: 8px; box-shadow: 0 0 0 3px var(--neon); border-radius: 6px; }

.container { width: min(1200px, 92vw); margin: 0 auto; }
.narrow { width: min(860px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(11,11,18,.92), rgba(11,11,18,.82));
  border-bottom: 1px solid rgba(138,92,246,.12);
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; }
.brand.small .brand-text { font-size: 18px; }
.brand-mark { filter: drop-shadow(0 0 4px rgba(138,92,246,.35)); height: 88px; width: auto; display: block; }
.brand-text { font-family: var(--heading-font); font-size: 24px; letter-spacing: .3px; text-shadow: 0 0 6px rgba(138,92,246,.35); }
.menu { display: flex; align-items: center; gap: 16px; }
.menu a { color: #cfd3e6; text-decoration: none; opacity: .95; font-weight: 600; padding: 8px 12px; border-radius: 10px; border: 1px solid transparent; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.menu a:hover, .menu a:focus-visible { color: #fff; opacity: 1; background: #151530; border-color: rgba(138,92,246,.18); }

/* Live counter (pessoas online fictício) */
.live-counter {
  position: fixed; top: 12px; right: 12px; z-index: 60;
  background: rgba(18,18,37,.85); color: var(--text);
  border: 1px solid rgba(124,77,255,.35);
  border-radius: 999px; padding: 6px 12px; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,.4);
  font-weight: 600; font-size: 13px;
}
.live-counter .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 10px rgba(25,209,143,.6);
}
.live-counter .num { font-variant-numeric: tabular-nums; color: #a5e9ff; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 12px; text-decoration: none; transition: transform .14s ease, box-shadow .14s ease, background .24s ease, border-color .24s ease; border: 1px solid rgba(138,92,246,.22); cursor: pointer; letter-spacing: .2px; font-weight: 600; min-height: 44px; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: #6f5cf6; color: #0b0b12; box-shadow: 0 6px 18px rgba(111,92,246,.24); border-color: rgba(111,92,246,.45); }
.btn-primary:hover { background: #7a67ff; box-shadow: 0 10px 22px rgba(111,92,246,.32); transform: translateY(-1px); }
.btn-primary:focus { outline: none; box-shadow: 0 0 0 3px rgba(111,92,246,.35); }
.btn-secondary { background: transparent; color: #e6e6f0; border-color: rgba(230,230,240,.22); box-shadow: none; }
.btn-secondary:hover { background: #1a1a2d; border-color: rgba(230,230,240,.32); transform: translateY(-1px); }
.btn-secondary:focus { outline: none; box-shadow: 0 0 0 3px rgba(230,230,240,.25); }
.btn-ghost { background: transparent; color: var(--text); border-color: rgba(138,92,246,.18); box-shadow: none; }
.btn-ghost:hover { background: rgba(124,77,255,.08); border-color: rgba(138,92,246,.28); }
.btn-ghost:focus { outline: none; box-shadow: 0 0 0 3px rgba(138,92,246,.24); }
.btn-lg { padding: 12px 20px; font-size: 16px; }

@media (max-width: 560px) {
  .brand-mark { height: 64px; }
}

.hero { position: relative; padding: 110px 0 70px; overflow: clip; }
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: center; }
.hero-title { font-family: var(--heading-font); font-size: clamp(36px, 6vw, 64px); letter-spacing: .3px; line-height: 1.02; margin: 0 0 16px; text-shadow: 0 0 8px rgba(138,92,246,.2); }
.hero-sub { margin: 0 0 20px; color: var(--muted); font-size: 18px; }
.hero-ctas { display: flex; gap: 12px; margin-bottom: 14px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px 12px; list-style: none; padding: 0; margin: 10px 0 0; }
.hero-badges li { background: rgba(124,77,255,.08); border: 1px solid rgba(124,77,255,.25); padding: 6px 10px; border-radius: 999px; font-size: 13px; }
.hero-media img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(124,77,255,.25); aspect-ratio: 16 / 10; object-fit: cover; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; background:
  radial-gradient(340px 240px at 78% 32%, rgba(124,77,255,.18), transparent 60%),
  radial-gradient(480px 300px at 22% 68%, rgba(74,209,255,.14), transparent 65%);
}

.section { padding: 72px 0; }
.section-title { font-family: var(--heading-font); font-size: clamp(28px, 4.2vw, 42px); letter-spacing: .3px; margin: 0 0 24px; text-align: center; text-shadow: none; }
.lead { color: var(--muted); font-size: 18px; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; list-style: none; padding: 0; margin: 0; }
.benefit { background: #13132a; border: 1px solid rgba(124,77,255,.18); border-radius: var(--radius); padding: 18px; box-shadow: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.benefit:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.45); border-color: rgba(124,77,255,.28); }
.benefit .icon { font-size: 24px; }
.neon { text-shadow: 0 0 6px rgba(138,92,246,.45), 0 0 10px rgba(74,209,255,.35); }
.h3 { font-family: var(--heading-font); letter-spacing: .5px; font-size: 22px; margin: 8px 0; }

.modules .card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card { background: #121228; border: 1px solid rgba(124,77,255,.18); border-radius: var(--radius); padding: 14px; box-shadow: none; position: relative; overflow: hidden; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.card img { width: 100%; height: auto; border-radius: 10px; border: 1px solid rgba(124,77,255,.2); aspect-ratio: 16 / 10; object-fit: cover; }
.card:hover { box-shadow: 0 14px 30px rgba(0,0,0,.5); transform: translateY(-2px); border-color: rgba(124,77,255,.3); }
.card .btn { margin-top: 8px; }

.diff .lead { text-align: center; }

.showcase .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.showcase img { border-radius: 12px; border: 1px solid rgba(124,77,255,.25); box-shadow: var(--shadow); aspect-ratio: 16 / 10; object-fit: cover; }

/* seção de depoimentos removida */

.cta-mid .cta-title { text-align: center; margin-bottom: 12px; }
.cta-mid .narrow { display: grid; place-items: center; gap: 12px; }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: start; max-width: 720px; margin: 0 auto; }
.contact-list { list-style: none; padding: 0; margin: 8px 0 18px; }
.contact-list li { margin-bottom: 6px; }
.contact-copy { text-align: center; margin: 0 auto; background: #121228; border: 1px solid rgba(124,77,255,.18); border-radius: var(--radius); padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.contact-actions { display: flex; justify-content: center; }
.contact-cta { padding-left: 22px; padding-right: 22px; }
.contact-list a { color: #a5e9ff; text-decoration: none; border-bottom: 1px dashed rgba(165,233,255,.35); }
.contact-list a:hover { border-bottom-style: solid; }
.alert { padding: 10px 12px; border-radius: 10px; margin: 10px 0; font-weight: 600; }
.alert.success { background: rgba(25,209,143,.1); border: 1px solid rgba(25,209,143,.4); color: #9af2cf; }
.alert.error { background: rgba(255,85,119,.1); border: 1px solid rgba(255,85,119,.4); color: #ffc1cf; }

.contact-form { background: #121228; border: 1px solid rgba(124,77,255,.22); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.form-field { display: grid; gap: 6px; margin-bottom: 12px; }
label { font-weight: 600; }
input, textarea { background: #0f0f1f; color: var(--text); border: 1px solid rgba(124,77,255,.3); border-radius: 10px; padding: 10px 12px; font-family: var(--body-font); }
input:focus, textarea:focus { outline: none; box-shadow: 0 0 0 3px rgba(138,92,246,.35); }
.hp { display: none; }

.site-footer { border-top: 1px solid rgba(138,92,246,.12); padding: 28px 0; margin-top: 20px; background: linear-gradient(180deg, rgba(11,11,18,.35), rgba(11,11,18,.8)); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.footer-links { display: flex; gap: 12px; }
.muted { color: var(--muted); }

/* Micro animações: revelar ao rolar */
.reveal-on-scroll { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* Responsividade */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .modules .card-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .menu { display: none; }
  .section { padding: 40px 0; }
  .modules .card-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .showcase .gallery-grid { grid-template-columns: 1fr; }
}


