@import url(./conteudo6.css);
@import url(./conteudo1-sobre.css);
@import url(./conteudo2-sobre.css);
@import url(./conteudo3-sobre.css);
@import url(./footer.css);
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --cor-primaria: #159F92;
    --cor-primaria-clara: #19b1a2;
    --cor-secundaria-clara: #0EDDC9;
    --cor-branca: #E8E8E8;
    --cor-cinza: #dfdfdf;
  }


body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: var(--cor-primaria) !important;
}

body::-webkit-scrollbar {
    width: 11px;               /* width of the entire scrollbar */
  }
  
  body::-webkit-scrollbar-track {
    background: rgb(0, 0, 0);        /* color of the tracking area */
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: var(--cor-primaria);    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid var(--cor-primaria);  /* creates padding around scroll thumb */
  }

html{
    scroll-behavior: smooth;
}

/* Comeco header pc */
.header-page {
    width: 100%;
    height: 75px;
    display: flex;
    background-color: var(--cor-primaria);

    /* vertical */
    align-items: center;

    /* horizontal */
    justify-content: space-between; 

    padding: 0 15px;

    /* position: absolute; */
    position: fixed;
    top: 0;
    left: 0;

    overflow: hidden;
    
    z-index: 99;
}

.logo{
    margin-left: 290px;
}

.logo-img{
    width: 150px;
}

.ul-pc {
    list-style: none;
    display: flex;
    align-items: center;
    margin-right: 310px;
}

.li-pc {
    margin: 0 40px;
    position: relative; 
    display: flex;
}

.a-pc-header{
    text-decoration: none;
    color: var(--cor-branca);
    font-size: 16.5px;
    margin-top: 14.5px;
    margin-right: 43px;
    font-size: 16px;
    position: relative; 
    font-family: 'Inter', sans-serif !important; 
}

.a-pc-header:after {
    content: "";
    position: absolute;
    background-color: var(--cor-branca);
    height: 2px;
    width: 0;
    left: 0;
    bottom: -4px;
    z-index: 99;
    transition: 0.5s;
}

.a-pc-header:hover:after {
    width: 100%;
}


.menu-celular{
    display: none;
}


@media screen and (max-width: 600px){

    .logo-img{
        width: 100px;
    }

    .menu-celular{
        display: block;
    }

    .botao-menu{
        font-size: 20px;
        color: var(--cor-branca);
    }

    .botao-menu-2{
        font-size: 20px;
        color: var(--cor-branca);
    }

    .ul-pc{
        display: none;
    }

    .header-page{
        justify-content: center;
        padding: 3px !important;
        height: 63px;
        z-index: 97;
    }
    
/* COMECO MENU CELULAR */
input[type="checkbox"]{
    display: none;
}

.header-celular{
    background-color: var(--cor-primaria)!important;
    width: 100% !important;
    height: 100% !important;
    position: fixed !important;
    top: 0;
    left: -100%;
    transition: all 0.5s;
    z-index: 98;
}

input[type="checkbox"]:checked ~ .header-celular {
    transform: translateX(100%);
}

.celular-botoes{
    list-style: none;
    margin-top: 150px;
}

.li2{
    margin-bottom: 25px;
    width: 90%;
    padding-bottom: 10px;
    font-family: 'Poppins', sans-serif !important; 
}

.elemento-header{
    font-size: 20px !important;
    color: rgb(255, 255, 255);
    text-decoration: none;
}


.label1{
    position: fixed !important;
    top: 17px;
    z-index: 97;
    left: 5%;
    width: 6.5% !important;
}

.label2{
    position: absolute;
    top: 17px;
    z-index: 99;
    left: 5%;
    width: 4% !important;
}

.header-menu2{
    position: absolute;
}

}

@media screen and (max-width: 1400px){
    .header-page{
        justify-content: center !important;
        padding: 3px !important;
        height: 63px;
        z-index: 97;
    }

    .logo{
        margin-left: 0;
    }

    .ul-pc{
        margin-right: 0;
    }
}