/**********************/
/*      Generales     */
/**********************/
*{
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
::-webkit-scrollbar {display: none;} /* esconde la barra de scroll pero sigue funcionando*/

html:focus-within{
    scroll-behavior: smooth; /* animacion de scroll al mandar a seccion mediante liga # */
}

html{
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

section[id]{
    scroll-margin-top: 85px;
}

body{
    margin:0px;
    overflow-x:hidden;
}

.bandw{
    -webkit-filter: grayscale(100%); /* Safari/Chrome */
    filter: grayscale(100%); /* Estándar */
}

.celeston{
    filter: grayscale(100%) sepia(100%) hue-rotate(190deg) saturate(80%) brightness(95%);
    -webkit-filter: grayscale(100%) sepia(100%) hue-rotate(190deg) saturate(80%) brightness(95%);
}

.sin_borde{ border:none}
.txt_center{ text-align:center}
.txt_left{ text-align:left}
.txt_right{ text-align:right}
.txt_justify{ text-align:justify}

.carga{
    position:absolute;
    display:flex;
    justify-content: center;
    align-items: center;
    width:100%; /*100vw;*/
    height:100vh;
    background-color: #000;
    z-index:5;
}

#regreso{
    position:fixed;
    width:40px;
    height:40px;
    bottom:20px;
    right:20px;
    border-radius:50%;
    background-color:#D96D00;
    background-image:url('../images/top.svg');
    background-repeat:no-repeat;
    background-position: center;
    background-size:80%;
    z-index:2;
    transition:0.5s;
    opacity:0;
}

#regreso:hover{
    cursor:pointer;
    background-color:#354E6C;
}

#mnu_ham{
    position:fixed;
    display:flex;
    flex-direction: column;
    align-items: left;
    top:82px;
    left:0;
    width:100%;
    border:1px solid #D96D00;
    background-color: #000;
    z-index:20;
    box-sizing: border-box;
    opacity:0;
    visibility:hidden;
}

.btn_mnu2{
    position:relative;
    display:flex;
    justify-content: left;
    align-items: center;
    font-family: 'Roboto';
    font-size:12pt;
    padding: 0 20px 0 20px;
    height:80px;
    color:#FFF;
    transition: 0.5s;
}
.btn_mnu2:hover{
    cursor:pointer;
    background-color:rgba(50,50,50,0.5);
    color:#D96D00;
    border-left:1px solid #354E6C;
    border-right:1px solid #354E6C;
    box-sizing: border-box;
}

#menu_top{
    position:fixed;
    top:0px;
    background-color: rgba(0,0,0,0.7);
    width:100%;
    height:80px;
    display:flex;
    justify-content: center;
    z-index:100000;
    gap:100px;
    transition:0.5s;
}

#logo_img{
    max-width:230px;
    content:url('../images/logo_a2.png');
    transition:0.5s;
}

#hamburguesa{
    display:none;
    justify-content: center;
    align-items: center;
}

#hamburguesa img{
    width:25px; 
    height:30px;
    /*filter: invert(100%);*/
}

#menu{
    display:flex;
}


.btn_mnu{
    position:relative;
    display:flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto';
    font-size:12pt;
    padding: 0 20px 0 20px;
    border-left:1px solid rgba(0,0,0,0);
    border-right:1px solid rgba(0,0,0,0);
    height:80px;
    color:#FFF;
    box-sizing: border-box;
    transition: 0.5s;
}


.btn_mnu:hover{
    cursor:pointer;
    background-color:rgba(50,50,50,0.5);
    color:#D96D00;
    height:80px;
    border-left:1px solid #354E6C;
    border-right:1px solid #354E6C;
    box-sizing: border-box;
}


.lineadvance{
    position:fixed;
    top:80px;
    left:0;
    width:0px;
    height:5px;
    background-color: #D96D00;
    opacity:1 !important;
    z-index: 1000000;
}

.linefixed{
    position:fixed;
    top:80px;
    left:0;
    width:100%;
    height:5px;
    background-color: #7F99BA;
    opacity:1 !important;
    z-index: 100000;
}

.texto_normal{
    text-decoration: none;
}

.titulo{
    display:flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto';
    font-size: 30px;
    width:100%;
    min-height:50px;
    text-shadow: 1px 1px 2px #aaa;
}

.subtitulos{
    font-family: monospace;
    font-size: 25px;
}

.flexcen{
    display:flex;
    justify-content: center;
    align-items: center;
}

.texto_n_12{
    font-family: 'Roboto';
    font-size:12pt;
    color:#000;
}