

@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap");

/* =========================================================
   GENERALES / TODO EL SITIO
========================================================= */

:root{
  --blue:#173166;
  --blue-dark:#0f2550;
  --yellow:#fed71e;

  --bg:#ffffff;
  --alt:#f5f7fa;
  --text:#0f172a;
  --muted:#475569;
  --line:#e7e9f1;

  --font-main: "Raleway", sans-serif;
  --container:1140px;
  --radius: 18px;
  --radius-sm:12px;
  --shadow: 0 18px 40px rgba(2,6,23,.06);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height:1.55;
}



/* HEADER */
.header{
  position: fixed;
  top:0; left:0;
  width:100%;
  z-index:100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,23,42,.08);
  transition: background .25s ease, border-color .25s ease;
}
.header.solid{
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(254,215,30,.25);
}

.headerBox{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 12px;
}

.logoLink{ display:flex; align-items:center; text-decoration:none; }
.logo{ height: 110px; width:auto; display:block; }

.navBtn{
  display:none;
  background: transparent;
  border: 0;
  color: var(--blue);
  font-size: 28px;
  cursor:pointer;
  padding: 10px 12px;
  border-radius: 12px;
}
.navBtn:hover{ background: rgba(15,23,42,.06); }

.nav{
  display:flex;
  gap:22px;
  align-items:center;
  flex-wrap:wrap;
}
.nav a{
  text-decoration: none;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: .2px;
  padding: 10px 0;
  position: relative;
}

.nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.nav a:hover::after, .nav a.active::after{
  width: 100%;
}

/* BOTON GLOBAL */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--blue);
  color:#fff;
  font-weight: 950;
  text-decoration:none;
  border: none;
  cursor:pointer;
  box-shadow: 0 10px 25px rgba(23,49,102,.22);
}
.btn:hover{ filter:brightness(.96); }

.btnGhost{
  background: transparent;
  color:#fff;
  border: 2px solid rgba(255,255,255,.75);
  box-shadow:none;
}
.btnGhost:hover{ background: rgba(254,215,30,.12); }

/* SECCIONES GLOBALES */
.section{ padding: 58px 0; background:#fff; }
.sectionAlt{ background: var(--alt); }

/*.sectionHead{
  display:flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  margin-bottom: 20px;
}*/
.sectionHead h2{ margin:0; color: var(--blue); font-size: 28px; }
.sectionHead p{ margin:0; }

/* CARDS GLOBALES */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.card{
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(2,6,23,.05);
}
.card h3{ margin:0 0 8px; color: var(--blue); }
.card p{ margin:0; color: var(--muted); }

/* =========================================================
   INICIO
========================================================= */

/* HERO */
.hero{
  position: relative;
  height: 80vh;
  min-height: 420px;
  max-height: 620px;
  overflow: hidden;
  color: #fff;
  padding-top: 150px;
}
.heroBack{ position:absolute; inset:0; z-index:1; }
.heroVid{
  position:absolute;
  top:50%;
  left:50%;
  min-width:110%;
  min-height:110%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.heroBack::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.28));
  z-index:2;
}
.heroBox{
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1100px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}
.hero h1{
  margin:0 0 14px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.08;
  max-width: none;
  text-wrap: balance;
}
.hero p{
  margin:0;
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  max-width: 70ch;
}
.heroBtns{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 18px;
}

/* ABOUT DE INICIO */
/* =========================
   ABOUT / NOSOTROS
========================= */

.about{
  padding:70px 0;
  background:#fff;
}

/* TITULO */
/*.sectionHead{
  text-align:center;
  margin-bottom:20px;
}*/

.sectionHead h2{
  color:var(--blue);
  margin-bottom:6px;
}

.sectionHead .muted{
  color:var(--muted);
}

/* MENU DE TABS */
.aboutMenu{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin:16px 0 20px;
}

.aboutItem{
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  color:var(--blue);
  transition:.2s;
}

.aboutItem:hover{
  background:rgba(254,215,30,.10);
}

.aboutItem.active{
  background:#fed71e;
  border-color:#173166;
}

/* CONTENIDO */
.aboutContent{
  max-width:860px;
  margin:0 auto;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:24px;
  box-shadow:0 10px 26px rgba(2,6,23,.05);
}

/* SECCIONES */
.aboutSection{
  display:none;
}

.aboutSection.active{
  display:block;
}

/* TEXTOS */
.aboutSection h3{
  margin-bottom:12px;
  color:var(--blue);
  font-size:1.2rem;
}

.aboutSection p{
  margin-bottom:10px;
  color:var(--muted);
  line-height:1.7;
}

