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

body {
    background-color: #CCEE66;
    color: #FFFFFF;
    padding: 20px 160px;
    height: 100vh;
    overflow: hidden;
}

body::before {
    content: '';
    background: #202020;
    width: 100%;
    height: 120%;
    position: absolute;
    top: 0;
    left: -600px;
    transform: rotate(-70deg);
}

body::after {
    content: 'Nike';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #090909;
    font-size: 250px;
    font-weight: bold;
    opacity: 0.5;

}

.logo-nike {
    width: 80px;
}

h4 {
    font-size: 30px;
}

h1 {
    font-size: 80px;
}

p {
    font-size: 16px;
    margin-bottom: 40px;
}

.btn-carrinho {
    background: #A3BE52;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    color: #121214;
    transition: 0.5s;
    cursor: pointer;
}

.btn-carrinho:hover {
    opacity: 0.7;
}

.img-tenis {
    width: 800px;
    transform: rotate(-25deg);
    transition: 1s;
    filter: drop-shadow(30px 45px 40px #161616);
}

.troca-efeito {
    opacity: 0;
    transform: rotate(-25deg) translateY(-30px);
}

.caixa-principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75%;
    position: relative;
    z-index: 1;
}

.caixa-info {
    max-width: 500px;
}

.caixa-botoes {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
}

.botoes {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
}

.botoes:active {
    opacity: 0.6;
}

.verde {
    background: #CCEE66;
}

.rosa {
    background: #FF9EB5;
}

.azul {
    background: #58CCED;
}