body {
  font-family: 'Poiret One', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: white;
  touch-action: manipulation; /* Impede zoom em alguns casos */

}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

.rouge-script-regular {
  font-family: "Rouge Script", cursive;
  font-weight: 400;
  font-style: normal;
}


.video-container {
    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;
}

#select-container:hover {
  border-radius: 20px;
  box-shadow: 0 7px 10px rgba(79,104,113,0.3);
}

#select-container ul {
  list-style: none;
  margin: 0;
  padding: 5px;
}

#select-container li {
  margin-bottom: 8px;
}

#select-container img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

#select-container img:hover {
  transform: scale(1.08);
  box-shadow: 0 5px 10px rgba(79,104,113,0.3);
}

/* Tooltip básico */
[tooltip] {
  position: relative;
}
[tooltip]::after {
  content: attr(tooltip);
  position: absolute;
  left: 50%;
  bottom: 110%;
  transform: translateX(-50%);
  background: #465663;
  color: #fff;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
[tooltip]:hover::after {
  opacity: 1;
}


/* NAV */
nav {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 5px 5px;
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 25px 5px 5px;
  box-shadow: 0 10px 6px -6px #e3e1e1;
}

.nav-links a {
  color: black;
  margin-left: 40px;
  margin-right: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  transform: scale(1.1);
}

.logo {
  height: 60px;
}

.hamburger {
  display: none;
}

.conteudo-texto {
  background-color: white;
  color: black;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}

.titulo-principal {
  font-size: 3em;
  margin-bottom: 15px;
}

.subtitulo {
  font-size: 3em;
  margin: -30px 0 20px 0px;
  font-family: 'Rouge Script', cursive;
  font-weight: normal;
}

.descricao {
  font-size: 1.2em;
  align-items; center;
  margin: 20px 55px;

}

.conteudo-descricao {
  text-align: center;
  justify-content: center;
}

.conteudo-descricao img {
 width: 100%;
 height: 40%;
 margin-top: 20px;
 object-fit: cover;
}

.blocos {
    display: flex;
    flex-direction: row;
    gap: 50px;
    max-width: 100%;
    margin: 20px 20px 20px 20px;
    background-color: white;
}

@media (max-width: 820px) {

.imagem-sobre-video {
  height: 100px;
}

.conteudo-texto {
  background-color: white;
  color: black;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}

.titulo-principal {
  font-size: 2em;
  margin-bottom: 2px;
}

.subtitulo {
  font-size: 2em;
  margin-top: 2px;
  font-family: 'Rouge Script', cursive;
  font-weight: normal;
}

.descricao {
  font-size: 1em;
  width: auto;
  margin: 0;
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
}

.conteudo-descricao {
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: center;
}
.conteudo-descricao img {
   width: 100%;
   height: 100%;
   display: block;
   margin: auto;
}

.icon-line {
  gap: 0px;
}

.blocos {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 100%;
    margin: 20px 20px 20px 20px;
    background-color: white;
}

.footer-logogrupo {
  position: inicial;
}
}



@media (max-width: 932px) and (max-height: 430px) and (orientation: landscape) {
  .conteudo-descricao {
    display: flex;
    flex-direction: column;
}

  .conteudo-descricao img {
  width: 700px;
  height: 400px;
  margin: auto;
}

 .descricao {
  width: auto;
}

.footer-content {
   flex-direction: column;
}

.footer-sections {
    flex-direction: column;
}

.footer-logogrupo {
  position: relative; 
}
}

/* 2) Responsivo para tablet e telemóvel */
@media (max-width: 820px) {
  /* mostra o ícone do lado direito */
  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
    z-index: 1100; /* acima do nav-links */
    color: black;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  /* esconde os links por defeito */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0; /* abre do lado esquerdo */
    width: 80vw; /* ocupa 80% da largura do ecrã */
    height: 100vh; /* altura total */
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.2); /* sombra na lateral direita */
    z-index: 9999;
  }

  /* quando a classe .show for adicionada */
  .nav-links.show {
    display: flex;
  }

  /* espaçamento interno dos links */
  .nav-links a {
    padding: 20px 0;
    font-size: 1.7em;
  }

