/* Página de Produtos */
.products-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 50px 50px;
  z-index: 2;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-header h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #08e0ef;
  text-shadow: 0 0 20px rgba(8, 224, 239, 0.5);
  margin-bottom: 15px;
}

.products-header .subtitle {
  font-size: 1.2rem;
  color: #a0a0a0;
}

/* Seção de Filtros */
.filters-section {
  margin-bottom: 50px;
  text-align: center;
}

.filters-section h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 600;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.filter-btn {
  padding: 12px 30px;
  background: rgba(8, 224, 239, 0.1);
  border: 2px solid rgba(8, 224, 239, 0.3);
  border-radius: 50px;
  color: #08e0ef;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.filter-btn:hover {
  background: rgba(8, 224, 239, 0.2);
  border-color: rgba(8, 224, 239, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(8, 224, 239, 0.3);
}

.filter-btn.active {
  background: linear-gradient(135deg, #08e0ef 0%, #0a9fb8 100%);
  border-color: #08e0ef;
  color: #0f0f1e;
  box-shadow: 0 4px 20px rgba(8, 224, 239, 0.5);
}

/* Grid de Produtos */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(8, 224, 239, 0.2);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(8, 224, 239, 0.5);
  box-shadow: 0 10px 30px rgba(8, 224, 239, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.product-image {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(8, 224, 239, 0.05);
  border-radius: 15px;
  overflow: hidden;
}

.product-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(8, 224, 239, 0.3));
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-category {
  font-size: 0.85rem;
  color: #08e0ef;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.product-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.product-description {
  font-size: 0.95rem;
  color: #a0a0a0;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: #08e0ef;
  font-family: "Orbitron", sans-serif;
  text-shadow: 0 0 10px rgba(8, 224, 239, 0.5);
  margin: 10px 0;
}

.product-btn {
  padding: 12px 30px;
  background: linear-gradient(135deg, #08e0ef 0%, #0a9fb8 100%);
  border: none;
  border-radius: 50px;
  color: #0f0f1e;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(8, 224, 239, 0.3);
  width: 100%;
  margin-top: auto;
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 224, 239, 0.5);
}

.product-btn:active {
  transform: translateY(0);
}

/* Mensagem de nenhum resultado */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: #a0a0a0;
  font-size: 1.2rem;
}

.no-results p {
  margin: 0;
}

/* Animações */
.product-card {
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .products-container {
    padding: 100px 20px 30px;
  }

  .products-header h1 {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .filter-buttons {
    gap: 10px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .product-image {
    height: 200px;
  }

  .product-name {
    font-size: 1.3rem;
  }

  .product-price {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .products-container {
    padding: 80px 15px 20px;
  }

  .products-header h1 {
    font-size: 1.5rem;
  }

  .products-header .subtitle {
    font-size: 0.9rem;
  }

  .filters-section {
    margin-bottom: 30px;
  }

  .filters-section h2 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .filter-buttons {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-card {
    padding: 15px;
  }

  .product-image {
    height: 180px;
  }

  .product-name {
    font-size: 1.2rem;
  }

  .product-description {
    font-size: 0.85rem;
  }

  .product-price {
    font-size: 1.3rem;
  }

  .product-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
