.item {
    background: #2a2a2a;
    border-radius: 10px;
    display: flex;
    flex-direction: column; /* Imagen arriba, título abajo */
    justify-content: flex-start;
    align-items: center;
    border: 2px solid #444;
    padding: 10px;
    gap: 5px;
}


.item img {
    max-width: 100%;
    max-height: 120px; /* Ajusta según necesidad */
    border-radius: 5px;
}

.titulo {
    color: white;
    font-weight: bold;
    text-align: center;
}



.grid-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 8px;
    
}


/*  quita la barra de scroll a lo ancho */
html, body {
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
}

.grid img {
    width: 100%;
    height: auto;
    display: block;
}

.side img {
    max-width: 100%;
    height: auto;
}

/* Si el QR + thumbnails no entran en móviles → se rompe.
Solución: */
.content {
    flex-wrap: wrap;
}

/* ajusta el banner en su lugar para moviles*/
.banner img {
    max-width: 100%;
    height: auto;
}


/* ==================== PROTECCIÓN QR (agregar al final) ==================== */
.side {
  position: relative;
  z-index: 100;
  background: #fff;
  padding: 15px;
  border: 6px solid #000;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
  display: inline-block;
  margin: 20px;
}

.side img {
  display: block;
  width: 220px;          /* o el tamaño que quieras */
  height: auto;
  image-rendering: crisp-edges;
  filter: none !important;
}

/* Texto opcional debajo del QR (borrá si no lo querés) */
.side::after {
  content: "ESCANEA SI TE ATREVÉS";
  display: block;
  margin-top: 10px;
  font-family: 'VT323', monospace;
  font-size: 14px;
  color: #f00;
  text-align: center;
  text-shadow: 0 0 10px #f00;
}

h1 {
  background: linear-gradient(transparent 60%, #800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: bleed 8s infinite linear;
}
h1 {
  background: linear-gradient(transparent 60%, #800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: bleed 8s infinite linear;
}


