@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

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

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

.caixa-texto{
    width: 600px;
}

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

button{
    background-color: #ef1b23;
    color: #fff; /*cor do texto*/
    border: none;/*remover bordas*/
    padding: 10px;/*expande tamanho*/
    border-radius: 20px;/*arredonda as bordas*/
}

h2{
    font-size: 60px;
    font-weight: 500;
}

span{
    color: #ef1b23;
    font-size: 70px;
    font-weight: 700;
}

p{
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.circulo{
    background: #ef1b23;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: circle(600px at right 800px);/*cria o formato do circulo*/
}

.Starbucks{
    z-index: 2;/*muda a camada*/
    width: 340px;

}

.logo{
    width: 80px;
}

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

.copo-pequeno{
    width: 100px;
    cursor: pointer;
    transition: 1s;
}

.copo-pequeno:hover{
    transform: translateY(-25px);
}