@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body{
    margin: 0;
    padding: 0;

    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

/* ================================================================================ */

/* NAV */

nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;

    border-bottom: #002D6C solid 1px;
    gap: 2vw;

    height: 16vh;
}

.menus{
    display: flex;
    flex-direction: row;
    gap: 2vw;
}

.menus a,
.menus h1{
    text-decoration: none;
    color: #002D6C;
    font-weight: normal;
    font-size: 1.2vw;
}

.menus i{
    color: #002D6C;
    font-size: 1.5vw;
}

.Logo-GrupoEduCarpe{
    width: 15vw;
    margin-right: 9vw;
}

#menu{
    cursor: pointer;
}

#dropdown{
    display: flex;
    align-items: center;
    
    gap: 0.3vw;
}

/* ============================================================================= */

/* Menu DropDown */

.menu_show{
    display: none;
    flex-direction: row;
    justify-content: flex-start;
    
    z-index: 10;
    position: absolute;

    margin-top: 45vh;

    width: 20vw;
    max-height: 40vh;

    list-style-type: none;

    background-color: #002d6cef;
    
    border-radius: 10px;

    height: 50vh;

    padding: 5px;
}

.menu_show ul{
    list-style-type: none;
}

.menu_show li{
    margin-top: 2.3vh;
}

.menu_show a{
    display: inline-block;
    text-decoration: none;
    color: white;
    
    font-weight: normal;
    font-size: 14px;
}

#dropdown{
    cursor: pointer;
}

#dropdown .icone-chevron{
    transition: 0.275s;
}

#dropdown:hover .icone-chevron{
    transform: rotate(180deg);
}

#dropdown:hover .menu_show{
    display: block;
}

.menu_show a:hover{
    color: #1d67ce;
}
/* ============================================================================= */

/*Imagem*/

section{
    height: 44vh;
}

section img{
    width: 99vw;
}


/* ============================================================================= */

/* SOBRE NÓS*/

.Sobrenos{
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 13vh;
}

main h3{
    width: 60vw;

    text-align: justify;
    font-weight: normal;
    font-size: 1.2vw;
}

main h2{
    font-size: 3vw;
    color: #002D6C;
}

/* ============================================================================= */

/* Valores */


.valores{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

    margin-top: 12vh;
    margin-bottom: 30vh;

    background-color: #002150;
    color: white;

    height: 50vh;

    font-size: 1vw; 
    font-weight: normal;
}


.div-valores{
    margin-top: -7.2vh;
}

.valores li{
    list-style: circle;
}

.div-valores,
.div-solucoes{
    padding-left: 3vw;
}

.div-missao h1,
.div-valores h1,
.div-solucoes h1{
    font-size: 2.4vw;
    
    margin-bottom: 3vh;
}

.div-missao i,
.div-valores i,
.div-solucoes i{
    color: white;
}

.div-missao h2{
    font-size: 1vw;
    font-weight: normal;
    color: white;
    text-align: justify;

    width: 18vw;
}

.div-valores li{
    margin-top: 1vh;
}

/* ============================================================================= */

/* MISSÃO */

.div-missao{
    margin-top: -14.3vh;
    margin-left: 16vw;
}

/* ============================================================================= */

/* SOLUÇÕES */

.div-solucoes{
    margin-right: 16vw;
}

.div-solucoes li{
    margin-top: 1vh;
}

/* ============================================================================= */

/* Footer */

footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    height: 71vh;

    padding-top: 3vh;

    background-color: #002D6C;

    gap: 1vw;
}


footer h1{
    color: white;
}

footer a,
footer li,
footer h3{
    text-decoration: none;
    color: white;
    font-weight: normal;

    list-style: none;
    text-align: left;
}

footer h1{
    font-size: 1.7vw;
}

footer h3{
    margin-left: -2vw;
    font-size: 13px;
}

.footer-nav{
    display: flex;
    flex-direction: row;

    gap: 6vw;
}

.para-voce{
    display: flex;
    flex-direction: column;
}

.novidades{
    display: flex;
    flex-direction: column;
}

.anos20 h3{
    width: 25vw;
    text-align: justify;

    margin-left: 0vw;
}

.logo-azul{
    width: 15vw;
    height: 25vh;

    margin-top: 5vh;
}

.direitos{
    display: flex;
    flex-direction: row;
    
    gap: 20vw;
}

.anos20 h4{
    color: white;
    font-weight: normal;

    font-size: 12px;

    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 10px;
}

.icone-email,
.icone-telefone{
    width: 13px;
}

.telefone{
    margin-top: -1.8vh;
}

.direitos h5{
    color: white;
    font-weight: normal;
}

.informacoes{
    margin-top: -1vh;
}

/* ============================================================================= */

/* EFEITOS */

nav h1:hover{
    color: #1d67ce;
}

.SysEduca button:hover{
    background-color: #107568;
}