  /* Navegación */
        nav {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 80px;
        }   

        /* Barra de información superior */
        .top-info-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: "PT Sans", sans-serif;
			font-size: 12px;
            font-weight: 400;
            font-style: normal;
            border-bottom: 1px solid #ccc;
            width: 100%;
            padding: 0px 10px;
            box-sizing: border-box;
            color: #fff;
        }
        
        .top-info-bar p {
            margin: 0;
        }	

        .reloj {
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 5px;
        }
 
        .flag-icon {
            width: 18px;
            height: 18px;
            object-fit: contain;
        }
		
        /* Termina barra de información superior */

        /* Logo */
        .logo {
            margin-top: 25px;
            display: flex;
            background-image: url("../../img/logo_nav.png");
            background-size: contain;
            background-repeat: no-repeat;
            width: 120px;
            height: 120px;
            cursor: pointer;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            transition: 0.7s;
            padding: 30px 20px;
            z-index: 1000;
        }

        /* Header derecha */
        .header-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        /* Header al hacer scroll */
        header.abajo {
            background: #fff;
            padding: 15px 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        /* Logo derecha */
        .logo-menu {
            display: flex;
            align-items: end;
            justify-content: flex-end;
            margin-top: -60px;
        }

        /* Header derecha */
        header.abajo .top-info-bar {
            color: #000;
            border-color: rgba(116, 25, 25, 0.2);
        }

        /* Menú de navegación */
        header ul {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            list-style: none;
        }

        header ul li {
            list-style: none;
            position: relative;
        }
        
        /* Menú de navegación al hacer scroll */
        header ul li a {
            position: relative;
            font-family: "PT Sans", sans-serif;
            font-weight: 700;
			font-size: 16px;
            font-style: normal;
            margin: 0 15px;
            text-decoration: none;
            color: #fff;
            letter-spacing: 2px;
            transition: 0.3s;
            display: block;
            padding: 10px 0;
        }

        /* subenú de navegación al pasar sobre el curso sin hacer scroll */
        header ul li a:hover {
            color: #ACCA05;
        }

        /* submenú de navegación al pasar el curso haciendo scroll hacer scroll */
        header.abajo ul li a:hover {
            color: #A61281;
        }

        /* Menú de navegación al hacer scroll */
        header.abajo ul li a {
            color: #000;
        }

        /* Flecha de submenú - oculta por defecto en escritorio */
        .arrow {
            display: none;
        }

        /* Submenús */
        nav ul li ul {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(0, 0, 0, 0.9);
            padding: 10px 0;
            display: none;
            flex-direction: column;
            min-width: 180px;
            border-top: 3px solid #ACCA05;
            list-style: none;
            border-radius: 10px;
        }

        header ul li:hover > ul {
            display: flex;
        }

        header ul li ul li {
            width: 100%;
        }

        header ul li ul li a {
            padding: 10px 20px;
            margin: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        header ul li ul li:last-child a {
            border-bottom: none;
        }

        header ul li ul li ul {
            left: 100%;
            top: 0;
        }

        header.abajo ul li ul {
            background: rgba(255, 255, 255, 0.98);
            border-top: 3px solid #A61281;
        }

        header.abajo ul li ul li a {
            color: #000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        header.abajo ul li ul li a:hover {
            color: #A61281;
            background: rgba(0, 68, 204, 0.1);
        }

        /* Contenedor para icono + menú hamburguesa */
        .header-controls {
				display: flex;
				align-items: center;
				gap: 10px;
				justify-content: space-between;
				flex-direction: row;
				flex-wrap: wrap;
        }

        /* RESPONSIVE - Navegación móvil */
        @media (max-width: 1300px) {
            header {
                flex-direction: row;
                align-items: center;
                padding: 10px 20px;
            }

            .logo {
                margin-top: 0;
                width: 200px;
                height: 250px;
            }

            .top-info-bar {
                display: none;
            }

            nav {
                width: 100%;
                margin-right: 0;
            }
            
            .logo-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: rgba(0, 0, 0, 0.97);
                flex-direction: column;
                align-items: start;
                padding: 70px 20px 20px 20px;
                transition: 0.4s;
                overflow-y: auto;
                z-index: 999;
                margin-top: 0;
                justify-content: flex-start;
            }

			.header-controls{
				width: 100%;
				border-top-width: 30px;
				padding-top: 0px;
			}

            header.abajo .logo-menu {
                background: rgba(255, 255, 255, 0.98);
                box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            }

            .logo-menu.active {
                right: 0;
            }

            header ul {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
                margin-top: 0;
            }

            header ul li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            header.abajo ul li {
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }

            header ul li a {
                width: 100%;
                margin: 0;
                padding: 15px 10px;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .arrow {
                display: inline-block;
                font-size: 12px;
                transition: transform 0.3s;
                margin-left: auto;
            }

            .has-submenu > a .arrow {
                transform: rotate(0deg);
            }

            .has-submenu.active > a .arrow {
                transform: rotate(180deg);
            }

            header ul li ul {
                position: static;
                background: transparent;
                border: none;
                border-radius: 0;
                border-right: none;
                padding-left: 20px;
                display: none;
                width: 100%;
                min-width: auto;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-out;
            }

            header ul li:hover > ul {
                display: none;
            }

            header ul li.has-submenu.active > ul {
                display: flex;
                max-height: 500px;
                transition: max-height 0.3s ease-in;
            }

            header ul li ul li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            header.abajo ul li ul li {
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }

            header ul li ul li a {
                padding: 12px 10px;
                font-size: 14px;
            }

            header ul li ul li ul {
                padding-left: 15px;
            }
        }

		@media(max-width: 768px){
			.header-controls{
				width: 100%;
			}
		}

        @media (max-width: 480px) {
            a.logo {
                width: 50px;
                height: 80px;
            }

            .logo-menu {
                width: 100%;
            }

			.header-controls{
				width: 300px;
				border-top-width: 30px;
				padding-top: 0px;
			}
        }