* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Poppins", serif;
}

header {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 100px 50px 100px;
}

.logo-img {
    width: 70px;
    height: auto;
}

a {
    text-decoration: none;
}

.social-media {
    width: 135px;
    display: flex;
    justify-content: space-between;
}

i {
    font-size: 1.3rem;
    color: #116e3a;
    transition: .2s;
}

i:hover {
    color: #00cc00;
}

.conteudo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 100px 0px 100px;
}

.textos {
    width: 600px;
}

h2 {
    color: #333;
    font-size: 50px;
    font-weight: bold;
}

span {
    color: #116e3a;
    font-size: 70px;
    font-weight: 900;
}

p {
    font-size: 16px;
}

button {
    color: #fff;
    background: #116e3a;
    font-weight: 700;  
    padding: 10px;
    border-radius: 40px;
    margin-top: 20px;
    cursor: pointer;
    transition: .3s;
    border: none;
}

button:hover{
    color: #fff;
    background: #00cc00;
}

.imagem {
    width: 600px;
    display: flex;
    justify-content: flex-end;
    margin-top: 175px;
}

.imagem-copo {
    width: 350px;
}

.menu {
    display: flex;
    justify-content: center;
    padding-left: 100px;
    padding-right: 100px;
    column-gap: 5px;
    margin-top: 40px;
}

.botão-menu {
    width: 60px;
    cursor: pointer;
    transition: 1s;
}

.botão-menu:hover {
    transform: translateY(-25px);
}

.circulo {
    background: #116e3a;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: circle(630px at right 800px);
    z-index: -1;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    margin-top: 25px;
    background: #dba162;
    padding: 15px 0 15px 0;
}

.logo-footer {
    width: 100px;
    height: auto;
}

.copyright {
    font-weight: 500;
    color: aliceblue;
}

@media(max-width: 768px){
    header {
        padding: 45px 80px 45px 80px;
    }

    .logo-img {
        width: 65px;
        height: auto;
    }

    .social-media {
        width: 115px;
    }

    i {
        font-size: 1.2rem;
    }

    .conteudo {
        padding: 80px 80px 0 80px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .textos {
        width: 600px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    h2 {
        font-size: 40px;
    }

    span {
        font-size: 60px;
    }

    p {
        width: 480px;
    }

    .imagem {
        width: 375px;
        margin-top: 55px;
        margin-left: 250px;
    }

    .imagem-copo {
        width: 325px;
    }

    .menu {
        padding-left: 80px;
        padding-right: 80px;
        margin-top: 40px;
    }

    .circulo {
        top: 290px;
        clip-path: circle(630px at right 780px);
    }

    .copyright {
        text-align: center;
    }
}

@media(max-width: 480px){
    header {
        padding: 45px 40px 45px 40px;
    }

    .logo-img {
        width: 58px;
        height: auto;
    }

    .social-media {
        width: 100px;
    }

    i {
        font-size: 1.1rem;
    }

    .conteudo {
        padding: 80px 40px 0 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .textos {
        width: 375px;
    }

    h2 {
        font-size: 32px;
    }

    span {
        font-size: 45px;
    }

    p {
        width: 355px;
    }

    .imagem {
        width: 375px;
        display: flex;
        justify-content: center;
        margin-top: 55px;
        margin-right: 250px;
    }

    .imagem-copo {
        width: 300px;
    }

    .menu {
        padding-left: 40px;
        padding-right: 40px;
        margin-top: 40px;
    }

    .botão-menu {
        width: 50px;
    }

    .circulo {
        top: 280px;
        clip-path: circle(630px at right 780px);
    }

    .logo-footer {
        width: 80px;
        height: auto;
    }

    .copyright {
        font-size: 1rem;
        text-align: center;
    }
}