/* ===== Daniel Digital Pro — Store Styles ===== */
:root {
  --bg: #0a0e17;
  --bg-2: #0f1521;
  --card: #131a28;
  --card-2: #1a2333;
  --line: #232d40;
  --text: #e8edf5;
  --muted: #8a97ad;
  --brand: #3b82f6;
  --brand-2: #2563eb;
  --accent: #f59e0b;
  --green: #10b981;
  --radius: 16px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  --maxw: 1200px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
.center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 10px; padding: 13px 22px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35); }
.btn-primary:hover { box-shadow: 0 8px 28px rgba(59, 130, 246, 0.5); }
.btn-ghost { background: var(--card-2); color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--line); }
.btn-accent { background: linear-gradient(135deg, #f59e0b, #ea580c); color: #fff; box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-block { width: 100%; }

/* ===== Header ===== */
.announce {
  background: linear-gradient(90deg, #f59e0b, #ea580c);
  color: #1a1206; text-align: center; font-size: 13px; font-weight: 600;
  padding: 9px 16px; letter-spacing: 0.2px;
}
.announce b { font-weight: 800; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55); background: rgba(10, 14, 23, 0.95); }
.header-inner { display: flex; align-items: center; gap: 32px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 700; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; overflow: hidden;
  background: linear-gradient(135deg, var(--brand), #7c3aed);
  display: grid; place-items: center; font-weight: 800; color: #fff;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.45);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.brand-name b { color: var(--brand); font-weight: 700; }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a { color: var(--muted); font-weight: 500; font-size: 15px; transition: color 0.2s; }
.nav a:hover, .nav a.active { color: var(--text); }
.cart-link { position: relative; color: var(--text); display: grid; place-items: center; padding: 8px; }
.cart-count {
  position: absolute; top: -2px; right: -4px;
  background: var(--accent); color: #111; font-size: 11px; font-weight: 800;
  min-width: 18px; height: 18px; border-radius: 9px;
  display: none; align-items: center; justify-content: center; padding: 0 5px;
}
.header-actions { display: flex; align-items: center; gap: 6px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Focus visível para navegação por teclado */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 6px;
}

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: 90px 0 70px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 70% 20%, rgba(59, 130, 246, 0.18), transparent 60%),
              radial-gradient(50% 50% at 20% 80%, rgba(124, 58, 237, 0.15), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59, 130, 246, 0.12); color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.hero h1 { font-size: 52px; line-height: 1.08; font-weight: 800; letter-spacing: -1px; }
.hero h1 .grad { background: linear-gradient(135deg, #60a5fa, #a78bfa); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 18px; color: var(--muted); margin: 20px 0 32px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; }
.hero-stats .st b { font-size: 26px; font-weight: 800; display: block; }
.hero-stats .st span { font-size: 13px; color: var(--muted); }
.hero-visual { position: relative; height: 380px; }
.float-card {
  position: absolute; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow);
  width: 220px;
}
.float-card .fc-icon { font-size: 32px; margin-bottom: 10px; }
.float-card h4 { font-size: 15px; }
.float-card .fc-price { color: var(--green); font-weight: 700; margin-top: 6px; }
.fc-1 { top: 0; left: 0; z-index: 1; animation: float 6s ease-in-out infinite; }
.fc-2 { top: 130px; right: 0; z-index: 2; animation: float 6s ease-in-out infinite 1.5s; }
.fc-3 { bottom: 0; left: 6%; z-index: 3; animation: float 6s ease-in-out infinite 3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ===== Trust bar ===== */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.trust-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; font-weight: 500; }
.trust-item .ti-icon { font-size: 20px; }

/* ===== Sections ===== */
.section { padding: 70px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head .kicker { color: var(--brand); font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.section-head h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.5px; margin: 10px 0; }
.section-head p { color: var(--muted); font-size: 17px; }

/* ===== Product grid ===== */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); border-color: #334463; box-shadow: var(--shadow); }
.card-media {
  position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, color-mix(in srgb, var(--accent) 30%, transparent), var(--card-2));
}
.card-icon { font-size: 64px; filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4)); z-index: 0; }
.card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform 0.35s ease; }
.card:hover .card-img { transform: scale(1.04); }
.card-badge, .card-discount { z-index: 2; }
.card-badge {
  position: absolute; top: 12px; left: 12px; background: var(--accent); color: #111;
  font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.5px;
}
.card-discount {
  position: absolute; top: 12px; right: 12px; background: #ef4444; color: #fff;
  font-size: 12px; font-weight: 800; padding: 4px 9px; border-radius: 8px;
}
.card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.card-cat { color: var(--brand); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.card-title { font-size: 18px; font-weight: 700; margin: 6px 0 8px; }
.card-title a:hover { color: var(--brand); }
.card-desc { color: var(--muted); font-size: 14px; flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; gap: 10px; }
.price { display: flex; flex-direction: column; }
.price-old { color: var(--muted); text-decoration: line-through; font-size: 13px; }
.price-now { color: var(--text); font-weight: 800; font-size: 21px; }

/* ===== Product detail ===== */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 50px 0; }
.pd-media {
  aspect-ratio: 1 / 1; border-radius: var(--radius); display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, color-mix(in srgb, var(--accent) 35%, transparent), var(--card-2));
  border: 1px solid var(--line); position: relative;
}
.pd-media .pd-icon { font-size: 140px; filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5)); z-index: 0; }
.pd-media .pd-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.pd-media .card-badge { z-index: 2; }
.pd-media .card-badge { top: 18px; left: 18px; font-size: 13px; }
.pd-cat { color: var(--brand); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; }
.pd h1 { font-size: 34px; font-weight: 800; margin: 8px 0 14px; letter-spacing: -0.5px; }
.pd-stars { color: #f59e0b; font-size: 16px; margin-bottom: 18px; }
.pd-stars span { color: var(--muted); margin-left: 8px; font-size: 14px; }
.pd-price { display: flex; align-items: baseline; gap: 14px; margin: 18px 0; }
.pd-price .now { font-size: 40px; font-weight: 800; }
.pd-price .old { color: var(--muted); text-decoration: line-through; font-size: 20px; }
.pd-price .off { background: rgba(16, 185, 129, 0.15); color: var(--green); font-weight: 700; font-size: 14px; padding: 4px 10px; border-radius: 8px; }
.pd-desc { color: var(--muted); font-size: 16px; margin-bottom: 24px; }
.pd-features { list-style: none; margin: 22px 0 28px; display: grid; gap: 12px; }
.pd-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.pd-features li::before { content: "✓"; color: var(--green); font-weight: 800; }
.pd-actions { display: flex; gap: 12px; align-items: center; }
.qty { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.qty button { background: var(--card-2); border: none; color: var(--text); width: 42px; height: 46px; font-size: 20px; cursor: pointer; }
.qty button:hover { background: var(--line); }
.qty input { width: 50px; height: 46px; text-align: center; background: var(--card); border: none; color: var(--text); font-size: 16px; font-weight: 700; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pd-guarantee { display: flex; align-items: center; gap: 10px; margin-top: 24px; padding: 16px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; font-size: 14px; }

/* ===== Cart ===== */
.page-head { padding: 40px 0 10px; }
.page-head h1 { font-size: 32px; font-weight: 800; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; padding: 20px 0 70px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-row { display: grid; grid-template-columns: 76px 1fr auto; gap: 16px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.cart-thumb { position: relative; width: 76px; height: 76px; border-radius: 10px; display: grid; place-items: center; font-size: 36px; overflow: hidden; background: radial-gradient(120% 120% at 50% 0%, color-mix(in srgb, var(--accent) 30%, transparent), var(--card-2)); }
.cart-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cart-info h4 { font-size: 16px; }
.cart-info .cat { color: var(--muted); font-size: 13px; }
.cart-info .rm { color: #ef4444; font-size: 13px; background: none; border: none; cursor: pointer; padding: 4px 0; margin-top: 6px; }
.cart-right { text-align: right; }
.cart-right .line-price { font-weight: 800; font-size: 18px; margin-bottom: 8px; }
.summary { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: sticky; top: 90px; }
.summary h3 { font-size: 18px; margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; color: var(--muted); }
.summary-total { display: flex; justify-content: space-between; font-size: 22px; font-weight: 800; color: var(--text); padding-top: 16px; border-top: 1px solid var(--line); margin-top: 8px; }
.empty { text-align: center; padding: 80px 0; }
.empty .em-icon { font-size: 72px; margin-bottom: 16px; }

/* ===== Checkout ===== */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 32px; padding: 20px 0 70px; align-items: start; }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-bottom: 20px; }
.form-card h3 { font-size: 18px; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.form-card .step-num { width: 26px; height: 26px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 14px; font-weight: 800; }
.form-card p.hint { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.field input, .field select {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 14px; color: var(--text); font-size: 15px; font-family: inherit; transition: border-color 0.2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--brand); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pay-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.pay-opt { border: 2px solid var(--line); border-radius: 12px; padding: 16px 12px; text-align: center; cursor: pointer; transition: all 0.2s; }
.pay-opt:hover { border-color: #334463; }
.pay-opt.active { border-color: var(--brand); background: rgba(59, 130, 246, 0.08); }
.pay-opt .pm-icon { font-size: 26px; margin-bottom: 6px; }
.pay-opt .pm-label { font-size: 13px; font-weight: 700; }
.pay-opt .pm-note { font-size: 11px; color: var(--muted); }
.order-item { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.order-item .oi-name { display: flex; align-items: center; gap: 10px; }
.order-item .oi-ic { font-size: 22px; }
.oi-thumb { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; flex: 0 0 auto; }
.order-item .oi-name { align-items: center; }
.dl-name .oi-thumb { width: 40px; height: 40px; }
.secure-note { display: flex; align-items: center; gap: 10px; justify-content: center; color: var(--muted); font-size: 13px; margin-top: 16px; }
.pix-box { text-align: center; padding: 10px 0; }
.pix-qr { width: 180px; height: 180px; margin: 0 auto 14px; background: #fff; border-radius: 12px; display: grid; place-items: center; }

/* ===== Success ===== */
.success { text-align: center; padding: 80px 0; max-width: 560px; margin: 0 auto; }
.success .s-check { width: 90px; height: 90px; border-radius: 50%; background: rgba(16, 185, 129, 0.15); color: var(--green); display: grid; place-items: center; font-size: 48px; margin: 0 auto 24px; }
.success h1 { font-size: 34px; font-weight: 800; margin-bottom: 12px; }
.order-box { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin: 28px 0; text-align: left; }
.dl-card { background: linear-gradient(135deg, rgba(16,185,129,0.10), rgba(59,130,246,0.08)); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin: 28px 0; text-align: left; }
.dl-card h3 { font-size: 18px; margin-bottom: 4px; }
.dl-card > p { margin-bottom: 16px; }
.dl-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; margin-bottom: 10px; transition: border-color 0.2s ease, transform 0.15s ease; }
.dl-item:hover { border-color: #2f6b4f; transform: translateY(-1px); }
.dl-item:last-child { margin-bottom: 0; }
.dl-name { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; }
.dl-btn { flex: 0 0 auto; background: var(--green); color: #06281d; font-weight: 800; font-size: 13px; padding: 9px 16px; border-radius: 9px; white-space: nowrap; }

/* ===== CTA band ===== */
.cta-band { position: relative; overflow: hidden; margin: 40px 0; border-radius: 24px; padding: 60px 40px; text-align: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(124, 58, 237, 0.15)); border: 1px solid var(--line); }
.cta-band h2 { font-size: 34px; font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: var(--muted); font-size: 17px; margin-bottom: 26px; }

/* ===== Testimonials ===== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.review .stars { color: #f59e0b; margin-bottom: 10px; }
.review p { font-size: 15px; margin-bottom: 16px; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), #7c3aed); display: grid; place-items: center; font-weight: 800; color: #fff; }
.review .who b { display: block; font-size: 14px; }
.review .who span { font-size: 12px; color: var(--muted); }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-top: 50px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 36px; }
.footer-grid h4 { font-size: 15px; margin-bottom: 14px; }
.footer-grid a { display: block; color: var(--muted); font-size: 14px; padding: 4px 0; transition: color 0.2s; }
.footer-grid a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; flex-wrap: wrap; gap: 10px; }

/* ===== Toast ===== */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--green); color: #06281d; font-weight: 700; padding: 14px 24px; border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4); opacity: 0; pointer-events: none; transition: all 0.3s ease; z-index: 100;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.breadcrumb { padding: 20px 0 0; color: var(--muted); font-size: 14px; }
.breadcrumb a:hover { color: var(--text); }

/* ===== FAQ ===== */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); font-family: inherit; font-size: 16px; font-weight: 600; padding: 20px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .chev { transition: transform 0.25s ease; color: var(--muted); flex: 0 0 auto; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* ===== WhatsApp flutuante ===== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45); transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ===== Hero cards com imagem real ===== */
.float-card { width: 210px; padding: 12px; }
.fc-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 10px; margin-bottom: 10px; display: block; }
.float-card h4 { font-size: 14px; }

/* ===== Product detail: confiança + pagamento + barra fixa mobile ===== */
.pd-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; }
.pd-trust span { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); font-weight: 500; }
.pd-pay { margin-top: 16px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.pay-chip { border: 1px solid var(--line); background: var(--card-2); border-radius: 7px; padding: 5px 10px; font-size: 12px; font-weight: 700; color: var(--text); }
.buybar { display: none; }

/* ===== Micro-polish ===== */
::selection { background: rgba(59, 130, 246, 0.35); color: #fff; }
html { scrollbar-color: #2a3548 var(--bg); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a3548; border-radius: 8px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #3a4760; }

/* ===== ✨ Efeitos "cool" ===== */
/* reveal on scroll (usa a propriedade translate p/ não conflitar com o transform do hover) */
.reveal { opacity: 0; translate: 0 28px; transition: opacity .7s cubic-bezier(.2,.7,.2,1), translate .7s cubic-bezier(.2,.7,.2,1), transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.reveal.in { opacity: 1; translate: 0 0; }

/* barra de progresso de rolagem */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100; background: linear-gradient(90deg, #3b82f6, #7c3aed, #f59e0b); box-shadow: 0 0 12px rgba(59,130,246,.7); transition: width .12s linear; }

/* aurora + spotlight no hero */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.aurora span { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .42; }
.aurora .a1 { width: 460px; height: 460px; background: #2563eb; top: -150px; left: -90px; animation: drift1 17s ease-in-out infinite; }
.aurora .a2 { width: 420px; height: 420px; background: #7c3aed; bottom: -170px; right: 6%; animation: drift2 21s ease-in-out infinite; }
.aurora .a3 { width: 320px; height: 320px; background: #06b6d4; top: 22%; right: -100px; animation: drift3 19s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(70px,44px) scale(1.08)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-56px,-34px) scale(1.1)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-46px,54px) scale(1.06)} }
.hero .spot { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0; transition: opacity .5s ease;
  background: radial-gradient(260px circle at var(--mx,50%) var(--my,40%), rgba(96,165,250,.18), transparent 62%); }
.hero:hover .spot { opacity: 1; }
.hero-inner { position: relative; z-index: 1; }

/* brilho que passa no card ao hover */
.card-media::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(120deg, transparent 32%, rgba(255,255,255,.16) 48%, transparent 62%);
  transform: translateX(-120%); transition: transform .75s ease; }
.card:hover .card-media::after { transform: translateX(120%); }

/* glow sutil no card ao hover */
.card:hover { box-shadow: 0 18px 50px rgba(0,0,0,.45), 0 0 0 1px color-mix(in srgb, var(--brand) 30%, transparent); }

/* confetti */
.confetti-canvas { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 120; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; translate: none !important; transition: none !important; }
  .aurora span, .fc-1, .fc-2, .fc-3 { animation: none !important; }
  .card-media::after { display: none; }
  .scroll-progress { display: none; }
}

/* ===== 💰 Estilo "alta conversão" (Hormozi) ===== */
:root { --gold: #fbbf24; --gold2: #f59e0b; }

/* pílula de urgência / prova */
.urg { display: inline-flex; align-items: center; gap: 8px; background: rgba(239,68,68,.12); color: #fca5a5; border: 1px solid rgba(239,68,68,.32); padding: 7px 15px; border-radius: 999px; font-weight: 700; font-size: 13px; }
.urg .dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; box-shadow: 0 0 0 0 rgba(239,68,68,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(239,68,68,.55)} 70%{box-shadow:0 0 0 8px rgba(239,68,68,0)} 100%{box-shadow:0 0 0 0 rgba(239,68,68,0)} }

/* botão de compra "money" */
.btn-buy { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #1a1206; font-weight: 800; font-size: 16px; letter-spacing: .3px; padding: 16px 30px; text-transform: uppercase; box-shadow: 0 10px 30px rgba(245,158,11,.4); }
.btn-buy:hover { box-shadow: 0 16px 44px rgba(245,158,11,.6); transform: translateY(-2px); }
.btn-buy.btn-lg { padding: 19px 34px; font-size: 17px; }

/* bento de resultados */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bento .b { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 22px; text-align: center; position: relative; overflow: hidden; }
.bento .b::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold2)); opacity: .8; }
.bento .b .num { font-size: 44px; font-weight: 900; line-height: 1; letter-spacing: -1px; background: linear-gradient(135deg, #fde68a, var(--gold2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bento .b .lbl { color: var(--muted); font-size: 14px; font-weight: 600; margin-top: 10px; }

/* value stack (ancoragem de preço) */
.vstack { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.vstack h3 { font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.vrow { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.vrow .vname { display: flex; align-items: flex-start; gap: 9px; }
.vrow .vname::before { content: "✓"; color: var(--green); font-weight: 800; }
.vrow .vval { color: var(--muted); white-space: nowrap; font-weight: 600; }
.vsum { display: flex; justify-content: space-between; padding: 14px 0 4px; font-size: 15px; color: var(--muted); }
.vsum .vsum-val { text-decoration: line-through; }
.vprice-wrap { text-align: center; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line); }
.vprice-wrap .vp-label { color: var(--muted); font-size: 14px; }
.vprice-wrap .vp { font-size: 46px; font-weight: 900; letter-spacing: -1.5px; margin: 2px 0; }
.vprice-wrap .vp small { font-size: 20px; font-weight: 700; color: var(--muted); }
.vsave { display: inline-block; background: rgba(16,185,129,.15); color: var(--green); font-weight: 800; font-size: 13px; padding: 5px 12px; border-radius: 8px; margin-top: 6px; }

/* selo de garantia forte */
.guarantee-band { display: flex; align-items: center; gap: 20px; background: linear-gradient(135deg, rgba(16,185,129,.10), rgba(59,130,246,.06)); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; }
.guarantee-band .g-badge { flex: 0 0 auto; width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; font-size: 40px; background: rgba(16,185,129,.14); border: 2px solid rgba(16,185,129,.4); }
.guarantee-band h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.guarantee-band p { color: var(--muted); font-size: 15px; }

/* selo de resultado em depoimento */
.review .result { display: inline-block; background: rgba(16,185,129,.14); color: var(--green); font-weight: 800; font-size: 13px; padding: 5px 11px; border-radius: 8px; margin-bottom: 12px; }

/* headline maior/mais forte */
.hero h1 { font-size: 56px; font-weight: 900; letter-spacing: -1.5px; }
.hero h1 .grad { background: linear-gradient(135deg, #fde68a, #f59e0b); -webkit-background-clip: text; background-clip: text; color: transparent; }

@media (max-width: 960px) { .bento { grid-template-columns: repeat(2, 1fr); } .guarantee-band { flex-direction: column; text-align: center; } }
@media (max-width: 620px) { .bento { grid-template-columns: 1fr 1fr; } .hero h1 { font-size: 34px; } .vprice-wrap .vp { font-size: 38px; } }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 40px; }
  .grid, .reviews { grid-template-columns: repeat(2, 1fr); }
  .pd { grid-template-columns: 1fr; }
  .pd-media { height: 320px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .summary { position: static; }
}
@media (max-width: 620px) {
  .hamburger { display: flex; }
  .nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0; margin-left: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px; box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 4px; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: none; }
  .grid, .reviews, .pay-methods { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .section-head h2 { font-size: 28px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .buybar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
    background: rgba(15, 21, 33, 0.97); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line); padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    align-items: center; gap: 12px; box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.45);
  }
  .buybar .bb-price { font-weight: 800; font-size: 18px; white-space: nowrap; }
  .buybar .btn { flex: 1; }
  body:has(.buybar) .wa-float { bottom: 84px; }
}
