#bloco-guia-turistico header {
  all: unset;  
  position: absolute;  
  z-index: 5;  
}

html, body {
 max-width: 100vw;
 overflow-x: hidden;
}

.quartos-video-wrapper {
  position: relative;
  height: 76vh; 
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0; 
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;  
}

.video-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 2rem 1rem;
  width: 100%;
  font-size: clamp(1.5rem, 2vw, 2rem);  
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
   background-color: rgba(0, 0, 0, 0.4);
}

.fotografia {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  z-index: 0; 
  width: 100%;
  height: 76vh;
  object-fit: cover;
}


 .sobre-nosesq {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 100px 20px 40px;
  background-color: white;
  gap: 40px;
  flex-wrap: wrap; 
}

.slidequartos-container {
  max-width: 900px;
  flex: 1;
  min-width: 300px;
}

.slidequartos {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.slidequartos-item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}

.slidequartos-item.active {
  opacity: 1;
  pointer-events: auto;
}

.slidequartos-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slidequartos-dots {
  text-align: center;
  margin-top: 15px;
}

.descricao-quarto {
  flex: 1;
  min-width: 300px;
  max-width: 800px;
}

.titulo-quarto {
  font-size: 3em;
  padding: 5px 40px;
  margin-bottom: 0;
  text-align: left;
}

.subtitulo-quarto {
  font-size: 3em;
  padding: 5px 40px;
  margin: -30px 0 0 60px;
  font-family: 'Rouge Script', cursive;
  font-weight: normal;
  text-align: left;
}

.texto-quarto {
  font-size: 1.1em;
  line-height: 1.5;
  text-align: left;
  max-width: 600px;
  padding: 10px 40px;
}

.btn-container {
  text-align: center;
  margin: 30px 0;
}


  .btn-ver-mais {
     padding: 10px 25px;
     font-size: 1em;
     cursor: pointer;
     background-color: white;
     color: black; 
     border-radius: 40px;
     font-size: 1.1em;
     text-decoration: none;
     box-shadow: 0 4px 10px rgba(0,0,0,0.3);
     font-family: 'poiret One', sans-serif;
     z-index: 9999;
     transition: all 0.3s ease;"
}


.btn-ver-mais:hover {
  background-color: #555;
}

.slider-quarto {
  position: relative;
  width: 100vw;
  height: 60vh;
  overflow: hidden;
}

.extras-quarto {
   flex: 1;
   min-width: 250px;
}

  .extras-e-botao {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 20px;
    margin-top: 30px;
}

 .quarto-extras {
   list-style: none; 
   padding: 0;
   margin: 10px 0;

}


.arrow-prev,
.arrow-next {
  position: absolute;
  top: 90%;
  transform: translateY(-50%);
  background-color: transparent;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 15px;
  border-radius: 50%;
  z-index: 10;
}

.arrow-prev:hover,
.arrow-next:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  transition: background 0.3s ease;;
}

.arrow-prev {
  left: 10px;
}

.arrow-next {
  right: 10px;
}

.botao-disponibilidade {
  text-align: center;
  margin-top: 20px;
}

.btn-disponibilidade {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.1em;
  background-color: #000;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-family: 'Poiret One', sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.btn-disponibilidade:hover {
  background-color: #333;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.slide {
  min-width: 100vw;
  height: 120%;
  object-fit: cover;
  display: none;
}

.slide.active {
  display: block;
}

.bullets {
  text-align: center;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.bullet {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.bullet.active {
  opacity: 1;
}
 
.conteudo-extra {
   background-color: #e1c8ad24;
}

 
.quarto-amenidades {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.amenidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.amenidade-item {
  text-align: center;
}
.amenidade-item img {
  width: 40px;
  height: 40px;
}
.quarto-extras {
  margin-top: 20px;
  list-style: disc inside;
}

.botao-disponibilidade {
  flex: 1;
  min-width: 250px;
  text-align: right;
  }

 
.alojamento-comodidades {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.amenidade-item img {
  transition: transform 0.3s ease;
}
.amenidade-item:hover img {
  transform: scale(1.1);
}

.parallax-mobile1 {
  display: none;
}

.parallax-mobile2 {
  display: none;
}

.parallax-mobile3 {
  display: none;
}

.parallax-mobile4 {
  display: none;
}

 
@media (max-width: 768px) {
  .quarto-amenidades h2,
  .alojamento-comodidades h2 {
    font-size: 1.5rem;
  }
  .amenidade-item p {
    font-size: 0.9rem;
  }

.sobre-nosesq {
  padding: 0px;
 }

.descricao-quarto {
   min-width: 400px;
 }

.titulo-quarto {
   font-size: 2em;
   text-align: center;
   padding: 0;
}

.subtitulo-quarto {
   font-size: 2em;
   padding: 0px;
   text-align: center;
   margin: auto;
   margin-bottom: 20px;
 }  

.texto-quarto {
  max-width: 768px;
  text-align: center;
 }  
  

.slidequartos-container {
  display: none;
}

  .parallax-mobile1 {
    display: block;
    height: 200px;  
    background-image: url('imduplos.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .parallax-mobile2 {
    display: block;
    height: 200px;  
    background-image: url('1.7.5.jpeg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .parallax-mobile3 {
    display: block;
    height: 200px; 
    background-image: url('0.2.8.jpeg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .parallax-mobile4 {
    display: block;
    height: 200px;  
    background-image: url('0.4.1.jpeg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

.no-parallax {
  background-attachment: scroll !important;
}
}

.botao-disponibilidade {
  text-align: center;
  }

.imagem-mobile {
  display: none;
}

.imagem-mobile1 {
  display: none;
}

.imagem-mobile3 {
  display: none;
}

.imagem-mobile4 {
  display: none;
}

/* Mostra apenas em ecrãs pequenos (telemóveis) */
@media (max-width: 768px) {
  .imagem-mobile {
    display: block;
    width: 100%;
  }

  .imagem-mobile img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0; /* opcional, se quiseres sem cantos arredondados */
  }

  .imagem-mobile1 {
    display: block;
    width: 100%;
  }

  .imagem-mobile1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0; /* opcional, se quiseres sem cantos arredondados */
  }
  .imagem-mobile3 {
    display: block;
    width: 100%;
  }

  .imagem-mobile3 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0; /* opcional, se quiseres sem cantos arredondados */
  }
  .imagem-mobile4 {
    display: block;
    width: 100%;
  }

  .imagem-mobile4 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0; /* opcional, se quiseres sem cantos arredondados */
  }
  }

#background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* garante que cobre toda a área */
  z-index: -1; /* fica atrás do conteúdo */
}