section#cobertura {
  background: ;
  height: auto;
  margin: 0;
  margin-top:0;
  padding: 0;
  padding-bottom:20px;
  padding-top:20px;
  text-align: center;
  width: 100%;

}

section#cobertura h2 {
  font-size: 60px;
  color: crimson;
  margin: 0;
}

section#cobertura p {
  font-size: 1.2em;
  color: #000;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

.contenido {
  display: flex;
  flex-wrap: ;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
}

/* Lista de Zonas */
.zonas {
  background:;
  flex: 1 1 300px;
  min-width: 280px;
  padding-left:30px;
  text-align: left;
}
.zonas2{
  display: none;
}

.zonas h3 {
  font-size: 1.6em;
  margin-bottom: 20px;
  color: #000;
  border-bottom: 2px solid crimson;
  display: inline-block;
  padding-bottom: 5px;
}

.zonas ul {
  list-style: none;
  padding: 0;
  line-height: 2.2;
}

.zonas li {
  background: white;
  border-radius:20px;
  cursor: pointer;
  display: inline-table;
  transition: all 0.3s ease;
  font-size: 16px;
  margin-right:10px;
  margin-bottom:10px;
  padding: 5px 20px;
  position: relative;
  width: ;
}

.zonas li:hover {
  background-color: rgba(255,69,0,.89);
  color: #fff;
  cursor: pointer;
  transform: scale(1.05);
}

/* Contenedor del mapa */
.mapa-container {
  flex: 2 1 600px;
  min-width: 300px;
  position: relative;
  display: inline-block;
}

.mapa-container img.mapa {
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  display: block;
  margin: 0 auto;
}
.mapa-container img.mapa#mapa2{
display: none;
}
/* Zonas resaltadas */
.zona {
  position: absolute;
  border-radius: 50%;
  background: rgba(217, 83, 79, 0.4);
  width: 25px;
  height: 25px;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  transform: scale(1);
}

.zona.activo {
  opacity: 1;
  transform: scale(1.7);
  box-shadow: 0 0 20px rgba(217,83,79,0.7);
}

/* Tooltip con logo y nombre */
.tooltip {
  position: absolute;
  background: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.3s ease;
  pointer-events: none;
}

.tooltip img {
  width: 40px;
  height: 40px;
}

