@charset "UTF-8";

* {
    box-sizing: border-box;
}

/********************/
/* 1. Estilos Globais
/* 2. Seção Topo
/* 3. Seção Título
/* 4. Seção Quarto
/* 5. Seção Descrição
/* 6. Seção Rodapé
/********************/


/********************/
/* 1. Estilos Globais
/********************/

body {
    padding: 0;
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    color: #3d3d3d;
    background-color: #fff;
}

.container {
    max-width: 1024px;
}

.tamanho-maximo-container {
    max-width: 1024px;
    margin: 0 auto;
}

.secao-container {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 50px;
}

.secao-container h2 {
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
}

img {
    width: 100%;
}

/********************/
/* 2. Seção Topo
/********************/

.topo {
    position: fixed;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #d5d5d5;
}

.topo .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    padding: 0 10px;
    margin: 0 auto;
}

.link-logotipo {
    margin: 0 40px 0 0;
    font-size: 24px;
    text-decoration: none;
    color: #3d3d3d;
}

.link-logotipo span {
    color: #6592c9;
}

.link-topo {
    line-height: 18px;
    text-decoration: none;
    padding: 0px 15px 10px 15px;
    color: #3d3d3d;
    text-transform: uppercase;
}

.link-topo:hover {
    border-bottom: 3px solid #6592c9;
}

/********************/
/* 3. Seção Título
/********************/

.titulo-site {
    background-image: url('../img/img-fundo.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.titulo-site-descricao {
    color: #fff;
    font-size: 28px;
    background-color: #0a9077b3;
    border: 1px solid;
    padding: 0 20px;
    border-radius: 4px;
    text-align: center;
}

/********************/
/* 4. Seção Quarto
/********************/

.quartos {
    display: flex;
    justify-content: space-between;
}

.quarto {
    margin-right: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #00836a;
}

.quarto a {
    text-decoration: none;
    color: #3d3d3d;
}

.quarto a p {
    text-align: center;
}

.quarto:last-child {
    margin-right: 0px;
}


/********************/
/* 5. Seção Descrição
/********************/

.descricoes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 50px;
}

.descricao {
    display: flex;
    width: 45%;
    margin: 0 10px;
    align-items: center;
    justify-content: space-between;
}

.descricao-conteudo {
    flex: 1 1 auto
}

.descricao-img {
    width: 100px;
    height: 113px;
    object-fit: cover;
    margin-left: 10px;
}

/********************/
/* 6. Seção Rodapé
/********************/

.rodape {
    background-color: #49997d;
    color: #fff;
}

.rodape-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.rodape-info {
    width: 23%;
    display: flex;
    align-items: center;
}

.rodape-info a {
    text-decoration: none;
    color: #fff;
}

.rodape h4 {
    font-size: 22px;
}

.rodape-link {
    margin-right: 10px;
    color: #fff;
    text-decoration: none;
}

.rodape-icone {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.rodape-copyright {
    text-align: center;
    padding: 20px;
    width: 100%;
    border-top: 1px solid #3b7863;
    font-weight: 600;
    color: #fff;
}

@media (max-width:600px) {

    .link-topo {
        display: inline-block
    }

    .rodape {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .rodape-info {
        width: 100%;
    }
}