* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    padding-top: 20px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 100px;
    background-image: url("img/fundo.jpg");
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.caixa-conteudo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.caixa-textos {
    width: 600px;
}

h2 {
    color: #fff;
    font-weight: 600;
    font-size: 60px;
}

.texto-starbucks {
    color: #017143;
    font-weight: 900;
    font-size: 70px;
}

.paragrafo {
    font-size: 16px;
    color: #fff;
}

button {
    background-color: #017143;
    color: #fff;
    margin-top: 30px;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 40px;
    transition: 0.5s;
}

button:hover {
    background-color: #00b368;
}

.logo {
    width: 80px;
}

.caixa-imagem {
    width: 600px;
    display: flex;
    justify-content: flex-end;
    margin-top: 200px;
}

.imagem-copo {
    width: 340px;
}

.caixa-menu {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.botao-menu {
    width: 80px;
    cursor: pointer;
    margin: 10px;
    transition: transform 0.5s;
}

.botao-menu:hover {
    transform: translateY(-25px);
}


.circulo {
    background-color: #017143;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: circle(600px at right 800px);
    z-index: -1;
}