/* ShooterPro — paleta espelhada do app (terracota sobre creme) */
:root {
  --bg: #FBF3EF;
  --surface: #F6E5DE;
  --surface-2: #FDEEE8;
  --line: #E9D5CC;
  --primary: #96502F;
  --primary-dark: #7A3E23;
  --accent: #E0703D;
  --ink: #2B1D17;
  --muted: #7A625A;
  --ok: #2E7D32;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(122, 62, 35, .10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 243, 239, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 1.15rem; }
.brand img { width: 34px; height: 34px; border-radius: 8px; }

.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a { text-decoration: none; color: var(--muted); font-size: .95rem; font-weight: 500; }
.main-nav a:hover { color: var(--primary); }
.main-nav .btn { color: #fff; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 1.6rem; color: var(--primary); line-height: 1;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-block; padding: 12px 24px; border-radius: 999px;
  background: var(--primary); color: #fff; text-decoration: none;
  font-weight: 600; font-size: .95rem; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn.ghost:hover { background: var(--surface); }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 40px; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.15; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--primary); }
.rotating-word { display: inline-block; transition: opacity .35s ease, transform .35s ease; }
.rotating-word.out { opacity: 0; transform: translateY(10px); }
.store-note a { color: var(--primary); font-weight: 600; }
.hero p.lead { font-size: 1.12rem; color: var(--muted); margin-bottom: 28px; max-width: 34rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.store-note { font-size: .85rem; color: var(--muted); margin-top: 14px; }

.store-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.store-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff; text-decoration: none;
  padding: 10px 18px; border-radius: 12px; min-width: 170px;
  transition: opacity .2s;
}
.store-badge:hover { opacity: .85; }
.store-badge .badge-logo { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge small { display: block; font-size: .68rem; opacity: .8; line-height: 1.2; }
.store-badge strong { font-size: 1rem; line-height: 1.2; }

.phone-frame {
  width: min(300px, 80%); margin: 0 auto; border-radius: 36px;
  border: 10px solid #3A2A22; box-shadow: var(--shadow);
  overflow: hidden; background: #3A2A22;
}
.phone-frame img { border-radius: 26px; }

/* ---------- Seções ---------- */
section { padding: 72px 0; }
section.alt { background: var(--surface-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; }
.section-head p { color: var(--muted); }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: 0 2px 10px rgba(122, 62, 35, .05);
}
.feature-card .emoji {
  width: 46px; height: 46px; border-radius: 12px; background: var(--surface);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  margin-bottom: 14px;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: .92rem; color: var(--muted); }

/* ---------- Modalidades ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 10px 20px; font-weight: 600; font-size: .95rem; color: var(--primary-dark);
}
.chip.soon { border-style: dashed; color: var(--muted); font-weight: 500; }

/* ---------- Screenshots ---------- */
.shots { display: flex; gap: 20px; overflow-x: auto; padding: 10px 4px 24px; scroll-snap-type: x mandatory; }
.shots figure { flex: 0 0 auto; width: 220px; scroll-snap-align: center; text-align: center; }
.shots img {
  border-radius: 22px; border: 1px solid var(--line); box-shadow: var(--shadow);
  cursor: zoom-in; transition: transform .2s;
}
.shots img:hover { transform: translateY(-4px); }
.shots figcaption { margin-top: 10px; font-size: .88rem; color: var(--muted); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center;
  background: rgba(28, 17, 12, .82); padding: 24px; cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 90vh; max-width: 92vw; border-radius: 20px; }

/* ---------- Passos ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; margin-bottom: 14px;
  background: var(--primary); color: #fff; font-weight: 700;
}
.step h3 { font-size: 1.02rem; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 46rem; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 22px; margin-bottom: 12px;
}
.faq summary { cursor: pointer; font-weight: 600; list-style: none; position: relative; padding-right: 28px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 0; color: var(--primary); font-size: 1.3rem; line-height: 1.2; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 10px; color: var(--muted); font-size: .95rem; }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; }
.cta-final .store-badges { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: #2B1D17; color: #D9C7BE; padding: 48px 0 32px; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 12px; }
.site-footer a { color: #D9C7BE; text-decoration: none; font-size: .92rem; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.footer-brand img { width: 30px; height: 30px; border-radius: 7px; }
.site-footer .legal-line {
  border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 20px;
  font-size: .82rem; color: #A88F84; text-align: center;
}

/* ---------- Páginas legais ---------- */
.legal-page { max-width: 760px; margin: 0 auto; padding: 48px 20px 80px; }
.legal-page h1 { font-size: 1.7rem; margin-bottom: 6px; }
.legal-page .updated { color: var(--muted); font-size: .9rem; margin-bottom: 32px; }
.legal-page h2 { font-size: 1.12rem; margin: 1.8em 0 .5em; }
.legal-page p { margin-bottom: 1em; }
.legal-page a { color: var(--primary); }
.back-link { display: inline-block; margin-bottom: 24px; color: var(--primary); text-decoration: none; font-weight: 600; }
.back-link:hover { text-decoration: underline; }

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

/* ---------- Responsivo ---------- */
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-ctas, .store-badges { justify-content: center; }
  .phone-frame { margin-top: 20px; }
  .site-footer .cols { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; background: var(--bg); padding: 20px;
    border-bottom: 1px solid var(--line); gap: 16px;
  }
  .main-nav.open { display: flex; }
}
