/* CONTENEDOR DE IMÁGENES */
.vixer-images {
  display: flex;
  flex-wrap: wrap;              /* PERMITE BAJAR FILAS */
  justify-content: center;      /* CENTRADAS */
  gap: 30px;
  margin-top: 40px;
}

/* CAJA DE IMAGEN */
.vixer-img-box {
  width: 500px;                 /* TAMAÑO EN PC */
  max-width: 100%;              /* ADAPTA EN CEL */
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
}

/* IMAGEN */
.vixer-img-box img {
  width: 100%;
  height: auto;                 /* NO RECORTA */
  display: block;
  transition: transform 0.4s ease;
}

/* ZOOM SOLO EN PC */
@media (hover: hover) {
  .vixer-img-box img:hover {
    transform: scale(1.08);
  }
}

/* CELULAR */
@media (max-width: 768px) {
  .vixer-img-box {
    width: 100%;                /* 1 IMAGEN POR FILA */
    border-radius: 16px;
  }
}
