/** ==============================================================================================================================================
 * I. Estilos Generales
 */
header a{
    text-decoration: none;
    font-weight: bolder;
}
header .navbar_custom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1% 3%;
}
.container-fluid{
    padding: 0 !important;
}
#site_nav,
.social_links{
    display: flex;
    padding: 0;
    align-items: center;
    margin-bottom: 0;
}
#site_nav{
    width: 100%;
    justify-content: end;
    padding-right: 1em;
    list-style: none;
}
/** ==============================================================================================================================================
 * III. Nav Secundario
 */
.nav_principal {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}
.nav_secundario {
    background: rgb(62,69,77);
    background: linear-gradient(221deg, rgba(62,69,77,1) 0%, rgba(41,44,53,1) 100%);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
    transform: translateY(-100%);
    transition: transform 0.3s ease; /* Animación solo para el secundario */
    display: none; /* Inicialmente oculto */
}
.nav_secundario_contenedor{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.nav_secundario .navbar_custom{
    width: 100%;
}
.nav_secundario a{
    color: var(--fuente_blanco);
}
.nav_secundario_contenido{
    display: flex;
    flex-direction: column;
}
.header_top_secundario ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: black;
    color: #d2d2d2;
    padding: 0.5em 2%;
    font-size: 90%;
}
/** ==============================================================================================================================================
 * IV. Responsive
 */

/* Escritorio */
@media screen and (min-width: 1200px ) {
    .navbar_movil{
        display: none !important;
    }
    .site_logo{
        width: 120px;
    }
    header a{
        color: var(--blanco);
    }
}

/* Moviles */
@media screen and (max-width: 1199px) {
    .navbar_escritorio{
        display: none !important;
    }
    .navbar_movil{
        background-color: #343a40;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5); /* ajusta los valores según sea necesario */
        position: fixed;
        top: 0;
        width: 100%;
        padding: 2% 0 0 0;
        z-index: 1;
    }
    .navbar_movil .navbar-brand{
        margin-left: 5%;
        margin-bottom: 2%;
        padding: 0;
    }
    .navbar_movil .navbar-toggler{
        margin-right: 5%;
        margin-bottom: 2%;
    }
    .navbar_movil .navbar-nav{
        background-color: #E9E8E6;
        padding: 2% 5%;
    }
    .navbar_movil li{
        margin: 1em 0;
    }
    .site_logo{
        width: 90px;
    }
    .navbar-nav{
        display: flex;
        justify-content: end;
        align-items: start;
        width: 100%;
    }
    .navbar{
        padding: 0 !important;
    }
    header a{
        color: #231F20;
    }
}