:root{
    --title-font-size: 4.5vh;
    --subtitle-font-size: 2.5vh;
    --secondary-title-font-size: 3.5vh;
    --common-text-font-size: 2.2vh;
}

body{
    background-image: url(imagens/coqueiral.jfif);
    background-attachment: fixed;
    background-size: cover;
}

#Home{
    position: absolute;
    top: 0;
}

#Servicos{
    position: absolute;
    top: 0;
}

#Politica{
    position: absolute;
    top: 92vh;
}

#Contato{
    position: absolute;
    top: 184vh;
}





nav.navbar{
    padding-top: 0;
    padding-bottom: 0;
    padding: 0 10%;
    box-shadow: 0px 1px rgb(102,102,102,.2);
    background: #fff;
}

a.navbar-brand{
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand img{
    height: 8vh;
}

.navbar-collapse{
    justify-content: right;
    height: auto;
}

.navbar-nav .nav-item .nav-link{
    color: rgb(120, 120, 120);
    height: 8vh;
    line-height: calc(8vh - 1rem);
}

.navbar-nav .nav-item .nav-link:hover{
    color: rgb(0, 0, 0);
}

@media screen and (max-width: 600px) {
    nav.navbar{
        padding-top: 0;
        padding-bottom: 0;
        padding: 0 3vw;
        box-shadow: 0px 1px rgb(102,102,102,.2);
        background: #fff;
    }
}



section{
    height: 92vh;
}

section.home{
    margin-top: 8vh;
    /* background-image: url(imagens/coqueiral.jfif); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
}

section.home div.home-gradient{
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom right, rgb(0,0,0, 0 ), rgb(0,0,0, 1));
    display: flex;
    justify-content: right;
    align-items: flex-end;
    flex-direction: column;
}

.home-promessa{
    margin: 0 10vw 0 0;
    color: #fff;
    text-align: right;
    font-size: 2.8rem;
    width: 50%;
    height: 89vh;
    display: flex;
    justify-content: right;
    align-items: center;
}

.rodape{
    font-size: 2vh;
    color: #fff;
    width: 100%;
    padding: 0 0 1vh 1vw;
}

@media screen and (max-width: 600px) {
    section.home div.home-gradient{
        justify-content: center;
    }

    .home-promessa{
        padding: 0 5vw; 
        max-width: 90vw;
        color: #fff;
        text-align: center;
    }
}





section.servicos{
    background: #fff;
    margin-top: 8vh;
}

.servicos-title{
    padding: 7vh 10vw;
    height: 24vh;
}

.servicos-title strong{
    font-size: var(--title-font-size);
    font-family: 'Montserrat';
    display: block;
}

.servicos-title span{
    font-size: var(--subtitle-font-size);
    font-family: 'Montserrat';
}

.servicos-row{
    width: 100%;
    max-height: vh;
    padding: 0 0 7vh;
    display: flex;
}

.servicos-controller{
    width: 8vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servicos-controller button{
    background: #fff;
    color: #3d3d3d;
    font-family: 'Montserrat';
    font-size: 5vh;
    width: 6vw;
    border: none;
}

#right-controller{
    text-align: left;
    margin: 0 2vw 0 1vw;
}

#left-controller{
    text-align: right;
    margin: 0 1vw 0 2vw;
}

.controller-active{
    display: block;
}

.controller-unactive{
    display: none;
}

.servicos-item-ativo{
    height: auto;
    margin: 0 1vw;
    border: 1px solid black;
    flex: 1;
    border-radius: 20px;
    padding: 3vh 2vw;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.servicos-item-oculto{
    display: none;
}

.servicos-icon{
    height: 20vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10vh;
}

.servicos-text{
    height: 21vh;
}

.servicos-text h4{
    font-size: var(--secondary-title-font-size);
}

.servicos-text p{
    font-size: var(--subtitle-font-size);
}

.servicos-link{
    color: #000060;
    text-decoration: none;
    background: transparent;
    border: 1px solid #000060;
    padding: 0.5rem 1rem;
    margin: 5vh 0 0;
    border-radius: 0.5rem;
    font-size: var(--subtitle-font-size);
    transition: 0.4s;
}

.servicos-link:hover{
    color: white;
    text-decoration: none;
    background: #000060;
}

@media screen and (max-width: 1024px) {
    section.servicos{
        height: auto;
    }

    .servicos-title{
        padding: 3vh 10vw;
        height: auto;
    }

    .servicos-row{
        width: 100%;
        max-height: none;
        padding: 0 0 7vh;
        display: flex;
        justify-content: center;
    }

    .controller-unactive i{
        color: #fff;
    }

    #right-controller{
        margin: 0 1vw;
    }
    
    #left-controller{
        margin: 0 1vw;
    }

    .servicos-text{
        height: auto;
    }

    .servicos-link{
        margin: 1rem 0 0;
    }
}

@media screen and (max-width: 600px) {
    section.servicos{
        height: auto;
    }

    .servicos-title{
        padding: 3vh 10vw;
        height: auto;
    }

    .servicos-row{
        width: 100%;
        max-height: none;
        padding: 0 0 7vh;
        display: flex;
        justify-content: center;
    }

    .servicos-controller{
        width: auto;
    }

    .servicos-controller button{
        width: auto;
    }

    .controller-active{
        display: block;
    }
    
    .controller-unactive{
        display: block;
        cursor: pointer;
    }

    .controller-unactive i{
        color: #fff;
    }

    #right-controller{
        margin: 0 1vw;
    }
    
    #left-controller{
        margin: 0 1vw;
    }
    
    .servicos-item-ativo{
        height: auto;
        margin: 0;
        border-radius: 20px;
        padding: 3vh 2vw;
    }

    .servicos-text{
        height: auto;
    }

    .servicos-link{
        margin: 1rem 0 0;
    }
}




section.politica{
    /* background-image: url(imagens/coqueiral.jfif); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 60%;
    background-attachment: fixed;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8vh 5vw;
    font-family: 'Montserrat';
}

.politica-item:first-child{
    width: 86vw;
    height: 30vh;
    margin: 0 2vw 5vh;
}

.politica-item{
    width: 40vw;
    height: 39vh;
    background: #fff;
    margin: 0 2vw;
    border-radius: 3vh;
    padding: 2vh 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
}

.politica-item strong{
    font-size: 2.7vh;
}

.politica-item p, ul{
    font-size: var(--common-text-font-size);
}

@media screen and (max-width: 992px) {
    section.politica{
        height: auto;
        padding: 8vh 5vw;
    }
     
    .politica-item, .politica-item:first-child{
        width: 90vw;
        height: auto;
        margin: 0 0 5vh;
        padding: 4vh 5vw;
        justify-content: left;
    }

    .politica-item:last-child{
        margin: 0;
    }
}






			/*Contato*/

.info{
    height: 88vh; 
    width: 100%; 
    display: flex; 
    flex-wrap: wrap;
}

.local{
    width: 60%; 
    height: 100%; 
    margin: 0;
}

/* .contato{background: #EBEBEB; width: 40%; height: 88vh;} */

.contato{
    width: 40%; 
    height: 88vh; 
    background: #fff;
}

.contato-title{
    font-size: 1.6vw; 
    width: 100%; 
    height: 12vh; 
    text-align: center; 
    padding: 3vh 0%; 
    line-height: 6vh;
}

.contato-info{
    font-size: 1.4vw; 
    text-align: center; 
    padding: 8vh 5%;
}

@media(max-width: 1349px){
	.trabalhe{padding: 4% 1%;}
	/* .contato-info{font-size: 1.12rem;} */
}

@media(max-width: 1199px){
	/* .contato-info{font-size: 1rem;} */
}

@media(max-width: 991px){
	.info{
        height: auto;
    }

	.local{
        width: 100%; 
        height: 54vh;
    }

	.contato{
        width: 100%; 
        height: auto; 
        border-width: 2px;
    }

	.contato-title{
        height: 6vh; 
        padding: 0 0; 
        font-size: 1.3rem;
    }

	.contato-info{
        padding: 5%; 
        font-size: 1rem;
    }
}



			/*Créditos*/

.créditos{
    height: 4vh; 
    width: 100%; 
    color: white; 
    background: #000060; 
    text-align: center; 
    font-size: 2vh; 
    line-height: 2vh; 
    padding: 1vh 0;
}

.créditos span a{
    color: white; 
    text-decoration: none;
}

.créditos span a:hover{
    color: white; 
    text-decoration: none;
}