.tooltip.activo {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.armamento {
  background: #1e293b;
  color: #f1f5f9; /* gris claro */
  padding: 10px;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Título */
.armamento h2 {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  color: rgba(255,255,255,1); /* naranja corporativo */
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Subtexto */
.armamento .subtexto {
  text-align: center;
  font-size: 1.2rem;
  color: #cbd5e1; /* gris medio */
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

/* Párrafos */
.armamento p {
  max-width: 850px;
  margin: 1.2rem auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e2e8f0;
  text-align: center;
}

/* Lista */
.armamento ul {
  margin: 2rem auto;
  padding: 0;
  list-style: none;
}

.armamento ul li {
  position: relative;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-left: 2rem;
  line-height: 1.6;
  color: #f8fafc;
}

.armamento ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #f97316;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Nota destacada */
.armamento .nota {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f97316;
  margin-top: 2.5rem;
  max-width: 850px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ======== GRID TARJETAS ======== */
.armamento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 4rem auto;
}

/* Tarjetas */
.armamento-card {
  background: #1e293b;

  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.armamento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.7);
}

/* Iconos */
.armamento-card img {
  width: 70px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px rgba(249,115,22,0.4)); /* efecto glow naranja */
}

/* Títulos dentro de tarjetas */
.armamento-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 0.7rem;
}

/* Texto dentro de tarjetas */
.armamento-card p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* ======== BOTÓN CTA ======== */
.armamento .cta {
  display: inline-block;
  background: #f97316;
  color: #fff;
  font-weight: bold;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: background 0.3s ease, transform 0.2s ease;
}

.armamento .cta:hover {
  background: #ea580c;
  transform: translateY(-3px);
}
/* ====== ESTILOS PROFESIONALES - LISTADO DE ARMAS ====== */
:root{
  --bg: #0f1724;        /* fondo sección */
  --card: #111827;      /* fondo tarjeta */
  --muted: #cbd5e1;     /* texto secundario */
  --accent: #f97316;    /* naranja corporativo */
  --glass: rgba(255,255,255,0.03);
  --radius: 12px;
  --shadow: 0 10px 30px rgba(2,6,23,0.6);
}

/* contenedor */
.armas {
  background: linear-gradient(180deg, var(--bg), #0b1220);
  padding: 3.5rem 1rem;
  color: #eef2f7;
  font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
}

/* reset lista */
.armas ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat( auto-fit, minmax(240px, 1fr) );
  gap: 1.6rem;
  align-items: start;
}

/* tarjeta por arma */
.armas ul li {
  background: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 300ms ease, box-shadow 300ms ease, border 300ms ease;
  border: 1px solid rgba(255,255,255,0.03);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* efecto hover */
.armas ul li:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(2,6,23,0.75);
  border-color: rgba(249,115,22,0.12);
}

/* imagen: ocupa ancho, altura fija, recorte elegante */
.armas ul li img {
  width: 80%;
  height: 180px;        /* ajustar según diseño */
  margin: 0 auto;
  object-fit: cover;
  display: block;
  background:none;
}
.armas ul li::before{
display: none;
}
/* cuerpo de la tarjeta */
.armas ul li .meta {
  padding: 1rem 1.25rem 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* primer párrafo - descriptor */
.armas ul li p:first-of-type {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  margin-top:20px;
}

/* segundo párrafo - marca/modelo como texto secundario */
.armas ul li p + p {
  font-size: 0.92rem;
  color: rgba(255,255,255,.8);
  margin: 0;
}

/* etiqueta de detalle (opcional) */
.armas ul li .tag {
  margin-top: 0.6rem;
  display: inline-block;
  font-size: 0.82rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(249,115,22,0.12);
  color: var(--accent);
  font-weight: 700;
  width: fit-content;
}

/* badge "USADO" (opcional) */
.armas ul li .badge-used {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(90deg, rgba(250,150,50,0.98), rgba(249,115,22,0.95));
  color: #071021;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.28rem 0.6rem;
  border-radius: 6px;
  box-shadow: 0 6px 14px rgba(249,115,22,0.14);
  letter-spacing: 0.6px;
}

/* accesibilidad: focus */
.armas ul li:focus-within,
.armas ul li a:focus {
  outline: 3px solid rgba(249,115,22,0.12);
  outline-offset: 4px;
}
/* pequeño utilitario para centrar texto cuando quieras */
.armas .center {
  text-align: center;
}
#certificaciones {
  padding: 60px 20px;
}

#certificaciones .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

#certificaciones h2 {
  font-size: 60px;
  margin-bottom: 15px;
  color: crimson;
}

#certificaciones .intro {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.grid-certificaciones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 12px;
  height: 150px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease, opacity 0.6s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Fondo específico por institución */
.card#sedena { background-image: url("uploads-2025/SEDENA.webp"); }
.card#dgsp { background-image: url("uploads-2025/dgsp.jpg"); }
.card#repse { background-image: url("uploads-2025/repse.jpg"); }
.card#shcp { background-image: url("uploads-2025/shcp.png"); }
.card#imss { background-image: url("uploads-2025/imss.jpg"); }
.card#infonavit { background-image: url("uploads-2025/infonavit.jpg"); }
.card#fonacot { background-image: url("uploads-2025/fonacot.jpg"); }
.card#sat { background-image: url("uploads-2025/sat.jpg"); }

.card#sedena,
.card#dgsp,
.card#repse,
.card#shcp,
.card#imss,
.card#infonavit,
.card#fonacot
.card#sat {
  background-size: cover;
  background-position: center;
}

.card .shadow {
  background: rgba(0,0,0,0.7);
  border-radius: 12px;
  color: #fff;
  height: 100%;
  width: 100%;
  padding: 10px;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card:hover {
  transform: scale(1.05); /* zoom leve */
  opacity: 0.9;           /* sutil difuminado */
}

.card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  line-height: 1.4;
}
#accesorios-slider {
  padding: 0px;
  background-color: #dee1e3;
  text-align: center;
}

#accesorios-slider h2 {
  color:crimson;
  font-size: 60px;
  margin-bottom: 10px;
}

