/* --- ESTILOS GENERALES Y ELEMENTOS FIJOS --- */
body {
  margin: 0;
  font-family: 'Aspekta', sans-serif;
  background-color: #ffffff;
  transition: background-color 0.5s ease;
}

body.focus-mode {
  background-color: #ffffff;
}

.volver-tiempo, .texto-fijo {
  position: fixed;
  font-weight: 400;
  color: #facbff;
  z-index: 100;
}
.volver-tiempo { left: 1rem; top: 50%; transform: translateY(-50%); text-decoration: none; color: black; }
.texto-fijo { bottom: 2rem; right: 2rem; max-width: 250px; }

body.focus-mode .volver-tiempo,
body.focus-mode .texto-fijo {
  opacity: 0;
  visibility: hidden;
}

/* --- VISTA DE REJILLA: ESTILO MASONRY --- */
.proyecto-galeria {
  column-count: 3;
  column-gap: 1rem;
  padding: 1rem;
}

.proyecto-bloque {
  cursor: pointer;
  position: relative;
  margin-bottom: 1rem;
  break-inside: avoid;
  transition: all 0.5s ease;
}

.imagen-full, .proyecto-bloque video {
  width: 100%;
  height: auto;
  border-radius: 1px;
  display: block;
}

.texto-gris {
  display: none;
}

/* --- VISTA DE ENFOQUE --- */

body.focus-mode .proyecto-bloque:not(.is-focused) {
  opacity: 0;
  pointer-events: none;
}

.proyecto-bloque.is-focused {
  cursor: pointer;
  background: rgb(255, 255, 255);
  border-radius: 1px;
}

.proyecto-bloque.is-focused .texto-gris {
  display: block;
  padding: 1rem 0rem;
}
.proyecto-bloque.is-focused .texto-gris h1 {
  margin: 0; font-size: 2rem; color: #a9a9ff; font-weight: 600;
}
.proyecto-bloque.is-focused .texto-gris h2 {
  margin: 0; color: #ffe2f8; font-weight: 500;
}
.proyecto-bloque.is-focused .texto-gris p {
  line-height: 1; color: #b9b9b9;
}

/* --- RESPONSIVE PARA CELULARES --- */
@media (max-width: 768px) {
  .proyecto-galeria {
      column-count: 2;
      gap: 0.5rem;
      padding: 0.5rem;
  }
  .proyecto-bloque {
      margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .proyecto-galeria {
      column-count: 2;
  }
}