.logo {
  position: absolute;
  left: 20px;
  top: 20px;
}

  .quarto-card {
    width: 90%;
  }

  .modal-box {
    flex-direction: column;
  }

  .modal-slider, .modal-info {
    width: 100%;
  }

  .botao-reservas-fixo {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 1em;
  }

  .quarto-nome {
    font-size: 1.5rem;
  }

  .detalhes-botao {
    font-size: 1rem;
    padding: 0.4rem 1rem;
  }

  header h1 {
    font-size: 2em;
  }
}

.imagem-sobre-video { position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%); opacity: 0; animation: aparecer 3s ease-in-out forwards; height: 200px; }

@keyframes aparecer {
  to {
    opacity: 1;
  }
} 

@media (max-width: 600px) {
  .imagem-sobre-video {
    height: 120px;      /* menor no telemóvel */
    top: 50%;           /* mantém centralizado verticalmente */
    left: 50%;          /* centralizado horizontalmente */
    transform: translate(-50%, -50%);
  }
}



/* HEADER */
header {
  height: 0vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

#background-video {
  position: relative;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

header h1 {
  font-size: 3em;
  background-color: rgba(0,0,0,0);
  padding: 0;
}



#reviews {
  background: white;
  padding: 40px 0;
  text-align: center;
}

#reviews h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #222;
}

.slider {
  
  width: 100%;
  position: relative;
}

.slide-track {
  display: flex;
  gap: 30px;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-item {
  flex: 0 0 auto;
  width: 200px;
  text-align: center;
  background-color: white;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.review-photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 2px solid #ccc;
}

.review-name {
  font-weight: bold;
  margin: 5px 0;
  color: #333;
}

.review-text {
  font-size: 0.9em;
  margin: 5px 0;
  color: #555;
}

.review-stars {
  color: gold;
  font-size: 1.2em;
  margin-top: 5px;
}
/* SECTION */
section {
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* Cores unificadas */
.footer-container,
.footer-container p,
.footer-container a,
.footer-container h4 {
  color: var(--bege);
}

/* Barra separadora */
.separator-bar {
  height: 40px;
  width: 100%;
  background-color: #bca58d;
  margin-top: -10px;
  z-index: 2;
  position: relative;
}

/* Barra de subscrição sobreposta */
.subscribe-bar {
  background-color: white;
  text-align: center;
  position: relative;
  z-index: 3;
  margin-bottom: -25px;
}

.subscribe-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  height: 50px;
  overflow: hidden;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  border-radius: 50px 0 0 50px;
  font-family: 'Poiret One', sans-serif;
  height: 50px;
}

.subscribe-form button {
  padding: 0 30px;
  background-color: #bca58d;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  border-radius: 0 50px 50px 0;
  font-family: 'Poiret One', sans-serif;
  transition: background-color 0.3s ease;
  height: 50px;
}

.subscribe-form button:hover {
  background-color: #aa977d;
}

/* Mapa */
.mapa-iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 10px;
  z-index: 1;
  position: relative;
  margin-bottom: 0;
}

/* Footer */
.footer-container {
  position: relative;
  background-color: white;
  color: var(--bege);
  overflow: hidden;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  position: relative;
}

/* Linha pedras + logo */
.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-pedras img {
  height: 160px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo img {
  height: 100px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 0.95rem;
  margin: 0;
}

/* Colunas */
.footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  text-align: center;
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin: 4px 0;
}

.footer-section ul li a {
  color: var(--bege);
  text-decoration: none;
  transition: transform 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  transform: scale(1.08);
}

