body {
  background-color: #ffffff;
  font-family: helvetica, sans-serif;
  font-style: normal;
  font-size: 12px;
  margin-left: 12px;
}

/* CONTENEDOR MINIATURAS */
.container {
  display: flex;
  flex-wrap: wrap;       /* permite que las miniaturas se acomoden */
  justify-content: center;
  align-items: center;
  margin-top: 250px;
  margin-bottom:150px;
  gap: 0.6px;            /* igual que en index */
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .container {
    flex-direction: column;
    gap: 0.6px;
    margin-top:50px;
  
  }
}

/* MINIATURAS */
.img {
  height: 100px;
  width: auto;
  margin: 0.6px;
  cursor: ew-resize;;  /* cursor invisible sobre miniaturas */
}

/* VISOR GLOBAL (IMAGEN GRANDE) */
#hover-viewer {
  position: fixed;       
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;  
  z-index: 1000;         
  opacity: 0;            /* invisible por defecto */
  visibility: hidden;    
  transition: opacity 0.3s ease;
  cursor: pointer;
}

#hover-viewer img {
  max-width: 80vw;       
  max-height: 80vh;
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
  cursor: pointer;          /* cursor visible solo sobre imagen grande */
}

/* LINKS */
a {
  text-decoration: none;
  color: #c4c4c4;
}
