* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: poppins, sans-serif;
}

main {
    width: 100%;
    height: 900px;

}

header {
    width: 100%;
    height: 90px;

    display: flex;
    flex-direction: row-reverse;

    gap: 1px;
}

.figure {
    width: 50%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 20px;
    padding-top: 30px;
}
#logo{width: 100px;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 20px;
    padding-top: 30px;}


nav {
    font-weight: 600;
    font-size: 20px;
    color: #797575;
    width: 50%;
    height: 90px;
    margin-right: 50px;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 20px;
    gap: 40px;
    cursor: pointer;


}
 nav a:hover {
    opacity: .3;
    color: #017143;
 }

.container {
    width: 100%;
    height: 400px;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1px;
}

.conteudo {
    width: 600px;
    height: 500px;
    display: flex;
    justify-content: left;
    flex-direction: column;
    padding: 60px 50px;
    color: #797575;
    
    

}

h1 {
    font-weight: 800;
    font-size: 35px;
    text-align: left;
}
span {
    font-size: 50px;
    color: #017143;

}
p{
    text-align: justify;
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

button {
    margin-top: 40px;
    width: 150px;
    height: 40px;
    background-color: #017143;
    border: none;
    border-radius: 50px;
    box-shadow: #000 10px 5px 5px;
    cursor: pointer;
    color: #fff;
    font-weight: 400;
    font-size: 18px;

}
button:hover{
    background-color: #fff;
    color: #017143;
    border: 0.01px solid #017143 ;
    border:dotted;
    transition: 1s;

}
.menu{display: flex;
    justify-content: center;
   
    
}
.botao-menu {
    width: 60px;
    transition: 1s;
    cursor: pointer;
    margin: 10px;
}

.botao-menu:hover {
    transform: translateY(-25px);
}

aside {

    width: 50%;
    height: 500px;
    display: flex;
    margin-top: 50px;
    justify-content: right;


}


.circulo {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #017143;
    top:0;
    left: 0;
    clip-path: circle(500px at right 700px);
    z-index: -2;
}
.copo-pequeno {
    width: 60px;
    cursor: pointer;
    
}
.copo-pequeno:hover {
    transform: translateY(-35px);
    transition: 1s;
}