/* Reset específico para a loja */
.loja-container * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container principal da loja */
.loja-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

/* Header da loja */
.loja-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.loja-titulo {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 700;
}

.loja-subtitulo {
  font-size: 1.2rem;
  color: #7f8c8d;
  font-weight: 300;
}

/* Filtros */
.loja-filtros {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filtro-btn {
  padding: 12px 24px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filtro-btn:hover,
.filtro-btn.active {
  background: #3498db;
  color: white;
  border-color: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Grid de produtos */
.loja-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Card do produto */
.produto-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.produto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Imagem do produto */
.produto-imagem {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.produto-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.produto-card:hover .produto-imagem img {
  transform: scale(1.05);
}

/* Badge do produto */
.produto-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
}

/* Informações do produto */
.produto-info {
  padding: 25px;
}

.produto-titulo {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.produto-descricao {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* Preços */
.produto-preco {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.preco-de {
  color: #95a5a6;
  text-decoration: line-through;
  font-size: 0.9rem;
}

.preco-por {
  color: #27ae60;
  font-size: 1.4rem;
  font-weight: 700;
}

/* Botão do produto */
.produto-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.produto-btn:hover {
  background: linear-gradient(45deg, #2980b9, #3498db);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

/* Call to Action */
.loja-cta {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(45deg, #8e44ad, #9b59b6);
  border-radius: 20px;
  color: white;
  box-shadow: 0 10px 30px rgba(142, 68, 173, 0.3);
}

.loja-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.loja-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-btn {
  padding: 18px 40px;
  background: white;
  color: #8e44ad;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
  .loja-container {
    padding: 15px;
  }

  .loja-titulo {
    font-size: 2rem;
  }

  .loja-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .produto-card {
    margin: 0 10px;
  }

  .filtro-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .loja-cta {
    padding: 40px 20px;
  }

  .loja-cta h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .loja-header {
    padding: 30px 15px;
  }

  .loja-titulo {
    font-size: 1.7rem;
  }

  .loja-subtitulo {
    font-size: 1rem;
  }

  .produto-info {
    padding: 20px;
  }

  .produto-titulo {
    font-size: 1.1rem;
  }

  .produto-preco {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

/* Animações para filtros */
.produto-card.fade-out {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.produto-card.fade-in {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}
