* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
  }

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff
}

h1 {
    font-size: 38px;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 80px 30px 80px;
    background-image: linear-gradient(-90deg, #407E8C, #304A58);
}

header div {
    margin: auto;
    margin-left: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    padding: 0 20px;
    list-style: none;
    font-size: 20px; 
}

a{
    text-decoration:none;
    color: white;
}

#inicio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 600px;
    padding: 30px 80px;
    background: #fff;
    color: #2A2850;
    display: flex;
}

#inicio div {
    width: 700px;
    padding-right: 80px;
}

#inicio div button {
    width: 150px;
    height: 50px;
    border-radius: 90px;
    border: none;
    margin: 20px 0;
    font-size: 20px;
    font-weight: 600;
    background: rgb(102, 102, 102);
    color: #fff;
}

#inicio div button:hover {
    background: rgb(166, 166, 166);
}

#sobre {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    height: 350px;
    background: #fff;
}


#sobre div {
    width: 300px;
}

#sobre div h1 {
    margin: 10px 0;
    font-size: 30px;
    color: #2A2850;
}

#sobre div p {
    color: #2A2850;
}

#sobre div img {
    width: 60px;
    height: 60px;
}

#sobre-emp button {
    background: #171720;
    width: 200px;
    height: 55px;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    border-radius: 50px;
}

#sobre-emp button:hover {
    background: rgb(62, 59, 114); 
}


#sobre-emp {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    height: 350px;
    background-image: linear-gradient(-90deg, #407E8C, #304A58);
}

#sobre-emp div {
    width: 350px;
    height: 90%;
    padding-top: 50px;
}

#sobre-emp div h1 {
    margin: 10px 0;
    font-size: 30px;
    color: #fff;
}


#sobre-emp div img {
    width: 93px;
    height: 93px;
}
#sobre-emp div:hover {
    border-radius: 20px;
    background-image: linear-gradient(-20deg, #407E8C, #304A58);
}


footer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background: #333333;
    color: #fff;
    font-size: 20px;
}

@media (max-width: 1000px) {
    #inicio img {
        display: none;
    }
}

@media (max-width: 800px) {
    header {
        padding: 40px 40px 0 40px;
    }
    
    nav ul li {
        padding: 0 10px;
        list-style: none;
        font-size: 18px; 
    }
    
    #inicio {
        padding: 10px 40px;
    }

    #inicio div {
        padding-right: 0px;
    }
    
    #inicio img {
        display: none;
    }
    
    #sobre {
        display: flex;
        flex-direction: column;
        height: 800px;
        padding: 40px 0;
    }
    #sobre-emp {
        display: flex;
        flex-direction: column;
        height: 800px;
        padding: 40px 0;
    }
    
    #cursos div {
        display: none;
    }
}