/* RESPONSIVE */
@media(max-width:768px){
  .aboutContent{
    padding:18px;
  }

  .aboutItem{
    font-size:.9rem;
    padding:8px 12px;
  }
}
/* PRODUCTOS PREVIEW EN INICIO */
.products{
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 16px;
}
.productsHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
  padding: 6px 6px 14px;
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.productsTitle{ margin:0; color: var(--blue); }
.productsRight{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
}
.filters{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
  margin-top: 10px;
}
.filters.center{ justify-content:center; }
.filterBtn{
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  color: #0f172a;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  cursor:pointer;
}
.filterBtn.active{
  background: rgba(254,215,30,.18);
  border-color: rgba(254,215,30,.45);
  color: var(--blue);
}
.searchBox{
  display:flex;
  align-items:center;
  gap: 8px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 999px;
  padding: 8px 12px;
  background:#fff;
  min-width: 260px;
}
.searchIcon{ opacity:.7; }
.searchBox input{
  border:0;
  outline:0;
  width:100%;
  background: transparent;
  font: inherit;
}
.btnSmall{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration:none;
  background: var(--blue);
  color:#fff;
}
.btnSmall:hover{ opacity:.92; }

.productsList{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  padding: 16px 6px 6px;
}
.product{
  display:flex;
  flex-direction:column;
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 12px 26px rgba(2,6,23,.05);
  transition: transform .22s ease, box-shadow .22s ease;
}
.product:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(2,6,23,.09);
}
.productImg{
  height: 150px;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(135deg, rgba(23,49,102,.85), rgba(254,215,30,.18));
}
.productInfo{
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  flex:1;
}
.productTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}


.productTitle{ margin:0; color: var(--blue); }
.productDesc{ margin:0; color:#475569; font-size: 14px; line-height:1.45; }
.productBtns{
  display:flex;
  gap:.75rem;
  align-items:center;
  flex-wrap:wrap;
  margin-top:auto;
}


.linkGo{
  font-weight: 950;
  color: var(--blue);
  text-decoration:none;
}
.linkGo:hover{
  text-decoration: underline;
  text-underline-offset: 6px;
}
.hide{ display:none !important; }

/* INDUSTRIAS EN INICIO */
.industryImg{
  height:170px;
  background:center/cover no-repeat;
  position:relative;
}
.industryImg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.25));
}
.industryInfo{ padding:18px; }
.tag{
  display:inline-block;
  background: rgba(254,215,30,.22);
  color: var(--blue);
  font-size:12px;
  font-weight:950;
  padding:4px 10px;
  border-radius:999px;
  margin-bottom:8px;
}

/* PROVEEDORES */


