@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;
}
.container{ width:min(var(--container), 92%); margin:0 auto; }
.muted{ color: var(--muted); }
.small{ font-size: 12px; }

/* 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;
}
.badge{
  font-size: 12px;
  font-weight: 950;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.06);
  white-space:nowrap;
}
.badge.ok{ background: rgba(34,197,94,.12); }
.badge.new{ background: rgba(59,130,246,.12); }
.badge.hot{ background: rgba(254,215,30,.25); color: var(--blue); }
.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;
}
.linkPdf{
  padding:.35rem .65rem;
  border:1px solid rgba(15,23,42,.18);
  border-radius:.6rem;
  text-decoration:none;
  font-weight:700;
  color: var(--blue);
}
.linkPdf:hover{ transform: translateY(-1px); }
.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 */
.slider{
  position: relative;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.sliderTrack{
  display:flex;
  gap: 14px;
  padding: 18px 52px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sliderTrack::-webkit-scrollbar{ display:none; }
.sliderItem{
  flex: 0 0 220px;
  height: 120px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  scroll-snap-align: center;
}
.sliderItem img{
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.18));
}
.sliderBtn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.95);
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  cursor:pointer;
  display:grid;
  place-items:center;
  box-shadow: 0 12px 26px rgba(2,6,23,.10);
}
#provPrev{ left: 10px; }
#provNext{ right: 10px; }
.sliderDots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 12px;
}
.sliderDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15,23,42,.18);
  border:0;
  cursor:pointer;
}
.sliderDot.active{
  background: rgba(254,215,30,.95);
  box-shadow: 0 0 0 6px rgba(254,215,30,.16);
}

/* 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;
}
.contactMini{
  font-size: 12px;
  letter-spacing: 2px;
  opacity: .85;
  margin:0 0 10px;
}
.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 LEGACY */
.footer{
  background: #000;
  color: #fff;
  text-align: center;
  padding: 18px;
}

/* 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;
}

body{
  font-family: var(--font-main);
  color:#0f172a;
}

/* =========================
   CONTAINER
========================= */
.container{
  max-width:1100px;
  margin:auto;
  padding:0 20px;
}

/* =========================
   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
========================================================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

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

.container{
  width:min(1140px, 92%);
  margin:0 auto;
}

.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 {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.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,
.contactFormBox {
  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,
.contactFormBox 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,
  .contactFormBox {
    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 */

@media(max-width: 768px){

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

}


/*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){

  .container{
    width: 100%;
    padding: 0 18px;
  }

  .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*/
.formMessage{
  margin-top:15px;
  color:#0f5132;
  opacity:0;
  transition:0.3s;
}

.formMessage.show{
  opacity:1;
}


/*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;
  }
}