/**********************/
/*      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;
}

:root {
  --mnuh_menu-width: 90%;
  --mnuh_transition-speed: 0.4s;
}

.mnuh_menu-btn {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color:#D96D00;
}

.mnuh_sidebar-menu {
  position: fixed;
  top: 85px; 
  left: 0;
  width: var(--mnuh_menu-width);
  max-width: 400px;
  height: auto;
  max-height: calc(100vh - 85px);
  background-color: rgba(8, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 12px 0; 
  transform: translateX(-100%);
  transition: transform var(--mnuh_transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mnuh_sidebar-menu.mnuh_active {
  transform: translateX(0);
}

.mnuh_menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-family: 'Roboto';
    color:#D96D00;
}

.mnuh_close-btn {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color:#fff;
}

.mnuh_sidebar-menu ul {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.mnuh_sidebar-menu ul li {
  margin-bottom: 0;
}

.mnuh_sidebar-menu ul li a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #7f99ba;
  display: block;
  padding: 10px 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mnuh_sidebar-menu ul li a:hover {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding-left: 25px;
}

.mnuh_menu-overlay {
  position: fixed;
  top: 85px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 85px);
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--mnuh_transition-speed) ease;
}

.mnuh_menu-overlay.mnuh_active {
  opacity: 1;
  pointer-events: auto;
}

body.mnuh_body-menu-open {
  overflow: hidden;
}

.mnuh_menu-link{
    font-family: 'Roboto';
    color:#D96D00;
}