/* Estilos generales */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}

/* Encabezado */
.header {
  background-color: #4CAF50;
  padding: 10px 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.btn-login {
  background-color: #ff6600;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

/* Sección Principal */
.hero {
  background: url('background.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-logo {
  max-width: 800px;
  margin-bottom: 80px;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #ff6600;
  padding: 15px 30px;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
}

/* Pie de Página */
.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

  