body{
    font-family: Source Sans Pro;
    margin: 50px auto 0 ;
}
 /*Propriedades reaproveitadas*/
h1{
    font-size: 30px;
    font-weight: bold;
}

h2{
    font-size: 30px;
    font-weight: normal;
}

h3{
    font-weight: bold;
    font-size: 25px;
}

.secao-conteudo{
    text-align: center;
}

.secao-alinhamento-conteudo{
    max-width: 1400px;
    min-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

#rota{
    width: 100%;
    height: 80px;
}

#sobre{
    width: 100%;
    height: 80px;
}

/*Seção Cabeçario*/

.secao-cabecario{
    position: fixed;
    top: 0;
    background-color: white;
    width: 100%;
    border-bottom: 1px solid grey;
    z-index: 5;
    padding: 15px 0;
}

.secao-cabecario ul{
    font-size: 18px;
    margin: 0;
}

.secao-cabecario ul :hover{
    color: rgb(90, 128, 250);
}

.titulo-cabecario{
    font-size: 25px;
    margin: 0;
    text-decoration: none;
}

.secao-cabecario span{
    color: rgb(90, 128, 250);
}

.secao-cabecario-conteudo{
    display: flex;
    justify-content: space-between;
}

.secao-cabecario-conteudo li, .secao-cabecario-conteudo a{
    display: inline;
    text-decoration: none;
    color: black;
    margin: 0px 8px;
}

/*Seção Banner*/

.secao-banner{
    background-image: url("assets/img-fundo.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 720px;
    font-size: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.secao-banner h1{
    font-size: 70px;
}

.secao-banner-background-titulo{
    background-color: rgb(35, 150, 111);
    width: 650px;
    height: 270px;
    opacity: 0.8;
    border-radius: 3px;
    border: 1px solid white;
}

.secao-banner-titulo{
    font-size: 35px;
    color: white;
    position: absolute;
}

/*Seção Quartos*/

.secao-quartos-galeria{
    display: flex;
    justify-content: space-between; 
    width: 100%;
}

.imgs-galeria-quartos{
    width: calc(100% / 3 - 40px);
    height: 310px;
}

.imgs-galeria-quartos img{
    width: 100%;
}

.secao-quartos-galeria h3{
    margin: 0;
    padding: 20px;
    border-bottom: 2px solid rgb(35, 150, 111);
}

/*Secao Sobre*/

.secao-sobre{
    margin-bottom: 70px;
    font-size: 20px;
}

.secao-sobre-galeria{
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    text-align: left;
}

.secao-sobre-galeria img{
    width: 150px;
    height: 180px;
}

.imgs-sobre{
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    max-width: 600px;
    min-width: 300px;
    padding: 15px 0 ;
}

/*Secao Rodape*/

 .secao-background-rodape{
    background-color: rgb(35, 150, 111);
    color: white;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.secao-rodape{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    height: 50px;
}

.secao-rodape p{
    margin: 0;
}

.secao-rodape-icons img{
    height: 100%;
    padding-right: 15px;
}

.secao-rodape-icons{
    display: flex;
    align-items: center;
    width: calc(100% / 4 - 25px);
    height: 50px;
}

.secao-rodape-copyright{
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgb(35, 114, 88) ;
    font-size: 20px;
}

.secao-rodape-copyright p{
    margin: 0;
}
 
/*----------------------- Página dos Quartos-------------------*/

/*Banner*/

.Q-secao-banner{
    width: 100%;
    height: 200px;
    background-image: url(assets/img-fundo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

/*Quarto solteiro*/

.Q-secao-quartos{
    text-align: center;
    margin-top: 60px;
    margin-bottom: 70px;
}

.Q-secao-quartos-galeria{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.Q-quartos-imgs{
    width: calc(100% / 3 - 20px);
    height: 310px;
}

.Q-quartos-imgs img{
    width: 100%;
    height: 100%;
}

.Q-secao-quartos-lista{
    display: flex;
    flex-flow: row wrap;
    text-align: left;
    justify-content: space-between;
}

.Q-secao-quartos-lista li{
    width: calc(100% / 4) ;
    padding: 10px 0;
}

