:root{
  --bg: #f4f7fb;
  --panel: #ffffff;
  --panel2: #f8fbff;
  --text: #16243a;
  --muted: #5b6b82;
  --line: rgba(20,35,60,.12);

  --brand: #1f3c88;
  --brand2:#2fbf71;
  --brand3:#0f2d6b;

  --shadow: 0 10px 25px rgba(16, 34, 66, .08);
  --shadow2: 0 8px 20px rgba(16, 34, 66, .06);

  --radius: 14px;
  --radius2: 10px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(900px 500px at 15% 0%, rgba(31,60,136,.08), transparent 60%),
              radial-gradient(900px 500px at 85% 10%, rgba(47,191,113,.06), transparent 55%),
              var(--bg);
  color:var(--text);
}
a{ color:inherit; text-decoration:none; }
.container{ max-width:1200px; margin:0 auto; padding:0 18px; }

header{
  position:sticky; top:0; z-index:50;
  background: rgba(244,247,251,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:800; letter-spacing:.5px;
  color: var(--brand);
}
.logoMark{
  width:44px; height:44px; border-radius:12px;
  background: linear-gradient(135deg, rgba(31,60,136,.15), rgba(47,191,113,.18));
  border:1px solid var(--line);
  display:grid; place-items:center;
  position:relative;
  overflow:hidden;
}
.logoMark:before{
  content:"";
  width:30px; height:30px;
  border-radius:999px;
  border:4px solid rgba(31,60,136,.45);
  box-shadow: inset 0 0 0 4px rgba(47,191,113,.35);
  display:block;
}
.brandName{ font-size:18px; }
.tiny{ font-size:12px; opacity:.85; }

.nav{
  display:flex; gap:14px; flex-wrap:wrap;
  color:var(--muted);
  font-size:14px;
}
.nav a{ padding:8px 10px; border-radius:10px; }
.nav a:hover{ background: rgba(31,60,136,.06); color: var(--brand); }
.nav a.active{ background: rgba(31,60,136,.10); color: var(--brand3); font-weight:800; }

.actions{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: var(--panel);
  font-weight:650;
  color: var(--brand3);
  font-size:14px;
  cursor:pointer;
}
.btn:hover{ transform: translateY(-1px); transition:.15s; box-shadow: var(--shadow2); }
.btnPrimary{
  background: linear-gradient(90deg, rgba(47,191,113,.95), rgba(47,191,113,.82));
  border: 0;
  color: #0b1f16;
}
.btnGhost{
  background: rgba(31,60,136,.06);
  color: var(--brand);
}

main{ padding: 22px 0; }

.heroPanel{
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 980px){
  .heroGrid{ grid-template-columns: 1fr; }
}
.heroTitle{
  margin:0 0 8px;
  font-size:38px;
  line-height:1.08;
  color: var(--brand3);
}
@media (max-width:520px){
  .heroTitle{ font-size:30px; }
}
.heroSub{
  margin:0 0 14px;
  color: var(--muted);
  line-height:1.6;
  font-size:15px;
}
.pillRow{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:12px;
}
.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(31,60,136,.03);
  color: var(--muted);
  font-size:13px;
}

.searchBox{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:14px;
  box-shadow: var(--shadow2);
}
.searchRow{
  display:flex; gap:10px; flex-wrap:wrap;
  align-items:center;
}
.input{
  flex:1;
  min-width:220px;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: #ffffff;
  outline:none;
  font-size:14px;
}
.chipRow{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:12px;
}
.chip{
  padding:9px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.9);
  color: var(--brand3);
  font-weight:650;
  font-size:13px;
}

