/* Tipografia e estrutura base */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: black;
  background-color: white;
}
/* Main - conteúdo */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
/* Subtítulos */
.subtitulo {
  font-size: 1.8rem;
  color: darkred;
  text-align: center;
  margin-bottom: 20px;
}
/* Parágrafos */
.paragrafo {
  font-size: 1rem;
  color: black;
  text-align: center;
  margin-bottom: 20px;
}

 /* Sobre nós parágrafo   */
#sobre-paragrafo {
  text-align: justify;
  max-width: 800px;
  margin: 0 auto 20px;
}


/* Botão saiba mais */
.botao {
  display: inline-block;
  background-color: crimson;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 0 auto;
}

/* Botão saiba mais container */
.botao-container {
  text-align: center;
  margin: 30px 0;
}

/* Botão hover */
.botao:hover {
  background-color: goldenrod;
}

/* Header */
.header {
  /* background-color: crimson; */
  color: white;
  padding: 20px;
  text-align: center;
}
/* Título do cabeçalho */
.header-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Navegação principal */
.nav {
  margin-top: 10px;
}
/* Lista de navegação */
.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
}
/* Links de navegação */
.nav-link {
  color: darkred;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
/* Navegação hover */
.nav-link:hover {
  background-color: goldenrod;
}

/* Destaques */
.lista-diferenciais {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: center;
}
/* lista diferenciais */
.lista-diferenciais li {
  background-color: lightgray;
  padding: 10px;
  border-radius: 6px;
}

/* Suítes */
.valores-suites {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: center;
}
/* valores das suítes */
.valores-suites li {
  background-color: lightgray;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* Section Promoções */
.promocoes {
  background-color: goldenrod; /* tom suave para destacar */
  padding: 30px 20px;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  text-align: center;
}

/* Lista de promoções */
.lista-promocoes {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

/* Itens da lista */
.lista-promocoes li {
  background-color: gray;
  padding: 12px 20px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-weight: bold;
  color: darkred;
}

/* Imagens */
.imagens {
  text-align: center;
  margin-bottom: 20px;
}

.imagens img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px gray;
}

/* Imagens da página suites */
.suite-plus .imagens img,
.suite-simples .imagens img {
  max-width: 700px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
/* Carrossel de imagens */
.carousel {
  position: relative;
  max-width: 600px;
  margin: 0 auto 30px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 6px gray;
}

.carousel-track {
  display: flex;
  /* width: calc(100% * 6); */
  transition: transform 0.5s ease;
}

.carousel-track img {
  width: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  max-height: 400px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  z-index: 1;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.imagens figcaption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: dimgray;
}

/* Contato */
.lista-contato {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
/* lista item */
.lista-item {
  margin-bottom: 20px;
  text-align: center;
}
/* lista item img */
.lista-item img {
  width: 40px;
  height: auto;
  margin-bottom: 8px;
}
/* figcaption */
.lista-item figcaption {
  font-size: 0.95rem;
  color: dimgray;
}

/* Seção de diretrizes */
.diretrizes {
  background-color: #f9f9f9;
  padding: 30px 20px;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  text-align: left;
}

/* Lista de diretrizes */
.lista-diretrizes {
  list-style-type:none;
  padding-left: 0;
  margin-top: 20px;
  font-size: 1rem;
  color: floralwhite;
}

.lista-diretrizes li {
  margin-bottom: 12px;
}

/* Rodapé */
.footer {
  background-color: lightgray;
  color: black;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
/* Redes sociais */
.lista-redes-sociais {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 20px 0;
}

/* Rodapé lista redes sociais */
.lista-redes-sociais li {
  text-align: center;
}
/* Redes sociais img */
.lista-redes-sociais img {
  width: 30px;
  height: auto;
  margin-bottom: 5px;
}

/* WhatsApp */
a[href*="wa.me"] {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: green;
  color: white;
  padding: 10px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 6px gray;
}
/* WhatsApp imagem */
a[href*="wa.me"] img {
  width: 30px;
  height: auto;

}

/* Formas de Pagamento */
.pagamentos{
  background-color: floralwhite;
  padding: 30px 20px;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px gray;
  max-width: 800px;
  text-align: center;
}

/* Lista de formas de pagamento */
.lista-pagamentos {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 3px;
  padding: 0;
  margin-top: 20px;
}

/* Itens da lista */
.lista-pagamentos li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 20px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-weight: bold;
  color: darkred;
}

/* Formas de Pagamento img */
.lista-pagamentos .imagens img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 8px;
}

/* Formas de Pagamento figcaption */
.lista-pagamentos figcaption {
  font-size: 0.95rem;
  color: black;
}

/* Barra de pesquisa */
.pesquisa-container{
  text-align: center;
  margin: 15px 0;
}

.barra-pesquisa{
  display: inline-flex;
  gap: 5px;
}

.campo-pesquisa {
  padding: 8px;
  font-size: 16px;
  border: 2px solid gray;
  border-radius: 4px;
  width: 200px;
}

.botao-pesquisa {
  padding: 8px 12px;
  font-size: 16px;
  background-color: crimson;
  color: white;
  border: 1px solid black;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.botao-pesquisa:hover {
  background-color: goldenrod;
}

/* logo header */
.logo-header{
  max-width: 300px;
  height: auto;
  display: block;
  margin: 20px auto;
  padding: 10px 0;
}

/* h1 oculto só para o SEO */
.visually-hidden {
  position: absolute;
  left: -9999px;
}

/* dados institucionais */
.dados {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  text-align: center;
  margin-top: 20px;
}

.dados, .cnpj,
.dados, .razao-social {
  display: inline-block;
  font-weight: 500;
  color: black;
}