/* Logotipo do grupo */
.footer-logogrupo {
  position: absolute;
  right: -80px;
  bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logogrupo p {
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.footer-logogrupo img {
  height: 40px;
  opacity: 0.8;
}


@media (max-width: 768px) {
  .nav-container {
 height: 70px;
}
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    margin: 0;
  }

  .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center; 
  }

 .footer-sections {
    text-align: center;
    flex-direction: column;
    display: flex;
    gap: 0px;  
}

  .footer-section {
    text-align: center;
    flex-direction: column;
  }

  .social-icons a {
    margin: 10px;
  }

 .footer-logogrupo {
   position: relative;
   right: 0;
}

.footer-logo img {
  display: none;
}
}

@media (max-width: 820px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    margin: 0;
  }

  .footer-section {
    text-align: center;
  }

  .social-icons a {
    margin: 10px;
  }


.footer-logo img {
  display: none;
}
}

@media (max-width: 1024px) {
  .footer-columns {
     display: flex;
    flex-wrap: wrap;
    margin: 0;
  }

  .footer-section {
    text-align: center;
  }

  .social-icons a {
    margin: 10px;
  }

 .footer-logo img {
   margin-left: 0px;
   margin-right: 0px;
  }

}

@media (max-width: 932px) and (max-height: 430px) and (orientation: landscape) {
  .conteudo-descricao {
    display: flex;
    flex-direction: column;
}

  .conteudo-descricao img {
  width: 700px;
  height: 400px;
  margin: auto;
}

 .descricao {
  width: auto;
}

.footer-content {
   flex-direction: column;
}

.footer-sections {
    flex-direction: column;
}

.footer-logogrupo {
  position: relative; 
}
}


/* 2) Responsivo para tablet e telemóvel */
@media (max-width: 820px) {
  /* mostra o ícone do lado direito */
  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
    z-index: 1100; /* acima do nav-links */
    color: black;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  /* esconde os links por defeito */
  .nav-links {
    display: none;
    position: fixed;
    top: 90px;
    right: 0; /* abre do lado esquerdo */
    width: 80vw; /* ocupa 80% da largura do ecrã */
    height: 100vh; /* altura total */
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.2); /* sombra na lateral direita */
    z-index: 9999;
    backdrop-filter: blur(2px);
  }

  /* quando a classe .show for adicionada */
  .nav-links.show {
    display: flex;
    backdrop-filter: blur (6px);
   
  }

  /* espaçamento interno dos links */
  .nav-links a {
    padding: 20px 0;
    font-size: 1.7em;
    margin-top: 20px;
  }

.logo {
  position: absolute;
  left: 20px;
  top: 20px;
}

  .quarto-card {
    width: 90%;
  }

  .modal-box {
    flex-direction: column;
  }

  .modal-slider, .modal-info {
    width: 100%;
  }

  .botao-reservas-fixo {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 1em;
  }

  .quarto-nome {
    font-size: 1.5rem;
  }

  .detalhes-botao {
    font-size: 1rem;
    padding: 0.4rem 1rem;
  }

  header h1 {
    font-size: 2em;
  }
}

/* RESERVATION BUTTON */
.botao-reservas-fixo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: white;
  color: black;
  padding: 15px 25px;
  border-radius: 40px;
  font-size: 1.1em;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: all 0.3s ease;
}

