:root{
  --bg:#070814;
  --text:#F5F6FF;
  --muted:rgba(245,246,255,.75);
  --glass:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.14);
  --grad:linear-gradient(90deg,#2aa4ff,#8b2bff);
  --wa:linear-gradient(90deg,#2ad07c,#8b2bff);
  --icon:#CDB7FF;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}
.wrap{max-width:1200px;margin:0 auto;padding:0 18px}

/* Background global */
.bg{
  position:fixed; inset:0;
  background:url("assets/bg.png") center/cover no-repeat fixed;
  z-index:-3;
}
.bg-dim{
  position:fixed; inset:0;
  background:linear-gradient(180deg, rgba(7,8,20,.20), rgba(7,8,20,.78));
  z-index:-2;
}

/* Header */
.header{
  position:sticky; top:0;
  z-index:20;
  background:rgba(11,13,20,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-inner{
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.menu{display:flex;gap:22px;align-items:center}
.menu a{
  color:rgba(245,246,255,.90);
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  letter-spacing:.10em;
}
.menu a:hover{opacity:.85}
.brand-link{display:flex;align-items:center}
.brand{width:52px;height:auto;filter:drop-shadow(0 10px 24px rgba(0,0,0,.55))}

/* Hero */
.main{padding-bottom:26px}
.hero{padding:44px 0 26px}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr 1.25fr;
  gap:26px;
  align-items:center;
}

/* Fix: sin marco, sin recorte */
.hero-left{
  position:relative;
  min-height:420px;
  border:none;
  background:transparent;
  box-shadow:none;
  overflow:visible;
  border-radius:0;
}
.girl{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:left bottom;
  filter:saturate(1.04) contrast(1.06);
}

.hero-right{
  padding:26px 26px 24px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
  box-shadow:0 18px 70px rgba(0,0,0,.55);
}
h1{
  margin:0 0 10px;
  font-size:46px;
  line-height:1.05;
  letter-spacing:-.02em;
  font-weight:800;
}
.sub{margin:0 0 16px;color:var(--muted);font-weight:600}
.bullets{list-style:none;padding:0;margin:0 0 18px;display:grid;gap:10px}
.bullets li{display:flex;gap:10px;align-items:center;color:rgba(245,246,255,.88);font-weight:600}
.ok{
  width:18px;height:18px;border-radius:999px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(42,208,124,.16);
  border:1px solid rgba(42,208,124,.30);
  color:#47ffad;
  font-size:12px;
}
.cta{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:12px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 18px;border-radius:999px;
  font-weight:800;font-size:14px;
  text-decoration:none;
  color:var(--text);
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  transition:transform .12s ease;
  cursor:pointer;
}
.btn.primary{border:none;background:var(--wa);box-shadow:0 16px 44px rgba(0,0,0,.55)}
.btn.ghost{background:rgba(255,255,255,.05)}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.meta{color:rgba(245,246,255,.62);font-size:12px}

/* Sections */
.section{padding:44px 0}
.section h2{margin:0 0 8px;font-size:30px;font-weight:800;letter-spacing:-.02em}
.lead{margin:0 0 18px;color:rgba(245,246,255,.72)}
.cards{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}
.card{
  border-radius:18px;
  background:var(--glass);
  border:1px solid var(--stroke);
  padding:16px;
}
.ic{
  width:42px;height:42px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  margin-bottom:10px;
  font-weight:900;
}
.card h3{margin:0 0 8px;font-size:14px;font-weight:800}
.card p{margin:0;color:rgba(245,246,255,.68);font-size:12px;line-height:1.55}

.pricing{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.price{
  border-radius:18px;
  background:var(--glass);
  border:1px solid var(--stroke);
  padding:18px;
  position:relative;
}
.price.featured{
  border:1px solid rgba(205,183,255,.45);
  box-shadow:0 18px 70px rgba(0,0,0,.55);
}
.tag{
  position:absolute;top:14px;right:14px;
  padding:6px 10px;border-radius:999px;
  background:rgba(205,183,255,.12);
  border:1px solid rgba(205,183,255,.30);
  color:rgba(205,183,255,.95);
  font-weight:800;font-size:12px;
}
.price h3{margin:0 0 10px}
.price ul{margin:0 0 14px;padding-left:18px;color:rgba(245,246,255,.75)}
.price li{margin:6px 0}

.form{
  border-radius:18px;
  background:var(--glass);
  border:1px solid var(--stroke);
  padding:16px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
input,select{
  height:46px;border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.10);
  color:rgba(245,246,255,.92);
  padding:0 14px;
  font-weight:600;
  outline:none;
}
input::placeholder{color:rgba(245,246,255,.55)}
select{color:rgba(245,246,255,.76)}
.wide{grid-column:1/-1;height:52px}

/* Footer */
.footer{
  background:rgba(11,13,20,.92);
  backdrop-filter: blur(6px);
}
.footer-line{height:1px;background:var(--grad);opacity:.92}
.footer-grid{
  padding:54px 0 30px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:22px;
}
.footer h4{
  margin:0 0 12px;
  font-size:12px;
  letter-spacing:.14em;
  color:var(--icon);
}
.f-link{display:block;padding:6px 0;color:rgba(245,246,255,.70);text-decoration:none}
.f-text{padding:6px 0;color:rgba(245,246,255,.72)}
.social{display:flex;gap:12px;padding-top:6px}
.soc{
  width:38px;height:38px;border-radius:999px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(205,183,255,.35);
  background:rgba(205,183,255,.06);
}
.soc img{width:18px;height:18px;opacity:.98}
.footer-bottom{text-align:center;padding:18px 0 26px;color:rgba(245,246,255,.60);font-size:12px}

/* Responsive */
@media (max-width:1100px){
  .hero-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:repeat(2,1fr)}
  .pricing{grid-template-columns:1fr}
  .form{grid-template-columns:1fr}
  h1{font-size:38px}
  .hero-left{min-height:360px}
  .girl{object-position:center bottom}
}
