/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* BODY */
body {
  background: #f9f9f9;
  color: #333;
}

/* TELA INICIAL */
.inicio {
  height: 100vh;
  background: linear-gradient(135deg, #ffd1dc, #ffe6ea);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo-grande {
  width: 150px;
  margin-bottom: 20px;
}

.inicio h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.inicio p {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.inicio button {
  padding: 12px 25px;
  border: none;
  background: #d4a373;
  color: white;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.inicio button:hover {
  background: #d4a373;
}

/* TOPO */
.topo {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  width: 60px;
  border-radius: 50%;
}

/* BUSCA */
.busca {
  padding: 15px;
  text-align: center;
}

.busca input {
  width: 80%;
  max-width: 400px;
  padding: 10px;
  border-radius: 25px;
  border: 1px solid #ccc;
}

/* CATEGORIAS */
.categorias {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}

.categorias button {
  padding: 8px 15px;
  border: none;
  background: #eee;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.categorias button:hover {
  background: #d4a373;
  color: white;
}

/* ORDENAR */
.ordenar {
  text-align: center;
  margin: 10px;
}

.ordenar select {
  padding: 8px;
  border-radius: 10px;
}

/* PRODUTOS GRID */
#loja {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* GRID */
.produtos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  width: 90%;
  max-width: 1200px;
  margin-top: 20px;
}

/* PRODUTO */
.produto {
  background: white;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.produto:hover {
  transform: translateY(-5px);
}

/* IMAGEM */
.produto img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* TITULO */
.produto h2 {
  font-size: 1rem;
  margin-bottom: 5px;
}

/* PREÇO */
.produto p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff4d88;
  margin-bottom: 10px;
}

/* BOTÃO */
.btn {
  display: inline-block;
  padding: 8px 15px;
  background: #25d366;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #1ebe5d;
}

/* WHATSAPP FIXO */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp img {
  width: 30px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .produtos-container {
    grid-template-columns: 1fr;
    width: 95%;
  }

  .topo {
    flex-direction: column;
    text-align: center;
  }

  .busca input {
    width: 95%;
  }
}