.sectionHead{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  margin: 18px 0 12px;
}
.sectionHead h2{
  margin:0;
  font-size:26px;
  color: var(--brand3);
}
.sectionHead p{
  margin:0;
  color: var(--muted);
  font-size:14px;
  line-height:1.5;
  max-width: 820px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
@media (max-width:1100px){ .grid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width:640px){ .grid{ grid-template-columns: 1fr;} }

.card{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height: 300px;
}
.cardMedia{
  height: 150px;
  background:
    linear-gradient(180deg, rgba(31,60,136,.05), rgba(47,191,113,.05)),
    repeating-linear-gradient(0deg, rgba(31,60,136,.08) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(90deg, rgba(31,60,136,.06) 0 1px, transparent 1px 14px);
  position:relative;
}
.cardMedia:after{
  content:"imagen referencial";
  position:absolute;
  right:10px; bottom:10px;
  font-size:12px;
  color: rgba(22,36,58,.55);
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  padding:6px 8px;
  border-radius:999px;
}
.cardBody{ padding:14px; display:flex; flex-direction:column; gap:10px; flex:1; }
.cardTitle{ margin:0; font-size:16px; color: var(--brand3); }
.cardMeta{ color: var(--muted); font-size:13px; line-height:1.5; }
.cardTags{ display:flex; gap:8px; flex-wrap:wrap; margin-top:auto; }
.tag{
  font-size:12px;
  padding:6px 8px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(31,60,136,.04);
  color: var(--muted);
}
.cardActions{
  display:flex; gap:10px;
  padding:14px;
  border-top:1px solid var(--line);
  background: var(--panel2);
}
.cardActions a{
  flex:1;
  text-align:center;
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
  font-size:13px;
  border:1px solid var(--line);
  background:#fff;
  color: var(--brand3);
}
.cardActions a.primary{
  background: linear-gradient(90deg, rgba(47,191,113,.95), rgba(47,191,113,.82));
  border:0;
  color:#0b1f16;
}

.lubSection{
  background: #f6f8fb;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}
.lubTitle{ margin:0 0 8px; font-size:26px; color: var(--brand3); }
.lubSubtitle{
  margin:0 0 18px; color: var(--muted); line-height:1.6; font-size:15px; max-width: 900px;
}
.highlightBox{
  background: #ffffff;
  border-left: 6px solid var(--brand2);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
  margin-bottom: 16px;
}
.highlightBox h3{ margin:0 0 8px; color: var(--brand2); font-size:18px; }
.highlightBox p{ margin:0 0 10px; color: var(--muted); line-height:1.6; }
.checklist{
  margin:0; padding:0; list-style:none;
  display:grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:8px 14px;
}
@media (max-width:720px){ .checklist{ grid-template-columns: 1fr; } }
.checklist li{
  padding-left:24px;
  position:relative;
  color:#33425b;
  font-size:14px;
  line-height:1.5;
}
.checklist li:before{
  content:"✔";
  position:absolute;
  left:0; top:0;
  color: var(--brand2);
  font-weight:900;
}
.lubGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin-top: 14px;
}
@media (max-width:1100px){ .lubGrid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width:640px){ .lubGrid{ grid-template-columns: 1fr;} }
.lubCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding:14px;
  min-height: 120px;
}
.lubCard h4{ margin:0 0 8px; color: var(--brand3); font-size:15px; }
.lubCard p{ margin:0; color: var(--muted); font-size:13px; line-height:1.55; }

.ctaBox{
  margin-top:16px;
  background: linear-gradient(90deg, var(--brand3), var(--brand));
  border-radius: var(--radius);
  color:#fff;
  padding:18px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  box-shadow: var(--shadow2);
}
.ctaBox h3{ margin:0 0 6px; font-size:16px; }
.ctaBox p{ margin:0; opacity:.92; line-height:1.6; max-width: 720px; }
.ctaBox a{
  background: var(--brand2);
  color:#0b1f16;
  padding:12px 14px;
  border-radius:12px;
  font-weight:900;
  border:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 200px;
}

footer{
  padding: 26px 0 70px;
  color: var(--muted);
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  border-top:1px solid var(--line);
  padding-top:18px;
}
@media (max-width:900px){ .footerGrid{ grid-template-columns:1fr; } }
.footerCard{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow2);
}
.footerCard h4{ margin:0 0 10px; color: var(--brand3); }
.footerCard p{ margin:0 0 8px; line-height:1.6; }

