/* ===== Mira Perfeita — Landing page (8 Ball Pool) ===== */
:root {
  --felt-900: #04120d;
  --felt-800: #071e16;
  --felt-700: #0b2c20;
  --felt-600: #10402e;
  --neon: #2ff3c8;
  --neon-2: #7cf86a;
  --chalk: #eaf7f1;
  --muted: #8fb3a6;
  --gold: #ffcf5c;
  --line: rgba(47, 243, 200, 0.18);
}

* { box-sizing: border-box; }

.mp-root {
  margin: 0;
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(47, 243, 200, 0.13), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(124, 248, 106, 0.08), transparent 60%),
    var(--felt-900);
  color: var(--chalk);
  font-family: "Barlow", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

.mp-root h1, .mp-root h2, .mp-root h3, .mp-root .display {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.98;
  margin: 0;
  text-transform: uppercase;
}

.mp-root p { margin: 0; }
.mp-root img { max-width: 100%; display: block; }

.wrap { width: min(1140px, 92vw); margin: 0 auto; }
.center { text-align: center; }
.muted { color: var(--muted); }
.neon { color: var(--neon); }
.gold { color: var(--gold); }

/* ---------- top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(4, 18, 13, 0.72);
  border-bottom: 1px solid var(--line);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-family: "Bebas Neue", sans-serif; font-size: 24px; letter-spacing: .06em; }
.logo .dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fff, #111 62%);
  box-shadow: 0 0 0 2px rgba(47,243,200,.35), 0 0 22px rgba(47,243,200,.35);
  display: grid; place-items: center; font-size: 13px; color: #fff;
}
.topbar .price-chip { font-size: 14px; color: var(--muted); }
.topbar .price-chip b { color: var(--chalk); }

/* ---------- buttons ---------- */
.btn {
  --glow: rgba(47, 243, 200, .45);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px; border: 0; cursor: pointer;
  font-family: "Bebas Neue", sans-serif; font-size: 22px; letter-spacing: .06em;
  color: #04150f; text-decoration: none;
  background: linear-gradient(120deg, var(--neon), var(--neon-2));
  box-shadow: 0 10px 34px -8px var(--glow), inset 0 1px 0 rgba(255,255,255,.45);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-120%);
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  animation: sheen 3.6s ease-in-out infinite;
}
.btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 18px 46px -10px var(--glow); }
.btn.small { padding: 11px 20px; font-size: 17px; }
.btn.ghost {
  background: transparent; color: var(--chalk);
  border: 1px solid var(--line); box-shadow: none;
}
.btn.ghost::after { display: none; }
@keyframes sheen { 0%, 60% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }

/* ---------- hero ---------- */
.hero { position: relative; padding: 80px 0 90px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--neon);
  border: 1px solid var(--line); background: rgba(47,243,200,.07);
}
.badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--neon);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(47,243,200,.6);} 50% { box-shadow: 0 0 0 7px rgba(47,243,200,0);} }

.hero h1 { font-size: clamp(46px, 7.2vw, 88px); margin: 20px 0 0; }
.hero h1 em { font-style: normal; color: var(--neon); text-shadow: 0 0 32px rgba(47,243,200,.45); }
.hero .sub { margin-top: 18px; font-size: 19px; color: #cfe6dc; max-width: 56ch; }

.price-row { display: flex; align-items: flex-end; gap: 14px; margin: 26px 0 10px; flex-wrap: wrap; }
.price-old { color: var(--muted); text-decoration: line-through; font-size: 20px; }
.price-now { font-family: "Bebas Neue", sans-serif; font-size: 62px; color: var(--gold); line-height: .9; }
.price-now small { font-size: 22px; }
.price-tag { font-size: 14px; color: var(--muted); padding-bottom: 8px; }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }
.trust { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; font-size: 14px; color: var(--muted); }
.trust span { display: inline-flex; align-items: center; gap: 7px; }

.hero-media { position: relative; }
.hero-media img {
  border-radius: 20px; border: 1px solid var(--line);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.9), 0 0 60px -20px rgba(47,243,200,.35);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-14px);} }