.botao-reservas-fixo:hover {
  background-color: #bca58d;
  transform: scale(1.05);
}

 .coluna2 {
  color: #bca58d;
}
   .parallax-container {
     width: 100vw;
     height: 600px;
     overflow: hidden;
     position: relative;
     left: 50%;
     margin-left: -50vw;
    }

   .parallax-image {
     width: 100%;
     height: auto;
     position: absolute;
     top: 0;
     left: 0;
     object-fit: cover;
    }

   .icon-line {
     display: flex;        
     justify-content: center; 
     gap: 30px;             
     padding-top: 40px;
     flex-wrap: nowrap;  
     background-color: white;    
   }

   .icon-box {
     text-align: center;
     width: 40px;           
    }

   .icon-box i {
     font-size: 36px;
     color: #cbb86b;         
     margin-bottom: 10px;
    }

   .icon-box svg {
     font-size: 36px;
     width: 36px;
     height: 36px;
     color: #cbb86b;
     fill: currentColor;
     margin-bottom: 10px;
    }

   .icon-box p {
     margin: 10px;
     font-size: 14px;
     color: #444
    }

   .icon-svg {
     width: 40px;
     height: 40px;
     fill: currentColor;
    }

    .quartos-sec {
     background-color: white;
     width: 100%;
     padding: 0;
     overflow-x: hidden;
     gap: 30px;
     }

   .quartos-container {
     display: flex;
     justify-content: center;
     gap: 0rem;
     background-color: white;
     flex-wrap: nowrap;
     margin-bottom: 0;
    }

