
html {
    scroll-behavior: smooth;
}

.gdpr-cookie-notice{
  
}

body{
    min-height:100vh;
    background-color: #ffffff;
    font-family: Doctaforum;
}

.header{
    background-color: transparent;
    position:sticky;
    top:0px;
    left:0px;
    z-index:4000;
}

.logo-header{
    /*transition: color 0.3s ease, filter 0.3s ease;
    */max-width:110px;
}

.link-home{
    color:black !important;
}

.caja-links{
    font-size: 16px;
}

.entered{
    color:black !important;
    border-bottom: 2px solid var(--doctaforum);
}

.entered:hover{
    font-family: Doctaforum-Bold;
    color:var(--doctaforum) !important;
}

.link-lang{
    color:black !important;
    position: relative;
    font-size:16px !important;
    text-decoration: none;
}


.link-lang::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    bottom: 0px; /* Ajusta esta propiedad para acercar la línea al texto */
    height: 2px;
    color:var(--doctaforum);
    background-color: var(--doctaforum);
    transition: width 0.5s ease, left 0.5s ease;
    -webkit-transition: width 0.5s ease, left 0.5s ease;
    -moz-transition: width 0.5s ease, left 0.5s ease;
    -ms-transition: width 0.5s ease, left 0.5s ease;
    -o-transition: width 0.5s ease, left 0.5s ease;
}

  /* Al hacer hover, expandimos la línea desde el centro hacia los lados */
  .link-lang:hover::after {
    width: 100%;
    left: 0;
    color: var(--doctaforum);
  }


  .contenido{
    min-height:58vh !important;
    overflow: hidden;
  }


.black{
    font-family: Doctaforum-Bold;
    color:black;
    font-size:13px;
    line-height: 40px;
}

.texto-principal{
    font-family:Doctaforum-Bold;
    color:var(--doctaforum);
    line-height:45px;
    font-size:40px;
    letter-spacing: -2px;
}

.foto{
    width:100% !important;
}






/*? CONTENEDOR 8*/
.contenedor-8{
    background-color: #333;
    width: 100% !important;
    min-height:30vh !important;
    height: auto !important;
    padding: 0% 8% !important;
}

.font-footer{
    color: #FFF;
    font-family: Doctaforum-Bold;
    font-size: 15px;
    font-style: normal;
    line-height: 24px; /* 150% */
}


.link-responsabilidad {
    color:white;
    font-family: Doctaforum !important;
    text-decoration: white;
}


.link-responsabilidad:hover {
    color: white;
    text-decoration: underline;
}


.link-cookies{
    color:white !important;
    font-family: Doctaforum !important;
    text-decoration:none !important;
}

.link-cookies:hover{
    color:white !important;
    cursor:pointer;
    font-family: Doctaforum-Bold !important;
    text-decoration:underline !important;
}

@media screen and (min-width: 1280px) and (max-width: 1440px) {

}
@media screen and (min-width: 768px)  and (max-width: 1280px) {

}

@media screen and (min-width: 360px ) and (max-width: 768px) {
    .texto-principal{
        font-family: Doctaforum-Bold;
        color: var(--doctaforum);
        line-height: 25px;
        font-size: 25px;
        letter-spacing: -2px;
    }

    
    .logo-header{
        /*transition: color 0.3s ease, filter 0.3s ease;
        */
        max-width:100px;
    }

}



/**? MENU HAMBURGUESA */
.icono-burguer {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    }

.icono-burguer span{
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}


.icono-burguer span {
    background: var(--doctaforum);
    }
    
    
.icono-burguer span:nth-child(1) {
    top: 0px;
    }
    
    .icono-burguer span:nth-child(2),
    .icono-burguer span:nth-child(3) {
    top: 10px;
    }
    
    .icono-burguer span:nth-child(4) {
    top: 20px;
    }
    
    .icono-burguer.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%;
    }
    
    .icono-burguer.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    }
    
    .icono-burguer.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    }
    
    .icono-burguer.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    left: 50%;
    }

    .custom-burguer-menu {
        position: fixed; /* Fija el menú en la parte superior de la pantalla */
        top: 0; /* Alinea el menú en la parte superior */
        left: 0; /* Alinea el menú con el borde izquierdo */
        width: 100%; /* Asegura que el menú ocupe todo el ancho de la pantalla */
        z-index:2000; /* Coloca el menú por encima de otros elementos */
        max-height: 100dvh !important;
        /* background-color: rgba(255,255,255,.5);
        height: 100vh !important; */
     }
     
     .boton-burguer {
        position:sticky !important;
        top:3px !important;
        right:3px !important;
        z-index:3001;
        color:var(--doctaforum);
}

     .collapse.show {
        display: block !important; /* Asegura que el menú se muestre cuando está activado */
     }

     .cuerpo-menu{
        /* height: 100% !important; */
        background-color: white;
        height: 100vh !important;
     }

     .link-burguer{
        color:var(--doctaforum) !important;
        font-family: Doctaforum !important;
        font-size: 20px !important;
     }

     
     .link-burguer:hover{
        font-family: Doctaforum-Bold !important;
     }

     .link-lang-burguer{
        color:var(--doctaforum) !important;
        position: relative !important;
        font-size:18px;
        text-decoration: none;
     }
        
    .footer-burguer{
        color: var(--doctaforum) !important;
        position: absolute;
        bottom: 5%;
    }

    .link-lang-burguer::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        bottom: 0px; /* Ajusta esta propiedad para acercar la línea al texto */
        height: 2px;
        color:var(--doctaforum);
        background-color: var(--doctaforum);
        z-index:2001; /* Coloca el menú por encima de otros elementos */
        transition: width 0.5s ease, left 0.5s ease;
        -webkit-transition: width 0.5s ease, left 0.5s ease;
        -moz-transition: width 0.5s ease, left 0.5s ease;
        -ms-transition: width 0.5s ease, left 0.5s ease;
        -o-transition: width 0.5s ease, left 0.5s ease;
    }

    /* Al hacer hover, expandimos la línea desde el centro hacia los lados */
    .link-lang-burguer:hover::after {
        width: 100%;
        left: 0;
        color: var(--doctaforum);
    }

    .barra-burguer{
        background-color: var(--doctaforum);
        height: 2px !important;
        color: var(--doctaforum);
        width: 100%;
    }