.waFloat{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: var(--brand2);
  color:#0b1f16;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.05);
}
.waFloat:hover{ transform: translateY(-1px); transition:.15s; }
/* === Riel de imágenes (carousel) === */
.techCard{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow:hidden;
}

.techHead{
  padding:16px 16px 10px;
}
.techHead h3{
  margin:0 0 6px;
  color: var(--brand3);
  font-size:18px;
}
.techHead p{
  margin:0;
  color: var(--muted);
  line-height:1.55;
  font-size:14px;
}

.specRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}
.specPill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(31,60,136,.04);
  color: var(--muted);
  font-weight:650;
}

.carousel{
  position:relative;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background: #fff;
}

.carouselTrack{
  display:flex;
  overflow:auto;
  scroll-snap-type:x mandatory;
  gap:10px;
  padding:12px;
  scrollbar-width: thin;
}
.carouselTrack::-webkit-scrollbar{ height:10px; }
.carouselTrack::-webkit-scrollbar-thumb{ background: rgba(16,34,66,.18); border-radius:999px; }
.slide{
  flex: 0 0 min(320px, 85%);
  height: 170px;
  border-radius: 12px;
  border:1px solid var(--line);
  scroll-snap-align:start;
  box-shadow: 0 6px 14px rgba(16,34,66,.06);
  background:
    linear-gradient(180deg, rgba(31,60,136,.05), rgba(47,191,113,.05)),
    repeating-linear-gradient(0deg, rgba(31,60,136,.10) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(90deg, rgba(31,60,136,.08) 0 1px, transparent 1px 16px);
  position:relative;
  overflow:hidden;
}

.slide::after{
  content: ;
  position:absolute;
  right:10px;
  bottom:10px;
  font-size:12px;
  color: rgba(22,36,58,.55);
  background: rgba(255,255,255,.75);
  border:1px solid var(--line);
  padding:6px 8px;
  border-radius:999px;
}

.carouselNav{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:12px 16px;
  background: var(--panel2);
}
.carouselNav .btnSmall{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:800;
  color: var(--brand3);
  cursor:pointer;
}
.carouselNav .btnSmall.primary{
  background: linear-gradient(90deg, rgba(47,191,113,.95), rgba(47,191,113,.82));
  border:0;
  color:#0b1f16;
}
.techBody{
  padding:14px 16px 16px;
}
.techList{
  margin:10px 0 0;
  padding-left:18px;
  color: var(--muted);
  line-height:1.8;
  font-size:14px;
}






----------------------------------------------
.cardMedia.image{
  height: 160px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cardMedia.image img{
  width: 100%;
  height: 110%;
  object-fit: contain;
  padding: 0px;
  display: block;
}																	

------------------------------------------------------------
/* ==============================
   AJUSTE IMÁGENES BOMBAS
   ============================== */

/* Contenedor del riel / imagen */
.carousel .slide,
.cardMedia.bombas,
.cardMedia.bombas img {
  max-height: 170px;   /* controla el tamaño visual */
}

/* Imagen dentro del riel */
.carousel .slide img{
  width: 100%;
  height: 100%;
  object-fit: contain;   /* NO recorta, NO deforma */
  padding: 0px;
  display: block;
}

/* Si usas cardMedia normal en bombas */
.cardMedia.bombas{
  height: 170px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cardMedia.bombas img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

/* Versión móvil – todavía más control */
@media (max-width: 768px){
  .carousel .slide,
  .cardMedia.bombas{
    height: 140px;
  }
}


.logoImg{
  height: 44px;
  width: auto;
  display: block;
}


