/* Reset básico */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Arial, sans-serif;
  background: #fffdf7;
  color: #333;
  line-height: 1.6;
}

/* Encabezado */
header {
  text-align: center;
  padding: 20px;
  background: #ffe6f2;
  color: #b30059;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 8px;
}

/* Galería */
#galeria {
  padding: 20px;
  text-align: center;
}

.imagenes {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.imagenes img {
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.imagenes img:hover {
  transform: scale(1.05);
}

/* Mapa */
#ubicacion {
  padding: 20px;
  text-align: center;
}

/* Contacto */
#contacto {
  padding: 20px;
  text-align: center;
}

.botones {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn {
  text-decoration: none;
  padding: 12px 20px;
  background: #ff66b2;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #cc0066;
}

/* Footer */
footer {
  background: #ffe6f2;
  text-align: center;
  padding: 12px;
  margin-top: 20px;
  font-size: 0.9em;
}