@media (max-width: 768px) {
    .quartos-container {
        flex-wrap: wrap; /* muda para wrap em telas pequenas */
        gap: 1rem; /* opcional, para dar espaçamento entre os itens */
    }
}

    .quarto-card {
     position: relative;
     width: 400px;
     border-radius: 1rem;
     overflow: hidden;
     background-color: white;
     border: 2px solid transparent;
     padding: 0rem;
     box-sizing: border-box;
     margin: 20px
    }

   .quarto-card img {
     width: 100%;
     height: 500px;
     object-fit: cover; 
    }

    .quarto-nome {
     position: absolute;
     top: 1rem;
     left: 1rem;
     color: white;
     font-weight: bold;
     font-size: 2rem;
     text-transform: lowercase;
     z-index: 2;
     text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    }

    .quarto-card::before {
     content: 0;
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 70%);
     z-index: 1;
    }

    .detalhes-botao {
     position: absolute;
     bottom: 1rem;
     left: 50%;
     transform: translateX(-50%);
     background-color: rgba(255, 255, 255, 0.8);
     color: black;
     border: none;
     padding: 0.5rem 1.2rem;
     font-size: 1.25rem;
     font-weight: 400;
     font-family: 'poiret One', sans-serif;
     border-radius:  1rem 0 1rem 0;
     cursor: pointer;
     z-index: 2;
     transition: all 0.3s ease;
     box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

   .detalhes-botao:hover {
     transform: translateX(-50%) scale(1.1);
     box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
  
   .modal {
     display: none;
     position: fixed;
     top: 0; left: 0;
     width: 100vw; height: 100vh;
     background-color: rgba(0, 0, 0, 0.6);
     backdrop-filter: blur(5px);
     z-index: 999;
     justify-content: center;
     align-items: center;
     padding: 2rem;
     box-sizing: border-box;
    }

   .modal-box {
     background: transparent;
     display: flex;
     flex-direction: row;
     gap: 2rem;
     padding: 2rem;
     border-radius: 1rem;
     max-width: 1000px;
     width: 100%;
     position: relative;
     box-shadow: 0 0 20px rgba(0,0,0,0.3);
    }

    .modal-slider {
     position: relative;
     width: 50%;
    }

   .modal-slider img {
     width: 100%;
     height: 100%;
     border-radius: 1rem;
     object-fit: cover;
     max-height: 400px;
    }

   .seta {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: transparent;
     border: none;
     color: white;
     font-size: 2rem;
     padding: 0.5rem 1rem;
     cursor: pointer;
     border-radius: 50%;
     z-index: 2;
    }

    .seta.esquerda { left: 0.5rem; }
    .seta.direita { right: 0.5rem; }

    .modal-info {
     width: 50%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     font-family: 'poiret One', sans-serif;
     text-align: center;
     color: white;
    }

    .modal-info h2 {
     font-size: 2rem;
     margin-bottom: 8rem;
     color: white;
    }

    .modal-info p {
      font-size: 1.05rem;
     margin-bottom: 6rem;
     color: white;
    }

    .botao-disponibilidade {
     background-color: black;
     color: white;
     padding: 0.8rem 1.5rem;
     border: none;
     font-size: 1rem;
     border-radius: 2rem;
     cursor: pointer;
     font-family: 'poiret One', sans-serif;
    }

   .fechar {
     position: absolute;
     top: 1rem;
     right: 1.5rem;
     font-size: 2rem;
     color: #333;
     cursor: pointer;
    }
   .secao {
     display: block;
     }

   .secao.ocultar {
     display: none;
    }

a:hover {
    transform: scale(1.05); /* aumenta ligeiramente o tamanho */
}

.parallax {
  background-image: linear-gradient(to top, transparent, black), url("3G1A2582 2.jpg");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

  @keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


.parallax1 {
  background-image: linear-gradient(to top, transparent, black), url("sobrenos.jpg");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

  @keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
 .experiencias-container {
    display: flex;
    flex-direction: row;
    gap: 50px;
    max-width: 100%;
    margin: 20px 20px 20px 20px;
    background-color: white;
}
    
@media (max-width: 768px) {
  .galeria-video-wrapper {
    position: relative;
    overflow: hidden;
  }

  .background-video {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .video-overlay {
    z-index: 1;
    padding: 15px;
    font-size: 1.2rem;
    position: absolute;
  }

 .sobre-nos {
 padding: 0px;
 text-align: center;
}

 .sobre-nos-img {
 width: 80%;
 height: 20%;
}
}

/* Container principal das experiências */
.experiencias-container {
  display: flex;
  flex-direction: row;
  gap: 50px;
  padding: 20px;
  background-color: white;
  flex-wrap: wrap;
  justify-content: center;
}

/* Cada experiência individual */
.experiencia {
  position: relative;
  height: 500px;
  flex: 1 1 300px;
  min-width: 300px;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
}

/* Vídeo de fundo */
.experiencia-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay escura com texto */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 40px;
  text-align: center;
}

/* Título */
.overlay h3 {
  font-size: 2em;
  margin-bottom: 20px;
  text-transform: capitalize;
}

/* Texto */
.overlay p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto;
}

/* Botão */
.btn-reservar {
  margin-top: 30px;
  background: transparent;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  transition: transform 0.2s ease;
}

.btn-reservar:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.8);
}

/* Espaço extra no final */
.espaco-final {
  height: 60px;
}

/* ----------- MEDIA QUERIES ----------- */

/* Para tablets e ecrãs menores que 900px */
@media (max-width: 900px) {
  .experiencias-container {
    flex-direction: column;
    gap: 30px;
    padding: 10px;
  }

  .experiencia {
    height: 400px;
    max-width: 100%;
  }

  .overlay {
    padding: 30px;
  }

  .overlay h3 {
    font-size: 1.5em;
  }

  .overlay p {
    font-size: 1em;
  }

  .btn-reservar {
    padding: 10px 20px;
  }
}

/* Para telemóveis e ecrãs muito pequenos */
@media (max-width: 500px) {
  .experiencia {
    height: 300px;
  }

  .overlay h3 {
    font-size: 1.3em;
  }

  .overlay p {
    font-size: 0.95em;
  }

  .btn-reservar {
    padding: 8px 16px;
    font-size: 0.95em;
  }
}

@media (max-width: 1368px) and (max-height: 912px) and (orientation: landscape) {

  .conteudo-descricao {
  flex-direction: column;
  }

 .descricao {
  width: auto;
  }

 .conteudo-descricao img {
  margin: auto;
  }

.quartos-container {
  flex-wrap: nowrap;
  }

  }


#select-container {
  position: absolute;
  right: 60px;
  background: #ffffff;
  border-radius: 8px;
  width: 60px;
  padding: 5px;
  cursor: pointer;
  user-select: none;
  z-index: 999;
  margin: 0px;
}

