.menu360 h2 {
  text-align: center; /* centra el título */
  margin-bottom: 1.5rem;
  font-size: 2rem; /* opcional, tamaño más visible */
}


.grid-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 imágenes por fila en desktop */
  gap: 1rem;
  justify-items: center; /* centra horizontalmente cada tarjeta */
}

.gallery-item {
  width: 180px; /* más grande que antes */
  text-decoration: none;
  color: #333;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
  width: 100%;
  height: 180px; /* altura igual al ancho para cuadrado */
  object-fit: cover; /* ajusta la imagen al tamaño sin deformar */
  display: block;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05); /* zoom suave */
}

.gallery-item .desc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .grid-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid-gallery {
    grid-template-columns: 1fr;
  }
}
