body {
    background: #ccee66;
    color: white;
    margin: 0;
    padding: 0;
    padding: 20px 160px;
    height: 100vh;
    overflow: hidden;
    font-family: "Noto Sans", sans-serif;

}

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;
    opacity: 0.5;
}

.logo {
    width: 80px;
}

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;

}

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

}

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


}


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

.caixatexto {
    max-width: 500px;

}

.caixabotoes {z-index:2 ;
position: relative;
display: flex;
gap: 30px;
transition: transform 0.3s ease, background-color 0.3s ease;
transform: translateX(10px);
      
}


.botoes {
    width: 80px;
    height: 80px;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;

}

.botoes:hover{
    opacity:0.7;  
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}



.VERDE {
    background: #ccee66;
}

.AZUL {
    background: #58cced;
}

.ROSA {
    background: #ff9eb5;
}

.logo{
    position: fixed;     
    top: 2;
    left: 2;
    width: 100px;         
    height: auto;
    z-index: 9999;        
    padding: 10px;        
   
}

@media (max-width: 768px) {
  body {
    padding: 20px;
    height: auto;      
    overflow: visible; 
  }

  .caixaprincipal {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 20px;
  }

  .caixatexto {
    max-width: 100%;
    text-align: center;
  }

  .imgtenis {
    width: 220px !important; 
    transform: rotate(-25deg) !important;
    filter: drop-shadow(15px 20px 20px #161616);
    margin: 0 auto;
    display: block;
  }

  h1 {
    font-size: 36px !important;
  }

  h4 {
    font-size: 20px !important;
  }

  p {
    font-size: 14px !important;
    margin-bottom: 25px !important;
  }

  .botao-carrinho {
    font-size: 14px !important;
    padding: 10px 20px !important;
  }

  .caixabotoes {
    justify-content: center !important;
    gap: 20px !important;
    transform: none !important;
    margin-top: 20px !important;
  }

  .botoes {
    width: 60px !important;
    height: 60px !important;
  }
}
