body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.menu-horizontal {
  background-color: #ff9800;
  padding: 10px 0;
  text-align: center;
}

.menu-horizontal ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-horizontal li {
  display: inline;
  margin: 0 15px;
}

.menu-horizontal a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1em;
}

.hero {
  background-image: url('mascotas.jpg'); /* ← Cambia por tu imagen */
  background-size: cover;
  background-position: center;
  height: 100vh; /* Ocupa toda la altura de la pantalla */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  color: white;
}

.overlay h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.boton {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ff9800;
  color: white;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.boton:hover {
  background-color: #e65100;
}

.mensaje-final {
  background-color: #fff3e0;
  padding: 40px;
  text-align: center;
  color: #4e342e;
}

.mensaje-final h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.mensaje-final p {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 20px;
}
