
:root{--accent:#EAC44C;--ink:#1E1E1E;--text:#3B3B3B;--bg:#FFFFFF;--bg-soft:#F7F7F7;--radius:16px;--shadow:0 10px 30px rgba(0,0,0,.06);--transition:.25s ease}
html,body{scroll-behavior:smooth}
body{font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--text);background:var(--bg)}
.navbar{padding:14px 0;background:rgba(255,255,255,.92);backdrop-filter:saturate(180%) blur(10px);box-shadow:0 2px 10px rgba(0,0,0,.04)}
.navbar .nav-link{color:#333;margin:0 .5rem}
.navbar .nav-link.active,.navbar .nav-link:hover{color:var(--ink)}
.btn-accent{background:var(--accent);border:none;color:#1E1E1E;font-weight:600}
.btn-accent:hover{filter:brightness(.95)}
.section{padding:64px 0}
.section-title{font-weight:800;color:var(--ink);letter-spacing:.2px}
.section-sub{color:#666;max-width:760px}
.hero{padding:72px 0 40px;background:linear-gradient(180deg,#fff,#fafafa)}
.hero h1{font-weight:900;color:#111}
.card-ui{background:#fff;border-radius:var(--radius);box-shadow:var(--shadow);border:1px solid #eee}
.badge-soft{background:var(--bg-soft);border:1px solid #eee;border-radius:999px;padding:.3rem .7rem;color:#555}
.models-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:22px}
@media (min-width:992px){.models-grid .col{grid-column:span 6}}
@media (max-width:991.98px){.models-grid .col{grid-column:span 12}}
.model-card{overflow:hidden}
.model-card .thumb{position:relative;aspect-ratio:16/9;overflow:hidden}
.model-card .thumb img{width:100%;height:100%;object-fit:cover;display:block}
.model-card .body{padding:18px}
.model-specs{display:grid;grid-template-columns:1fr 1fr;gap:8px 16px;color:#555;font-size:.95rem}
.ticker{position:relative;padding:10px 0;background:#fff}
.ticker-track{display:flex;gap:12px;overflow-x:auto;scroll-behavior:smooth;padding-bottom:4px}
.ticker-track::-webkit-scrollbar{height:10px}
.ticker-track::-webkit-scrollbar-thumb{background:#ddd;border-radius:999px}
.ticker .item{flex:0 0 auto;width:500px;height:500px;border-radius:14px;overflow:hidden;border:1px solid #eee}
.ticker .item img{width:100%;height:100%;object-fit:cover}
.ticker .ctrl{position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,.9);border:1px solid #eee;border-radius:999px;width:44px;height:44px;display:grid;place-items:center;cursor:pointer;transition:var(--transition)}
.ticker .ctrl:hover{box-shadow:var(--shadow)}
.ticker .prev{left:-6px}.ticker .next{right:-6px}
.faq .item{border-bottom:1px solid #eee;padding:14px 0}
.faq .q{font-weight:700;cursor:pointer}
.faq .a{display:none;padding-top:8px;color:#555}
.wa-float{position:fixed;right:22px;bottom:22px;z-index:1060;width:58px;height:58px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#25D366;color:#fff;font-size:28px;box-shadow:0 15px 30px rgba(37,211,102,.4);transition:var(--transition)}
.wa-float:hover{transform:scale(1.05)}
footer{padding:36px 0;background:#111;color:#ddd}
footer a{color:#ddd}
footer .brand{font-weight:800;color:var(--accent);letter-spacing:.5px}


/* --- Mini carousel por modelo --- */
.mini-carousel{position:relative; overflow:hidden; aspect-ratio:16/9; border-radius:16px; background:#f5f5f5}
.mini-carousel .track{display:flex; height:100%; transform:translateX(0); transition:transform .5s ease}
.mini-carousel img{flex:0 0 100%; width:100%; height:100%; object-fit:cover; display:block}

.mini-carousel .ctrl{
  position:absolute; top:50%; transform:translateY(-50%);
  width:40px; height:40px; border-radius:999px;
  display:grid; place-items:center; cursor:pointer;
  background:rgba(255,255,255,.9); border:1px solid #eaeaea; box-shadow:var(--shadow);
  user-select:none
}
.mini-carousel .prev{left:8px} .mini-carousel .next{right:8px}
.mini-carousel .ctrl:hover{filter:brightness(.97)}

.mini-carousel .dots{position:absolute; left:0; right:0; bottom:8px; display:flex; gap:6px; justify-content:center}
.mini-carousel .dot{width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.7); border:1px solid #ddd}
.mini-carousel .dot.active{background:var(--accent); border-color:#caa83e}
/* === Specs con iconos SVG (pro) === */
.model-specs{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 22px}
.model-specs .spec{display:flex;gap:10px;align-items:flex-start}
.model-specs .spec .ico{width:22px;height:22px;flex:0 0 22px;color:var(--secondary)}
.model-specs .spec .ico svg{width:22px;height:22px;display:block;stroke:currentColor}
@media (max-width: 767.98px){ .model-specs{grid-template-columns:1fr} }
/* ===== FIX ICONOS SVG EN ESPECIFICACIONES ===== */
.model-specs{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 22px}

.model-specs .spec{
  display:flex; align-items:center; gap:10px;
  line-height:1.25;
}

/* Contenedor del icono */
.model-specs .spec .ico{
  width:22px !important; height:22px !important;
  min-width:22px !important; min-height:22px !important;
  max-width:22px !important; max-height:22px !important;
  flex:0 0 22px !important;
  color: var(--secondary);
  display:inline-block;
}

/* El SVG adentro */
.model-specs .spec .ico svg{
  width:22px !important; height:22px !important;
  display:block; stroke:currentColor; stroke-width:1.8;
}

/* Si alguna hoja puso svg { width:100% }, neutralizamos en el muestrario */
.model-specs svg{ width:22px !important; height:22px !important }

/* En mobile, una sola columna */
@media (max-width: 767.98px){ .model-specs{ grid-template-columns:1fr } }

