    /*Estilos para indexBE.html */

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: linear-gradient(to bottom right, #d6d1f5, #fff2cc);
    }

    header {
      background-color: #2c3e50;
      color: white;
      padding: 1rem;
      text-align: center;
    }

    nav {
      background-color: #34495e;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }

    nav a {
      display: block;
      color: white;
      text-align: center;
      padding: 14px 16px;
      text-decoration: none;
      font-size: 25px;
      transition: background-color 0.3s, color 0.3s;
    }

    nav a:hover {
      background-color: #1c2833;
      color: #ffffff;
    }

    section {
      padding: 2rem;
      text-align: center;
    }

    .main-image {
      margin-top: 20px;
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
/* Final estilos para indexBE.html */


/* Boton en menus principales */
    #volver {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1em;
  color: #355652;
  background-color: #e2c4a6;
  padding: 6px 12px;
  border-radius: 5px;
  border: 2px solid #355652;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

#volver:hover {
  background-color: #d1b292;
  text-decoration: underline;
  color: #355652;
  font-size: 1.1em;
}

/* Navegador de menus en menus principales */

    .contenedor { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 30px; }
    .item {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      padding: 20px;
      width: 240px;
      text-align: center;
      transition: transform 0.2s;
    }
    .item:hover { transform: scale(1.05); }
    .item a { text-decoration: none; color: #34495e; font-weight: bold; font-size: 18px; }
  