/* styles.css (compartido para ambas páginas) */
:root{
  --bg:#070b16;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:rgba(255,255,255,.93);
  --muted:rgba(255,255,255,.72);
  --border:rgba(255,255,255,.12);
  --accent:#63b7ff;
  --accent2:#78f0c5;
  --shadow: 0 18px 70px rgba(0,0,0,.38);
  --radius: 18px;
  --radius2: 26px;
  --container: 1140px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  line-height:1.55;
  background:
    radial-gradient(1000px 650px at 15% 10%, rgba(99,183,255,.14), transparent 55%),
    radial-gradient(900px 650px at 90% 18%, rgba(120,240,197,.10), transparent 55%),
    radial-gradient(900px 700px at 45% 90%, rgba(99,183,255,.10), transparent 60%),
    var(--bg);
}
a{color:inherit;text-decoration:none}
.container{width:min(var(--container), calc(100% - 40px)); margin:0 auto;}
.muted{color:var(--muted)}
.w-100{width:100%}
.u{
  background: linear-gradient(90deg, rgba(99,183,255,.35), rgba(120,240,197,.28));
  padding: 0 .25em;
  border-radius: .4em;
  border: 1px solid rgba(255,255,255,.10);
}

/* NAV */
.navwrap{
  position:sticky; top:0; z-index:30;
  border-bottom:1px solid var(--border);
  background: rgba(7,11,22,.62);
  backdrop-filter: blur(14px);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.logo{display:flex; align-items:center; gap:10px; font-weight:900; letter-spacing:.2px}
.logo__mark{
  width:38px; height:38px; display:grid; place-items:center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(99,183,255,.95), rgba(120,240,197,.85));
  color:#03101c;
  box-shadow: 0 14px 40px rgba(99,183,255,.16);
}
.logo__text{display:flex; flex-direction:column; line-height:1.05}
.logo__text small{color:var(--muted); font-weight:800; font-size:12px}
.logo--small .logo__mark{width:34px;height:34px}
.logo--small .logo__text strong{font-size:14px}

.nav__links{
  display:flex; align-items:center; gap:14px;
  color:var(--muted); font-weight:800; font-size:14px;
}
.nav__links a{padding:8px 10px; border-radius:12px}
.nav__links a:hover{color:var(--text); background: rgba(255,255,255,.05)}
.nav__pill{
  border:1px solid rgba(99,183,255,.28);
  background: rgba(255,255,255,.03);
}
.nav__cta{display:flex; gap:10px}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  font-weight:900;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.07)}
.btn--primary{
  border-color: rgba(99,183,255,.40);
  background: linear-gradient(135deg, rgba(99,183,255,.22), rgba(120,240,197,.15));
  box-shadow: 0 16px 55px rgba(0,0,0,.18);
}
.btn--ghost{background: transparent}
.btn--lg{padding:12px 16px; border-radius:16px}

/* HERO 2 */
.hero2{padding: 56px 0 18px;}
.hero2--market{
  background:
    radial-gradient(900px 480px at 30% 10%, rgba(120,240,197,.10), transparent 60%),
    radial-gradient(900px 520px at 80% 40%, rgba(99,183,255,.10), transparent 62%);
}
.hero2__grid{
  display:grid; grid-template-columns: 1.15fr .85fr;
  gap: 22px; align-items:start;
}
.badge{
  display:inline-block;
  margin:0 0 10px;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:900;
  font-size:13px;
}
.hero2 h1{
  margin:0 0 12px;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.06;
  letter-spacing: -.6px;
}
.sub{margin:0 0 18px; color:var(--muted); font-size:16px}
.hero2__actions{display:flex; gap:12px; flex-wrap:wrap; margin: 16px 0 14px;}

.stats{display:flex; gap:12px; flex-wrap:wrap;}
.stat{
  min-width: 170px;
  padding: 10px 12px;
  border:1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
}
.stat__k{display:block; font-weight:1000}
.stat__l{display:block; color:var(--muted); font-weight:800; font-size:12px}

.panel{
  border:1px solid var(--border);
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  padding: 18px;
}
.panel h3{margin:0 0 6px}
.panel__line{height:1px; background: var(--border); margin:14px 0}

.mini-form{display:grid; gap:10px; margin-top:10px}
.mini-form label{font-weight:900; font-size:13px}
.mini-form input, .mini-form select{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline: none;
}
.fine{margin: 8px 0 0; color: rgba(255,255,255,.55); font-size: 12px}