#selected-language {
  display: flex;
  align-items: center;
  justify-content: center;
}

#selected-language img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

#selected-language .arrow {
  font-size: 12px;
  margin-left: 5px;
}

#language-options {
  list-style: none;
  padding: 5px 0;
  margin: 0;
  display: none;
  flex-direction: column;
}

#language-options li {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

#language-options li img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #ddd;
  transition: transform 0.2s ease;
}

#language-options li img:hover {
  transform: scale(1.1);
}

#select-container:hover {
  border-radius: 20px;
  box-shadow: 0 7px 10px rgba(79,104,113,0.3);
}

#select-container ul {
  list-style: none;
  margin: 0;
  padding: 5px;
}

#select-container li {
  margin-bottom: 8px;
}

#select-container img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

#select-container img:hover {
  transform: scale(1.08);
  box-shadow: 0 5px 10px rgba(79,104,113,0.3);
}

/* Tooltip básico */
[tooltip] {
  position: relative;
}
[tooltip]::after {
  content: attr(tooltip);
  position: absolute;
  left: 50%;
  bottom: 110%;
  transform: translateX(-50%);
  background: #465663;
  color: #fff;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
[tooltip]:hover::after {
  opacity: 1;
}



/* Banner */
.cky-banner {
  position: fixed;
  bottom: 70px; /* altura da barra de navegação (ajuste conforme necessário) */
  right: 0;
  width: auto; /* só ocupa o necessário */
  z-index: 9999;
  
  background: transparent; /* tira o overlay */
  backdrop-filter: none;  

  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1rem;
}

.cky-card {
  max-width: 400px; /* reduzido para não ocupar tanto espaço */
  background: var(--card);
  color: var(--fg);
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 12px; 
  box-shadow: 0 5px 15px rgba(0,0,0,.25);
  padding: 1rem;  
  gap: .5rem;
  backdrop-filter: blur(12px);   /* efeito de desfoque */
  -webkit-backdrop-filter: blur(12px); /* suporte Safari */

}
.cky-title { font-size: 1rem; font-weight: 700; letter-spacing: .2px; }
.cky-text { color: var(--fg); line-height: 1.1; }
.cky-text small { color: var(--muted); }


.cky-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 1rem; /* espaçamento abaixo do texto */
  width: 100%;
}

.cky-btn {
  cursor: pointer;
  border-radius: 999px;
  padding: .7rem 1.25rem;
  font-weight: 600;
  font-family: inherit; /* herda a mesma fonte do site */
  background: transparent;
  border: 2px transparent;
  color: var(--fg);
  box-shadow: inset 0 2px 2px rgba(255,255,255,.6),
              0 3px 6px rgba(0,0,0,.25);
  transition: all 0.2s ease-in-out;
}

.cky-btn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 2px 3px rgba(255,255,255,.7),
              0 5px 10px rgba(0,0,0,.3);
}

.cky-accept {
  border-color: var(--accent);
  color: var(--accent);
}

.cky-reject {
  border-color: var(--danger);
  color: var(--danger);
}
.cky-muted { color: var(--muted); font-size: .9rem; }


/* Botão de gerir cookies (opcional) */
.cky-manage {
position: fixed; bottom: 1rem; left: 1rem; z-index: 9998;
background: var(--card); color: var(--fg); border: 1px solid rgba(148,163,184,.25);
border-radius: 999px; padding: .55rem .9rem; cursor: pointer; font-weight: 600;
box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.cky-manage[hidden] { display: none; }


@media (min-width: 720px) {
.cky-card { grid-template-columns: 1fr auto; align-items: center; }
.cky-actions { justify-content: flex-end; }
}



@supports (-webkit-touch-callout: none) {
  html, body {
    touch-action: manipulation;
    overscroll-behavior: none;
  }
} 

.imagemtrans img {
  width: 100%;       
  object-fit: cover; 
  display: block; 
}
