/* Texto */

.textoHero {
  margin-bottom: 1.5rem;
}

/* Hero */

.hero {
  background: url(../img/imagen.webp) no-repeat center center/cover;
  height: 90vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: end;
  /* padding: 2rem; */
  text-shadow: var(--sombraHero);
  width: 100vw;
  overflow: hidden;
  position: relative;
}

#hero .fondoHero {
  background-color: #0000006e;
  z-index: 2;
  min-height: 90vh;
  overflow: hidden;
  position: absolute;
  width: 100vw;
}

.heroContent {
  z-index: 3;
  margin-right: 128px;
}

.heroContent p {
  font-size: 1.2rem;
}

.hero button {
  box-shadow: var(--sombraLeve);
}

.heroContent #botonCarta,
.heroContent #botonReservar {
  color: var(--blanco) !important;
}

/* Secciones */

section {
  min-height: 80vh;
  background-color: var(--negro);
}

section:nth-child(even) {
  background-color: var(--colorPrimario);
}

section:nth-child(odd) p,
section:nth-child(odd) h2 {
  color: var(--blanco);
}

.seccionPartida {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 50vh !important;
}

#ubicacion,
#horario {
  min-height: 40vh !important;
}

#ubicacion .seccionImagen,
#horario .seccionImagen {
  height: 40vh !important;
}

.seccionTexto,
.seccionImagen {
  width: 100%;
  height: 100%;
}

.seccionTexto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 8rem;
}

.seccionTexto span {
  font-weight: 600;
}

.seccionImagen {
  display: flex;
  max-height: 60vh;
  overflow: hidden;
}

.seccionImagen img,
.seccionImagen source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

picture {
  display: grid;
  justify-items: center;
  align-content: center;
}

.mapa {
  width: 100%;
  height: 100%;
  display: flex;
}

.mapa iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

@media screen and (max-width: 1250px) {
  .seccionTexto {
    padding: 2rem;
  }
}

@media screen and (max-width: 768px) {

  .seccionPartida {
    grid-template-columns: 1fr;
  }

  .seccionTexto,
  .seccionImagen {
    height: auto;
  }

  .seccionTexto {
    order: 1;
    padding: 2rem;
  }

  .seccionImagen {
    order: 2;
  }

  .seccionImagen picture {
    height: auto;
    max-height: 60vh;
  }

  .hero {
    justify-content: center;
    text-align: center;
    /* padding: 2rem; */
  }

  .heroContent {
    margin-right: 0;
  }

  .heroContent h1 {
    font-size: 4rem;
    line-height: 4rem;
  }

  .mapa {
    height: 40vh;
  }

  #horario .seccionImagen {
    display: none;
  }

  #horario.seccionPartida {
    min-height: 10vh !important;
  }
}