:root{
  --bg: #0B0F0E;
  --bg2: #0F1513;
  --card: #0F1715;
  --text: #EAF3EF;
  --muted: rgba(234,243,239,.74);
  --muted2: rgba(234,243,239,.60);

  --green: #A5C313;
  --green2: #A5C313;
  --line: rgba(255,255,255,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.35);

  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 18% 0%, rgba(32,227,122,.18), transparent 60%),
              radial-gradient(900px 600px at 85% 10%, rgba(32,227,122,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.45;
}

a{ color: inherit; }
a:focus-visible,
button:focus-visible{
  outline: 2px solid rgba(32,227,122,.65);
  outline-offset: 3px;
  border-radius: 12px;
}

.skiplink{
  position:absolute;
  left:-999px;
  top: 12px;
  padding:10px 12px;
  background: rgba(11,15,14,.95);
  border:1px solid rgba(32,227,122,.35);
  border-radius: 12px;
  z-index: 999;
}
.skiplink:focus{ left: 12px; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.progress{
  position:fixed;
  top:0; left:0; right:0;
  height:3px;
  background:transparent;
  z-index:60;
}
.progress__bar{
  height:100%;
  width:0%;
  background:linear-gradient(90deg, var(--green), rgba(32,227,122,.6));
  box-shadow:0 0 18px rgba(32,227,122,.35);
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,14,.65);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
}
.brand__logo{

  height:38px;
  object-fit:contain;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.35));
}
.brand__text{ font-weight:600; letter-spacing:.3px; font-size:35px;font-family:"Comfortaa", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;}
.dot{ color: var(--green); }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav__link{
  color:var(--muted);
  text-decoration:none;
  font-weight:500;
  font-size:14px;
  transition:.2s ease;
}
.nav__link:hover{ color:var(--text); }
.nav__link--cta{
  padding:10px 14px;
  border:1px solid rgba(32,227,122,.35);
  border-radius:999px;
  color:var(--text);
  background: rgba(32,227,122,.08);
}

.navbtn{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.navbtn span{
  display:block;
  width:18px;
  height:2px;
  margin:5px auto;
  background: var(--text);
  opacity:.9;
  border-radius:2px;
}
.mobilemenu{
  display:none;
  border-top: 1px solid var(--line);
  padding:12px 20px 18px;
}
.mobilemenu__link{
  display:block;
  padding:10px 0;
  color:var(--muted);
  text-decoration:none;
  font-weight:500;
}
.mobilemenu__link--cta{
  margin-top:8px;
  padding:12px 14px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(32,227,122,.18), rgba(32,227,122,.06));
  border:1px solid rgba(32,227,122,.35);
  color:var(--text);
}

.hero{ position:relative; padding:64px 0 22px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:26px;
  align-items: start;
}
.hero__fade{
  position:absolute;
  left:0; right:0; bottom:-2px;
  height:90px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events:none;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(32,227,122,.24);
  background: rgba(32,227,122,.06);
  color:var(--muted);
  font-size:13px;
}
.pill__dot{
  width:9px; height:9px;
  border-radius:99px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(32,227,122,.55);
}

h1{
  margin:16px 0 14px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height:1.1;
  letter-spacing:-.5px;
}
.hl{
  color:var(--text);
  background: linear-gradient(90deg, rgba(32,227,122,.18), rgba(32,227,122,0));
  padding:0 .12em;
  border-radius:10px;
}
.subhead{
  margin:0 0 18px;
  font-size: 16px;
  color: var(--muted);
  max-width: 62ch;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius: 16px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #08110D;
  box-shadow: 0 18px 45px rgba(32,227,122,.24);
}
.btn--primary:hover{
  box-shadow: 0 22px 60px rgba(32,227,122,.30);
  transform: translateY(-1px);
}
.btn--ghost{
  background: rgba(255,255,255,.04);
  border-color: var(--line);
  color: var(--text);
}
.btn--ghost:hover{
  border-color: rgba(32,227,122,.25);
  background: rgba(32,227,122,.05);
}
.btn--full{ width:100%; }
.btn--sm{ padding:10px 14px; border-radius:14px; }
.btn__arrow{ font-size:16px; }

.microcopy{ margin:10px 0 0; color: var(--muted2); font-size:13px; }
.microcopy--center{ text-align:center; }

.trustrow{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; }
.trustrow__item{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size:13px;
}
.icon{ color: var(--green); }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card__head{ padding:18px 18px 0; }
.card__kicker{
  margin:0;
  color: var(--muted2);
  font-size: 12px;
  letter-spacing:.3px;
  text-transform: uppercase;
}
.card__title{ margin:6px 0 0; font-size: 20px; }
.card__foot{
  padding:16px 18px 18px;
  border-top: 1px solid var(--line);
}
.note{ margin:0 0 12px; color: var(--muted); }

.score{ padding: 14px 18px 18px; }
.score__ring{
  display:grid;
  place-items:center;
  position:relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 12px;
}
.score__ring svg{ width:100%; height:100%; transform: rotate(-90deg); }
.ring{ fill:none; stroke-width: 10; stroke-linecap: round; }
.ring--bg{ stroke: rgba(255,255,255,.12); }
.ring--fg{
  stroke: var(--green);
  stroke-dasharray: 302;
  stroke-dashoffset: 302;
  filter: drop-shadow(0 0 10px rgba(32,227,122,.35));
  transition: stroke-dashoffset .9s ease;
}
.score__num{ position:absolute; text-align:center; }
.score__num span{ font-size: 46px; font-weight: 800; letter-spacing:-1px; }
.score__num small{ display:block; margin-top:-4px; color: var(--muted2); font-weight:600; }

