:root {
  --fundo-claro: #ffffff; /* Cor de fundo para o modo claro */
  --texto-claro: #000000; /* Cor do texto para o modo claro */
  --fundo-escuro: #000000; /* Cor de fundo para o modo escuro */
  --texto-escuro: #ffffff; /* Cor do texto para o modo escuro */
}

/* Estilos para o modo claro */


/* Estilos para o modo escuro */
body.modo-escuro {
  background-image: url('https://i.redd.it/cxhfjeq9abcb1.gif');
  background-size: cover;
  color: var(--texto-escuro);
  transition: 3s;
}
  
  main {
    padding: 40px;
  }
  .product a {
    color: gray;
  }
  .products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 10px;
    
  }

  .products a {
  text-decoration: none;
  }
  .product {
    width: calc(33.33% - 20px);
    margin-bottom: 20px;
    transition: 1s;
    border: orangered solid 1px;
    background-color: #000000a6;
    margin: 20px;
    padding: 10px;
    
    
  }
  .product img {
    width: 100%;
    height: 200px;
    filter: grayscale(100%);
    object-fit: cover;
    transition: 1s;
    margin-bottom: 10px;

  }
  
  .product h2 {
    font-size: 1.5rem;
    margin-top: 0;
  }
  
  .product p {
    margin-top: 0;
  }
  
  .product button {
    background-color: orangered;
    color: #fff;
    border: none;
    padding: 10px;
    transition: 1s;
    margin-top: 10px;
    cursor: pointer;
  }
  
  .product button:hover {
    opacity: 50%;
    transition: 1s;
  }
  
  footer {
    background-color:black;
    color: #fff;
    height: 43.3px;
    padding: 10px;
    text-align: center;
  }
  
  footer p {
    margin: 0;
  }
/* fontes */
main{
  font-family: 'poppins', sans-serif;
  font-weight: 300;
}
/* Hover */
.product img:nth-child(1n):hover{
  filter: grayscale(0%);
  transform: scale(0.9);
  cursor: pointer;
  box-shadow: 0 0 40px orangered, 0 0 40px orangered, 0 0 40px orangered;
  transition: 1s;
}
/* .product img::after{
  transform: scale(1.1) translateY(-10px);

  clip-path: circle(40px, right 40px);
} */
/* dos Hs (h1, h2 etc) edição */
h1{
  color: orangered;
}
h2{
  color: orangered;
}
/* Edição dos P */
p{
  font-weight: 200;
  color: gray;
}
/* ScrollBarr edição */
::-webkit-scrollbar{
  color: transparent;
  transition: 1s;
  background-color: transparent;
  border: solid transparent 1px;
}
::-webkit-scrollbar-button{
  transition: 1s;
  color: gray;
  background-color: transparent;
}
::-webkit-scrollbar-thumb{
  transition: 1s;
  width: 1px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb:hover{
  color:transparent;
  filter: opacity(50%);
  transition: 1s;
  background-color: rgba(62, 48, 48, 0.438);
  border-radius: 5px;
  width: 1px;
  
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
transition: 1s;
background-color: transparent;
}

::-webkit-scrollbar {
width: 6px;
transition: 1s;
background-color: transparent;
}

.lua{
  border: none;
}