#accesorios-slider p {
  font-size: 1em;
  margin-bottom: 40px;
  color: #000;
}

.slider {
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  width: calc(220px * 14); /* ancho de slide * cantidad de slides */
  animation: scroll 25s linear infinite;
}

.slide {
  flex: 0 0 220px;
  background: #fff;
  margin-right: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.slide img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
  transition: box-shadow 0.5s ease-in-out; /* transición suave al cambiar resplandor */
}


@keyframes glow {
  0% { box-shadow: 0 0 10px rgba(255, 69, 0, 0.3); }
  50% { box-shadow: 0 0 20px rgba(255, 69, 0, 0.7); }
  100% { box-shadow: 0 0 10px rgba(255, 69, 0, 0.3); }
}

.slide h3 {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.slide p {
  font-size: 0.9em;
  color: #555;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
#uniformes-tacticos {
  padding: 20px;
  background: #1a1a1a;
  color: #eee;
  height: auto;
  text-align: center;
}
#uniformes-tacticos h2 {
  font-size: 50px;
  margin-bottom: 15px;
  color: #ffcc00;
  letter-spacing: 1px;
}
#uniformes-tacticos p {
  font-size: 1em;
  color: #ccc;
  margin-bottom: 40px;
}

.uniformes-contenedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.uniforme {
  background:#1a1a1a;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.0);
  max-width: 300px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
  border: none;
}

.uniforme img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 0px solid #555;
}

.uniforme h3 {
  font-size: 30px;
  color: #ffcc00;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.uniforme p {
  font-size: 0.95em;
  color: #ddd;
}

.uniforme:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255,204,0,0.4);
  border-color: #ffcc00;
}

    #proceso-contratacion {
      background: #dee1e3;
      background: ;
      height: auto;
      padding: 0px;
      padding-bottom:50px;
      text-align: center;
    }

    #proceso-contratacion h2 {
      font-size:50px;
      margin: 0 auto;
      margin-bottom: 20px;
      color: crimson;
      width: 50%;
    }
