*{
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Raleway',sans-serif;
    height: 100%;
}

main{
    background-color: rgb(236, 234, 234);
    height: 100%;
}

.alinhamento-conteudo{
    max-width: 1024px;
    margin: 0 auto;
}

header{
    width: 100%;
    height: 40px;
    color: white;
    padding: 10px 0;
}

.header-topo{
    color: blueviolet;
    font-weight: normal;
    display: flex;
    font-size: 12px;
}

.header-topo img{
    height: 40px;
    padding-right: 5px;
}

 /* orcamento */

.orcamento{
    background-image: url("assets/imgs/bahia.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 1700px;
    width: 100%;
    padding: 100px 0;
   
}
 
.orcamento-topo{
    background-color: blueviolet;
    width: 100%;
    height: 40px;
    color: white;
    text-align: center;
    font-size: 12px ;

    display: flex;
    justify-content: center;
    align-items: center;
}

.orcamento-topo img{
    width: 20px;
    height: 20px;
    padding: 0 7px;
    transform: rotate(-45deg);
}

.background-orcamento{
    background-color: white;
    height: 100%;
}

.orcamento form{
    width: 95%;
    height: 100%;
    margin: 0 auto;
    font-weight: bold;
}

.inputs-padroes{
    max-height: 150px;
}

.inputs-padroes input, .inputs-padroes select{
    width: 100%;
    height: 25px;
}

.inputs-padroes input, .inputs-padroes select, form p{
    margin-top: 10px;
}

form h1{
    margin: 25px 0 20px;
}

.inputs-padroes-date, .inputs-padroes-localizacao{
    width: calc(100% / 2 - 10px);
}

.inputs-padroes-date, .inputs-padroes-localizacao, .inputs-padroes{
    margin: 10px 0;
}

.formulario-div-linha{
    display: flex;
    justify-content: space-between;
}

.inputs-check label{
    padding: 15px;
}

.inputs-check-radio{
    width: 170px;
}

.inputs-check-box{
    width: 450px;
}

form button{
    background-color: blueviolet;
    padding: 10px;
    margin: 25px 0;
    color: white;
    font-size: 16px ;
    border: 0;
}

form button:hover{
    background-color: rgb(186, 133, 235);
}

/* section-ofertas */   

.ofertas{
    max-height: 1700px;
    margin: 25px auto;
}

.ofertas h2, .ofertas p{
    padding: 5px 0;
}

.ofertas-galeria figure{
    position: relative;
}

.ofertas-galeria{
    display: flex;
    justify-content: space-between;
    height: 80%;
    margin-top: 15px;
}

.ofertas img{
    width: 100%;
    height: 100%;
}

.ofertas-galeria-destaque{
    width: calc(100% / 2 );
    margin-right: 10px;
}

.ofertas-galeria-quatro-imgs{
    display: grid;
    grid-template-areas: 
    'row-1 row-2'
    'row-3 row-4';
    gap: 5px;
    grid-template-columns: 50% 50%;
    grid-template-rows: 50% 50%;
    
    width: calc(100% / 2 );
}

.ofertas-galeria figcaption{
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    width: 100%;
}

.ofertas-galeria figcaption p{
    padding: 5px;
}

.row-1{
    grid-area: row-1;
}

.row-2{
    grid-area: row-2;
}

.row-3{
    grid-area: row-3;
}

.row-4{
    grid-area: row-4;
}

/* section natureza */

.natureza{
    max-height: 1800px;
    margin-bottom: 40px;
}

.natureza img{
    width: 100%;

}

.natureza figure{
    width: calc(100% / 2 - 15px);
}

.natureza figure div{
    padding: 30px 10px 15px 10px;
}

.natureza-galeria{
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

/* footer */

footer{
    background-color: blueviolet;
    color: white;
    height: 180px;
}

.footer-rodape{
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.footer-rodape h2{
    padding: 15px 0;
}

.footer-divs{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.footer-divs div{
    display: flex;
    height: 20px;
}

.footer-divs img{
    height: 100%;
}

/*Media Queries*/

@media(max-width:1100px){
    .alinhamento-conteudo{
        width: 90%
    };
}

@media(max-width:768px){

    .ofertas-galeria{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .ofertas-galeria-quatro-imgs{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
    }

    .ofertas-galeria figure, .ofertas-galeria-quatro-imgs figure{
        height: 300px;
        width: 100%;
        margin-bottom: 20px;
    }

    .natureza-galeria{
        flex-direction: column;
        justify-content: space-between;
    }

    .natureza-galeria figure{
        width: 100%;
        max-height: 620px;
    }

    footer{
        height: 400px;
    }

    .footer-rodape{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media(max-width:540px){

    .formulario-div-linha{
        flex-direction: column;
    }

    .inputs-check{
        flex-direction: row;
        justify-content: flex-start;
    }

    .inputs-padroes-date, .inputs-padroes-localizacao{
        width: 100%;
    }
}