/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #FAF9F6;
  color: #333333;
  line-height: 1.6;
}

/* Header e Navegação (consistente com as outras páginas) */
header {
  background-color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.logo {
  font-size: 1.9rem;
  font-weight: 700;
  color: #5C7AEA;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: #FF87AB;
  color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #5C7AEA;
  cursor: pointer;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Seção Topo */
.topo {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(92, 122, 234, 0.1), rgba(255, 135, 171, 0.1));
}

.topo h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #5C7AEA;
  margin-bottom: 1.5rem;
}

.topo p {
  font-size: 1.4rem;
  color: #333333;
  max-width: 800px;
  margin: 0 auto;
}

/* Main */
main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem;
}

/* Barra de Busca */
.search-bar-container {
  text-align: center;
  margin-bottom: 2rem;
}

.search-bar {
  width: 100%;
  max-width: 600px;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 1.1rem;
  color: #333333;
  transition: border-color 0.3s ease;
}

.search-bar:focus {
  border-color: #FF87AB;
  outline: none;
}

/* Lista de Categorias */
.category-list {
  text-align: center;
  margin-bottom: 3rem;
}

.category-list a {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  margin: 0.5rem;
  background: #fff;
  border-radius: 20px;
  color: #5C7AEA;
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-list a:hover {
  background: #FF87AB;
  color: #fff;
  transform: translateY(-3px);
}

/* Container de Produtos */
.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

/* Cards de Produtos */
.product-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
}

.product-card.show {
  display: block;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }
.product-card:nth-child(9) { animation-delay: 0.9s; }
.product-card:nth-child(10) { animation-delay: 1s; }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #5C7AEA;
  margin-bottom: 1rem;
}

/* Estilo comentado do preço (desativado no HTML) */
.product-card .price {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 1rem;
}

.product-card .cta-button {
  display: inline-block;
  background-color: #FF87AB;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.product-card .cta-button:hover {
  background-color: #FFD700;
  color: #333333;
  transform: scale(1.05);
}

/* Footer (consistente com as outras páginas) */
footer {
  background-color: #333333;
  color: #FAF9F6;
  text-align: center;
  padding: 2rem;
  font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .navbar {
    padding: 0 1.5rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .topo {
    padding: 3rem 1rem;
  }

  .topo h1 {
    font-size: 2.2rem;
  }

  .topo p {
    font-size: 1.2rem;
  }

  main {
    padding: 1.5rem;
  }

  .search-bar {
    max-width: 100%;
  }

  .category-list a {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }

  .product-container {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 180px;
  }
}


  