#proceso-contratacion h2#pi{
  color:#000;
  font-size:40px;
  margin-top:40px;
  text-align: center;
}

    #proceso-contratacion p.intro {
      max-width: 700px;
      margin: 0 auto 40px;
      color: #000;
      font-size: 18px;
    }

    .proceso-contenedor {
      background: ;
      margin: 0 auto;
      text-align: center;
      width: 100%;
    }

    .paso {
      background: #fff;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.08);
      display: inline-table;
      margin: 0 auto;
      margin-left:10px;
      margin-right:10px;
      position: relative;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 19%;
    }

    .paso:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    }

    .icono {
      width: 50px;
      height: 50px;
      margin-bottom: 15px;
      color: #1d4ed8;
    }

    .paso h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      margin-top:10px;
      color: crimson;
    }

    .paso p {
      font-size: 1rem;
      color: #4b5563;
      line-height: 1.5;
      text-align: justify;
    }

    .paso .numero {
      display: inline-block;
      background: #1d4ed8;
      color: #fff;
      font-size: 1rem;
      font-weight: bold;
      width: 28px;
      height: 28px;
      line-height: 28px;
      border-radius: 50%;
      margin-right: 8px;
      position: absolute;
      left:10px;
      top:10px;
    }
    #proceso-contratacion p#ppi{
      color:#000;
      font-size:18px;
      margin: 0 auto;
      margin-bottom:30px;
      width: 70%;
    }
    #proceso-contratacion a.btnA{
      background-color: crimson;
      border-radius:20px;
      color:white;
      cursor: pointer;
      font-size:20px;
      padding:10px 20px;
      transition: all 0.4s ease;
    }
    #proceso-contratacion a.btnA:hover{
      background: black;
      color:white;
    }
    .topbar {
      background: linear-gradient(90deg, #1e3a8a, #1d4ed8);
      color: #fff;
      font-size: 0.9rem;
      padding: 6px 20px;
      font-family: 'Roboto', Arial, sans-serif;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .topbar-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .topbar-text { font-weight: 600; margin-right: 10px; }
    .topbar-badge {
      background: rgba(255,255,255,0.15);
      padding: 3px 8px;
      border-radius: 6px;
      font-size: 0.8rem;
      font-weight: 500;
    }

    .topbar-right {
      display: flex;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .topbar-right a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.3s ease;
    }

    .topbar-right a:hover { color: #facc15; }

    .topbar-cta {
      background: crimson;
      color: #fff !important;
      padding: 5px 12px;
      border-radius: 6px;
      font-weight: bold;
      transition: all 0.3s ease;
    }
    .topbar-cta:hover { background: #eab308; }
    nav {
      background: crimson;
      padding:0;
      position: relative;
    }
    button#openMenu,
    button#closeMenu{
      display: none;
    }
    img#imgShow{
      display: none;
    }
    .nav-container {

      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-container img { max-height: 60px; }

    /* Menu desktop */
    ul#navMenu {
      background:;
      align-items: center;
      list-style: none;
      margin: 0;
      padding: 0;
      text-align: center;
      width: 100%;
    }

    ul#navMenu li {
      display: inline-block;
      margin: 0;
      margin-left:10px;
      margin-right:10px;
      position: relative;
      vertical-align: middle;
      width: auto;
    }

    ul#navMenu li a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      padding: 8px 5px;
      display: flex;
      align-items: center;
      transition: color 0.3s ease;
    }

    ul#navMenu li a.active,
    ul#navMenu li a:hover { color: #facc15; }

    /* Tooltips */
    .tooltip2 {
      border-bottom:1px dotted white;
      position: relative;
     }
    .tooltip2 .tooltiptext2 {
      visibility: hidden;
      width: 200px;
      background-color: rgba(0,0,0,0.85);
      color: #fff;
      border-radius: 8px;
      padding: 8px 10px;
      position: absolute;
      z-index: 10;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%) translateY(100%);
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
    }
    .tooltip2:hover .tooltiptext2 { visibility: visible; opacity:1; transform: translateX(-50%) translateY(120%);}
    .tooltip2 .tooltiptext2 img { width: 20px; height: 20px; }

    /* Botón especial */
    ul#navMenu li a.boton-prueba {
      background: black;
      border-radius:20px;
      color: white;
      font-size:18px;
      padding: 10px 20px;
      padding-left:20px;
      font-weight: ;
      transition: all 0.3s;
    }
    ul#navMenu li a.boton-prueba:hover { background: white;color:crimson; }

    /* Botones hamburguesa y cerrar */
    .menu-toggle, .menu-close {
      font-size: 28px;
      color: #fff;
      background: none;
      border: none;
      cursor: pointer;
    }


