 /* === ORDENAFACIL 2026 MODERN === */
:root{
  --bg:#0b0f14;
  --glass:rgba(15,20,28,.55);
  --stroke:rgba(255,255,255,.08);
  --text:#e8eef6;
  --muted:#9fb0c3;
  --brand:#ff7a00;
  --brand-2:#00d1ff;
  --radius:20px;
  --shadow:0 10px 30px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Outfit",system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:#000;
  overflow-x:hidden;
}
#bgVideo{
  position:fixed; inset:0; width:100%; height:100%; object-fit:cover; z-index:-3;
  filter:brightness(.55) saturate(1.1);
}
.bg-overlay{
  position:fixed; inset:0; z-index:-2;
  background:radial-gradient(60% 60% at 70% 20%, rgba(0,209,255,.18), transparent 60%),
             radial-gradient(50% 50% at 20% 80%, rgba(255,122,0,.18), transparent 60%),
             linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.85));
}

/* NAV */
.nav{
  position:sticky; top:0; z-index:50; backdrop-filter:blur(10px);
  background:linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.15));
  border-bottom:1px solid var(--stroke);
}
.nav-inner{
  max-width:1200px; margin:auto; display:flex; align-items:center; justify-content:space-between;
  padding:14px 20px;
}
.brand{font-weight:800; letter-spacing:.5px; color:#fff; text-decoration:none; font-size:22px}
.brand span{color:var(--brand); font-weight:600}
.nav nav{display:flex; gap:22px; align-items:center}
.nav nav a{color:var(--muted); text-decoration:none; font-weight:500}
.nav nav a:hover{color:#fff}
.btn-cta{
  padding:10px 16px; border-radius:999px; background:var(--brand); color:#000; font-weight:700; text-decoration:none;
  box-shadow:0 6px 18px rgba(255,122,0,.35);
}
.burger{display:none; background:none; border:0; color:#fff; font-size:26px}

/* HERO SLIDER */
.hero{height:88vh; min-height:560px; position:relative}
.swiper{width:100%; height:100%;}
.swiper-slide{display:flex; align-items:center; justify-content:center;  margin-top: 100px; padding:40px}
.slide-content{
  max-width:900px; width:100%; padding:48px; text-align:center;
}
.glass{
  background:var(--glass); border:1px solid var(--stroke); border-radius:var(--radius);
  box-shadow:var(--shadow); backdrop-filter:blur(14px);
}
.slide-content h1{font-size:clamp(32px,5vw,56px); margin:0 0 12px; line-height:1.05}
.slide-content p{color:var(--muted); font-size:clamp(16px,2.2vw,20px); margin:0 0 24px}
.actions{display:flex; gap:12px; justify-content:center; flex-wrap:wrap}
.btn{
  display:inline-block; padding:12px 20px; border-radius:12px; text-decoration:none; font-weight:700;
  border:1px solid var(--stroke); color:#fff; transition:.2s;
}
.btn.primary{background:var(--brand); color:#000; border-color:transparent}
.btn.primary:hover{transform:translateY(-2px); box-shadow:0 10px 24px rgba(255,122,0,.35)}
.btn.ghost{background:transparent}
.btn.ghost:hover{background:rgba(255,255,255,.08)}
.btn.large{padding:16px 28px; font-size:18px}
.swiper-pagination-bullet{background:#fff; opacity:.5}
.swiper-pagination-bullet-active{opacity:1; background:var(--brand)}
.swiper-button-prev,.swiper-button-next{color:#fff; opacity:.7}
.swiper-button-prev:hover,.swiper-button-next:hover{opacity:1}

/* SECTIONS */
.section{max-width:1200px; margin:0 auto; padding:80px 20px}
.section-title{font-size:clamp(28px,4vw,40px); margin:0 0 24px; text-align:center}
.section-sub{text-align:center; color:var(--muted); margin-top:-8px}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:22px}
.card{
  background:var(--glass); border:1px solid var(--stroke); border-radius:var(--radius);
  padding:26px; box-shadow:var(--shadow); transition:.25s;
}
.card:hover{transform:translateY(-4px); border-color:rgba(255,255,255,.18)}
.card-icon{font-size:32px; margin-bottom:8px}
.card h3{margin:6px 0 12px}
.card ul{margin:0 0 14px 18px; color:var(--muted)}
.link{color:var(--brand-2); text-decoration:none; font-weight:600}

/* CLIENTES */
.section.dark{background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)); border-top:1px solid var(--stroke); border-bottom:1px solid var(--stroke)}
.clients-grid{
  display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:16px; margin-top:26px;
}
.client{
  display:flex; flex-direction:column; align-items:center; gap:10px; padding:16px;
  background:var(--glass); border:1px solid var(--stroke); border-radius:16px; text-decoration:none; color:#fff;
  transition:.2s;
}
.client:hover{transform:translateY(-3px); border-color:rgba(255,255,255,.2)}
.client-logo{width:100%; aspect-ratio:1/1; border-radius:12px; background:#111 center/cover no-repeat; border:1px solid var(--stroke)}
.client span{font-size:14px; color:var(--muted); text-transform:uppercase;}
.hidden{display:none}

/* POS */
.pos{display:flex; justify-content:center}
.pos-inner{padding:48px; text-align:center; max-width:900px; width:100%}
.pos-inner h2{font-size:clamp(28px,4vw,38px); margin:0 0 8px}
.pos-inner p{color:var(--muted); margin:0 0 20px}

/* VENTAJAS */
.ventajas{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:14px; margin-top:20px;
}
.ventajas div{
  background:var(--glass); border:1px solid var(--stroke); padding:16px 18px; border-radius:14px; color:#dbe7f3;
}

/* FOOTER */
.footer{
  max-width:1200px; margin:40px auto 60px; padding:20px; display:flex; justify-content:space-between; gap:12px;
  color:var(--muted); border-top:1px solid var(--stroke); flex-wrap:wrap
}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:#fff}

/* RESPONSIVE */
@media (max-width:900px){
  .grid-3{grid-template-columns:1fr}
  .nav nav{display:none}
  .burger{display:block}
  .nav.open nav{
    display:flex; position:absolute; top:60px; right:20px; flex-direction:column; background:var(--glass);
    padding:12px; border:1px solid var(--stroke); border-radius:14px; backdrop-filter:blur(12px)
  }
}

    #bgVideo {
      position: fixed;
      right: 0;
      bottom: 0;
      min-width: 100%;
      min-height: 100%;
      z-index: -2;
      object-fit: cover;
    }