:root{
  --bg: #0b0f14;
  --card: rgba(255,255,255,.06);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.58);
  --line: rgba(255,255,255,.12);
  --brand: #f2b84b;
  --brand2:#ff6a3d;
  --good: #6ee7b7;
  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;
  --max: 1140px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 15% 10%, rgba(242,184,75,.18), transparent 55%),
              radial-gradient(1000px 650px at 85% 25%, rgba(255,106,61,.16), transparent 60%),
              radial-gradient(900px 600px at 45% 95%, rgba(110,231,183,.09), transparent 60%),
              var(--bg);
  color: var(--text);
  line-height:1.45;
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--max), 92vw); margin:0 auto; }

/* top bar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.62);
  border-bottom: 1px solid var(--line);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight: 800;
  letter-spacing:.2px;
}
.logo{
  width:34px; height:34px; border-radius:12px;
  background: conic-gradient(from 210deg, var(--brand), var(--brand2), #8b5cf6, var(--brand));
  box-shadow: 0 8px 22px rgba(0,0,0,.45);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.nav{
  display:flex; gap:14px; align-items:center;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.nav a{ opacity:.9; padding:8px 10px; border-radius:12px; }
.nav a:hover{ background: rgba(255,255,255,.06); opacity:1; }
.nav .hide-sm{ display:inline-flex; }

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #10131a;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(242,184,75,.14), 0 12px 35px rgba(255,106,61,.12);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .14s ease, filter .14s ease;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
}
.cta:hover{ transform: translateY(-1px); filter:saturate(1.05); }
.cta:active{ transform: translateY(0px) scale(.99); }

.ghost{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  font-weight: 800;
  cursor:pointer;
  transition: background .14s ease, transform .14s ease;
  white-space:nowrap;
}
.ghost:hover{ background: rgba(255,255,255,.085); transform: translateY(-1px); }
.ghost:active{ transform: translateY(0px) scale(.99); }

/* hero */
.hero{ padding: 48px 0 22px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  width: fit-content;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--good);
  box-shadow: 0 0 0 6px rgba(110,231,183,.12);
}
h1{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.1vw, 48px);
  line-height: 1.06;
  letter-spacing:-.6px;
}
.grad{
  background: linear-gradient(135deg, #ffffff 10%, rgba(242,184,75,.95) 38%, rgba(255,106,61,.92) 74%, rgba(255,255,255,.9) 100%);
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
}
.lead{
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
  margin: 0 0 16px;
  max-width: 62ch;
}

.cta-wrapper{
  margin-top:24px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:nowrap;
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}
.hero-card{
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.stat-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 14px;
}
.stat b{
  display:block;
  font-size: 18px;
  letter-spacing:-.3px;
}
.stat span{
  display:block;
  margin-top: 6px;
  color: var(--muted2);
  font-weight: 650;
  font-size: 13px;
}
.checklist{
  display:grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style:none;
}
.checklist li{
  display:flex; gap:10px; align-items:flex-start;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}
.ic{
  width:22px; height:22px; border-radius: 9px;
  background: rgba(110,231,183,.14);
  border: 1px solid rgba(110,231,183,.28);
  display:grid; place-items:center;
  flex: 0 0 22px;
  margin-top: 1px;
}
.ic svg{ width:14px; height:14px; }

/* section */
section{ padding: 34px 0; }
.sec-title{
  font-size: clamp(20px, 2vw, 30px);
  margin: 0 0 10px;
  letter-spacing: -.4px;
}
.sec-sub{
  margin:0 0 18px;
  color: var(--muted);
  max-width: 80ch;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.feature{
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
}
.feature h3{
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing:-.2px;
}
.feature p{
  margin:0;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.panel{
  padding: 18px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  position:relative;
  overflow:hidden;
}
.panel::before{
  content:"";
  position:absolute;
  inset:-80px -120px auto auto;
  width:220px;
  height:220px;
  background: radial-gradient(circle at 35% 35%, rgba(242,184,75,.20), transparent 60%);
  transform: rotate(18deg);
}
.panel.yang::before{
  background: radial-gradient(circle at 35% 35%, rgba(255,106,61,.20), transparent 60%);
}
.tag{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing:.2px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  width: fit-content;
}
.tag .mini{ width:10px; height:10px; border-radius:999px; }
.yin .mini{ background: var(--brand); box-shadow: 0 0 0 6px rgba(242,184,75,.12); }
.yang .mini{ background: var(--brand2); box-shadow: 0 0 0 6px rgba(255,106,61,.12); }

.panel h3{ margin: 10px 0 8px; font-size: 18px; }
.bul{
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  font-weight: 650;
}
.bul li{ margin: 6px 0; }

/* timeline-like */
.how{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items:start;
}
.steps{
  display:grid;
  gap: 10px;
  margin-top: 6px;
}
.step{
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  display:flex; gap:12px;
  align-items:flex-start;
}
.num{
  width:34px; height:34px; border-radius: 14px;
  background: rgba(242,184,75,.16);
  border: 1px solid rgba(242,184,75,.25);
  display:grid; place-items:center;
  font-weight: 1000;
  color: #ffdca0;
  flex: 0 0 34px;
}
.step b{ display:block; margin-bottom:4px; }
.step span{ color: var(--muted); font-weight: 600; font-size: 14px; }

.aside{
  padding: 18px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
}
.aside h4{ margin:0 0 8px; font-size: 16px; }
.aside p{ margin:0; color: var(--muted); font-weight: 650; }

/* audience */
.aud{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.aud .box{
  padding: 18px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
}
.aud h3{ margin:0 0 8px; }
.k{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-top: 10px;
}
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

/* faq accordion */
.faq{ display:grid; gap: 10px; }
details{
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  padding: 12px 14px;
}
summary{
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  font-weight: 900;
}
summary::-webkit-details-marker{ display:none; }
.plus{
  width:28px; height:28px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  flex:0 0 28px;
  transition: transform .18s ease;
}
details[open] .plus{ transform: rotate(45deg); }
details p{
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
}

/* footer */
footer{
  padding: 28px 0 80px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.12);
}
.foot{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
  color: var(--muted2);
  font-weight: 650;
  font-size: 13px;
}

/* mobile sticky cta */
.sticky-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px;
  background: rgba(11,15,20,.68);
  border-top: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  display:none;
}
.sticky-cta .inner{
  width:min(var(--max), 92vw);
  margin:0 auto;
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:space-between;
}
.price{
  display:flex; flex-direction:column;
  gap: 2px;
}
.price b{ color: var(--text); font-size: 14px; }
.price span{ color: var(--muted2); font-size: 12px; }

/* hero media card */
.hero-media{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  min-height: 260px;
}
.hero-media::before{
  content:"";
  position:absolute;
  inset:-60px -80px auto auto;
  width:240px;
  height:240px;
  background: radial-gradient(circle at 30% 30%, rgba(242,184,75,.22), transparent 60%);
  transform: rotate(15deg);
  pointer-events:none;
}
.hero-media::after{
  content:"";
  position:absolute;
  inset:auto auto -90px -90px;
  width:260px;
  height:260px;
  background: radial-gradient(circle at 35% 35%, rgba(255,106,61,.18), transparent 60%);
  pointer-events:none;
}
.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.02);
}
.hero-media .caption{
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(11,15,20,.62);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  color: var(--text);
}
.hero-media .caption b{
  display:block;
  font-size: 14px;
  letter-spacing: -.2px;
}
.hero-media .caption span{
  display:block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

/* inline video under CTA */
.video-inline{
  margin-top: 14px;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.video-box{ position: relative; }
.video-inline video{
  width: 100%;
  display:block;
  background:#000;
  max-height: 320px;
  object-fit: cover;
}
.sound-btn{
  position:absolute;
  bottom:15px;
  left:15px;
  padding:8px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  font-weight:800;
  cursor:pointer;
  background: rgba(0,0,0,.55);
  color:#fff;
  backdrop-filter: blur(6px);
  transition: all .2s ease;
  z-index: 5;
}
.sound-btn:hover{ background: rgba(0,0,0,.80); }

.profile-photo{
  width: 86px;
  height: 86px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  flex: 0 0 86px;
}
.profile-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================
   PRICE BOX (AJUSTADO)
   - Parcelamento dominante
   - À vista visível e secundário
   - Âncora discreta
   ============================ */
.price-box{
  margin-bottom:18px;
  padding:24px 20px;
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(242,184,75,.14), rgba(255,106,61,.12));
  border: 1px solid rgba(255,255,255,.14);
  text-align:center;
}

/* preço antigo */
.old-price{
  text-decoration: line-through;
  color: var(--muted2);
  font-weight:800;
  font-size:12px;
  opacity:.6;
  margin-bottom:12px;
}

/* PARCELAMENTO (dominante) */
.current-price{
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight:1000;
  letter-spacing:-1px;
  line-height:1.05;
  margin: 0;
  color: var(--text);
  text-shadow: 0 12px 40px rgba(0,0,0,.35);
}

/* À vista (secundário, mas claro) */
.installments{
  margin-top:8px;
  font-size:15px;
  font-weight:800;
  color: var(--muted);
}

/* economia */
.economy{
  margin-top:10px;
  font-size:14px;
  font-weight:900;
  color:#6ee7b7;
}

/* urgência */
.urgency{
  margin-top:6px;
  font-size:13px;
  color:var(--muted2);
  font-weight:650;
}

/* detalhes finais */
.price-note{
  margin-top:12px;
  font-size:13px;
  color: var(--muted2);
  font-weight:650;
  opacity:.85;
}

/* responsive */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .how{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .aud{ grid-template-columns: 1fr; }
  .nav .hide-sm{ display:none; }

  /* mobile: video first in hero left column */
  .hero-grid{
    display:flex;
    flex-direction: column;
  }
  .hero-grid > div{
    display:flex;
    flex-direction: column;
  }
  .hero-grid > div .video-inline{
    order: -1;
    margin-top: 0;
    margin-bottom: 14px;
  }
}

@media (max-width: 720px){
  .sticky-cta{ display:block; }
  .topbar-inner{ padding: 12px 0; }
  .cta{ padding: 12px 12px; }
}

@media (max-width: 420px){
  .cta-wrapper{ gap:10px; }
  .cta-wrapper .cta,
  .cta-wrapper .ghost{
    flex: 1 1 160px;
    max-width: 100%;
    padding: 12px 14px;
    font-size: 13px;
    border-radius: 14px;
  }
}