/* ============================================
   VARIABLES CSS
============================================ */
:root {
    --primary-green: #114b2f;
    --accent-gold: #ffc857;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --transition-normal: all 0.3s ease;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --section-padding: 4rem 0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 8px 32px rgba(0, 0, 0, 0.16);
    --gradient-primary: linear-gradient(135deg, #114b2f 0%, #1a6d47 100%);
    --gradient-gold: linear-gradient(135deg, #ffc857 0%, #ffb627 100%);
}

.nav-sticky {
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* ============================================
   LOGO MÓVIL - NUEVO
============================================ */
.logo-mobile {
    display: none;
}

.institutional-logo-mobile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* ============================================
   HEADER INSTITUCIONAL
============================================ */
.logo-bar {
    background: var(--primary-green);
    padding: 5px 0;
    box-shadow: 0 8px 32px rgba(17, 75, 47, 0.12), 0 2px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 999;
    overflow: hidden;
    border-bottom: 1px solid var(--medium-gray);
}

.logo-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 200, 87, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(255, 200, 87, 0.03) 0%, transparent 30%);
    z-index: -1;
    opacity: 0.6;
}

.institutional-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.logo-container {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.institutional-logo {
    margin-left: 20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: var(--transition-normal);
    filter: drop-shadow(0 0 20px rgba(17, 75, 47, 0.1));
    object-fit: cover;
}

.institutional-title {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.college-main-title {
    font-family: 'Georgia', serif;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.title-line-1 {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.title-line-2 {
    display: block;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.title-line-3 {
    display: block;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: capitalize;
}




/* ============================================
   NAVEGACIÓN PRINCIPAL
============================================ */
.main-navigation {
    background: var(--primary-green);
    position: sticky;
    height: 60px;
    top: 0;
    z-index: 998;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(17, 75, 47, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-navigation.scrolled {
    background-color: var(--primary-green);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(17, 75, 47, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar {
    padding: 0;
}

.navbar-nav {
    gap: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* ============================================
   LÍNEA INDICADORA (SOLO DESKTOP)
============================================ */
.nav-indicator {
    position: absolute;
    bottom: 0;
    height: 6px;
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    margin-left: 12px;
    max-width: 125px;
    z-index: 1;
    display: block;
}


/* ============================================
   NAVEGACIÓN - ELEMENTOS COMUNES
============================================ */

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 1.25rem 1.5rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    background: transparent;
    cursor: pointer;
    border: none;
}

.nav-link:hover {
    color: #e5e7eb !important;
}

.nav-link.active {
    color: #ffffff !important;
    font-weight: 600;
}

/* Botón de login */
.nav-link.login-btn {
    color: #ffffff !important;
    margin-left: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-weight: 600;
    padding: 0.75rem 1.5rem !important;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-link.login-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   DROPDOWNS - DESKTOP
============================================ */
.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    background: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* DESKTOP: Hover para mostrar dropdown */
@media (min-width: 993px) {
    .nav-item.dropdown:hover>.dropdown-menu {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Solo mostrar con clase .show (activada por click) */
.dropdown-menu.show {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 1000px !important;
}

/* Dropdowns de UNA columna */
.dropdown-menu.single-column {
    min-width: 235px;
    max-width: 235px;
    flex-direction: column;
    padding: 1rem 0;
}

/* Dropdowns de DOS columnas */
.dropdown-menu:not(.single-column) {
    min-width: 550px;
    flex-direction: row;
}


.dropdown-section {
    flex: 1;
    padding: 1rem 2.5rem;
    border-right: 1px solid rgb(32, 32, 32);
    min-width: 0;
}


.dropdown-section:last-child {
    border-right: none;
}

.dropdown-header {
    color: #000000;
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.1em;
    padding: 0;
    text-transform: uppercase;
    display: block;
}

.dropdown-item {
    padding: 0.65rem 1.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
    color: black;
    font-size: 0.915rem;
    font-weight: 500;
    margin: 0;
    position: relative;
    display: block;
    cursor: pointer;
    text-decoration: none;
}

/* Items en dropdowns de UNA columna */
.dropdown-menu.single-column .dropdown-item {
    padding: 0.65rem 1.5rem;
}

/* Items en dropdowns de DOS columnas */
.dropdown-menu:not(.single-column) .dropdown-item {
    padding: 0.65rem 0;
}

.dropdown-item:hover {
    color: black;
    background: white;
    text-decoration: underline;
}













/* ============================================
   BOTÓN HAMBURGUESA
============================================ */
.navbar-toggler {
    display: none;
    border: solid 2px white;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    transition: none;
}

.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 20px;
    height: 20px;
    position: relative;
    transition: none;
    background-image: none !important;
    background: transparent !important;
}

.navbar-toggler-icon span {
    width: 100%;
    gap: 8px;
    height: 40px;
    background: #ffffff !important;
    background-image: none !important;
    border-radius: 2px;
    transition: none;
    display: block;
}


.navbar-toggler.active .navbar-toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.navbar-toggler.active .navbar-toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .navbar-toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}












/* ============================================
   RESPONSIVE - TABLET Y MÓVIL (992px)
============================================ */
@media (max-width: 992px) {

    /* HEADER */
    .logo-bar {
        padding: 1rem 0;
    }

    .institutional-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 1rem;
    }

    .institutional-logo {
        margin-left: 0;
        width: 120px;
        height: 120px;
    }

    .institutional-title {
        padding: 0;
    }

    /* NAVEGACIÓN MÓVIL */
    .main-navigation .container-fluid {
        padding: 1rem 1.5rem;
        position: relative;
    }
    
    /* AUMENTAR ALTURA DE LA BARRA VERDE */
    .main-navigation {
        min-height: 80px;
    }

    /* ============================================
       BOTÓN HAMBURGUESA CON ANIMACIÓN MEJORADA
    ============================================ */
    .navbar-toggler {
        display: block;
        margin-left: auto;
        transition: transform 0.3s ease;
        position: relative;
    }

    /* Animación al hacer clic - Efecto de feedback visual */
    .navbar-toggler:active {
        transform: scale(0.9);
    }

    /* Efecto de rebote al hacer clic */
    .navbar-toggler:focus {
        transform: scale(1.05);
        transition: transform 0.2s ease;
    }

    /* Ocultar indicador */
    .nav-indicator {
        display: none !important;
    }

    /* ============================================
       MENÚ COLAPSABLE - VELOCIDAD OPTIMIZADA
    ============================================ */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.75);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        overflow-x: hidden;
        /* MEJORA DE VELOCIDAD - Transición más rápida */
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar-collapse:not(.show) {
        display: none;
    }

    .navbar-collapse.show {
        display: block;
    }

    /* Animación de entrada más rápida */
    .navbar-collapse.collapsing {
        transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Lista de navegación - CENTRADA Y COMPACTA */
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 0.75rem 0;
        margin: 0;
        align-items: center;
    }

    /* Items - CON SEPARADORES ELEGANTES */
    .nav-item {
        width: 88%;
        position: relative;
        margin-bottom: 0.15rem;
    }

    /* Enlaces - ESTILO PREMIUM COMPACTO */
    .nav-link {
        padding: 0.7rem 1.25rem !important;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        color: #ffffff !important;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        border-radius: 8px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }


    /* Flecha para dropdowns - ELEGANTE */
    .nav-item.dropdown .nav-link::after {
        content: '\25BC';
        font-size: 0.55rem;
        margin-left: 0.5rem;
        color: white;
        display: inline-block;
    }

    .nav-item::after {
        content: '';
        position: absolute;
        bottom: -0.075rem;
        left: 50%;
        transform: translateX(-50%);
        width: 55%;
        height: 2px;
        background: white;
    }





/* ============================================
   DROPDOWNS MÓVILES - SOLO CLIC (CORREGIDO)
============================================ */

/* IMPORTANTE: Deshabilitar hover en móvil SOLO cuando NO está abierto */
@media (max-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu:not(.show) {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
}

/* Dropdowns móviles - Estado inicial */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.603);
        margin: 0.35rem 0 0.5rem 0;
        padding: 0;
        display: none;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        transition: all 0.3s ease;
    }

    /* Estado abierto - MÁXIMA ESPECIFICIDAD */
    .navbar-collapse .nav-item.show > .dropdown-menu.show,
    .navbar-collapse .dropdown-menu.show {
        display: flex !important;
        opacity: 1 !important;
        max-height: 1000px !important;
        visibility: visible !important;
        padding: 0.5rem 0 !important;
        overflow: visible !important;
    }

    /* Dropdown de una columna en móvil */
    .dropdown-menu.single-column {
        min-width: 100%;
        max-width: 100%;
    }

    /* Dropdown de múltiples columnas en móvil */
    .dropdown-menu:not(.single-column) {
        min-width: 100%;
        flex-direction: column;
    }

    /* Secciones - CON SEPARADOR SUTIL */
    .dropdown-section {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.603);
        padding: 0.5rem 0;
        width: 100%;
    }

    .dropdown-section:last-child {
        border-bottom: none;
    }

    /* Headers - ESTILO ELEGANTE COMPACTO */
    .dropdown-header {
        color: white;
        font-size: 0.68rem;
        padding: 0.35rem 1.25rem;
        margin-bottom: 0.25rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    /* Items - CENTRADOS CON EFECTO COMPACTO */
    .dropdown-item {
        color: white !important;
        padding: 0.5rem 1.25rem !important;
        font-size: 0.85rem;
        background: transparent !important;
        border: none;
        text-align: center;
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        letter-spacing: 0.01em;
    }
}



    /* Botón login móvil - DESTACADO Y ELEGANTE COMPACTO */
    .nav-link.login-btn {
        margin: 0.65rem auto 0.75rem;
        padding: 0.75rem 2rem !important;
        text-align: center;
        justify-content: center;
        display: flex;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
        color: #ffffff !important;
        font-weight: 700;
        border-radius: 50px;
        width: 88%;
        letter-spacing: 0.06em;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }



    .nav-link.login-btn:hover::before {
        width: 300px;
        height: 300px;
    }

    .nav-link.login-btn:hover {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .nav-link.login-btn::after {
        display: none;
    }
}


/* ============================================
   TABLET - 768px
============================================ */
@media (max-width: 768px) {
    .institutional-logo {
        width: 100px;
        height: 100px;
    }

    .title-line-1 {
        font-size: clamp(1.3rem, 4.5vw, 1.8rem);
    }

    .title-line-2 {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }

    .title-line-3 {
        font-size: clamp(0.85rem, 2vw, 1rem);
    }

    .main-navigation .container-fluid {
        padding: 0.875rem 1.25rem;
    }

    .nav-link {
        padding: 0.65rem 1.15rem !important;
        font-size: 0.875rem;
    }

    .dropdown-item {
        padding: 0.45rem 1.15rem !important;
        font-size: 0.82rem;
    }

    .dropdown-header {
        font-size: 0.66rem;
        padding: 0.3rem 1.15rem;
    }
}


/* ============================================
   MÓVIL - 480px
============================================ */
@media (max-width: 480px) {
    .logo-bar {
        padding: 0.75rem 0;
    }

    .institutional-header {
        padding: 0 0.75rem;
    }

    .institutional-logo {
        width: 85px;
        height: 85px;
    }

    .title-line-1 {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }

    .title-line-2 {
        font-size: clamp(1.25rem, 3vw, 1.6rem);
    }

    .title-line-3 {
        font-size: clamp(0.75rem, 2vw, 0.9rem);
    }

    .main-navigation .container-fluid {
        padding: 0.75rem 1rem;
    }
    
    /* AUMENTAR ALTURA DE LA BARRA VERDE EN MÓVIL */
    .main-navigation {
        min-height: 80px;
    }

    .navbar-toggler {
        padding: 0.5rem;
    }

    .navbar-toggler-icon {
        width: 24px;
        height: 18px;
        gap: 3px;
    }

    .navbar-toggler-icon span {
        height: 40px;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 1.1rem !important;
    }

    .dropdown-header {
        font-size: 0.64rem;
        padding: 0.28rem 1.1rem;
    }

    .dropdown-item {
        font-size: 0.8rem;
        padding: 0.42rem 1.1rem !important;
    }

    .nav-link.login-btn {
        margin: 0.6rem auto 0.65rem;
        padding: 0.7rem 1.85rem !important;
        font-size: 0.85rem;
    }
}

/* ============================================
   MÓVIL PEQUEÑO - 360px
============================================ */
@media (max-width: 360px) {
    .institutional-logo {
        width: 75px;
        height: 75px;
    }

    .title-line-1 {
        font-size: 1.05rem;
    }

    .title-line-2 {
        font-size: 1.15rem;
    }

    .title-line-3 {
        font-size: 0.72rem;
    }

    .main-navigation .container-fluid {
        padding: 0.65rem 0.875rem;
    }
    
    /* AUMENTAR ALTURA DE LA BARRA VERDE EN MÓVIL PEQUEÑO */
    .main-navigation {
        min-height: 78px;
    }

    .navbar-toggler {
        padding: 0.45rem;
    }

    .navbar-toggler-icon {
        width: 22px;
        height: 17px;
        gap: 2.5px;
    }

    .navbar-toggler-icon span {
        height: 40px;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.55rem 1rem !important;
    }

    .dropdown-header {
        font-size: 0.62rem;
        padding: 0.25rem 1rem;
    }

    .dropdown-item {
        font-size: 0.75rem;
        padding: 0.38rem 1rem !important;
    }

    .nav-link.login-btn {
        margin: 0.55rem auto 0.6rem;
        padding: 0.65rem 1.75rem !important;
        font-size: 0.8rem;
    }
}

/* ============================================
   SCROLLBAR PERSONALIZADO - ELEGANTE
============================================ */
@media (max-width: 992px) {
    .navbar-collapse {
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.05);
    }

    .navbar-collapse::-webkit-scrollbar {
        width: 6px;
    }

    .navbar-collapse::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }

    .navbar-collapse::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        transition: background 0.3s ease;
    }

    .navbar-collapse::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
}

/* ============================================
   ACCESIBILIDAD
============================================ */
.nav-link:focus-visible,
.dropdown-item:focus-visible,
.navbar-toggler:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   UTILIDADES
============================================ */
.nav-link,
.dropdown-item,
.navbar-toggler {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

body.navbar-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}



/* ============================================
   RESPONSIVE - MODIFICACIONES ESPECÍFICAS
   TAMAÑO DEL LOGO MÓVIL AUMENTADO
============================================ */
@media (max-width: 992px) {

    /* Ocultar logo del header superior en móvil */
    .logo-bar .logo-container {
        display: none;
    }

    /* Reorganizar header sin logo */
    .institutional-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 1rem;
        justify-content: center;
    }

    /* Mostrar logo móvil en la navegación */
    .logo-mobile {
        display: flex;
        align-items: center;
        margin-right: auto;
    }

    /* Ajustar container de navegación para acomodar logo + hamburguesa */
    .main-navigation .container-fluid {
        padding: 0rem 1.25rem;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Botón hamburguesa se mantiene a la derecha */
    .navbar-toggler {
        display: block;
        margin-left: 0;
        order: 2;
    }

    /* Logo móvil a la izquierda */
    .logo-mobile {
        order: 1;
    }

    /* LOGO MÓVIL AUMENTADO - 992px */
    .institutional-logo-mobile {
        width: 65px;
        height: 65px;
    }

    /* Ajustes para el contenedor de navegación móvil */
    .main-navigation .container-fluid {
        padding-left: 20px;
        padding-top: 0.29rem;
    }
}


/* ============================================
   AJUSTES MÓVIL MEDIANO - 768px
   LOGO AUMENTADO
============================================ */
@media (max-width: 768px) {
    .institutional-logo-mobile {
        width: 63px;
        height: 63px;
    }

    .main-navigation .container-fluid {
        padding-left: 20px;
        padding-top: 0.25rem;
    }
    
    /* AUMENTAR ALTURA DE LA BARRA VERDE EN TABLET */
    .main-navigation {
        min-height: 78px;
    }
}


/* ============================================
   AJUSTES MÓVIL - 480px
   LOGO AUMENTADO
============================================ */
@media (max-width: 480px) {
    .institutional-logo-mobile {
        width: 65px;
        height: 65px;
    }

    .main-navigation .container-fluid {
        padding-left: 20px;
        padding-top: 0.2rem;
    }
}


/* ============================================
   AJUSTES MÓVIL PEQUEÑO - 360px
   LOGO AUMENTADO
============================================ */
@media (max-width: 360px) {
    .institutional-logo-mobile {
        width: 63px;
        height: 63px;
    }

    .main-navigation .container-fluid {
        padding-left: 18px;
        padding-top: 0.18rem;
    }
}