.reticle {
  position: absolute; width: 120px; height: 120px; border-radius: 50%;
  border: 2px solid rgba(47,243,200,.75); left: 8%; bottom: 12%;
  animation: scan 5s ease-in-out infinite;
}
.reticle::before, .reticle::after {
  content: ""; position: absolute; background: rgba(47,243,200,.75);
}
.reticle::before { left: 50%; top: -16px; bottom: -16px; width: 1px; }
.reticle::after { top: 50%; left: -16px; right: -16px; height: 1px; }
@keyframes scan { 0%,100% { transform: translate(0,0) scale(1); opacity:.9 } 50% { transform: translate(26px,-22px) scale(1.08); opacity:1 } }

.float-ball {
  position: absolute; border-radius: 50%; display: grid; place-items: center;
  font-family: "Bebas Neue", sans-serif; color: #10110f; font-size: 15px;
  box-shadow: inset -6px -8px 14px rgba(0,0,0,.45), 0 12px 24px rgba(0,0,0,.5);
}
.float-ball i { background: #fff; border-radius: 50%; width: 60%; height: 60%; display: grid; place-items: center; font-style: normal; }
.fb1 { width: 58px; height: 58px; background: radial-gradient(circle at 32% 28%, #4a4a4a, #0a0a0a 70%); top: -18px; right: 6%; animation: floaty 5.5s ease-in-out infinite; }
.fb1 i { color: #111; }
.fb2 { width: 44px; height: 44px; background: radial-gradient(circle at 32% 28%, #ffe08a, #d99a10 70%); bottom: -16px; right: 22%; animation: floaty 6.5s ease-in-out .6s infinite; }
.fb3 { width: 36px; height: 36px; background: radial-gradient(circle at 32% 28%, #ff8f8f, #b81f2c 70%); top: 34%; left: -18px; animation: floaty 8s ease-in-out .3s infinite; }

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(47,243,200,.05); overflow: hidden; padding: 12px 0;
}
.marquee-track { display: flex; gap: 42px; width: max-content; animation: slide 26s linear infinite; }
.marquee-track span { font-family: "Bebas Neue", sans-serif; letter-spacing: .12em; font-size: 18px; color: var(--muted); white-space: nowrap; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section { padding: 88px 0; }
.eyebrow { font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--neon); }
h2 { font-size: clamp(34px, 4.6vw, 56px); margin-top: 10px !important; }
.lead { color: var(--muted); margin-top: 14px !important; max-width: 62ch; }
.center .lead { margin-left: auto; margin-right: auto; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.card {
  background: linear-gradient(180deg, rgba(16,64,46,.55), rgba(7,30,22,.5));
  border: 1px solid var(--line); border-radius: 18px; padding: 26px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(47,243,200,.45); box-shadow: 0 26px 60px -30px rgba(47,243,200,.5); }
.card .ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(47,243,200,.12); border: 1px solid var(--line); font-size: 22px; margin-bottom: 16px;
}
.card h3 { font-size: 26px; }
.card p { color: var(--muted); margin-top: 8px !important; font-size: 15.5px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split img { border-radius: 20px; border: 1px solid var(--line); box-shadow: 0 30px 70px -34px rgba(0,0,0,.9); }
.checklist { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: #cfe6dc; }
.checklist li b { color: var(--chalk); }
.tick {
  flex: none; width: 22px; height: 22px; border-radius: 50%; margin-top: 3px;
  background: rgba(47,243,200,.14); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--neon); font-size: 12px;
}

/* ---------- modules ---------- */
.modules { display: grid; gap: 14px; margin-top: 42px; }
.module {
  display: grid; grid-template-columns: 62px 1fr auto; gap: 18px; align-items: center;
  border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px;
  background: rgba(7,30,22,.55); transition: border-color .2s, background .2s;
}
.module:hover { border-color: rgba(47,243,200,.45); background: rgba(16,64,46,.5); }
.module .num { font-family: "Bebas Neue", sans-serif; font-size: 32px; color: var(--neon); }
.module h3 { font-size: 23px; }
.module p { color: var(--muted); font-size: 15px; margin-top: 3px !important; }
.module .tag { font-size: 13px; color: var(--muted); white-space: nowrap; }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.quote { border: 1px solid var(--line); border-radius: 18px; padding: 24px; background: rgba(7,30,22,.5); }
.stars { color: var(--gold); letter-spacing: 2px; }
.quote p { margin-top: 12px !important; color: #cfe6dc; font-size: 15.5px; }
.who { display: flex; align-items: center; gap: 11px; margin-top: 18px; }
.who .av {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--neon), var(--neon-2)); color: #04150f;
  font-family: "Bebas Neue", sans-serif; font-size: 17px;
}
.who small { color: var(--muted); display: block; font-size: 13px; }

/* ---------- pricing ---------- */
.pricing { position: relative; }
.pricebox {
  max-width: 620px; margin: 44px auto 0; border-radius: 26px; padding: 42px;
  border: 1px solid rgba(47,243,200,.4);
  background: linear-gradient(180deg, rgba(16,64,46,.8), rgba(4,18,13,.9));
  box-shadow: 0 40px 100px -40px rgba(47,243,200,.5);
  position: relative; overflow: hidden;
}
.pricebox::before {
  content: ""; position: absolute; inset: -60% -20% auto; height: 260px;
  background: radial-gradient(closest-side, rgba(47,243,200,.22), transparent);
  animation: floaty 8s ease-in-out infinite;
}
.pricebox .ribbon {
  position: absolute; top: 20px; right: -46px; transform: rotate(38deg);
  background: var(--gold); color: #241a00; font-family: "Bebas Neue", sans-serif;
  padding: 6px 58px; font-size: 15px; letter-spacing: .1em;
}
.pricebox .big { font-family: "Bebas Neue", sans-serif; font-size: 92px; color: var(--gold); line-height: .85; }
.pricebox .big small { font-size: 28px; }
.pricebox ul { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 11px; text-align: left; }
.pricebox ul li { display: flex; gap: 11px; align-items: flex-start; color: #cfe6dc; font-size: 15.5px; }
.guarantee { display: flex; gap: 14px; align-items: center; justify-content: center; margin-top: 18px; color: var(--muted); font-size: 14px; }

/* ---------- faq ---------- */
.faq { max-width: 780px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px;
  background: rgba(7,30,22,.5); transition: border-color .2s;
}
.faq details[open] { border-color: rgba(47,243,200,.4); }
.faq summary {
  cursor: pointer; list-style: none; font-family: "Bebas Neue", sans-serif;
  font-size: 21px; letter-spacing: .02em; display: flex; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--neon); }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); margin-top: 12px !important; font-size: 15.5px; }

/* ---------- final cta / footer ---------- */
.final {
  background:
    linear-gradient(rgba(4,18,13,.86), rgba(4,18,13,.94)),
    url("./assets/hero-table.jpg") center/cover;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-align: center;
}
footer { padding: 40px 0 60px; color: var(--muted); font-size: 13.5px; text-align: center; }
footer .disc { max-width: 70ch; margin: 14px auto 0; opacity: .8; }

/* sticky mobile bar */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(4,18,13,.94); border-top: 1px solid var(--line);
  backdrop-filter: blur(12px); align-items: center; justify-content: space-between; gap: 12px;
}
.stickybar .p { font-family: "Bebas Neue", sans-serif; font-size: 26px; color: var(--gold); line-height: 1; }
.stickybar .p small { display: block; font-family: "Barlow", sans-serif; font-size: 11px; color: var(--muted); letter-spacing: .06em; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 36px; }
  .cards, .quotes { grid-template-columns: 1fr; }
  .module { grid-template-columns: 46px 1fr; }
  .module .tag { display: none; }
  .topbar .btn { display: none; }
  .stickybar { display: flex; }
  .mp-root { padding-bottom: 76px; }
  section { padding: 64px 0; }
  .pricebox { padding: 30px 22px; }
}
