@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f0f0f0;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #c655e9;
  color: white;
  padding: 20px;
  text-align: center;
}

.loja-container {
  flex: 1;
  padding: 40px 20px;
}

.categoria {
  margin-bottom: 40px;
}

.categoria h2 {
  margin-bottom: 20px;
  color: #8414a7;
}

.itens {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.item {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  width: 180px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}

.item .nome {
  font-weight: bold;
  margin-bottom: 5px;
}

.item .preco {
  color: #666;
  margin-bottom: 10px;
}

.botao-comprar {
  background-color: #c655e9;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.botao-comprar:hover {
  background-color: #8414a7;
}

footer {
  background-color: #eee;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #777;
}

.botao-voltar {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 15px 0 10px 20px;
    background-color: #c655e9;
    color: white;
    text-decoration: none;
    border-radius: 50%; /* deixa redondo */
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.botao-voltar:hover {
    background-color: #d32f2f;
    transform: scale(1.05); /* pequeno efeito de zoom ao passar o mouse */
}
