/* =========================================
   AYS SIDEBAR — DESKTOP
   ========================================= */

.ays-sidebar {
    position: fixed;
    top: 0;
    left: 0;

    width: 190px;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    box-sizing: border-box;

    z-index: 100;

    background: #102B3F;
    padding: 35px 28px;
    box-sizing: border-box;

}


/* LOGO */

.ays-sidebar-logo {
    display: flex;
    align-items: flex-start;
}

.ays-sidebar-logo img {
    display: block;

    width: 105px;
    height: auto;
}


/* =========================================
   ENLACES DEL MENÚ
   ========================================= */

.ays-sidebar-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.ays-sidebar-links a,
.ays-sidebar-links a:visited,
.ays-sidebar-links a:active,
.ays-sidebar-links a:focus {
    display: block;
    width: 100%;

    color: #F3F3F3 !important;

    font-family: "Bebas Neue", sans-serif !important;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;

    letter-spacing: 1.5px;

    text-decoration: none !important;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


/* -----------------------------------------
   HOVER
   ----------------------------------------- */

.ays-sidebar-links a:hover {
    color: #FEE9AF !important;

    text-decoration: none !important;

    transform: translateX(5px);
}
/* =========================================
   PARTE INFERIOR
   ========================================= */

.ays-sidebar-bottom {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.ays-sidebar-bottom span {
    color: #738290;

    font-size: 12px;

    line-height: 1.3;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* CONTENIDO PRINCIPAL */

.ays-main {
    margin-left: 0;
}

.ays-sidebar-links a:focus-visible {
    outline: 2px solid #FEE9AF;
    outline-offset: 4px;
}

/* =========================================
   BOTÓN MENÚ MÓVIL
   OCULTO EN PC
   ========================================= */

.ays-mobile-toggle {
    display: none !important;
}

