body.full-img {
  margin: 0;
  height: 100vh;
  background-image: url('../img/balcon.jpg'); /* si lo ponés por CSS */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#cartel {
  position: absolute;
  top: 40%;   /* Ajustá según dónde esté el cartel en tu imagen */
  left: 56%;
  width: 100px;   /* Ajustá hasta cubrir bien el cartel */
  height: 100px;
  cursor: pointer;
  /* borde para ayudar a ajustar el área (después sacarlo) */
   /* border: 2px solid red; */
}
.grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100vh;
  margin: 0;
}
.bloc {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.bloc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale .4s;
}
.bloc:hover img {
  scale: 1.05;
}
.texto {
  position: absolute;
  inset: 0;
  padding: 1rem;
  background: #000a;
  color: #fff;
  opacity: 0;
  transition: .4s;
}
.bloc.visto .texto {
  opacity: 1;
}
.split2 {
  display: flex;
  height: 100vh;
  margin: 0;
}
.half {
  flex: 1;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale .4s;
}
.half:hover img {
  scale: 1.05;
}
.half .texto {
  position: absolute;
  inset: 0;
  padding: 1rem;
  background: #000a;
  color: #fff;
  opacity: 0;
  transition: .4s;
}
.half.activa .texto {
  opacity: 1;
}
#areaCartel {
  position: absolute;
  top: 17%;      /* Ajustar según tu cartel en la imagen */
  left: 40%;
  width: 150px;  /* Ajustar según tamaño real del cartel */
  height: 170px;
  cursor: pointer;
  /* border: 2px solid red; */ /* activalo si querés ajustar visualmente */
}

#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#overlay img {
  max-width: 80vw;
  max-height: 80vh;
  border: 4px solid white;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  cursor: pointer;
}
.layout-tren {
  display: flex;
  flex-direction: row;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.texto-tren {
  flex: 1;
  padding: 2rem;
  background-color: #f9f9f9;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.texto-tren p {
  max-width: 500px;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
}

.img-tren {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
}

.img-tren img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: pointer;
  border-left: 4px solid white;
}
.layout-final {
  display: flex;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.lado-texto {
  flex: 1;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
  transition: background 0.3s;
}

.lado-texto img {
  max-width: 100%;
  max-height: 80%;
  object-fit: cover;
  border: 4px solid white;
  margin-top: 1rem;
}

.textoFinal {
  max-width: 400px;
  padding: 2rem;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
  display: none;
}

.lado-texto.visto .textoFinal {
  display: block;
}

.pantalla-final {
  display: flex;
  height: 100vh;
  margin: 0;
}

.final-bloc {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.final-bloc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.texto-final {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  opacity: 0;
  transition: 0.4s;
}

.final-bloc.visto .texto-final {
  opacity: 1;
}

.titulo-rumores {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 2rem 0 1rem;
  font-family: sans-serif;
}

/* Ajustes generales del body en esa pantalla */
.pantalla-rumores {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* Contenedor de los locales */
.rumores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 90vw;
  max-width: 1200px;
  padding-bottom: 2rem;
    grid-auto-rows: auto;
    align-items: start;
}

/* Cada imagen */
.bloc {
  position: relative;
  cursor: pointer;
}

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