/* =============================
   ESTILO MODERNIZADO PARA INICIO
   ============================= */

/* Establecer fuente más moderna */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: url('../imagen/fondosesion.jpg') no-repeat center center fixed;
  background-size: cover;
  width: 100%;
  margin: auto;
  min-width: 600px;
  max-width: 2000px;
}

/* =============================
   ENCABEZADO
   ============================= */
#arriba {
  background: linear-gradient(135deg, #eb620e, #3c3d3b);
  text-align: center;
  padding: 40px 0;
  border-radius: 0px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

#arriba img {
  height: auto;
  max-height: 120px;
  width: auto;
  max-width: 200px;
  left: 20px;
}

#arriba h1 {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}

#arriba h2 {
  justify-content: space-between;
  font-size: 20px;
  font-weight: 400;
  color: white;
}

/* =============================
   MENÚ DE NAVEGACIÓN
   ============================= */
#opciones {
  width: 250px;
  position: fixed;
  top: 20%;
  left: 30px;
  background: #3c3d3b;
  padding: 20px;
  border-radius: 10px;
}

ul#menu {
  list-style: none;
  padding: 0;
}

ul#menu li {
  padding: 15px;
  text-align: center;
  background: white;
  margin-bottom: 10px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

ul#menu li:hover {
  background: #ec742a;
}

ul#menu a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

/* =============================
   PIE DE PÁGINA
   ============================= */
.footer {
  position: fixed;
  bottom: 5%;
  left:40%;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: black;
}
.footer a {
  color: #eb630ec7;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