.score__list{ display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }
.chip{
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(32,227,122,.08);
  border: 1px solid rgba(32,227,122,.20);
  color: var(--muted);
  font-size: 13px;
}

.section{ padding: 70px 0; }
.section--alt{
  background: radial-gradient(900px 500px at 20% 0%, rgba(32,227,122,.11), transparent 55%),
              rgba(255,255,255,.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__header{ max-width: 820px; margin-bottom: 26px; }
.section__header h2{
  margin:0 0 10px;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing:-.3px;
}
.lead{ margin:0; color: var(--muted); font-size: 16px; }

.cards{ display:grid; grid-template-columns: repeat(4, 1fr); gap:14px; }
.mini{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  padding:18px;
}
.mini__icon{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(32,227,122,.10);
  border: 1px solid rgba(32,227,122,.18);
  color: var(--green);
  margin-bottom: 12px;
}
.mini h3{ margin:0 0 8px; font-size: 16px; }
.mini p{ margin:0; color: var(--muted); font-size: 14px; }

.deliver{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:start;
}
.checklist{
  list-style:none;
  padding:0;
  margin:0;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  padding:18px;
}
.checklist li{
  display:flex;
  gap:10px;
  padding:10px 8px;
  border-bottom:1px solid rgba(255,255,255,.06);
  color: var(--muted);
}
.checklist li:last-child{ border-bottom:none; }
.checklist li::before{ content:"✓"; color: var(--green); font-weight: 800; }
.checklist--compact li{ padding:8px 6px; }

.panel{
  border:1px solid rgba(32,227,122,.22);
  background: linear-gradient(180deg, rgba(32,227,122,.10), rgba(255,255,255,.02));
  border-radius: var(--radius2);
  padding: 18px;
}

.steps{ list-style:none; padding:0; margin:0; display:grid; gap:12px; }
.step{
  display:flex; gap:14px;
  padding:16px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.step__num{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(32,227,122,.10);
  border:1px solid rgba(32,227,122,.20);
  color: var(--green);
  font-weight: 900;
}
.step__body h3{ margin:0 0 4px; font-size: 16px; }
.step__body p{ margin:0; color: var(--muted); }

.twocol{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.col{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  padding:18px;
}
.good{ color: rgba(32,227,122,.92); margin:0 0 10px; }
.bad{ color: rgba(255,120,120,.92); margin:0 0 10px; }

.offer{ padding-top: 76px; }
.offer__grid{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; align-items:start; }
.pricing{
  border:1px solid rgba(32,227,122,.22);
  background: linear-gradient(180deg, rgba(32,227,122,.10), rgba(255,255,255,.02));
  border-radius: var(--radius2);
  padding: 22px;
  box-shadow: var(--shadow);
}
.pricing__tag{
  margin:0 0 10px;
  display:inline-block;
  padding:8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing:.4px;
}
.price{ display:flex; align-items:baseline; gap:8px; margin: 10px 0 14px; }
.price__currency{ color: var(--muted2); font-weight:700; }
.price__value{ font-size: 52px; font-weight: 900; letter-spacing:-1px; }
.price__suffix{ color: var(--muted2); font-weight:600; }
.tiny{ margin:12px 0 0; color: rgba(234,243,239,.65); font-size: 12px; line-height: 1.35; }

.risk{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  padding: 18px;
}
.risk__box{
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}

.faq{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  overflow:hidden;
}
.faq__item{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 18px;
  background: transparent;
  border:none;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
  text-align:left;
  font-family: inherit;
}
.faq__q{ font-weight:700; }
.faq__icon{
  width:32px; height:32px;
  display:grid; place-items:center;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.10);
  color: var(--green);
  font-size: 18px;
}
.faq__a{ padding: 0 18px 16px; color: var(--muted); }

.finalcta{
  margin-top: 18px;
  border:1px solid rgba(32,227,122,.22);
  background: linear-gradient(180deg, rgba(32,227,122,.10), rgba(255,255,255,.02));
  border-radius: var(--radius2);
  padding: 22px;
  text-align:center;
}

.footer{
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.12);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color: var(--muted2);
  font-size: 13px;
}
.footer__link{
  color: var(--muted2);
  text-decoration:none;
}
.footer__link:hover{ color: var(--text); }

.floatbar{
  position:fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 55;
  transform: translateY(140%);
  transition: transform .25s ease;
}
.floatbar.is-visible{ transform: translateY(0%); }
.floatbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(11,15,14,.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 55px rgba(0,0,0,.40);
}
.floatbar__text{ display:flex; flex-direction:column; line-height:1.2; }
.floatbar__text span{ color: var(--muted2); font-size: 12px; }

.reveal{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-in{ opacity:1; transform: translateY(0); }

@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr 1fr; }
  .deliver{ grid-template-columns: 1fr; }
  .offer__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .nav{ display:none; }
  .navbtn{ display:block; }
  .cards{ grid-template-columns: 1fr; }
  .twocol{ grid-template-columns: 1fr; }
  .hero{ padding-top: 42px; }
}

/* Melhor para SEO/UX: respeitar redução de movimento */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ transition:none; transform:none; opacity:1; }
  .btn{ transition:none; }
  .ring--fg{ transition:none; }
}
