:root{
  --bg:#070A12;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.10);
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.75);
  --brand:#21D07A;
  --brand2:#35A7FF;
  --accent:#FFC857;
  --danger:#FF4D6D;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(53,167,255,.22), transparent 55%),
    radial-gradient(900px 650px at 80% 30%, rgba(33,208,122,.18), transparent 55%),
    radial-gradient(900px 700px at 50% 90%, rgba(255,200,87,.12), transparent 60%),
    linear-gradient(180deg, #060810 0%, #070A12 40%, #050611 100%);
  overflow-x:hidden;
}

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

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(7,10,18,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:800;
  letter-spacing:.2px;
}
.brand img{
  width:42px; height:42px; border-radius:12px;
  background: rgba(255,255,255,.08);
  padding:6px;
  box-shadow: 0 8px 26px rgba(0,0,0,.35);
}
.nav{
  display:flex; gap: 14px; align-items:center;
  flex-wrap:wrap;
}
.nav a{
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 650;
  font-size: 14px;
  border: 1px solid transparent;
}
.nav a:hover{ color: var(--text); border-color: rgba(255,255,255,.10); background: rgba(255,255,255,.04); }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-weight: 800;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); }
.btn-primary{
  background: linear-gradient(135deg, var(--brand) 0%, #19B86A 55%, #0E8E51 100%);
  border-color: rgba(33,208,122,.45);
  box-shadow: 0 14px 44px rgba(33,208,122,.18);
}
.btn-primary:hover{ background: linear-gradient(135deg, #29E386 0%, var(--brand) 55%, #12945B 100%); }
.btn-secondary{
  background: linear-gradient(135deg, rgba(53,167,255,.95) 0%, rgba(53,167,255,.55) 60%, rgba(53,167,255,.25) 100%);
  border-color: rgba(53,167,255,.45);
  box-shadow: 0 14px 44px rgba(53,167,255,.16);
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
}

.hero{
  padding: 56px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items:center;
}
.h-title{
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.04;
  margin: 10px 0 12px;
  letter-spacing: -0.6px;
}
.h-sub{
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--muted);
  margin: 0 0 18px;
}
.value{
  color: rgba(234,240,255,.85);
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
}
.checks{
  display:flex; flex-wrap:wrap; gap:10px;
  margin: 0 0 22px;
}
.check{
  display:flex; gap:10px; align-items:center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(234,240,255,.92);
  font-weight: 750;
}
.check svg{flex:0 0 auto}

.hero-card{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  position:relative;
}
.hero-card::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(600px 400px at 20% 20%, rgba(53,167,255,.25), transparent 50%),
              radial-gradient(600px 450px at 80% 50%, rgba(33,208,122,.18), transparent 55%);
  pointer-events:none;
}
.hero-card img{ width:100%; height: 320px; object-fit: cover; opacity:.9; }
.hero-card .overlay{
  position:absolute; inset:auto 16px 16px 16px;
  display:flex; flex-direction:column; gap:10px;
}
.kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.kpi{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
}
.kpi b{display:block; font-size:16px}
.kpi span{color: rgba(234,240,255,.72); font-size:12px}

.section{ padding: 56px 0; }
.section h2{
  font-size: clamp(22px, 2.3vw, 34px);
  margin: 0 0 10px;
  letter-spacing:-.3px;
}
.section p.lead{
  margin:0 0 22px;
  color: var(--muted);
  line-height:1.7;
}

.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cards{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
  overflow:hidden;
}
.card-inner{ padding: 18px; }
.card h3{ margin: 0 0 6px; font-size: 18px; }
.price{
  font-size: 34px;
  letter-spacing: -.6px;
  margin: 4px 0 10px;
}
.small{ color: var(--muted); font-size: 13px; line-height:1.6; }
.list{ display:grid; gap: 8px; margin: 12px 0 16px; padding:0; list-style:none;}
.list li{ display:flex; gap:10px; align-items:flex-start; color: rgba(234,240,255,.9); }
.list li .dot{ margin-top: 2px; width: 10px; height: 10px; border-radius: 3px; background: rgba(33,208,122,.9); box-shadow: 0 8px 18px rgba(33,208,122,.25); }
.example{
  display:flex; align-items:center; justify-content:space-between; gap: 12px;
  padding: 14px 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.example a{ color: rgba(234,240,255,.92); font-weight: 800; }
.example a:hover{ text-decoration: underline; }

.split{
  display:grid; grid-template-columns: .95fr 1.05fr; gap: 20px; align-items:center;
}
.panel{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel img{ width:100%; height: 360px; object-fit: cover; opacity:.92; }
.panel .p{ padding: 18px; }

.qbox{
  background: rgba(255,255,255,.05);
  border: 1px dashed rgba(255,255,255,.20);
  border-radius: var(--radius);
  padding: 16px 16px;
}
.qbox ul{ margin: 0; padding-left: 18px; color: rgba(234,240,255,.92); line-height:1.8; }
.qbox b{ color: var(--accent); }

.features{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.feature{
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.feature h4{ margin: 0 0 6px; font-size: 15px; }
.feature p{ margin: 0; color: var(--muted); line-height:1.6; font-size: 13px; }

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gitem{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
  cursor: zoom-in;
}
.gitem img{ width:100%; height: 210px; object-fit: cover; }
.gcap{ padding: 12px 12px; color: var(--muted); font-size: 13px; }

.examples{
  display:grid; gap: 10px;
}
.example-link{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.example-link a{ font-weight: 850; }
.example-link span{ color: var(--muted); font-size: 13px; }

.steps{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.step{
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.step b{ display:block; margin-bottom:6px; }
.step p{ margin:0; color: var(--muted); line-height:1.6; font-size: 13px; }

.cta{
  padding: 56px 0 70px;
}
.cta-box{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(53,167,255,.20), rgba(33,208,122,.14));
  box-shadow: 0 25px 80px rgba(0,0,0,.35);
  padding: 26px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:center;
}
.cta-box h2{ margin:0 0 10px; }
.cta-box p{ margin:0 0 18px; color: var(--muted); line-height:1.7; }
.cta-actions{ display:flex; flex-wrap:wrap; gap: 12px; }
.cta-right{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  padding: 16px;
}
.cta-right .big{ font-size: 28px; font-weight: 950; letter-spacing: -.5px; }
.cta-right .muted{ color: var(--muted); margin-top: 6px; line-height:1.6; }

.footer{
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}
.footer-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items:start;
}
.footer small{ color: var(--muted); line-height:1.7; }
.footer .right{ text-align:right; }

.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display:flex;
}
.whatsapp-float a{
  display:flex; align-items:center; gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(33,208,122,.95);
  color:#03120A;
  font-weight: 950;
  box-shadow: 0 18px 55px rgba(33,208,122,.25);
  border: 1px solid rgba(255,255,255,.22);
  transition: transform .15s ease;
}
.whatsapp-float a:hover{ transform: translateY(-2px); }
.whatsapp-float svg{ width:18px; height:18px; }

.modal{
  position:fixed; inset:0; z-index:200;
  display:none;
  align-items:center; justify-content:center;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
  padding: 18px;
}
.modal.open{ display:flex; }
.modal-content{
  max-width: 980px; width: 100%;
  border-radius: 20px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,12,22,.92);
  box-shadow: 0 30px 100px rgba(0,0,0,.55);
}
.modal-header{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.modal-header b{ font-size: 14px; color: rgba(234,240,255,.9); }
.modal-close{
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 10px;
  cursor:pointer;
  font-weight: 900;
}
.modal-body img{ width:100%; height:auto; }

.fade-up{ opacity:0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.show{ opacity:1; transform: translateY(0); }

.video{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
}
.video iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .features{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
  .cta-box{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer .right{ text-align:left; }
  .hero-card img{ height: 280px; }
  .panel img{ height: 280px; }
}
@media (max-width: 520px){
  .container{ width: min(var(--max), calc(100% - 28px)); }
  .kpis{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}