:root{
  --bg:#0b1520; --bg-2:#0e1c2a; --card:#0f2234;
  --muted:#9bb3c7; --text:#e8f1f7;
  --primary:#39c6f4; --primary-2:#17a7d7;
  --shadow:0 10px 30px rgba(0,0,0,.35); --radius:18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial;
  background: radial-gradient(1200px 700px at 10% -10%,#11273c,transparent 65%),
             radial-gradient(1000px 600px at 120% 0%,#0a2a3d,transparent 60%), var(--bg);
  color:var(--text);
}
header{position:sticky; top:0; z-index:50; backdrop-filter:saturate(1.2) blur(10px);
  background:linear-gradient(180deg,rgba(13,25,37,.85),rgba(13,25,37,.55)); border-bottom:1px solid #12324a;}
.nav{max-width:1100px; margin:auto; display:flex; align-items:center; gap:20px; padding:14px 20px;}
.brand{display:flex; align-items:center; gap:12px; font-weight:800;}
.brand .logo{width:34px; height:34px; border:2px solid var(--primary); border-radius:9px; display:grid; place-items:center; box-shadow:0 0 24px rgba(57,198,244,.35) inset;}
.brand small{display:block; color:var(--muted); font-weight:600; margin-top:-3px}
nav a{color:var(--text); text-decoration:none; padding:8px 12px; border-radius:10px; font-weight:600; opacity:.85;}
nav a:hover{ background:#133149; opacity:1 } .spacer{flex:1}
.cart-btn{background:linear-gradient(180deg,var(--primary),var(--primary-2)); color:#042332; border:0; padding:10px 14px; border-radius:12px; font-weight:800; cursor:pointer; box-shadow:0 6px 22px rgba(23,167,215,.45);}

/* VIDEO HERO */
.hero{position:relative; overflow:hidden; max-width:1100px; margin:28px auto 8px; border-radius:var(--radius); box-shadow:var(--shadow);}
.video-hero .hero-content{ position:relative; z-index:1; padding:46px 22px 64px; }
.video-hero .bg-video{ position:absolute; inset:0; overflow:hidden; border-radius:var(--radius); }
.video-hero .bg-video video{ width:100%; height:100%; object-fit:cover; filter:saturate(1.1) contrast(1.05) brightness(.9); }
.video-hero::after{
  content:""; position:absolute; inset:0; border-radius:var(--radius);
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(57,198,244,.22), transparent 60%),
    linear-gradient(135deg, rgba(11,35,52,.86), rgba(13,49,72,.86));
  pointer-events:none;
}
.hero h1{margin:0 0 10px; font-size:clamp(28px,5vw,44px)}
.hero p{margin:6px 0 22px; color:var(--muted); font-size:18px}
.hero .badges{display:flex; gap:10px; flex-wrap:wrap}
.badge{padding:8px 12px; border-radius:999px; border:1px solid #1f4057; color:#a6ccde; background:#0e283c; font-size:14px}

/* Reduced motion / mobile: desactivar video */
@media (prefers-reduced-motion: reduce){
  .video-hero .bg-video{ display:none; }
  .video-hero{ background: linear-gradient(135deg, #0b2334, #0d3148); }
}
@media (max-width: 640px){
  .video-hero .bg-video{ display:none; }
  .video-hero{ background: linear-gradient(135deg, #0b2334, #0d3148); }
}

section{scroll-margin-top:80px} .wrap{max-width:1100px; margin:0 auto; padding:32px 20px}
h2{font-size:clamp(24px,4vw,32px); margin:0 0 18px} .muted{color:var(--muted)}
.grid{display:grid; gap:18px; grid-template-columns:repeat(auto-fit,minmax(260px,1fr));}
.card{background:linear-gradient(180deg,#0f2234,#0c1c2b); border:1px solid #16364b; border-radius:16px; padding:18px; box-shadow:var(--shadow);}
.card p{color:var(--muted)} .price{margin:10px 0 14px; font-weight:900} .actions{display:flex; gap:10px}
.btn{display:inline-flex; align-items:center; gap:8px; cursor:pointer; border:0; font-weight:800; padding:10px 12px; border-radius:12px; transition: transform .08s ease; }
.btn:active{ transform: scale(.98); }
/* Glow en hover */
.btn-primary{background:linear-gradient(180deg,var(--primary),var(--primary-2)); color:#042332; box-shadow:0 8px 26px rgba(23,167,215,.45);}
.btn-primary:hover{ box-shadow:0 0 0 2px rgba(57,198,244,.5), 0 12px 32px rgba(23,167,215,.55); }
.btn-ghost{background:#122a3f; color:#bfe8f8; border:1px solid #1d4156}
.btn-ghost:hover{ box-shadow:0 0 0 2px #1d4156, 0 10px 24px rgba(0,0,0,.25); }

.drawer{position:fixed; inset:0 0 0 auto; width:min(420px,100%); translate:100% 0; transition:.28s ease; background:#0c1723; border-left:1px solid #1a3a50; z-index:60; display:flex; flex-direction:column;}
.drawer.open{ translate:0 0 } .drawer header{position:unset; border-bottom:1px solid #153447; background:#0c1723}
.drawer .items{flex:1; overflow:auto; padding:12px 14px}
.cart-item{display:grid; grid-template-columns:1fr auto; gap:6px 10px; align-items:center; padding:12px; background:#0e1f2e; border:1px solid #16364b; border-radius:12px; margin-bottom:10px;}
.cart-item small{color:var(--muted)} .cart-footer{padding:14px; border-top:1px solid #153447}
.row{display:flex; justify-content:space-between; margin:6px 0} .total{font-weight:900; font-size:18px}
.close-x{background:transparent; border:0; color:#9ecfe3; font-size:22px; cursor:pointer}

.contact{display:grid; gap:18px; grid-template-columns:1.2fr .8fr; align-items:start;} 
@media (max-width:900px){ .contact{grid-template-columns:1fr} }
.contact-card{background:linear-gradient(180deg,#0f2234,#0c1c2b); border:1px solid #16364b; border-radius:16px; padding:18px; box-shadow:var(--shadow);}
.contact-card input,.contact-card textarea{width:100%; padding:12px 14px; border-radius:12px; border:1px solid #1f4057; background:#0e283c; color:#e8f1f7; outline:none;}
.contact-card textarea{min-height:110px; resize:vertical}

.wa-float{position:fixed; right:18px; bottom:18px; width:60px; height:60px; border-radius:50%; display:grid; place-items:center;
  background:#25D366; box-shadow:0 10px 28px rgba(32,196,93,.45); z-index:70; border:0;}
.wa-float svg{width:36px; height:36px}

/* Cart indicators */
.cart-indicator{ display:inline-block; min-width:22px; padding:2px 6px; margin-left:8px;
  font-size:12px; font-weight:800; text-align:center; line-height:1.2;
  color:#042332; background:linear-gradient(180deg,var(--primary),var(--primary-2));
  border-radius:999px; box-shadow:0 6px 16px rgba(23,167,215,.45); }
.cart-indicator.small{ font-size:11px; min-width:18px; padding:1px 5px; margin-left:6px; }

/* Footer */
.site-footer{ margin-top:40px; border-top:1px solid #12324a; background:#0b1622; color:#9bb3c7; }
.footer-grid{ display:grid; gap:24px; padding:28px 20px; grid-template-columns: 2fr 1fr 1.2fr; }
.footer-brand .logo{ width:32px; height:32px; border:2px solid var(--primary); border-radius:9px; display:grid; place-items:center; box-shadow:0 0 24px rgba(57,198,244,.35) inset; }
.footer-links{ list-style:none; padding:0; margin:10px 0 0 0; }
.footer-links li{ margin:6px 0; }
.footer-links a{ color:#cfe7f5; text-decoration:none; opacity:.9; }
.footer-links a:hover{ text-decoration:underline; opacity:1; }
.footer-social a{ display:inline-flex; align-items:center; justify-content:center; width:32px; height:32px; margin-right:8px; border-radius:8px; background:#0e283c; color:#bfe8f8; border:1px solid #1d4156; text-decoration:none; font-weight:800; }
.footer-copy{ text-align:center; padding:14px; border-top:1px solid #12324a; color:#89a8bd; }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr; } }
footer{ text-align: left; }

/* Utility */
.hidden{ display:none; }

/* ---- HERO más llamativo (centrado + glass + brillos) ---- */
.video-hero { 
  position: relative; 
  overflow: hidden; 
  max-width: 1100px; 
  margin: 28px auto 8px; 
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  border:1px solid rgba(109, 206, 255, 0.18);
  backdrop-filter: blur(6px) saturate(1.1);
}
.video-hero .hero-content{
  position: relative; 
  z-index: 1; 
  text-align: center;
  padding: 56px 24px 70px;
}

/* Título con degradado y brillo sutil */
.hero h1{
  margin: 0 0 12px;
  font-size: clamp(32px, 5.2vw, 48px);
  line-height: 1.1;
  background: linear-gradient(180deg,#ffffff,#d9f2ff 55%, #9fdcff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(55,200,255,.18);
}

/* Subtítulo centrado y más legible */
.hero p{
  max-width: 900px;
  margin: 8px auto 22px;
  color: #c8deee;
  font-size: 18px;
  opacity: .95;
}

/* Chips/badges con efecto pill y glow en hover */
.hero .badges{ 
  display:flex; justify-content:center; flex-wrap:wrap; gap:10px; 
  margin-bottom: 10px;
}
.badge{
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid #1e4a61;
  background: rgba(9, 38, 58, .75);
  color:#bfe8f8;
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
}
.badge:hover{
  transform: translateY(-2px);
  border-color: #38c7f4;
  box-shadow: 0 0 0 2px rgba(56,199,244,.25), 0 10px 24px rgba(0,0,0,.25);
}

/* Botones centrados, con glow y “light sweep” animado */
.hero .actions{
  margin-top: 16px;
  display:flex; justify-content:center; gap:12px; flex-wrap:wrap;
}

/* Botón primario ‘neón’ */
.btn-primary{
  position: relative;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .2px;
  background: linear-gradient(180deg,#4fd3ff,#17a7d7);
  color: #042332;
  border: 0;
  box-shadow: 0 10px 28px rgba(23,167,215,.55), 0 0 0 1px rgba(72,206,255,.45) inset;
  overflow: hidden;
}
.btn-primary::after{
  /* brillo diagonal que recorre el botón */
  content:"";
  position:absolute; top:-120%; left:-40%;
  width:60%; height:300%;
  transform: rotate(20deg);
  background: linear-gradient( to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.35) 50%, rgba(255,255,255,0) 100%);
  animation: sweep 2.8s linear infinite;
  pointer-events:none;
}
@keyframes sweep{
  0%   { transform: translateX(-120%) rotate(20deg); }
  100% { transform: translateX(220%) rotate(20deg); }
}
.btn-primary:hover{
  box-shadow: 0 0 0 2px rgba(56,199,244,.55),
              0 16px 38px rgba(23,167,215,.65);
}

/* Botón secundario más marcado */
.btn-ghost{
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(14,40,60,.6);
  color:#cfe7f5;
  border: 1px solid #1e4a61;
}
.btn-ghost:hover{
  border-color:#38c7f4;
  box-shadow: 0 0 0 2px rgba(30,74,97,.7), 0 12px 26px rgba(0,0,0,.28);
}

/* En móviles, apilar botones */
@media (max-width: 540px){
  .hero .actions{ flex-direction:column; }
  .hero .actions .btn{ width:100%; }
}
/* ===== QUIÉNES SOMOS ===== */
.about { padding-top: 24px; }
.about-card{
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 22px;
  background: linear-gradient(180deg,#0f2234,#0c1c2b);
  border: 1px solid #16364b;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.about-text h2{ margin: 0 0 10px; font-size: clamp(24px,4vw,32px); }
.about-list{ margin: 12px 0 14px; padding-left: 18px; color: var(--muted); }
.about-list li{ margin: 6px 0; }
.about-tags{ display:flex; flex-wrap:wrap; gap:10px; margin: 10px 0 8px; }

.about-side{
  display: grid;
  gap: 12px;
  align-content: start;
}
.kpi{
  background: #0e283c;
  border: 1px solid #1f4057;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.kpi strong{ display:block; font-size: 28px; line-height: 1; }
.kpi span{ color: var(--muted); }

/* Responsive */
@media (max-width: 900px){
  .about-card{ grid-template-columns: 1fr; }
}
