/*************************************
 *         IMPORTACIÓN DE FUENTE
 *************************************/
 @import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@300;400;600;700&display=swap");

 /*************************************
  *         ESTILOS GLOBALES
  *************************************/
 :root {
   --Background: #fff;
   --Surface: #0f172a;
   --Primary: #fff;
   --Secondary: #fff;
   --OnColor: #121212;
   --OnBackground: #fff;
 }
 
 html, body {
   margin: 0;
   padding: 0;
   height: 100%;
 }
 
 body {
   font-family: "Catamaran", sans-serif; /* Se aplica la fuente Catamaran */
   background-color: var(--Background);
   
 }
 
 /*************************************
  *           MENÚ LATERAL
  *************************************/
 #BackgroundMenu {
   position: fixed;
   height: 100vh;
   width: 100%;
   z-index: 1000;
   top: 0;
   display: flex;
   flex-direction: column;
   justify-content: center;
   pointer-events: none;
   transition: all 0.6s ease;
 }
 
 #AsideMenu {
   position: absolute;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   background-color: var(--Surface);
   width: 40px;
   height: 90vh;
   margin: 0;
   padding: 0;
   z-index: 1100;
   overflow: hidden;
   pointer-events: auto;
   transition: all 0.6s ease;
   left: 0;
   border-radius: 0 5px 5px 0;
 }
 
 #AsideMenuIcon {
   position: absolute;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   width: 40px;
   height: 40px;
   top: 0;
   left: 0;
   overflow: hidden;
   border-radius: 0 5px 0 0;
   transition: all 0.6s ease;
 }
 
 #AsideMenuIcon i {
   color: var(--OnBackground);
   font-size: 20px;
   font-weight: 900;
 }
 
 #AsideList,
 #AsideList ul {
   list-style: none;
   margin: 0;
   padding: 0;
 }
 
 #AsideList {
   display: flex;
   flex-direction: column;
   row-gap: 20px;
   opacity: 0;
   transition: all 0.6s ease;
 }
 
 #AsideMenu:hover {
   width: 350px;
   transition: all 0.6s ease;
 }
 
 #AsideMenu:hover #AsideMenuIcon {
   opacity: 0;
   width: 350px;
   transition: all 0.6s ease;
 }
 
 #AsideMenu:hover #AsideList {
   opacity: 1;
   transition: all 0.6s ease;
 }
 
 #BackgroundMenu:hover {
   background-color: #0f172a;
   transition: all 0.6s ease;
 }
 
 /* Submenús */
 .submenu {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.4s ease;
 }
 
 .has-submenu > a::after {
   content: "▶";
   float: right;
   margin-right: 10px;
   transition: transform 0.3s;
 }
 .has-submenu.expanded > a::after {
   content: "▼";
   transform: rotate(90deg);
 }
 
 .AsideItem a {
   color: #fff;
   text-decoration: none;
 }
 .AsideItem a:hover {
   color: #ccc;
   text-decoration: none;
 }
 .AsideItem.indent a {
   padding-left: 30px;
 }
 