* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spline Sans Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

html {
  height: 500vh;
  background-color: #ffffff;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  width: 100%;
  padding: 60px 4%;
  position: fixed;
  top: 0;
  left: 0;
  color: #fff;
  z-index: 1000;
    animation-duration:  3s; 
  animation-name: slidein;
  transition: .5s;
}
header.rolagem  {
  transition: 3s;
   padding: 20px 4%;
 }
 header.rolagem  img{
   display: none;
   
 }
 header.rolagem a, header.rolagem i{
   color:black;
 }

header ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

header ul li {
  margin: 0 25px;
  margin-bottom: 20px;
}

header ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

header ul li a:hover {
  text-decoration: underline;
}

.btn-contato button {
  width: 120px;
  height: 40px;
  border: 0;
  background-color: #250fa1;
  color: #fff;
  cursor: pointer;
  transition: .2s;
}

.banner {
  height: 100vh;
  background-image: url(../images/uma-paisagem-com-um-logotipo-que-consiste-em-um-ic-srZMKGq5SAGZKl4FLanNTQ-83ERC3NtQFWy-CBRgqGUYQ.jpeg);
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: cover;
    animation-duration:  3s;
    animation-name: slidein;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 300%;
  }
  to {
    margin-left: 0%;
    width: 100%;
  }
}

.banner h1 {
  font-size: 4em;
}

.banner h1 span {
  margin-top: 10px;
  color: #1f1c1c;
}

.container {
  max-width: 1280px;
  margin: auto;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  width: 100%;
  padding: 60px 4%;
  position: fixed;
  top: 0;
  left: 0;
}

.main-container {
  display: flex;
  margin-top: 120px; /* Ajustar com base na altura do cabeçalho fixo */
  height: calc(100vh - 60px); 
}

.sidebar {
  width: 250px;
  padding: 20px;
  background-color: #fff;
  border-right: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* Fixar a sidebar ao lado da área de conteúdo */
  position: sticky;
  top: 60px;
}

.sidebar h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
}

.filter-group label {
  display: block;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 1em;
  color: #666;
}

.filter-group input[type="checkbox"] {
  margin-right: 10px;
}

.content {
  flex: 1;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 200px; /* Defina uma altura fixa para as imagens */
  object-fit: cover; /* Ajuste a imagem para cobrir o container */
}

.product-card .product-info {
  padding: 15px;
  flex-grow: 1;
}

.product-card .product-info h3 {
  font-size: 1.2em;
  margin: 10px 0;
}

.product-card .product-info p {
  color: #666;
  margin: 5px 0;
}

.product-card .product-info .price {
  font-size: 1.2em;
  color: #333;
  margin: 10px 0;
}

.product-card .product-info button {
  padding: 10px 20px;
  border: none;
  background-color: #250fa1;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%; /* Botão ocupa toda a largura do card */
}

.product-card .product-info button:hover {
  background-color: #1d0d7f;
}

button {
  border-radius: 10px;
  
}


