body {
  margin: 0;
  font-family: 'Avenir Next', 'Segoe UI', Arial, sans-serif;
  background: #ebebe1;
  color: #222;
}

header.hero {
  position: relative;
  background: url('img/LDP-059.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

header.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

header .overlay {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
}

.logo {
  width: 30%;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  margin: 0 0 10px 0;
}

.btn {
  display: inline-block;
  background: #4CAF50;
  color: #fff;
  padding: 12px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: background 0.2s;
  width: 200px;
  text-align: center;
}

.btn:hover {
  background: #388E3C;
}

.btn-secundario {
  background: #222;
}

section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 40px;
}

section:last-child {
  border-bottom: none;
}

.sobre-nosotros, .servicios, .cta, .galeria-privada {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 30px 20px;
  margin-bottom: 30px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.servicios ul {
  list-style: none;
  padding: 0;
  color: #222;
}

.servicios li {
  padding: 8px 0;
  border-bottom: none;
}

.servicios li:last-child {
  border-bottom: none;
}

.galeria {
  background: none;
}

.galeria-privada {
  background: none;
  min-height: auto;
}

.galeria h2 {
  text-align: center;
}

.fotos {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.fotos img {
  width: 240px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 30px 10px 10px 10px;
  border-radius: 10px 10px 0 0;
  margin-top: 40px;
}

footer .redes {
  margin-bottom: 10px;
}

footer .redes a {
  display: inline-block;
  margin: 0 10px;
}

footer .redes img {
  width: 28px;
  height: 28px;
  filter: invert(1);
}

footer .redes a i {
  font-size: 2rem;
  color: #fff;
  transition: color 0.2s;
}

footer .redes a i:hover {
  color: #4CAF50;
}

@media (max-width: 700px) {
  header.hero {
    height: 100vh;
  }
  .fotos img {
    width: 100px;
    height: 70px;
  }
  h1 {
    font-size: 1.5rem;
  }
  section {
    padding: 0 5px;
  }

  .logo {
    width: 60%;
  }

  .btn {
    width: 80%;
    max-width: 300px;
    margin: 20px auto;
    display: block;
  }

  footer {
    padding: 20px 10px;
  }

  footer .redes a i {
    font-size: 1.8rem;
  }
} 