body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.titulo {
  text-align: center;
  color: #2c3e50;
  font-size: 2.5em;
  margin-top: 20px;
  font-weight: bold;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 20px;
}

.loja {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 250px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
  text-align: center;
}

.loja:hover {
  transform: scale(1.05);
}

.loja img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #ccc;
}

.info {
  padding: 15px;
}

.info h2 {
  font-size: 1.6em;
  color: #2c3e50;
  margin-bottom: 10px;
}

.info p {
  font-size: 1em;
  color: #7f8c8d;
  margin: 5px 0;
}

.info a {
  color: #3498db;
  text-decoration: none;
}

.info a:hover {
  text-decoration: underline;
}
