* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #f4f1e1;
  color: #4a4a4a;
  line-height: 1.6;
  padding: 0 20px;
}

header {
  background-color: #6d4f47;
  padding: 20px 0;
  text-align: center;
  border-bottom: 2px solid #d7ccc8;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

nav h2 {
  width: 100%;
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.nav-button {
  text-decoration: none;
  color: #fff;
  background-color: #8d6e63;
  padding: 12px 24px;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-weight: 500;
}

.nav-button:hover {
  background-color: #7b5e4f;
}

main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
  margin-bottom: 20px;
  color: #6d4f47;
  font-weight: 600;
}

p {
  margin-bottom: 20px;
  color: #4a4a4a;
}

.btn-secondary {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 18px;
  background-color: #f0a500;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-weight: 500;
}

.btn-secondary:hover {
  background-color: #e68900;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: #6d4f47;
  color: white;
  margin-top: 40px;
}

h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
  color: #6d4f47;
}

.imagens {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.imagen {
  width: 30%;
  height: 20%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.imagen:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
