

/*-------------------------------inicio style quien------------------*/
/* Contenedor general */
.quienes-section {
  width: 1118px;
  height: auto;
  margin: 60px auto;
  border: 2px solid #ccc;
  background: transparent;
  
}

/* Fila superior con background */
.quienes-header {
  width: 1118px;
  height: 146px; /* ajusta según diseño */
  background-image: url("../images/imagenes_index/imagen_quienes_titulop.png");
  background-size: contain;
  background-position: center;
  background-color: #DD137B;
  background-repeat: no-repeat; /* evita repeticiones */
}


/* Fila inferior en 6 columnas */
.quienes-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 20px;
  align-items: center; /* centra verticalmente */
  text-align: center;
}

/* Imagen con overlay */
.overlay-wrapper {
  position: relative;
  display: inline-block;
}

.overlay-wrapper img {
  width: 150px;
  height: 150px;
  display: block;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.overlay-wrapper:hover img {
  transform: scale(1.05);
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 4px;
}

.overlay-wrapper:hover .overlay {
  opacity: 1;
}

.overlay span {
  background: transparent;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 4px;
}



/* ------------------Texto------ */
.quienes-item-texto {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quienes-item-texto a {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #5a7d9a;
  line-height: 1.4;
  text-align: center;
}

.quienes-item-texto a:hover {
  color: #DD137B;
}


/**----------------------inicio marcas ----------------------------------------**/

.image-container-marcas {
  text-align: center; /* centra horizontalmente el contenido */

   width: 1118px;
  height: auto;
  margin: 20px auto;
  border: 0px solid #ccc;
  background: #ccc;

}

.image-container-marcas img {
  display: inline-block; /* asegura que respete el centrado */
  max-width: 100%; /* que no se salga del contenedor */
  height: auto;
}




