
body {
  background: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  text-align: center;
}

h1 {
  color: #00e0ff;
  margin-bottom: 30px;
}

.catalogo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #222;
  border-radius: 10px;
  width: 220px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  text-align: center;
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.info {
  padding: 15px;
}

.info h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.info p {
  color: #0f0;
  margin-bottom: 10px;
}

.info button {
  background: #00bb04;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.info button:hover {
  background: #009803;
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background-color: #222;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #00e0ff;
}

.modal-content input {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  background: #333;
  color: white;
}

.modal-content button {
  background: #006eff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
}

.modal-content button:hover {
  background: #0051bb;
}

.modal-content a {
  color: #00e0ff;
  text-decoration: none;
  font-weight: bold;
}
