/* ===========================
   GALERÍA PREMIUM
   =========================== */

.cats {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
  white-space: nowrap;
}

.cat-btn {
  padding: 8px 14px;
  border-radius: 14px;
  border: none;
  background: var(--color-blanco);
  box-shadow: 0 2px 6px var(--shadow-suave);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-negro);
}

.cat-btn.active {
  background: var(--color-naranja);
  color: var(--color-blanco);
}

.subir-box {
  padding: 12px;
}

.galeria-grid {
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.img-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-suave);
}

.img-card img {
  width: 100%;
  display: block;
  height: 140px;
  object-fit: cover;
}

/* VISOR */
.visor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.visor-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 14px;
}
/* FORMULARIO SUBIR FOTO */

.formulario {
  padding: 16px;
}

.barra {
  width: 100%;
  margin: 10px 0 20px;
  height: 12px;
  border-radius: 8px;
}
