* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d0d0d;
  color: #fff;
  font-family: 'Oswald', sans-serif;
}

/* Classe utilitária para imagens de fundo */
.bg-capa {
  background-image: url('imagens/capa.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Camada escura sobre imagens de fundo */
.bg-capa::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

header {
  padding: 60px 20px;
  text-align: center;
  color: white;
}

header h1,
header .filtros {
  position: relative;
  z-index: 2;
}

header h1 {
  font-family: 'Permanent Marker', cursive;
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.filtros {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

/* Campo de busca */
.filtros input {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 0.9rem;
  padding: 10px 15px;
  background-color: #0d0d0d;
  border: 2px solid rgba(0, 255, 221, 0.7);
  color: #fff;
  border-radius: 6px;
  outline: none;
  transition: all 0.3s ease;
}

.filtros input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.filtros input:focus {
  box-shadow: 0 0 10px rgba(0, 255, 221, 0.8);
  border-color: rgba(0, 255, 221, 1);
}

/* Select estilizado */
.filtros select {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  padding: 10px 40px 10px 15px; /* Mais espaço à direita */
  background-color: #0d0d0d;
  border: 2px solid rgba(0, 255, 221, 0.7);
  color: #fff;
  border-radius: 6px;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center; /* Mantém a seta à direita */
  background-size: 16px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filtros select:focus {
  outline: none;
  background-color: #0d0d0d;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 255, 221, 0.8);
  border-color: rgba(0, 255, 221, 1);
}

/* Opções internas */
.filtros select option {
  background-color: #0d0d0d;
  color: #fff;
}

.catalogo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 30px;
}

.produto {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.4s forwards;
}

.produto:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 255, 221, 0.4);
}

.produto img {
  width: 100%;
  display: block;
}

.info {
  padding: 15px;
  text-align: center;
}

.info h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.preco {
  display: inline-block;
  background-color: rgba(0, 255, 221, 0.9);
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 4px 10px;
  transform: rotate(-3deg);
}

/* Mensagem quando não encontra nada */
.sem-produto {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1.4rem;
  color: rgba(0, 255, 221, 0.8);
  padding: 50px 0;
  font-weight: bold;
}

/* Animação */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contato {
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  z-index: 1;
}

.contato h2,
.contato p {
  position: relative;
  z-index: 2;
}

.contato h2 {
  font-family: 'Permanent Marker', cursive;
  font-size: 2rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.contato p {
  margin: 12px 0;
  font-size: 1.1rem;
}

.contato i {
  margin-right: 10px;
  color: #fff;
  font-size: 1.2rem;
}

.contato a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.contato a:hover {
  color: rgba(0, 255, 221, 0.742);
}

/* Responsividade */
@media (max-width: 600px) {
  header {
    padding: 40px 15px;
  }
  header h1 {
    font-size: 1.5rem;
  }
}
