body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9fff9;
  color: #333;
}
header {
  background-color: #2d572c;
  padding: 1rem;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
nav h1 {
  margin: 0;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
nav a {
  color: white;
  text-decoration: none;
}

.hero {
  background: url('../img/hero.jpg') center/cover no-repeat;
  position: relative;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.section {
  padding: 50px 20px;
  text-align: center;
}
.gallery {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery img {
  width: 300px;
  border-radius: 10px;
}
.contact ul {
  list-style: none;
  padding: 0;
}
.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #2d572c;
  color: white;
}



.hero-overlay {
  background: rgba(0, 0, 0, 0.5); /* oscurece solo el área del texto */
  padding: 30px;
  border-radius: 12px;
  display: inline-block;
}

.hero p {
  color: #2d572c; /* verde oscuro pero natural */
  font-weight: 500;
  font-size: 1.2em;
}

display: block;
margin-left: auto;
margin-right: auto;
