@font-face{
    font-family: 'Rubik';
    src: url('../fonts/Rubik-VariableFont_wght.ttf');
}
*{
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: 'Rubik'!important;
}
body{
    margin: 0px;
    background-color: #06193c;
}
body::before{
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('../images/fondo.png');
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.09;
    z-index: -1;
}
header{
    background-color: #184291;
    height: 100px;
    padding: 0px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo_cabecera{
    width: 150px;
}
.botones_cabecera a{
    text-decoration: none;
    color: #fff;
    text-transform: capitalize;
    font-family: 'roboto';
    font-weight: 500;
    font-size: 18px;
}
.botones_cabecera .separador{
    margin: 0px 10px;
    color: #fff;
}
.botones_cabecera .seccion_activa{
    border-bottom: 2px solid #f3a801;
}
.boton_menu{
    display: none;
    color: #fff;
    border: none;
    background-color: transparent;
    font-size: 35px;
    cursor: pointer;
}