
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #fefefb;
  color: #3a3a3a;
}
.hero {
  background: url('images/hero.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
}
.btn {
  background-color: #c0a15b;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
}
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
}
.contacto {
  background-color: #f3f1eb;
  text-align: center;
}
footer {
  background-color: #ccc;
  text-align: center;
  padding: 20px;
}
