@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
html, body{
    height: 100%;
}

:root {
    --header-height: 4.5rem;

    /*--- colors ---*/
    --dark-color: #003646;
    --base-color: #005368;
    --base-color-second: #04C9A4;
    --base-color-light: #04fdc3;
    --title-color: #005368;;
    --text-color: hsl(0 0% 46%);
    --text-color-light: rgb(241, 239, 239);
    --body-color: rgb(204, 204, 204);

    --title-font-size:1.875rem;
    --subtitle-font-size: 1rem;

    --title-font: "Poppins", sans-serif;
    --body-font: "DM SANS", sans-serif;
}


/**** estilização ***/
.contato-form .sucesso{
    display: none;
    width: 100%;
    padding: 13px 1.5%;
    color: #008000;
    font-weight: bold;
    font-size: 14px;
    background-color: #ccff74;
}

.overlay-loading{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
}

.overlay-loading img{
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}



/* Divs Gerais */
.container{
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

.container2{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.clear{
    clear: both;
}

.w100{
    width: 100%;
}

.w50{
    width: 50%;
}




/* Divs Gerais -----------------------------*/

header{
    padding: 20px 2%;
    background-color: var(--base-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo1{
    float: left;
    width: 280px;
    height: 88px;
    background-image: url('../img/logo.png');
    background-size: contain;
    background-position-y: center;
    background-repeat: no-repeat;
}

.logo2{
    float: right;
    width: 500px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.logo2 i{
   color: var(--text-color-light);
   cursor: pointer;
   font-size: 1.3rem;
   margin: 10px;
   display: inline-block;
   
}

.logo2 span{
    color: var(--text-color-light);
    display: inline-block;
    font-size: 1.3rem;
    cursor: pointer;
    
    
 }

 .logo2 a{
    text-decoration: none;
    
    
 }

.logo2 i:hover, a:hover{
    transition: 1s;
    -moz-transition: 1s;
    color: var(--base-color-second);
    
 }

 .logo2 span:hover{
    transition: 1s;
    -moz-transition: 1s;
    color: var(--base-color-second);
    text-decoration: underline;
    
 }

 .linha{
    width: 100%;
    height: 15px;
    background-color: var(--base-color-second);
    position: relative;
}

section.slide{
    width: 100%;
    height: 65vh;
    position: relative;
}

div.slide-single{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: block;
    z-index: 1;
    background-size: cover;
    background-position: 50%  30%;
}


.bullets{
    position: absolute;
    z-index: 5;
    bottom: 10px;
    left: 15px;
    top: 55vh;
}

.bullets span{
    margin: 0 8px;
    width: 16px;
    height: 16px;
    background-color: #444;
    cursor: pointer;
    border-radius: 50%;
    display: inline-block;


}

.bullets span.active-slider{
    background-color: white;
}


section .categoria-header{
    width: 100%;
    height: 100px;
    max-width: 250px;
    position: absolute;
    background-color: white;
    padding: 20px;
    left: 50%;
    top: 72vh;
    text-align: center;
    transform: translatex(-50%);
    z-index: 2;
}

section .categoria-header h2{
    color: var(--base-color);
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

section .categoria-header .ln{
    width: 100%;
    max-width: 200px;
    background-color: var(--base-color-second);
    height: 3px;
    margin-top: 15px;
    z-index: 2;
}

section .categoria-wraper{
    width: 100%;
    height: auto;
    background-color: var(--dark-color);
    padding: 20px;
    margin-top: 60px;
    
}

section .categoria-single{
    float: left;
    width: 33.3%;
    background-color: var(--base-color-second);
    border: 15px solid var(--dark-color) ;
    padding: 20px;
    text-align: center;
    height: 220px;
    vertical-align: middle;
}

section .categoria-single i{
    font-size: 4rem;
    color: var(--dark-color);

}
section .categoria-single .text-destaque{
    width: 100%;
    margin-top: 30px;
    display: block;
    color: var(--dark-color);
    

}
section .categoria-single h2{
    font-weight: 300;
    font-size: 20px;
}

section.posto{
    width: 100%;
    padding: 50px 0 80px 0;
    background-color: white;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

section.posto h2{
    color: var(--dark-color);
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 50px;
    margin-bottom: 10px;
    width: 100%;
}

section.posto p{
    width: 70%;
    max-width: 620px;
    padding: 10px;
    text-align: justify;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-color);

}

section.quem-somos{
    width: 100%;
    padding: 50px 0 80px 0;
    background-color: var(--dark-color);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

section.quem-somos h2{
    color: var(--text-color-light);
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 50px;
    margin-bottom: 10px;
    width: 100%;
}

section.quem-somos p{
    width: 70%;
    max-width: 620px;
    padding: 10px;
    text-align: justify;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-color-light);

}

section.contato{
    width: 100%;
}

section.contato .contato-img{
    float: left;
    width: 50%;
    height: 500px;
    background-image: url(../img/Img-footer.jpeg);
    background-position: 10% top;
    background-size: cover;
}
section.contato .contato-form{
    float: right;
    width: 50%;
    
    text-align: center;
    padding: 40px 20px;
}

section.contato .form-wraper{
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 10px;
}

section.contato .form-wraper h2{
    color: var(--dark-color);
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}
section.contato .input-wraper{
    float: left;
    padding: 5px;
    margin-top: 8px;
}
section.contato input[type=text]{
    width: 100%;
    border: 1px solid #ccc;
    height: 40px;
    line-height: 40px;
    padding-left: 15px;
}

section.contato textarea{
    width: 100%;
    height: 120px;
    border: 1px solid #ccc;
    padding: 8px;
    resize: none;
}

section.contato input[type=submit]{
    border: none;
    width: 100%;
    cursor: pointer;
    background-color: var(--base-color);
    padding: 10px 0;
    color: var(--text-color-light);
    font-weight: 700;
    font-size: 20px;
}
section.contato input[type=submit]:hover{
    transition: 1s;
    -moz-transition: 1s;
    background-color: var(--dark-color);
    color: var(--base-color-second);
    border: none;
}

.end {
    width: 100%;
    padding: 50px 30%;
    text-align: center;
    color: var(--text-color-light);
    background-color: var(--dark-color);
    font-weight: 400;
    font-size: 18px;
}

.end h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color:var(--base-color-second); 
}

footer{
    width: 100%;
    padding: 18px 0;
    text-align: center;
    color: var(--dark-color);
    background-color: var(--base-color-second);
    font-weight: 400;
    font-size: 12px;
}

@media screen and (max-width: 1024px){
    section.categorias .categoria-header {
        visibility: hidden !important;
    }
 
    section.posto{
        padding-left: 20px ;
    }

    section.posto .posto-single{
        width: 44%;
        padding: 10px;
        margin: 20px;
        border: none;
        
    }
    div.slide-single{
        background-position: 50%  30%;
    }
    div.slide-single:nth-of-type(3){
        background-position: 10%  30%;
    }

}

@media screen and (max-width: 860px){
    
    .logo1{
        margin: auto;
        width: 100%;
        background-position: 50%;
        background-size: 250px;
    }

    section .categoria-header {
        top: 83vh;
    }

    .logo2 {
        width: 100%;
        padding-left: 15%;
        padding-right: 15%;
    }
}

@media screen and (max-width: 800px){
    .logo2 {
        padding-left: 15%;
        padding-right: 15%;
    }
    
    section.posto .posto-single{
        width: 80%;
        float: none;
        padding: 10px;
        margin: 30px auto;
        
    }

    div.slide-single:nth-of-type(3){
        background-position: 17%  30%;
    }

    .posto-single .posto-wraper2{
        margin-right: 25px;
    }

    section.contato .contato-img{
        width: 100%;
    }

    section.contato .contato-form{
        width: 100%;
 
    }

    section.contato .form-wraper{
        max-width: 700px;
    }
    .w50{
        width: 100%;
    }

    .end {
        padding: 30px 20%;
    }
}

@media screen and (max-width: 720px){
    section.categorias .categoria-header {
        visibility: visible !important;
    }
    .logo2 {
        padding-left: 1%;
        padding-right: 1%;
    }
    
    .logo2 span{
        font-size: 16px;
    }
    
    .logo2 i{
        font-size: 16px;
    }
    
    section.categorias .categoria-wraper{
        height: auto;
    }
    
    section .categoria-single{
        float: none;
        display: block;
        width: 62%;
        margin: 20px auto;

    }

    div.slide-single{
        background-position: 50% 30%;
    }
    
    div.bullets span{
        display: block;
        margin-top: 8px;
    }

   
}  