.bannerSection {
  background-color: #1e1e1e;
  height: 55vh;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  text-align: center;
  align-content: center;
}

.bannerSection h1 {
  padding-top: 5%;
  text-transform: uppercase;
  font-size: 4rem;
  color: var(--branco);
  display: flex;
  text-align: center;
  justify-content: center;
  align-content: center;
  pointer-events: none;
}

.containerLazer {
  background-color: var(--branco);
  height: auto;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 11% 0 11%;
  padding-bottom: 10%;
}

.group {
  display: flex;
  flex-direction: row;
  margin-top: 40px;
  margin-bottom: 40px;
}

.group p {
  margin-right: 1%;
  width: 100%;
  font-weight: 400;
  text-align: justify;
  color: var(--cinzaEscuro);
  font-size: 20px;
}

.gridContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  border-radius: 14px;
  background-color: #165654d1;
}

.displayContainer {
  width: 100%;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  min-height: 100px;
  position: relative;
  overflow: hidden;
}

.displayContainer img {
  width: 100%;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  transition: opacity 0.3s ease-in-out;
}

.displayContainer img.fade-out {
  opacity: 0;
}

.displayContainer img.fade-in {
  opacity: 1;
}

.galleryContainer {
  width: 100%;
  min-height: 120px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-left: 1.5%;
  padding-right: 1.5%;
  padding-bottom: 20px;
  padding-top: 20px;
}
.galleryContainer img {
  width: 16%;
  border-radius: 12px;
  cursor: pointer;
  margin: 0.6%;
}
.unselected {
  width: 16%;
  border-radius: 12px;
  cursor: pointer;
  margin: 0.6%;
  opacity: 0.3;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.left-arrow {
  left: 2%;
}
.right-arrow {
  right: 2%;
}

.arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transition: 0.4s;
}

.subTitle {
  font-size: 2.5rem;
  color: var(--cinzaEscuro);
  text-align: center;
  margin: auto;
  display: block;
  padding-top: 60px;
  border-bottom: 3px solid var(--verdeAzul);
  width: 35%;
}

.youtube-frame {
  width: 440px;
  margin: auto;
  display: block;
  height: 276.6px;
  border-radius: 12px;
}

.btn-reserva {
  background-color: var(--verdeAzul);
  height: 50px;
  width: 300px;
  border: none;
  color: var(--branco);
  border-radius: 8px;
  font-size: 17px;
  text-transform: uppercase;
  align-items: center;
  cursor: pointer;
  display: block;
  margin: auto;
  font-weight: 700;
  margin-top: 60px;
}
.btn-reserva:hover {
  background-color: var(--verdeClaro);
  transition: 0.4s;
}

.frame-row {
  width: 100%;
  min-height: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

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

  .frame-row {
    width: 100%;
    min-height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .bannerSection {
    background-color: #1e1e1e;
    height: 70vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    text-align: center;
    align-content: center;
  }

  .bannerSection h1 {
    margin-left: 10%;
    margin-right: 10%;
    padding-top: 20%;
    text-transform: uppercase;
    font-size: 3rem;
    color: var(--branco);
    display: flex;
    text-align: center;
    justify-content: center;
    align-content: center;
  }

  .containerLazer {
    background-color: var(--branco);
    height: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 8% 0 8%;
    padding-bottom: 10%;
  }

  .group {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .group p {
    margin-right: 0%;
    width: 100%;
    font-weight: 400;
    text-align: justify;
    color: var(--cinzaEscuro);
    font-size: 20px;
  }

  .group img {
    margin-top: 10%;
    margin-left: 0%;
    width: 100%;
  }

  .gridContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 50px;
    border-radius: 12px;
    background-color: #5e5e5e;
    margin-bottom: 30px;
  }

  .displayContainer {
    width: 100%;
    border-radius: 12px;
    min-height: 10px;
    position: relative;
    overflow: hidden;
  }
  .displayContainer img {
    width: 100%;
    border-radius: 12px;
  }

  .galleryContainer {
    display: none;
    width: 100%;
    min-height: 120px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding-left: 1.5%;
    padding-right: 1.5%;
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }
  .left-arrow {
    left: 1%;
  }
  .right-arrow {
    right: 1%;
  }

  .arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transition: 0.4s;
  }

  .subTitle {
    font-size: 2rem;
    color: var(--cinzaEscuro);
    text-align: center;
    margin: auto;
    display: block;
    padding-top: 20px;
    border-bottom: 3px solid var(--verdeAzul);
    width: 95%;
  }

  .youtube-frame {
    width: 293.3px;
    margin: 0 auto;
    display: block;
    height: 184.4px;
    margin-bottom: 40px;
    margin-top: 20px;
  }

  .btn-reserva {
    background-color: var(--verdeAzul);
    height: 50px;
    width: 300px;
    border: none;
    color: var(--branco);
    border-radius: 8px;
    font-size: 17px;
    margin-top: 60px;
    text-transform: uppercase;
    align-items: center;
    cursor: pointer;
    display: block;
    margin: auto;
  }
}
