:root{
  --red:#d60012;
  --red2:#b8000f;
  --black:#0f1115;
  --text:#1c1f26;
  --muted:#5b6270;
  --bg:#ffffff;
  --card:#f7f8fb;
  --border:#e6e8ee;
  --radius:18px;
  --shadow: 0 14px 40px rgba(15,17,21,.10);
  --shadow2: 0 10px 26px rgba(15,17,21,.10);
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:var(--font); color:var(--text); background:var(--bg); line-height:1.55}
a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  box-shadow: var(--shadow2);
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  cursor:pointer;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px); box-shadow:none}
.btn-primary{background:var(--red); color:white}
.btn-primary:hover{background:var(--red2)}
.btn-outline{background:white; border-color:var(--border)}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(214,0,18,.08);
  color:var(--red2);
  font-weight:800;
  letter-spacing:.2px;
}
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:10px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width: 220px;
}
.brand img{width:52px; height:52px; object-fit:contain}
.brand .title{font-size:18px; font-weight:900; letter-spacing:.3px}
.brand .subtitle{font-size:12px; color:var(--muted); font-weight:700}
.navlinks{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
}
.navlinks a{
  font-weight:800; color:var(--text);
  padding:10px 12px; border-radius:999px;
}
.navlinks a:hover{background:var(--card)}
.nav-cta{display:flex; align-items:center; gap:10px}
.hamb{display:none}
.hero{
  padding:44px 0 26px;
  background: radial-gradient(1000px 350px at 20% 0%, rgba(214,0,18,.12), transparent),
              radial-gradient(900px 380px at 80% 5%, rgba(15,17,21,.08), transparent);
}
.hero-grid{
  display:grid; grid-template-columns: 1.15fr .85fr;
  gap:22px; align-items:stretch;
}
.hero h1{font-size:44px; line-height:1.05; margin:10px 0 10px; letter-spacing:-.6px}
.hero p{color:var(--muted); margin:0 0 18px; font-size:16px}
.hero-card{
  background:white; border:1px solid var(--border); border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}
.kpis{display:grid; grid-template-columns:repeat(3, 1fr); gap:10px; margin-top:14px}
.kpi{background:var(--card); border:1px solid var(--border); border-radius:14px; padding:12px}
.kpi b{display:block; font-size:14px}
.kpi span{color:var(--muted); font-weight:700; font-size:12px}
.section{padding:28px 0}
.section h2{margin:0 0 12px; font-size:26px; letter-spacing:-.2px}
.section p.lead{margin:0 0 16px; color:var(--muted); font-weight:650}
.grid3{display:grid; grid-template-columns:repeat(3, 1fr); gap:14px}
.grid2{display:grid; grid-template-columns:repeat(2, 1fr); gap:14px}
.card{
  background:white; border:1px solid var(--border); border-radius:var(--radius);
  padding:16px; box-shadow: var(--shadow2);
}
.card h3{margin:0 0 8px; font-size:18px}
.card ul{margin:8px 0 0 18px; color:var(--muted); font-weight:650}
.card li{margin:6px 0}
.split{
  display:grid; grid-template-columns: 1fr 1fr; gap:16px; align-items:center;
}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}
.pill{
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--border); background:white; font-weight:800;
}
.pricebox{
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(214,0,18,.07), rgba(214,0,18,.02));
}
.pricebox .price{font-size:34px; font-weight:1000; letter-spacing:-.6px}
small{color:var(--muted); font-weight:650}
.form{
  display:grid; gap:10px;
}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  font: inherit;
  outline:none;
}
input:focus, select:focus, textarea:focus{border-color: rgba(214,0,18,.55); box-shadow: 0 0 0 4px rgba(214,0,18,.08)}
textarea{min-height:110px; resize:vertical}
footer{
  padding:26px 0;
  border-top:1px solid var(--border);
  background: #0f1115;
  color: #e8ecf6;
}
footer a{color:#e8ecf6; text-decoration:underline}
.footer-grid{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:16px;
}
.footer-mini{color: rgba(232,236,246,.75); font-weight:650; font-size:13px}
.floating{
  position:fixed; right:16px; bottom:16px; z-index:60;
  display:flex; flex-direction:column; gap:10px;
}
.fab{
  width:52px; height:52px; border-radius:999px;
  display:grid; place-items:center;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.35);
}
.fab.call{background: var(--black); color:white}
.fab.wa{background: #18b357; color:white}
.lang{
  display:inline-flex; gap:8px; align-items:center;
  background:white; border:1px solid var(--border); border-radius:999px;
  padding:6px 8px;
}
.lang button{
  border:0; background:transparent; font-weight:900; padding:8px 10px; border-radius:999px; cursor:pointer;
}
.lang button.active{background: var(--card)}
.lang small{margin-left:6px}
.notice{
  font-size:13px; color:var(--muted); font-weight:650;
  border-left:4px solid rgba(214,0,18,.35);
  padding-left:10px;
}
.hr{height:1px; background:var(--border); margin:14px 0}
@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .navlinks{display:none}
  .hamb{display:inline-flex}
  .brand{min-width:unset}
  .hero h1{font-size:36px}
}


/* Carousel */
.carousel{ padding:14px; }
.carousel-window{ overflow:hidden; border-radius:18px; background:#0b0f1a; }
.carousel-track{ display:flex; transition: transform .45s ease; will-change: transform; }
.carousel-slide{ min-width:100%; }
.carousel-slide img{ width:100%; height:700px; object-fit:cover; display:block; background:#0b0f1a; }
.carousel-controls{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:12px; flex-wrap:wrap; }
@media (max-width: 720px){
  .carousel-slide img{ height:320px; }
}

/* === Brand logos === */
.brand-logos{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
  gap:18px;
  align-items:center;
  margin-top:18px
}
.brand-logo{
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  border-radius:14px;
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  height:90px
}
.brand-logo img{
  max-width:100%;
  max-height:60px;
  object-fit:contain
}

/* === Hero brands (compact) === */
.brand-logos--compact{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-top:14px
}
.brand-logos--compact .brand-logo{
  height:66px;
  padding:10px;
  border-radius:12px
}
.brand-logos--compact .brand-logo img{
  max-height:42px
}
@media (max-width: 980px){
  .brand-logos--compact{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width: 520px){
  .brand-logos--compact{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 980px){.brand-logos{grid-template-columns:repeat(2,minmax(0,1fr))}}