/* Responsive */
@media(max-width: 768px){
  .mapa-container img.mapa#mapa2{
    display: inherit;
  }
  .mapa-container img.mapa{
    display: none;
  }
  section#cobertura {
    background: ;
    background: ;
    height: auto;
    margin: 0;
    margin-top:0;
    padding: 0;
    padding-bottom:20px;
    padding-top:20px;
    text-align: center;
    width: 100%;

  }

  section#cobertura h2 {
    font-size: 45px;
    color: crimson;
    margin: 0;
  }

  section#cobertura p {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
    padding:0px;
    width:95%;
  }

  .contenido {
    background: ;
    display: block;
    flex-wrap: ;
    justify-content: center;
    gap: 40px;
    align-items: flex-start;
  }

  /* Lista de Zonas */
  .zonas{
    display: none;
  }
  .zonas2 {
    background:;
    display: block;
    min-width: 280px;
    padding-left:30px;
    text-align: left;
  }

  .zonas2 h3 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #000;
    border-bottom: 2px solid crimson;
    display: inline-block;
    padding-bottom: 5px;
  }

  .zonas2 ul {
    list-style: none;
    padding: 0;
    line-height: 2.2;
  }

  .zonas2 li {
    background: white;
    border-radius:20px;
    cursor: pointer;
    display: inline-table;
    transition: all 0.3s ease;
    font-size: 16px;
    margin-right:10px;
    margin-bottom:10px;
    padding: 5px 20px;
    position: relative;
    width: ;
  }

  .zonas2 li:hover {
    background-color: rgba(255,69,0,.89);
    color: #fff;
    cursor: pointer;;
  }

  /* Contenedor del mapa */
  .mapa-container {
    background:;
    height: 300px;
    flex: 2 1 600px;
    position: relative;
    display: block;
  }

  .mapa-container img.mapa {
    height: 100%;
    display: none;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    margin: 0 auto;
  }
  .mapa-container img.mapa#mapa2{
    height: 100%;
  display: ;
  }
  /* Zonas resaltadas */
  .zona {
    display: none;
    position: absolute;
    border-radius: 50%;
    background: rgba(217, 83, 79, 0.4);
    width: 25px;
    height: 25px;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    transform: scale(1);
  }

  .zona.activo {
    opacity: 1;
    transform: scale(1.7);
    box-shadow: 0 0 20px rgba(217,83,79,0.7);
  }

  /* Tooltip con logo y nombre */
  .tooltip {
    display: none;
    position: absolute;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .tooltip img {
    display: none;
    width: 40px;
    height: 40px;
  }

  .tooltip.activo {
    display: none;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }





  #proceso-contratacion {
    background: ;
  }
  #proceso-contratacion h2 {
    font-size:40px;
    margin: 0 auto;
    margin-bottom: 20px;
    color: crimson;
    width: 90%;
  }
        #proceso-contratacion h2#pi{
          font-size:35px;
        }

            #proceso-contratacion p.intro {
              margin: 0 auto 40px;
              color: #000;
              font-size: 18px;
              width: 95%;
            }

            .proceso-contenedor {
              background: ;
              margin: 0 auto;
              text-align: center;
              width: 100%;
            }

            .paso {
              background: #fff;
              padding: 25px;
              border-radius: 15px;
              box-shadow: 0 6px 15px rgba(0,0,0,0.08);
              display: block;
              margin: 0 auto;
              margin-bottom:20px;
              text-align: center;
              transition: transform 0.3s ease, box-shadow 0.3s ease;
              width: 50%;
            }

            .paso:hover {
              transform: translateY(-8px);
              box-shadow: 0 10px 20px rgba(0,0,0,0.12);
            }

            .icono {
              width: 50px;
              height: 50px;
              margin-bottom: 15px;
              color: #1d4ed8;
            }

            .paso h3 {
              font-size: 1.3rem;
              margin-bottom: 10px;
              color: #111827;
            }

            .paso p {
              font-size: 1rem;
              color: #4b5563;
              line-height: 1.5;
            }

            .paso .numero {
              display: inline-block;
              background: #1d4ed8;
              color: #fff;
              font-size: 1rem;
              font-weight: bold;
              width: 28px;
              height: 28px;
              line-height: 28px;
              border-radius: 50%;
              margin-right: 8px;
            }
            #proceso-contratacion p#ppi{
              color:#000;
              font-size:18px;
              margin: 0 auto;
              margin-bottom:30px;
              width: 90%;
            }
            #proceso-contratacion a.btnA{
              background-color: crimson;
              border-radius:20px;
              color:white;
              cursor: pointer;
              font-size:20px;
              padding:10px 20px;
              transition: all 0.4s ease;
            }
            #proceso-contratacion a.btnA:hover{
              background: black;
              color:white;
            }



    .card {
      background: #fff;
      border-radius: 12px;
      height: 100px;
      padding: 0;
      position: relative;
      overflow: hidden;
      transition: transform 0.6s ease, opacity 0.6s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
  .uniformes-contenedor {
    flex-direction: column;
    align-items: center;
  }
  .topbar-container { flex-direction: column; gap: 6px; text-align: center; }
  .topbar-right { justify-content: center; }
  button#openMenu,
  button#closeMenu{
    display: inherit;
  }
  button#closeMenu{
    position: absolute;
    right:10px;
    top:10px;
    z-index:200;
  }
  nav{
    padding: 20px;
    position: relative;
    text-align: center;
  }
  ul#navMenu {
    background:;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: crimson;
    padding: 0px;
    opacity: 0;
      text-align: center;
    transition: left 0.4s ease, opacity 0.4s ease;
    z-index:30000;
  }
  img#imgShow{
    display: inherit;
    width: 150px;
  }

  ul#navMenu.show {
    left: 0;
    opacity: 1;
    box-shadow: 4px 0 15px rgba(0,0,0,0.2);
  }

  ul#navMenu li {
    background:;
    display: block;
    font-size:24px;
    margin: 0 auto;
    margin-bottom:0px;
    opacity: 0;
    padding-left:50px;
    text-align: center;
    transform: translateX(-30px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    width: 100%;
  }

  ul#navMenu.show li {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(var(--i) * 0.08s);
  }
  .tooltip2 {
    display: none;
    border-bottom:0px dotted white;
    position: relative;
   }
   .tooltip2:hover .tooltiptext2 { visibility: hidden; opacity:1; transform: translateX(-50%) translateY(120%);}
   .tooltip2 .tooltiptext2 img { width: 20px; height: 20px; }
  /* Botón especial */
  ul#navMenu li a.boton-prueba {
    background: black;
    border-radius:0px;
    color: white;
    font-size:24px;
    padding: 10px 20px;
    padding-left:20px;
    font-weight: ;
    transition: all 0.3s;
    width: 300px;
  }
  /*img { max-height: 120px; }*/
  /* Botones hamburguesa y cerrar */
  .menu-close {
    font-size: 50px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right:-100px;
    top:10px;
  }
  .topbar {
    background: linear-gradient(90deg, #1e3a8a, #1d4ed8);
    background:;
    color: #fff;
    font-size: 0.9rem;
    padding:0px;
    font-family: 'Roboto', Arial, sans-serif;
    border-bottom: 1px solid rgba(255,255,255,0.1);

  }

  .topbar-container {
    background:;
    display: block;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;

  }


  .topbar-text { font-weight: 600; margin-right: 10px; }
  .topbar-badge {
    background: rgba(255,255,255,0.15);
    background: ;
    display: block;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    align-items: center;
    vertical-align: middle;
  }

  .topbar-right {
    display:block;
    align-items: center;
    align-items: center;
    vertical-align: middle;
    gap: 15px;
  }

  .topbar-right a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: block;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
  }
    .topbar-right a img{
      margin-right:10px;
      vertical-align: middle;
    }

  .topbar-right a:hover { color: #facc15; }

  .topbar-cta {
    background: crimson;
    color: #fff !important;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: bold;
    margin-bottom:10px;
    transition: all 0.3s ease;
  }
  .topbar-cta:hover { background: #eab308; }

#proceso-contratacion {
  background: #dee1e3;
  background:;
  height: auto;
  margin: 0 auto;
  padding: 0px;
  padding-bottom:50px;
  text-align: center;
}
#proceso-contratacion h2 {
  font-size:50px;
  margin: 0 auto;
  margin-bottom: 20px;
  color: crimson;
  width: 90%;
}
  #proceso-contratacion h2#pi{
    color:#000;
    font-size:40px;
    margin-top:40px;
    text-align: center;
  }

      #proceso-contratacion p.intro {
        max-width: 700px;
        margin: 0 auto 40px;
        color: #000;
        font-size: 18px;
      }

      .proceso-contenedor {
        background:;
        margin: 0 auto;
        text-align: center;
        width: 100%;
      }

      .paso {
        background: #fff;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        display: block;
        margin: 0 auto;
        margin-bottom:10px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: 90%;
      }

      .paso:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.12);
      }

      .icono {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
        color: #1d4ed8;
      }

      .paso h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: #111827;
      }

      .paso p {
        font-size: 1rem;
        color: #4b5563;
        line-height: 1.5;
      }

      .paso .numero {
        display: inline-block;
        background: #1d4ed8;
        color: #fff;
        font-size: 1rem;
        font-weight: bold;
        width: 28px;
        height: 28px;
        line-height: 28px;
        border-radius: 50%;
        margin-right: 8px;
      }
      #proceso-contratacion p#ppi{
        color:#000;
        font-size:18px;
        margin: 0 auto;
        margin-bottom:30px;
        width: 90%;
      }
      #proceso-contratacion a.btnA{
        background-color: crimson;
        border-radius:20px;
        color:white;
        cursor: pointer;
        font-size:20px;
        padding:10px 20px;
        transition: all 0.4s ease;
      }
      #proceso-contratacion a.btnA:hover{
        background: black;
        color:white;
      }
}