.ticks{display:grid; gap:8px; color: var(--muted); font-weight:900}
.tick{padding:10px 12px; border-radius:14px; border:1px solid var(--border); background: rgba(255,255,255,.03)}

/* SECTION */
.section2{padding: 54px 0;}
.section2--alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.head2{margin-bottom: 18px;}
.head2 h2{margin:0 0 8px; font-size: 28px; letter-spacing:-.25px}
.head2 p{margin:0}

/* Rail cards */
.rail{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.rail__card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding: 18px;
}
.rail__top{display:flex; align-items:center; gap:10px; margin-bottom: 10px;}
.icon{
  width:42px; height:42px; display:grid; place-items:center;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
}
.rail__card--accent{
  border-color: rgba(99,183,255,.28);
  background: linear-gradient(135deg, rgba(99,183,255,.10), rgba(120,240,197,.08));
}

/* Lists */
.list{margin: 10px 0 0; padding-left: 18px; color: var(--muted)}
.list li{margin:7px 0}

/* Pricing */
.cards3{display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px;}
.price{
  position:relative;
  border:1px solid var(--border);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding: 18px;
}
.price__tag{margin: 6px 0 10px; color: var(--muted); font-weight:900}
.price__kpi{
  font-weight:1000;
  font-size: 18px;
  padding: 10px 12px;
  border:1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
}
.price--best{
  border-color: rgba(99,183,255,.38);
  background: linear-gradient(135deg, rgba(99,183,255,.12), rgba(120,240,197,.08));
}
.ribbon{
  position:absolute; top: 14px; right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid rgba(99,183,255,.30);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 1000;
  font-size: 12px;
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step2{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding: 16px;
  display:flex; gap:12px;
}
.step2__n{
  width:34px; height:34px;
  border-radius: 14px;
  display:grid; place-items:center;
  color:#03101c;
  font-weight:1000;
  background: linear-gradient(135deg, rgba(99,183,255,.95), rgba(120,240,197,.85));
}
.step2 h3{margin:0 0 6px; font-size: 16px}
.step2 p{margin:0}

/* CTA */
.cta2{
  margin-top: 18px;
  border:1px solid var(--border);
  border-radius: var(--radius2);
  background:
    radial-gradient(900px 400px at 25% 25%, rgba(99,183,255,.12), transparent 60%),
    radial-gradient(900px 400px at 80% 80%, rgba(120,240,197,.10), transparent 60%),
    rgba(255,255,255,.03);
  padding: 18px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
}

/* Contact */
.contactgrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items:start;
}
.form2{
  border:1px solid var(--border);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding: 18px;
}
.form2 label{display:block; font-weight:1000; font-size:13px; margin: 10px 0 6px}
.form2 input, .form2 select, .form2 textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
.row{display:grid; grid-template-columns: 1fr 1fr; gap: 10px;}
.sidecard{
  border:1px solid var(--border);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding: 18px;
}
.kv{display:grid; gap:10px; margin-top: 12px;}
.kv__i{
  display:flex; justify-content:space-between; gap:10px;
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.kv__i span{color:var(--muted); font-weight:900}
.hint{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-weight:800;
}

/* Minimarket benefits grid */
.benefits{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.benefit{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding: 16px;
}

/* Footer */
.footer2{
  border-top:1px solid var(--border);
  background: rgba(0,0,0,.18);
  padding: 28px 0 16px;
}
.footer2__inner{
  display:flex; justify-content:space-between; gap: 16px; align-items:flex-start;
  padding-bottom: 14px;
}
.footer2__right{
  display:flex; flex-wrap:wrap; gap:12px;
  color: var(--muted); font-weight:900;
}
.footer2__right a{padding: 6px 8px; border-radius: 12px}
.footer2__right a:hover{background: rgba(255,255,255,.05); color: var(--text)}
.footer2__bottom{
  border-top: 1px solid var(--border);
  padding-top: 12px;
  display:flex; justify-content:space-between; gap: 12px;
  color: rgba(255,255,255,.60);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1020px){
  .hero2__grid{grid-template-columns: 1fr;}
  .rail{grid-template-columns: 1fr;}
  .cards3{grid-template-columns: 1fr;}
  .steps{grid-template-columns: 1fr;}
  .contactgrid{grid-template-columns: 1fr;}
  .benefits{grid-template-columns: 1fr;}
  .nav__links{display:none;}
}
@media (max-width: 520px){
  .row{grid-template-columns: 1fr;}
}