/* CONTACTO EN INICIO O SECCION GENERAL */
.contact{
  background: var(--blue);
  color: #fff;
  padding: 80px 0;
}
.contactBox{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contactTitle{
  font-size: 36px;
  margin: 0 0 10px;
}
.contactTitle span{ color: var(--yellow); }
.contactText{
  max-width: 420px;
  margin-bottom: 20px;
  opacity: .9;
}
.contactData p{ margin: 6px 0; }
.contactBtns{
  display:flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap:wrap;
}
.btnContact{
  background: var(--yellow);
  color: #000;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 900;
}
.btnOutline{
  background: transparent;
  color: #fff;
  border: 2px solid var(--yellow);
}
.contactNote{
  margin-top: 20px;
  font-size: 14px;
  opacity: .85;
}
.contactForm{
  background: var(--yellow);
  color: #000;
  padding: 40px;
  border-radius: 16px;
}

.contactForm h3{
  color: var(--blue);
  margin: 0 0 20px;
}
.contactForm input, .contactForm textarea{
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: none;
  border-radius: 6px;
}
.contactForm button{
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 950;
}

/* FAQ GENERAL */
.centerCard{
  text-align:center;
}
.faqList{
  max-width: 900px;
  margin: 0 auto;
}
.faqItem{
  border-bottom: 1px solid rgba(15,23,42,.10);
  padding: 18px 0;
}
.faqQuestion{
  width:100%;
  background:none;
  border:0;
  padding:0;
  text-align:left;
  font: inherit;
  font-size:18px;
  font-weight:800;
  color: var(--blue);
  cursor:pointer;
}
.faqAnswer{
  display:none;
  padding-top:12px;
}
.faqAnswer p{
  margin:0;
  color: var(--muted);
}
.faqItem.active .faqAnswer{
  display:block;
}

/* =========================================================
   FOOTER
========================================================= */

 FOOTER ACTUAL 
.footer{
  background: #0f172a;
  color: rgba(255,255,255,0.85);
  padding: 60px 0 24px;
}
.footer-content{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4{
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.footer-col p{
  margin: 6px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}
.footer-col a{
  display: block;
  margin: 6px 0;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-col a:hover{
  color: #ffffff;
}
.footer-bottom{
  margin-top: 30px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}



/* =========================================================
   RESPONSIVE GLOBAL
========================================================= */

@media (max-width: 980px){
  .cards{ grid-template-columns: 1fr; }
  .productsList{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contactBox{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .productsList{ grid-template-columns: 1fr; }
  .searchBox{ width:100%; min-width:0; }
}
@media (max-width: 768px){
  .logo{ height: 90px; }

  .navBtn{ display:inline-flex; }
  .nav{
    display:none;
    position:absolute;
    left:0; right:0;
    top: 124px;
    background: rgba(255,255,255,.98);
    border-top: 1px solid rgba(15,23,42,.08);
    padding: 14px 0;
    flex-direction: column;
    gap: 14px;
    z-index: 110;
  }
  .nav.open{ display:flex; }
  .nav a{ width:min(1140px, 92%); margin:0 auto; }
}
@media (max-width: 768px) {
  .footer-content{
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .nav{
    justify-content: space-between;
  }
}
@media (max-width: 640px) {
  .footer-content{
    flex-direction: column;
  }
}

/* =========================================================
   AJUSTES SEGUROS DE UNIFICACION
========================================================= */
body{overflow-x:hidden;}
main{display:block;}
.header{min-height:134px;}
.headerBox{min-height:134px; padding:12px 0;}
.logo{height:110px; width:auto; object-fit:contain;}

.hero{
  padding-top:134px;
}
.heroBox{
  align-items:center;
  text-align:center;
  margin:0 auto;
}
.hero h1, .hero p{
  margin-left:auto;
  margin-right:auto;
}
.heroBtns{
  justify-content:center;
}

/* =========================
   NOSOTROS MODERNO
========================= */

:root{
  --blue:#1e3a8a;
  --yellow:#fed71e;
  --muted:#64748b;
}

/* =========================
   RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}



/* =========================
   NOSOTROS MODERNO
========================= */
.nosotrosModerno{
  padding:90px 0;
  background:
    radial-gradient(circle at top left, rgba(254,215,30,.18), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.nosotrosGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.tag{
  display:inline-block;
  background:rgba(254,215,30,.2);
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:12px;
  font-weight:700;
  color:var(--blue);
}

.nosotrosTexto h2{
  color:var(--blue);
  font-size:2.5rem;
  margin-bottom:15px;
}

.nosotrosTexto p{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:10px;
}

.btnNosotros{
  display:inline-block;
  margin-top:15px;
  background:var(--blue);
  color:#fff;
  padding:12px 26px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.btnNosotros:hover{
  background:var(--yellow);
  color:var(--blue);
}

.nosotrosImagen img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:24px;
}

/* =========================
   MISIÓN / VISIÓN
========================= */
.misionVision{
  padding:80px 0;
  background:#fff;
}

.mvGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.mvCard{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:24px;
  padding:40px 30px;
  text-align:center;
  box-shadow:0 15px 35px rgba(2,6,23,.06);
  transition:.3s ease;
}

.mvCard h3{
  color:var(--blue);
  font-size:1.5rem;
  margin-bottom:12px;
}

.mvCard p{
  color:var(--muted);
  line-height:1.8;
  max-width:320px;
  margin:auto;
}

.mvCard:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 45px rgba(2,6,23,.1);
}

/* =========================
   VALORES
========================= */
.valoresModerno{
  padding:80px 0;
  background:#f8fafc;
}

/*.sectionHead{
  text-align:center;
  margin-bottom:30px;
}*/

.sectionHead h2{
  color:var(--blue);
  font-size:2rem;
}

.sectionHead p{
  color:var(--muted);
}

.valoresGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.valorCard{
  background:#fff;
  padding:25px;
  border-radius:20px;
  text-align:center;
  border:1px solid rgba(0,0,0,.05);
  transition:.3s;
}

.valorCard span{
  display:block;
  font-size:22px;
  margin-bottom:10px;
}

.valorCard h4{
  color:var(--blue);
  margin-bottom:8px;
}

.valorCard p{
  color:var(--muted);
  font-size:.95rem;
}

.valorCard:hover{
  transform:translateY(-5px);
  background:var(--blue);
}

.valorCard:hover h4, .valorCard:hover p{
  color:#fff;
}

/* =========================
   CTA
========================= */
.ctaModerna{
  background:linear-gradient(135deg,var(--blue),#0f172a);
  color:#fff;
  padding:70px 0;
}

.ctaBoxModerna{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.ctaTag{
  display:inline-block;
  background:rgba(255,255,255,.15);
  padding:6px 12px;
  border-radius:999px;
  margin-bottom:10px;
}

.btnCta{
  background:var(--yellow);
  color:var(--blue);
  padding:12px 24px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
}

.btnCtaGhost{
  border:2px solid #fff;
  color:#fff;
  padding:12px 24px;
  border-radius:999px;
  text-decoration:none;
}

/* =========================
   FAQ
========================= */
.faqModerno{
  padding:80px 0;
}

.faqList{
  max-width:700px;
  margin:auto;
}

.faqItem{
  border:1px solid rgba(0,0,0,.1);
  border-radius:12px;
  margin-bottom:12px;
  padding:15px;
}

.faqItem summary{
  font-weight:700;
  cursor:pointer;
  color:var(--blue);
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:900px){
  .nosotrosGrid, .mvGrid, .valoresGrid, .ctaBoxModerna{
    grid-template-columns:1fr;
    display:grid;
  }
}

@media(max-width:600px){
  .valoresGrid{
    grid-template-columns:1fr;
  }
}


/* =========================================================
   PAGINA PRODUCTOS
========================================================= */


body{
  font-family: var(--font-main);
  background:linear-gradient(to right, #f8fbff, #eef4fb);
  color:#0f172a;
  padding:30px 20px;
}


.productosPage{
  padding:40px 0 70px;
}

.productosHead{
  text-align:center;
  margin-bottom:50px;
}

.productosHead h1{
  font-size:2.2rem;
  color:#173166;
  margin-bottom:12px;
}

.productosHead p{
  max-width:700px;
  margin:0 auto;
  color:#5b6575;
  line-height:1.7;
}

.productosGrid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:24px;
}

.productoCard{
  width:300px;
  border-radius:18px;
  box-shadow:0 14px 30px rgba(0,0,0,.10);
  background:#fff;
  margin:50px 0;
  overflow:visible;
}

.productoImg{
  height:280px;
  overflow:hidden;
  position:relative;
  top:-70px;
  padding:14px;
}

.productoImg img{
  width:100%;
  height:100%;
  object-fit:contain;
  transition:transform .4s;
  border-radius:14px;

}

.productoCard:hover .productoImg img{
  transform:scale(1.05);
}

.productoInfo{
  padding:20px;
  margin-top:-70px;
}

.productoTitulo{
  font-size:1.35rem;
  margin-bottom:8px;
  color:#173166;
}

.productoTipo{
  font-size:.95rem;
  font-weight:700;
  margin-bottom:10px;
  color:#fed71e;
}

.productoTexto{
  font-size:.98rem;
  line-height:1.6;
  margin-bottom:18px;
  color:#5b6575;
}

.productoBtns{
  display:flex;
  justify-content: center; /* centra horizontal */
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.heroBtns{
  display: flex;
  gap: 15px;
}

.btn{
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: all .3s ease;
  display: inline-block;
}

/* Botón tipo borde (como "Ver productos") */
.btn.outline{
  border: 2px solid rgba(255,255,255,0.8);
  color: #fff;
  backdrop-filter: blur(4px);
}

.btn.outline:hover{
  background: #fff;
  color: #1e3a8a; /* azul al hacer hover */
  transform: translateY(-2px);
}

.btnFicha{
  padding:10px 18px;
  border-radius:999px;
  font-size:.95rem;
  font-weight:700;
  text-decoration:none;
  text-align:center;
  background:#fed71e;
  color:#173166;
}

.btnFicha:hover{
  opacity:.9;
}

@media (max-width:768px){
  .productosHead h1{
    font-size:1.8rem;
  }

  .productoCard{
    width:100%;
    max-width:340px;
  }

  .productoBtns{
    flex-direction:column;
    align-items:stretch;
  }
}


/*Contacto*/
/* =========================
   APLICACIONES TECNIBANDAS
   Azul + amarillo
========================= */

.applicationsSection{
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(254, 215, 30, .16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/*
.applicationsSection .sectionHead h2{
  color: #1e3a8a;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 14px;
}*/

.applicationsSection .sectionHead .muted{
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
}

.applicationsGrid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 330px));
  justify-content: center;
  gap: 28px;
}

.appCard{
  background: #ffffff;
  border: 1px solid rgba(30, 58, 138, .10);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.appCard:hover{
  transform: translateY(-8px);
  border-color: rgba(254, 215, 30, .75);
  box-shadow: 0 28px 65px rgba(30, 58, 138, .14);
}

.appImage{
  height: 225px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.appImage::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(30, 58, 138, .28));
}

.appContent{
  padding: 28px;
}

.appContent .tag{
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: #FED71E;
  font-size: .82rem;
  font-weight: 800;
}

.appContent h3{
  color: #1e3a8a;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.08;
  margin: 18px 0 12px;
}

.appContent p{
  color: #64748b;
  font-size: .98rem;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .applicationsSection{
    padding: 85px 0;
  }

  .applicationsGrid{
    grid-template-columns: minmax(0, 1fr);
  }

  .appCard{
    max-width: 420px;
    margin: 0 auto;
  }
}


/* =========================
   CONTACTO TECNIBANDAS
   SOLO CONTACTO
========================= */

.contactPage{
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(254, 215, 30, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contactGrid{
  max-width: 1180px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: start;
}

/* =========================
   CAJAS
========================= */

.contactInfo{
  background: #fff;

  border-radius: 30px;

  padding: 42px;

  border: 1px solid rgba(23, 49, 102, 0.08);

  box-shadow:
    0 10px 35px rgba(15, 23, 42, 0.06);
}

/* =========================
   TITULOS
========================= */

.contactInfo h2{
  color: #173166;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
}

.contactInfo .muted{
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* =========================
   INFO CARDS
========================= */

.infoList{
  display: grid;
  gap: 18px;
}

.infoCard{
  padding: 22px 24px;

  border-radius: 22px;

  background: #f8fafc;

  border: 1px solid rgba(23, 49, 102, 0.06);

  transition: .3s ease;
}

.infoCard:hover{
  transform: translateY(-4px);

  border-color: rgba(254, 215, 30, .9);

  box-shadow:
    0 12px 28px rgba(23, 49, 102, .08);
}

.infoCard h3{
  color: #173166;
  font-size: 1rem;
  margin-bottom: 8px;
}

.infoCard p, .infoCard a{
  color: #475569;
  text-decoration: none;
}

.infoCard a:hover{
  color: #173166;
}

/* =========================
   HORARIOS
========================= */

.hoursBox{
  margin-top: 28px;

  background: #173166;

  border-radius: 24px;

  padding: 28px;

  color: white;
}

.hoursBox h3{
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.hoursGrid{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

/* =========================
   FORMULARIO
========================= */

.contactForm{
  margin-top: 28px;
}

.formRow{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.formGroup{
  margin-bottom: 22px;
}

.formGroup label{
  display: block;
  margin-bottom: 10px;

  color: #173166;
  font-weight: 700;
  font-size: .92rem;
}

.formGroup input, .formGroup textarea{
  width: 100%;

  padding: 16px 18px;

  border-radius: 16px;

  border: 1px solid rgba(23, 49, 102, 0.10);

  background: #fff;

  font-size: .96rem;

  transition: .25s ease;
}

.formGroup textarea{
  min-height: 180px;
  resize: vertical;
}

.formGroup input:focus, .formGroup textarea:focus{
  outline: none;

  border-color: #FED71E;

  box-shadow:
    0 0 0 4px rgba(254, 215, 30, .18);
}

/* =========================
   BOTON
========================= */

.contactForm .btn{
  width: 100%;

  border: none;

  background: #FED71E;
  color: #173166;

  padding: 18px;

  border-radius: 18px;

  font-weight: 800;
  font-size: 1rem;

  cursor: pointer;

  transition: .3s ease;
}

.contactForm .btn:hover{
  background: #173166;
  color: #fff;

  transform: translateY(-3px);

  box-shadow:
    0 14px 28px rgba(23, 49, 102, .16);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .contactGrid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .contactPage{
    padding: 80px 0;
  }

  .formRow{
    grid-template-columns: 1fr;
  }

  .contactInfo{
    padding: 28px;
    border-radius: 24px;
  }
}


/*Contacto pagina index*/

.contactBox{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* COLUMNA DERECHA */
.contactRight{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 40px;
  border-radius: 20px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  min-height: 320px;
}

/* TEXTO */

.contactInvite{
  color: #e2e8f0;
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 320px;

  margin-bottom: 30px;
}

/* BOTON */

.btnGoContact{
  display: inline-block;

  padding: 16px 38px;

  background: #fed71e;
  color: black;

  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;

  border-radius: 12px;

  transition: all .3s ease;
}

.btnGoContact:hover{
  background: #fed71e;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,191,255,.25);
}
/* RESPONSIVE */


/*CSS de Aplicacion del index*/
.industriesGrid{
  display: flex;
  justify-content: center;
  align-items: center;
}

.industryCard{
  max-width: 420px;
  width: 100%;
}

.industryCard.hidden{
  display: none;
}

.filterBtn.active{
  background: #f4c542;
  color: #163f8f;
  border-color: #f4c542;
}

/* RESPONSIVE GENERAL */
@media (max-width: 768px){

 

  .section{
    padding: 60px 0;
  }

  /*.sectionHead{
    text-align: center;
    margin-bottom: 30px;
  }*/

  .sectionHead h2{
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .muted{
    font-size: .95rem;
    line-height: 1.6;
  }

  /* BOTONES FILTRO */
  .filters{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-bottom: 30px;
  }

  .filterBtn{
    width: 100%;
    padding: 14px 18px;
    font-size: .95rem;
    text-align: center;
  }

  /* CARDS */
  .industriesGrid{
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .industryCard{
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .industryImg{
    height: 210px;
    background-size: cover;
    background-position: center;
  }

  .industryInfo{
    padding: 22px;
    text-align: center;
  }

  .industryInfo h3{
    font-size: 1.35rem;
  }

  .industryInfo p{
    font-size: .95rem;
    line-height: 1.6;
  }

}


/*Contacto Mapa*/
.mapSection{
  padding: 80px 20px;
  background: #f8fafc;
}

.mapCard{
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, .12);
  border: 1px solid #e5e7eb;
}

.mapHeader{
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.mapHeader h2{
  color: #163f8f;
  font-size: 1.6rem;
}

.mapBox iframe{
  width: 100%;
  height: 430px;
  border: none;
  display: block;
}

.mapInfo{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  padding: 24px 30px;
}

.mapInfo h3{
  color: #0f172a;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.mapInfo p{
  color: #475569;
  font-size: .95rem;
}

.btnMap{
  padding: 14px 24px;
  background: #163f8f;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  white-space: nowrap;
  transition: .3s;
}

.btnMap:hover{
  background: #f4c542;
  color: #163f8f;
}

@media(max-width: 768px){
  .mapInfo{
    flex-direction: column;
    text-align: center;
  }

  .mapBox iframe{
    height: 320px;
  }
}


/*Stilos de formulario*/


/*estilos certificaciones*/
.certCards{
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}

.certCards .card{
  width: 400px;
  text-align: center;
}

/*estilos producto titulo*/
.productsTitle{
  text-align: center;
  width: 100%;
}
.productsHead{
  display: flex;
  flex-direction: column;
  align-items: center;
}


.socialDock{
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.socialItem{
  width: 46px;
  height: 46px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;

  color: #ffffff;
  background: #003b8e;
  border: 1px solid rgba(247,198,0,.65);

  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transition: all .28s ease;
}

.socialItem i{
  font-size: 18px;
  min-width: 20px;
  text-align: center;
}

.socialItem span{
  max-width: 0;
  opacity: 0;
  font-size: 14px;
  font-weight: 700;
  transition: all .28s ease;
}

.socialItem:hover{
  width: 145px;
  justify-content: flex-start;
  padding: 0 16px;
  background: linear-gradient(135deg, #003b8e 0%, #0057c8 70%);
  border-color: #f7c600;
  transform: translateX(-4px);
}

.socialItem:hover span{
  max-width: 90px;
  opacity: 1;
}

.socialItem:hover i{
  color: #f7c600;
}

@media(max-width:768px){
  .socialDock{
    right: 14px;
    bottom: 20px;
  }

  .socialItem{
    width: 42px;
    height: 42px;
  }

  .socialItem:hover{
    width: 42px;
    padding: 0;
    justify-content: center;
    transform: none;
  }

  .socialItem span{
    display: none;
  }
}

/* =========================================================
   ÚLTIMA NOTICIA DEL BLOG
   Integración automática con WordPress /blog/
========================================================= */
.latestNews{
  padding: 38px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.latestNews[hidden]{
  display:none !important;
}

.latestNewsCard{
  display:grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap:28px;
  align-items:center;
  padding:22px;
  background:#fff;
  border:1px solid rgba(23,49,102,.10);
  border-radius:24px;
  box-shadow:0 18px 40px rgba(15,23,42,.08);
}

.latestNewsImage{
  width:100%;
  height:240px;
  display:block;
  object-fit:cover;
  border-radius:18px;
  background:#eef2f7;
}

.latestNewsContent{
  min-width:0;
}

.latestNewsLabel{
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-bottom:12px;
  padding:7px 14px;
  border-radius:999px;
  background:var(--yellow, #fed71e);
  color:var(--blue, #173166);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.latestNewsTitle{
  margin:0 0 12px;
  color:var(--blue, #173166);
  font-size:clamp(1.55rem, 3vw, 2.25rem);
  line-height:1.15;
  text-wrap:balance;
}

.latestNewsExcerpt{
  color:var(--muted, #475569);
  line-height:1.7;
}

.latestNewsExcerpt p{
  margin:0;
}

.latestNewsButton{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:18px;
  padding:12px 22px;
  border-radius:999px;
  background:var(--blue, #173166);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  transition:transform .25s ease, background .25s ease, color .25s ease;
}

.latestNewsButton:hover{
  transform:translateY(-2px);
  background:var(--yellow, #fed71e);
  color:var(--blue, #173166);
}

.latestNewsLoading{
  grid-column:1 / -1;
  padding:24px;
  text-align:center;
  color:var(--muted, #475569);
}

@media(max-width:768px){
  .latestNews{
    padding:28px 0;
  }

  .latestNewsCard{
    grid-template-columns:1fr;
    gap:18px;
    padding:16px;
    border-radius:20px;
  }

  .latestNewsImage{
    height:210px;
  }
}


/* =========================================================
   ÚLTIMA NOTICIA TECNIBANDAS
========================================================= */

.tb-news{
  padding: 72px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(254, 215, 30, 0.16),
      transparent 32%
    ),
    #f5f7fa;
}

.tb-news__heading{
  margin-bottom: 26px;
  text-align: center;
}

.tb-news__eyebrow{
  display: inline-block;
  margin-bottom: 8px;
  color: #173166;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tb-news__heading h2{
  margin: 0;
  color: #173166;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.1;
}

.tb-news__card{
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  max-width: 1040px;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(23, 49, 102, 0.1);
  border-radius: 26px;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.1);
}

.tb-news__media{
  min-height: 340px;
  overflow: hidden;
}

.tb-news__media img{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.tb-news__card:hover .tb-news__media img{
  transform: scale(1.035);
}

.tb-news__content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 54px);
}

.tb-news__tag{
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 14px;
  background: #fed71e;
  color: #173166;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tb-news__content h3{
  margin: 0 0 16px;
  color: #173166;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.18;
}

.tb-news__content p{
  margin: 0 0 24px;
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
}

.tb-news__button{
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #173166;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.tb-news__button:hover{
  background: #fed71e;
  color: #173166;
  transform: translateY(-2px);
}

@media (max-width: 800px) {
  .tb-news{
    padding: 56px 0;
  }

  .tb-news__card{
    grid-template-columns: 1fr;
  }

  .tb-news__media, .tb-news__media img{
    min-height: 230px;
    height: 230px;
  }

  .tb-news__content{
    padding: 26px 22px 30px;
  }
}


/* =========================================================
   UNIFICACIÓN VISUAL TECNIBANDAS
========================================================= */

/* Fondos consistentes */
.section, .about, .faqModerno, .misionVision{
  background: #ffffff;
}

.sectionAlt, .tb-news, .industriesSection, .valoresModerno, .applicationsSection, .contactPage{
  background: #f5f7fa;
}

/* Espaciado uniforme entre secciones */
.section, .about, .tb-news, .industriesSection, .valoresModerno, .applicationsSection, .contactPage, .faqModerno, .misionVision{
  padding-top: 72px;
  padding-bottom: 72px;
}

/* Títulos consistentes */
.sectionHead h2, .tb-news__heading h2, .productsTitle, .contactInfo h2, .nosotrosTexto h2{
  color: #173166;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

/* Textos secundarios consistentes */
.sectionHead p, .muted, .card p, .productDesc, .industryInfo p, .aboutSection p, .tb-news__content p{
  color: #475569;
}

/* Tarjetas con el mismo estilo */
.card, .product, .products, .industryCard, .certCards .card, .aboutContent, .tb-news__card, .mvCard, .valorCard, .appCard{
  background: #ffffff;
  border: 1px solid rgba(23, 49, 102, 0.10);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

/* Hover uniforme */
.card, .product, .industryCard, .tb-news__card, .mvCard, .valorCard, .appCard{
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card:hover, .product:hover, .industryCard:hover, .tb-news__card:hover, .mvCard:hover, .valorCard:hover, .appCard:hover{
  transform: translateY(-4px);
  border-color: rgba(254, 215, 30, 0.75);
  box-shadow: 0 20px 45px rgba(23, 49, 102, 0.11);
}

/* Etiquetas amarillas consistentes */
.tag, .tb-news__tag, .tb-news__eyebrow{
  background: #fed71e;
  color: #173166;
}

/* Botones principales consistentes */
.btn, .btnSmall, .btnNosotros, .tb-news__button, .btnGoContact, .btnMap{
  background: #173166;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 800;
}

.btn:hover, .btnSmall:hover, .btnNosotros:hover, .tb-news__button:hover, .btnGoContact:hover, .btnMap:hover{
  background: #fed71e;
  color: #173166;
}

/* Evita el degradado global que rompe la uniformidad */
body{
  background: #ffffff;
  padding: 0;
}

/* Contacto mantiene identidad azul */
.contact{
  background: #173166;
}

/* Footer coherente con el azul oscuro */
.footer{
  background: #0f172a;
}

/* Responsive */
@media (max-width: 768px) {
  .section, .about, .tb-news, .industriesSection, .valoresModerno, .applicationsSection, .contactPage, .faqModerno, .misionVision{
    padding-top: 56px;
    padding-bottom: 56px;
  }
}


/* =========================================================
   LIMPIEZA VISUAL PREMIUM - TECNIBANDAS
========================================================= */

/* Espaciado general uniforme */
.section, .about, .tb-news, .industriesSection, #certificaciones, #faq, #nosotros, .contact{
  padding-top: 76px;
  padding-bottom: 76px;
}

/* =========================================================
   CONTENEDOR GLOBAL PRINCIPAL
   Controla el ancho máximo y centra el contenido del sitio.

========================================================= */
.container{
  width: min(1140px, 92%);
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

/* Encabezados de sección */
.sectionHead, .tb-news__heading{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
  text-align: center;
}

.sectionHead h2, .tb-news__heading h2, .productsTitle{
  margin: 0 0 10px;
  color: #173166;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  font-weight: 800;
}

.sectionHead p, .tb-news__heading p{
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
}

/* Todas las tarjetas con el mismo lenguaje visual */
.card, .product, .products, .industryCard, .aboutContent, .tb-news__card{
  border: 1px solid rgba(23, 49, 102, 0.1);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

/* Hover suave y uniforme */
.card, .product, .industryCard, .tb-news__card{
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card:hover, .product:hover, .industryCard:hover, .tb-news__card:hover{
  transform: translateY(-5px);
  border-color: rgba(254, 215, 30, 0.8);
  box-shadow: 0 22px 48px rgba(23, 49, 102, 0.12);
}

/* Tarjetas de soluciones */
.cards{
  gap: 22px;
}

.card{
  padding: 26px;
}

.card h3{
  margin-bottom: 10px;
  color: #173166;
  font-size: 1.18rem;
  font-weight: 800;
}

.card p{
  color: #475569;
  line-height: 1.7;
}

/* Sección productos más protagonista */
.products{
  padding: 24px;
}

.productsHead{
  padding: 8px 8px 20px;
}

.productsList{
  gap: 22px;
  padding-top: 22px;
}

.productImg{
  height: 190px;
}

.productInfo{
  padding: 20px;
}

.productTitle{
  font-size: 1.25rem;
}

.productDesc{
  font-size: 0.96rem;
  line-height: 1.65;
}

/* Última noticia más amplia y elegante */
.tb-news__card{
  max-width: 1080px;
}

.tb-news__media{
  min-height: 380px;
}

.tb-news__media img{
  min-height: 380px;
}

.tb-news__content{
  padding: clamp(34px, 5vw, 62px);
}

.tb-news__content h3{
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
}

/* Botones uniformes */
.btn, .btnSmall, .btnContact, .btnGoContact, .tb-news__button, .filterBtn{
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
}

/* Botones principales */
.btn, .btnSmall, .tb-news__button{
  padding-left: 22px;
  padding-right: 22px;
}

/* Aplicaciones */
.industryCard{
  overflow: hidden;
}

.industryImg{
  height: 210px;
}

.industryInfo{
  padding: 24px;
}

/* Certificaciones */
.certCards{
  gap: 24px;
}

.certCards .card{
  width: min(420px, 100%);
  padding: 28px;
}

/* FAQ */
.faqList{
  max-width: 860px;
}

.faqItem{
  margin-bottom: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(23, 49, 102, 0.1);
  border-radius: 14px;
  background: #ffffff;
}

.faqQuestion{
  font-size: 1rem;
}

/* Nosotros */
.aboutContent{
  max-width: 920px;
  padding: 30px;
}

/* Contacto más limpio */
.contact{
  padding-top: 84px;
  padding-bottom: 84px;
}

.contactBox{
  gap: 50px;
}

.contactRight{
  min-height: 340px;
  border-radius: 24px;
}

/* Alternancia de fondos */
.tb-news, .sectionAlt, #certificaciones{
  background: #f5f7fa;
}

.section, .about, #faq, #nosotros{
  background: #ffffff;
}

/* Responsive */
@media (max-width: 900px) {
  .section, .about, .tb-news, .industriesSection, #certificaciones, #faq, #nosotros, .contact{
    padding-top: 58px;
    padding-bottom: 58px;
  }


  .tb-news__media, .tb-news__media img{
    min-height: 250px;
    height: 250px;
  }

  .productImg{
    height: 180px;
  }
}
