/* ===== ItaloPixel — Landing Parâmetros ===== */
:root {
  --bg: #0a0b0a;
  --surface: #141614;
  --surface-2: #1a1d18;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eef0ea;
  --muted: #9aa096;
  --green: #8be31f;
  --green-bright: #b4ff3a;
  --green-ink: #0b1500;
  --indigo: #6366f1;
  --blue: #357df9;
  --radius: 18px;
  --shadow: 0 10px 40px -12px rgba(0, 0, 0, 0.6);
  --glow: 0 0 0 1px rgba(139, 227, 31, 0.35), 0 8px 40px -8px rgba(139, 227, 31, 0.3);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.hl { color: var(--green); }

.bg-glow { position: fixed; inset: -10% 0 auto 0; height: 60vh; pointer-events: none; z-index: 0;
  background: radial-gradient(60% 60% at 50% 0%, rgba(139,227,31,.16), transparent 70%),
              radial-gradient(40% 40% at 82% 8%, rgba(99,102,241,.13), transparent 70%); filter: blur(10px); }
.bg-grid { position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(100% 55% at 50% 0%, #000 30%, transparent 80%); }

.wrap { position: relative; z-index: 1; width: 100%; max-width: 1080px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }

/* Topbar */
.topbar { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px; background: rgba(10,11,10,.65); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.topbar__logo img { height: 26px; width: auto; }

/* Botões */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: .95rem;
  padding: 12px 20px; border-radius: 12px; border: 1px solid transparent; cursor: pointer; transition: transform .15s, background .2s, border-color .2s; }
.btn:active { transform: scale(.98); }
.btn--sm { padding: 8px 14px; font-size: .85rem; }
.btn--lg { padding: 15px 26px; font-size: 1.02rem; }
.btn--green { background: var(--green); color: var(--green-ink); box-shadow: 0 8px 30px -8px rgba(139,227,31,.5); }
.btn--green:hover { background: var(--green-bright); }
.btn--ghost { border-color: var(--border-strong); background: var(--surface); color: var(--text); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }

/* Hero */
.hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding-top: 54px; padding-bottom: 40px; }
.tag { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  color: var(--green); background: rgba(139,227,31,.1); border: 1px solid rgba(139,227,31,.3); padding: 6px 12px; border-radius: 999px; }
.hero__title { font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase; line-height: 1.02;
  font-size: clamp(2.3rem, 6vw, 3.6rem); margin: 16px 0 14px; letter-spacing: .5px; }
.hero__sub { color: var(--muted); font-size: 1.08rem; max-width: 42ch; }
.hero__sub strong { color: var(--text); }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.chip { font-size: .82rem; font-weight: 600; padding: 6px 12px; border: 1px solid var(--border-strong); border-radius: 999px; background: var(--surface); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.hero__media picture { display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow); background: var(--surface); }
.hero__media img { width: 100%; height: auto; }

/* Sections */
.section { padding-top: 46px; padding-bottom: 10px; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 28px; }
.section__title { font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase; letter-spacing: .5px; font-size: clamp(1.8rem, 4.5vw, 2.6rem); }
.section__lead { color: var(--muted); margin-top: 8px; font-size: 1.02rem; }

/* Trust bar */
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.trust__item { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 1px solid var(--border); border-radius: 14px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.trust__ic { flex-shrink: 0; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px;
  background: rgba(139,227,31,.12); color: var(--green); font-size: 1.1rem; font-weight: 800; }
.trust__item h3 { font-size: .98rem; font-weight: 700; }
.trust__item p { color: var(--muted); font-size: .88rem; margin-top: 2px; }

/* Categorias */
.cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
.cat { border: 1px solid var(--border); border-radius: 14px; background: var(--surface); padding: 16px; transition: border-color .2s, transform .2s; }
.cat:hover { border-color: rgba(139,227,31,.4); transform: translateY(-3px); }
.cat__title { font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; color: var(--green);
  padding-bottom: 8px; margin-bottom: 8px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cat__count { color: var(--muted); font-size: .72rem; font-weight: 600; }
.cat__list { list-style: none; display: flex; flex-wrap: wrap; gap: 5px; }
.cat__list li { font-size: .78rem; color: var(--text); background: #0e100d; border: 1px solid var(--border); border-radius: 6px; padding: 3px 8px; }

/* Prova (imagem lista) */
.prova { margin-top: 30px; text-align: center; }
.prova picture { display: inline-block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.prova img { width: 100%; max-width: 620px; height: auto; }
.prova figcaption { color: var(--muted); font-size: .84rem; margin-top: 10px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { padding: 22px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); }
.step__n { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: var(--green);
  color: var(--green-ink); font-weight: 800; font-size: 1.1rem; margin-bottom: 12px; }
.step h3 { font-size: 1.05rem; font-weight: 700; }
.step p { color: var(--muted); font-size: .92rem; margin-top: 4px; }

/* Compatibilidade */
.compat { text-align: center; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 22px;
  background: radial-gradient(120% 100% at 50% 0%, rgba(99,102,241,.1), transparent 60%), var(--surface); }
.compat__badges { display: flex; justify-content: center; gap: 12px; margin: 18px 0 10px; }
.pot { font-family: "Anton", sans-serif; font-size: 1.5rem; letter-spacing: 1px; color: var(--text); background: #0e100d;
  border: 1px solid var(--border-strong); border-radius: 12px; padding: 10px 20px; }
.compat__obs { color: var(--muted); font-size: .88rem; }

/* FAQ */
.faq { max-width: 720px; margin: 0 auto; display: grid; gap: 10px; }
.faq__item { border: 1px solid var(--border); border-radius: 12px; background: var(--surface); overflow: hidden; }
.faq__item summary { cursor: pointer; list-style: none; padding: 16px 18px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--green); font-size: 1.3rem; font-weight: 700; transition: transform .2s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 18px 16px; color: var(--muted); font-size: .94rem; }

/* CTA final */
.finalcta { text-align: center; margin: 50px 0 20px; padding: 44px 24px; border-radius: 22px;
  border: 1px solid rgba(139,227,31,.35);
  background: radial-gradient(120% 120% at 50% 0%, rgba(139,227,31,.14), transparent 60%), var(--surface); box-shadow: var(--glow); }
.finalcta h2 { font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(1.6rem, 4.5vw, 2.4rem); }
.finalcta p { color: var(--muted); margin: 10px 0 22px; }

/* Rodapé */
.rodape { text-align: center; padding: 40px 20px; color: var(--muted); font-size: .84rem; }
.rodape img { margin: 0 auto 10px; opacity: .5; height: 18px; width: auto; }
.rodape__link { color: var(--green); font-weight: 600; display: inline-block; margin-top: 8px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } html { scroll-behavior: auto; } }

/* Responsivo */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 26px; padding-top: 36px; }
  .hero__media { order: -1; }
  .trust, .steps { grid-template-columns: 1fr; }
}
