body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fffbe6;
  color: #222;
  font-size: 18px;
  text-align: center;
}

header {
  background: #f4d35e;
  padding: 1rem;
  color: #000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

header h1 {
  margin: 0 0 1rem 0;
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: 2px;
}

nav button {
  margin: 0 0.5rem;
  padding: 0.7rem 1.4rem;
  background: #000;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  color: #f4d35e;
  transition: background 0.3s ease;
  font-size: 1rem;
}

nav button:hover {
  background: #f4d35e;
  color: #000;
  border: 2px solid #000;
}

main {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.oculto {
  display: none;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 1rem;
}

.card {
  background: #fff8dc;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  width: 260px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.25);
}

.card img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 4px solid #f4d35e;
}

.card strong {
  font-size: 1.3rem;
  color: #000;
  display: block;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 1rem;
  color: #333;
  min-height: 60px;
}

form label {
  font-weight: bold;
  display: block;
  margin-top: 1rem;
  text-align: left;
}

form input[type="text"],
form select,
form textarea,
form input[type="file"] {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  box-sizing: border-box;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

form textarea {
  resize: vertical;
  min-height: 80px;
}

form button {
  margin-top: 1.5rem;
  background-color: #f4d35e;
  border: none;
  padding: 0.7rem 1.6rem;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #d9b700;
}
