@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import "CSS/swiper.min.css";
body{
    margin: 0;
    padding: 0;

    font-family: "Inter", sans-serif;
}

/* ================================================================================ */

/* 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;
}
/* ============================================================================= */

/* IMAGENS */

section{
    overflow: hidden;
}

section .syseduca{
    width: 99vw;
}

/* ============================================================================= */

/* 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;
}