body {
    padding: 0;
    margin: 0;
    background: #ccee66;
    color: white;
    padding: 20px 160px;
    /*1) Em cima e em baixo, 2) dos lados */
    height: 100vh;
    /*Altura, tela toda*/
    overflow: hidden;
    /*Tudo que sobra*/
    font-family: "Noto Sans", sans-serif;

}

/*After/before*/
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: black;
    font-size: 250px;
    font-weight: bold;
    /*Grosura da fonte*/
    opacity: 0.5;

}

.logo {
    position: relative;
    z-index: 2;
    width: 80px;
    /*Largura*/

}

h4 {
    font-size: 30px;
}

h1 {
    font-size: 80px;

}

p {
    font-size: 16px;
    margin-bottom: 40px;
}

.botao-carrinho {
    background: #a3be52;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    color: black;
    cursor: pointer;
    transition: 0.5s;
}

.botao-carrinho:hover {
    opacity: 0.7;

}

.imagem-tenis {
    width: 800px;
    transform: rotate(-25deg);
    filter: drop-shadow(30px 45px 40px #161616) ;
    transition: 1s;
    
}
.troca-efeito {
    opacity: 0;
    transform: rotate(-25deg) translateY(-30px);
}

.caixa-principal {
    display: flex;
    /*Habilita superpoderes*/
    justify-content: space-between;
    /*Alinha na horizontal*/
    align-items: center;
    /*Alinha na vertical*/
    height: 75%;
    position: relative;
    /*Ativar o z-index*/
    z-index: 1;

}

.caixa-texto {
    max-width: 500px;
    /*Largura máxima*/

}

.caixa-botoes {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
}

.botoes {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;

}
.botoes:hover {
    transition: 0.5s;
    transform: translateY(-10px);

}
.botoes:active {
    opacity: 0.6;
}

.verde {
    background: #ccee66;

}

.azul {
    background: #58cced;

}

.rosa {
    background: #ff9eb5;
}



 
