* {
  font-family: 'Source Sans Pro', sans-serif;
  margin: 0;
 box-sizing: border-box;

}
.topo {
    width: 100%;
    position: fixed;
    background-color: #fff;
}

.topo-secao {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
  color: #3d3d3d;
}

.limite-secao {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.container-logotipo {
  flex: 1 0 60%;
}

.container-logotipo a {
  font-size: 24px;
  text-decoration: none;
  color: #3d3d3d;
}

.container-logotipo span {
  color: #6592c9;
}

.container-links {
  flex: 1 0 150px;
  display: flex;
  justify-content: space-between;
}

.link-topo {
  text-decoration: none;
  color: #3d3d3d;
}

.conteudo-imagem-fundo {
    background-image: url(img-fundo.jpg);
    width: 100%;
    height: 40vh;
    padding: 0 10px;
    background-position: top;
    background-size: cover;
}



.Rodape {
    background-color: #4b9372; 
    color: white;
    padding: 20px 5%;
    display: flex;
    flex-direction: column; 
    align-items: center;
}

.rodape-conteudo {
    width: 100%;
    display: flex;
    justify-content: space-around; 
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
}

.item-rodape {
    display: flex;
    align-items: center; 
    gap: 10px;
    max-width: 250px;
}

.item-rodape img {
    width: 30px; 
    height: auto;
}

.item-rodape a, .item-rodape p, .item-rodape h4 {
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin: 0;
}


.linha-divisora {
    width: 90%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2); 
    margin-bottom: 15px;
}

.copyright p {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}

.conteudo2 {
    text-align: center;
     display: flex;
    flex-direction: column;  
    align-items: center;     
    text-align: center;
}

.container-quartos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.quarto img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.lista {
  text-align: center;
  margin: 40px 0;
}

.lista h3 {
  margin-bottom: 20px;
}

.lista ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 40px;
  list-style: disc;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.lista li {
  text-align: left;
}

.lista li:nth-child(5) {
  grid-column: 1;
}

.lista li:nth-child(6) {
  grid-column: 4;
}


