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

body {
    padding-top: 20px;
    padding-right: 100px;
    padding-left: 100px;
}

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

.textos {
    width: 600px;
}

h1 {
    color: #333;
    font-size: 60px;
    font-weight: bold;
}

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

p {
    font-size: 16px;
}

button {
    background: #017143;
    color: white;
    border-radius: 40px;
    border: none;
    padding: 10px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.5s;
}

button:hover {
    background-color: #00502f;
}

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

.menu {
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.starbucks {
    width: 300px;
    height: auto;
    transition: 0.3s ease;
}

.botao-menu {
    width: 80px;
    cursor: pointer;
    margin: 10px;
    transition: 0.5s;
}

.botao-menu:hover {
    transform: translateY(-30px);
}

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

@media (max-width:400px) {
    body {
        padding: 20px;
    }

    .conteudo {
        flex-direction: column;
        text-align: center;
    }

    .textos {
        width: 100%;
    }

    h1 {
        font-size: 40px;
    }

    span {
        font-size: 50px;
    }

    .caixa-imagem {
        margin: 0 auto 0 auto;
        width: 100%;
    }

    .starbucks {
        width: 100px;
        height: auto;
        margin: 0 0 30px 0;
    }
    button {
        padding: 5px;
        font-size: 14px;
        margin: 10px;
    }
    .botao-menu {
        width: 60px;
        margin: 5px;
    }
    .circulo {
        clip-path: circle(140px at right 600px);
    }
}