:root{
  --bg:#050814;
  --card: rgba(255,255,255,.08);
  --card2: rgba(255,255,255,.10);
  --border: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.58);
  --primary:#22c55e;
  --primary2:#16a34a;
  --shadow: 0 18px 46px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 22px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(800px 520px at 30% 10%, rgba(34,197,94,.14), transparent 60%),
              radial-gradient(720px 460px at 75% 15%, rgba(59,130,246,.10), transparent 60%),
              linear-gradient(180deg, #020617, #071028);
}

a{ color: inherit; text-decoration:none; }
.container{ width: min(var(--max), calc(100% - 40px)); margin:0 auto; }

.topbar{
  position: sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(2,6,23,.60);
  border-bottom: 1px solid var(--border);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 0;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand__logo{
  width:42px; height:42px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.26);
  font-weight: 900;
}
.brand__name{ font-weight: 900; }
.brand__tag{ margin-top: 2px; font-size: 12px; color: var(--muted2); }

.topnav{ display:flex; align-items:center; gap:14px; color: var(--muted); font-weight: 800; }
.topnav a:hover{ color: var(--text); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 900;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }
.btn--full{ width:100%; }
.btn--primary{
  background: linear-gradient(180deg, var(--primary), var(--primary2));
  border-color: rgba(34,197,94,.34);
  color: rgba(0,0,0,.90);
}
.btn--ghost{ background: rgba(255,255,255,.06); }
.btn--mini{
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
}

.hero{
  position: relative;
  min-height: 78vh;
  padding: 54px 0 34px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}
.hero__overlay{
  position:absolute; inset:0;
  background: radial-gradient(900px 500px at 25% 10%, rgba(0,0,0,.25), rgba(0,0,0,.65)),
              linear-gradient(180deg, rgba(2,6,23,.45), rgba(2,6,23,.85));
}
.hero__grid{
  position: relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .topnav{ display:none; }
}

.kicker{
  display:inline-block;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(34,197,94,.95);
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.20);
}
.kicker--dark{
  color: rgba(0,0,0,.82);
  background: rgba(34,197,94,.78);
  border-color: rgba(34,197,94,.20);
}

.h1{
  font-size: clamp(32px, 3.4vw, 54px);
  line-height: 1.05;
  margin: 14px 0 12px;
}
.lead{
  margin:0 0 14px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.80);
  max-width: 60ch;
}

.hero__points{
  display:grid;
  gap: 8px;
  margin: 14px 0 16px;
  max-width: 54ch;
}
.point{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  font-weight: 800;
}

.hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 12px;
}

.trust{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.trust__pill{
  font-size: 12px;
  font-weight: 900;
  color: rgba(255,255,255,.78);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

.vslcard{
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.vslcard__head{
  padding: 16px 16px 10px;
}
.vslcard__title{ font-weight: 1000; font-size: 15px; }
.vslcard__sub{ margin-top: 6px; color: rgba(255,255,255,.70); font-size: 13px; }

.video{
  aspect-ratio: 16 / 9;
  width: 100%;
  background: rgba(0,0,0,.35);
}
.video iframe, .video video{
  width: 100%;
  height: 100%;
  display:block;
}
.vslcard__cta{
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.micro{ margin-top: 10px; color: rgba(255,255,255,.65); font-size: 12.5px; line-height:1.45; }

.section{ padding: 56px 0; }
.section--soft{
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.section__head{ max-width: 86ch; margin: 0 auto 18px; }
.section__head.center{ text-align:center; }

.h2{ font-size: clamp(24px, 2.3vw, 36px); margin:0 0 10px; }
.sub{ margin:0; color: var(--muted); line-height:1.6; }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px){ .grid3{ grid-template-columns: 1fr; } }

.tile{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding: 16px;
}
.tile__num{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 1000;
  margin-bottom: 10px;
}
.tile__title{ font-weight: 1000; margin-bottom: 6px; }
.tile__text{ color: var(--muted); line-height: 1.6; }

.offer{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
  align-items:start;
  margin-top: 16px;
}
@media (max-width: 980px){ .offer{ grid-template-columns: 1fr; } }

.offer__left{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
}
.offer__badge{
  display:inline-block;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing:.10em;
  text-transform: uppercase;
  font-weight: 1000;
  color: rgba(0,0,0,.85);
  background: rgba(34,197,94,.86);
}
.offer__title{ margin-top: 12px; font-size: 20px; font-weight: 1000; }
.offer__subtitle{ margin-top: 6px; color: var(--muted2); font-weight: 800; }

.stack{ display:grid; gap: 12px; margin-top: 14px; }
.stack__item{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 14px;
}
.stack__head{ display:flex; align-items:center; gap: 10px; margin-bottom: 10px; }
.tag{
  font-size: 12px;
  font-weight: 1000;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(34,197,94,.95);
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.20);
}
.tag--strong{
  color: rgba(0,0,0,.84);
  background: rgba(34,197,94,.80);
}
.stack__name{ font-weight: 1000; }

.list{ margin:0; padding-left: 18px; color: var(--muted); line-height:1.65; }
.list--tight{ line-height: 1.55; }

.offer__right{ display:grid; gap: 12px; }
.pricebox{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: var(--shadow);
}
.pricebox__label{ color: var(--muted2); font-size: 12px; font-weight: 900; }
.pricebox__value{ font-size: 32px; font-weight: 1100; margin-top: 6px; }
.pricebox__sub{ margin-top: 6px; color: var(--muted); font-weight: 800; }
.mini{ margin-top: 10px; color: var(--muted2); font-size: 12.5px; line-height:1.5; }

.side{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding: 16px;
}
.side__title{ font-weight: 1000; margin-bottom: 10px; }

.faq{
  max-width: 860px;
  margin: 0 auto;
  display:grid;
  gap: 10px;
}
.faq__q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-weight: 1000;
  cursor:pointer;
}
.faq__icon{
  width: 30px; height: 30px;
  border-radius: 10px;
  display:grid; place-items:center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  font-weight: 1100;
}
.faq__a{
  padding: 2px 14px 12px;
  color: var(--muted);
  line-height: 1.65;
}

.footer{
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.12);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__brand{ font-weight: 1000; }
.footer__small{ margin-top: 6px; color: var(--muted2); font-size: 12px; }
.footer__links{ display:flex; gap: 14px; color: var(--muted); font-weight: 900; }
.footer__links a:hover{ color: var(--text); }

/* Depoimentos */
.testimonials{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
@media (max-width: 980px){
  .testimonials{ grid-template-columns: 1fr; }
}

.tcard{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: var(--shadow);
}

.tcard__quote{
  color: rgba(255,255,255,.84);
  line-height: 1.65;
  font-weight: 900;
}

.tcard__meta{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.tcard__name{
  font-weight: 1000;
}
.tcard__role{
  color: rgba(255,255,255,.60);
  font-size: 12px;
  font-weight: 900;
}

/* Toast compras recentes */
.toast{
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 9999;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(2,6,23,.78);
  box-shadow: 0 18px 46px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  max-width: 340px;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.toast.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.toast__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.95);
  box-shadow: 0 0 0 6px rgba(34,197,94,.18);
}

.toast__text{
  color: rgba(255,255,255,.86);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}
.vslproof{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 980px){
  .vslproof{ grid-template-columns: 1fr; }
}
.vslproof img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
}
.shot{
  margin-top: 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.shot img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display:block;
}
@media (max-width: 980px){
  .shot img{ height: 220px; }
}
