/* --- BASE DEL MENÚ --- */
.menu-tecnoparque {
    position: fixed; 
    top: 0%; 
    left: 0%; 
    z-index: 1000; 
    display: flex;
    flex-direction: column;
    height: calc(100% - 129px);
    background: #042a61;
    width: 10% !important; /* Cambio solicitado: 10% de ancho */
    margin-top: 129px;
    overflow-y: auto;
    transition: width 0.3s ease;
}

/* --- ESTRUCTURA DESPLEGABLE (WEB Y MÓVIL) --- */
.mtp-selected-container {
    background-color: #042a61;
    color: #fff;
    padding: 20px 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #fff;
}

.mtp-current-label {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

.mtp-icon {
    width: 15px;
    height: 15px;
    fill: #fff;
}

.mtp-options-list {
    display: none; 
    background: #042a61;
}

.menu-tecnoparque .menu-item {
    color: #fff; 
    padding: 15px 10px;
    cursor: pointer;
    text-align: left;
    font-size: 11px;
    font-weight: 300;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    writing-mode: horizontal-tb !important; 
    transform: none !important;
}

.menu-tecnoparque .menu-item.active {
    display: none !important; /* Oculta la opción actual */
}

.menu-tecnoparque .menu-item:hover {
    background-color: #fff; 
    color: #002244; 
}

/* --- PRESERVAR AJUSTES DE DISEÑO ORIGINALES --- */
.site-content {
    padding-left: 10% !important; /* Espacio para el menú del 10% */
}

@media (min-width: 1024px) {
	.site-primary-header-wrap .ast-builder-grid-row.ast-builder-grid-row-has-sides.ast-builder-grid-row-no-center{
      min-height: 80px; 
   }
    .main-header-menu, .main-navigation, nav#primary-site-navigation-desktop, 
    .main-header-bar-navigation, .ast-main-header-bar-alignment, .ast-builder-menu {
        height: 100%;
        padding: 0px !important;
        margin: 0px !important;
    }

    .ast-container {
        max-width: 90vw !important;
    }

    footer .ast-builder-grid-row-container-inner {
        width: 100vw !important;
        margin-left: 10% !important;
    }

    div#ast-desktop-header {
        position: fixed;
        width: 100%; /* Mantiene el header al 100% */
        left: 0%;
        z-index: 1010;
    }

    div#content {
        margin-top: 130px;
    }
}

@media (max-width: 1023px) {
    .menu-tecnoparque {
        width: 100% !important;
        margin-top: 0 !important;
        height: auto !important;
        top: 80px;
    }
    .site-content {
        padding-left: 0 !important;
    }
}

@media (max-width: 768px) {
    .site-header {
        position: fixed !important;
        width: 100% !important;
    }

    div#content {
        margin-top: 140px !important;
    }
}
