* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    padding-top: 20px;
    /* adiciona espaçamento */
    padding-right: 100px;
    padding-left: 100px;
}

.conteudo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.caixa-texto {
    width: 600px;
}


.menu {
    display: flex;
    justify-content:center;
}

.caixa-imagem {
    width: 600px;
    display: flex;
    justify-content: flex-end;
    /* joga item todo pro lado */
    margin-top: 250px;
}


button {
    background: #017143;
    /* cor de fundo */
    color: #ffffff;
    border: none;
    /* borda */
    padding: 10px;
    border-radius: 20px;
}

a {
    text-decoration: none;
    color: #ffffff;
}


h2 {
    font-size: 60px;
    font-weight: 500;


}

span {
    color: #017143;
    font-size: 70px;
    font-weight: 900;
}

p {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.logo {
    width: 80px;
}

.starbucks {
    width: 340px;
    z-index: 2;
}

.copo-pequeno {
    width: 60px;
    cursor: pointer;
    transition: 1s;
}

.copo-pequeno:hover {
    transform: translateY(-35px);
}

.circulo {
    background-color: #017143;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: circle(600px at right 800px);
}