/* ====== Base ====== */
:root{
  --bg: #07120d;
  --bg-soft: #0d1712;
  --panel: rgba(13, 24, 18, 0.78);
  --panel-strong: #101b15;
  --stroke: rgba(255,255,255,.08);
  --text: #f5fbf7;
  --muted: #b9c8be;
  --green: #7fe91b;
  --green-2: #27d34d;
  --green-dark: #0f7d2d;
  --shadow: 0 24px 60px rgba(0,0,0,.35);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(52, 224, 95, 0.18), transparent 25%),
    radial-gradient(circle at 85% 10%, rgba(127, 233, 27, 0.12), transparent 22%),
    linear-gradient(180deg, #08130d 0%, #07120d 100%);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(var(--container), calc(100% - 40px)); margin:0 auto}
.section{padding:96px 0; position:relative}
.section-dark{
  background:linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.005));
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.section-head{max-width:850px; margin:0 0 42px}
.section-head.center{margin:0 auto 42px; text-align:center}
.section-head h2{font-size:clamp(2rem,4vw,3.4rem); line-height:1.08; margin:10px 0 14px}
.section-head p{color:var(--muted); font-size:1.05rem}
.eyebrow{
  margin:0;
  display:inline-flex;
  align-items:center;
  gap:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.77rem;
  color:#c4f5ce;
  font-weight:700;
}
.eyebrow::before{
  content:"";
  width:34px;height:1px;
  background:linear-gradient(90deg, transparent, var(--green), transparent);
  display:inline-block;
}

.bg-orb{
  position:fixed;
  width:440px; height:440px;
  border-radius:50%;
  filter:blur(80px);
  opacity:.14;
  pointer-events:none;
  z-index:-1;
}
.orb-1{top:-100px; left:-80px; background:#33e86a}
.orb-2{right:-120px; top:140px; background:#8ff322}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  transition:.22s ease;
  border:1px solid transparent;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  color:#07120d;
  background:linear-gradient(135deg, var(--green) 0%, #35ea6a 100%);
  box-shadow:0 14px 30px rgba(55, 234, 106, 0.22);
}
.btn-primary:hover{filter:brightness(1.03)}
.btn-outline{
  border-color:rgba(127,233,27,.45);
  color:#dfffe7;
  background:rgba(255,255,255,.03);
}
.btn-ghost{
  border-color:var(--stroke);
  color:#eaf6ee;
  background:rgba(255,255,255,.02);
}
.btn-lg{min-height:58px; padding:0 28px; font-size:1rem}

/* ====== Header ====== */
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(14px);
  background:rgba(7,18,13,.58);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand-logo{
  height:54px;
  width:auto;
}
.menu{
  display:flex;
  align-items:center;
  gap:22px;
}
.menu a{
  color:#e8f3eb;
  font-weight:600;
  font-size:.96rem;
}
.menu a:not(.btn):hover{color:#9ef135}

/* ====== Hero ====== */
.hero{padding:84px 0 48px}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:42px;
  align-items:center;
}
.hero-copy h1{
  margin:10px 0 18px;
  font-size:clamp(2.6rem, 6vw, 5rem);
  line-height:.98;
  letter-spacing:-.03em;
  max-width:12ch;
}
.hero-copy h1 span{
  color:#c7ffd6;
  background:linear-gradient(180deg, #e7ffee 0%, #9df53b 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.lead{
  max-width:62ch;
  color:var(--muted);
  font-size:1.12rem;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:28px 0 18px;
}
.hero-points{
  list-style:none;
  padding:0;
  margin:26px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:16px 22px;
  color:#d7e6db;
}
.hero-points li{
  position:relative;
  padding-left:18px;
}
.hero-points li::before{
  content:"";
  position:absolute;
  left:0; top:11px;
  width:8px; height:8px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 5px rgba(127,233,27,.12);
}
.hero-panel{display:flex; justify-content:flex-end}
.glass-card{
  width:min(100%, 480px);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.glass-top{
  display:flex;
  gap:8px;
  padding:18px 18px 10px;
}
.glass-top span{
  width:10px; height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.24);
}
.metric-list{padding:18px}
.metric{
  background:rgba(7,18,13,.54);
  border:1px solid rgba(255,255,255,.06);
  border-radius:20px;
  padding:20px;
}
.metric + .metric{margin-top:14px}
.metric strong{
  font-size:1.02rem;
  display:block;
  margin-bottom:6px;
}
.metric p{
  margin:0;
  color:var(--muted);
}

/* ====== Trust ====== */
.trust{padding:18px 0 8px}
.trust-bar{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.trust-bar span{
  text-align:center;
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:999px;
  background:rgba(255,255,255,.02);
  color:#d7e6db;
  font-size:.96rem;
}

/* ====== Cards / Benefits ====== */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.feature-card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.06);
  border-radius:24px;
  padding:26px;
  min-height:210px;
}
.feature-card h3{
  margin:0 0 10px;
  font-size:1.18rem;
}
.feature-card p{
  margin:0;
  color:var(--muted);
}

.two-col{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:42px;
  align-items:start;
}
.section-text{
  color:var(--muted);
  font-size:1.08rem;
  max-width:58ch;
}
.benefits-list{
  display:grid;
  gap:16px;
}
.benefit-item{
  display:grid;
  grid-template-columns:72px 1fr;
  gap:18px;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.05);
}
.benefit-item span{
  width:54px;height:54px;
  display:grid;place-items:center;
  border-radius:18px;
  font-weight:800;
  color:#07220f;
  background:linear-gradient(135deg, var(--green), #3cf06e);
}
.benefit-item strong{display:block; font-size:1.06rem; margin-bottom:4px}
.benefit-item p{margin:0; color:var(--muted)}

/* ====== Video ====== */
.video-wrap{margin-top:28px}
.video-placeholder{
  min-height:420px;
  border-radius:28px;
  border:1px dashed rgba(127,233,27,.4);
  background:
    linear-gradient(180deg, rgba(127,233,27,.05), rgba(255,255,255,.02)),
    rgba(255,255,255,.015);
  display:grid;
  place-items:center;
  text-align:center;
  padding:34px;
}
.video-placeholder strong{
  display:block;
  font-size:1.2rem;
  margin-bottom:8px;
}
.video-placeholder p{
  margin:0 0 14px;
  color:var(--muted);
}
.video-placeholder code{
  display:inline-block;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(0,0,0,.25);
  color:#d9ffe3;
  max-width:100%;
  overflow:auto;
}

/* ====== Pricing ====== */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.price-card{
  padding:28px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.07);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018));
  box-shadow:var(--shadow);
}
.price-card.featured{
  background:linear-gradient(180deg, rgba(127,233,27,.18), rgba(255,255,255,.03));
  border-color:rgba(127,233,27,.35);
  transform:translateY(-8px);
}
.plan-tag{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#d8ffe3;
  font-size:.84rem;
  font-weight:700;
}
.price-card h3{
  margin:18px 0 10px;
  font-size:1.5rem;
}
.price{
  font-size:2.6rem;
  line-height:1;
  margin:0 0 18px;
  font-weight:800;
  letter-spacing:-.04em;
}
.price-card ul{
  list-style:none;
  padding:0; margin:0;
}
.price-card li{
  color:var(--muted);
  padding:10px 0 10px 18px;
  position:relative;
  border-top:1px solid rgba(255,255,255,.05);
}
.price-card li::before{
  content:"";
  position:absolute;
  left:0; top:18px;
  width:8px; height:8px;
  border-radius:50%;
  background:var(--green);
}
.trial-banner{
  margin-top:28px;
  padding:18px 20px;
  border:1px solid rgba(127,233,27,.2);
  border-radius:20px;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  background:rgba(127,233,27,.07);
}
.trial-banner strong{color:#f3fff5}

/* ====== CTA ====== */
.section-cta{
  padding-top:84px;
  padding-bottom:84px;
}
.cta-box{
  padding:34px;
  border-radius:30px;
  background:
    linear-gradient(135deg, rgba(127,233,27,.16), rgba(39,211,77,.10)),
    rgba(255,255,255,.03);
  border:1px solid rgba(127,233,27,.2);
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:26px;
  align-items:center;
}
.cta-box h2{
  font-size:clamp(2rem, 4vw, 3.3rem);
  line-height:1.02;
  margin:10px 0 10px;
}
.cta-box p{margin:0; color:#dcecdf}
.cta-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-start;
}
.cta-actions small{color:#d6e7da}

/* ====== FAQ ====== */
.faq-list{
  display:grid;
  gap:14px;
}
.faq-list details{
  border:1px solid rgba(255,255,255,.07);
  border-radius:20px;
  background:rgba(255,255,255,.02);
  padding:18px 20px;
}
.faq-list summary{
  cursor:pointer;
  font-weight:700;
  list-style:none;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list p{
  margin:12px 0 0;
  color:var(--muted);
}

/* ====== Footer ====== */
.site-footer{
  padding-top:54px;
  border-top:1px solid rgba(255,255,255,.05);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .7fr 1fr;
  gap:30px;
  padding-bottom:24px;
}
.footer-logo{
  height:56px;
  width:auto;
  margin-bottom:12px;
}
.site-footer p,
.site-footer li,
.site-footer a{color:#c1d0c6}
.site-footer h3{
  margin:4px 0 12px;
  font-size:1rem;
}
.site-footer ul{
  list-style:none;
  padding:0; margin:0;
  display:grid; gap:8px;
}
.footer-bottom{
  padding:18px 0 30px;
  border-top:1px solid rgba(255,255,255,.04);
  color:#90a796;
}

/* ====== Responsive ====== */
@media (max-width: 1100px){
  .hero-grid,
  .two-col,
  .cta-box,
  .footer-grid,
  .cards-grid,
  .pricing-grid{
    grid-template-columns:1fr;
  }

  .hero-copy h1{max-width:14ch}
  .hero-panel{justify-content:flex-start}
  .trust-bar{grid-template-columns:1fr}
  .price-card.featured{transform:none}
}

@media (max-width: 760px){
  .menu{
    gap:14px;
    flex-wrap:wrap;
    justify-content:flex-end;
  }
  .menu a:not(.btn){display:none}
  .brand-logo{height:48px}
  .section{padding:74px 0}
  .hero{padding-top:58px}
  .hero-points{display:grid; gap:12px}
  .cta-actions{align-items:stretch}
  .btn, .btn-lg{width:100%}
}

#video .video-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  padding: 0;
}

#video .video-thumb-link {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

#video .video-thumb {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#video .video-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

#video .section-head.center,
#video .container {
  text-align: center;
}

/* ====== Screenshot do software ====== */
.software-shot-wrap{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 18px auto 8px;
  padding: 0;
  text-align: center;
}

.software-shot{
  display: block;
  width: 85%;
  max-width: 840px;
  height: auto;
  margin: 0 auto;
  border-radius: 22px;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.software-shot:hover{
  transform: translateY(-4px);
  box-shadow:
    0 38px 85px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

@media (max-width: 760px){
  .software-shot-wrap{
    margin: 20px auto 10px;
    padding: 0 18px;
  }

  .software-shot{
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
  }
}

/* ====== Botoes Download ====== */

.cta-actions-download {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
}

.download-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.download-action-row .btn {
  min-height: 56px;
}

.download-alert-box {
  width: 100%;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(123, 255, 53, 0.14);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.download-alert-box p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.download-alert-box small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

@media (max-width: 980px) {
  .download-action-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .download-action-row .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.download-trust-strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:6px 0 6px 0;
}

.download-trust-strip span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(120,255,60,0.08);
  border:1px solid rgba(120,255,60,0.18);
  font-size:14px;
  font-weight:600;
  color:#dfffd2;
}