
html {
    scroll-behavior: smooth;
}

b{
    font-family: Doctaforum-Bold;
}


.gdpr-cookie-notice{
  
}

body{
    color:white;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    max-width:100%;
    align-items: center;
    font-family:Doctaforum !important;
    flex-direction: column;
    background-color: var(--doctaforum);
    overflow-x:hidden;
}

.contenido-sticky{
    
    position: relative;
}

.link-text-4{
    text-decoration: none;
    color: var(--doctaforum);
}

.link-text-4:hover{
    color:var(--doctaforum);
    text-decoration: none;
}

.header{
    position:fixed !important;
    top:3px !important;
    z-index:1000;
    /* Cambiacómosemezclaconelfondotransition: color 0s ease, filter 0s ease; */
    /* -webkit-transition: color 0s ease, filter 0s ease;
    -moz-transition: color 0s ease, filter 0s ease;
    -ms-transition: color 0s ease, filter 0s ease;
    -o-transition: color 0s ease, filter 0s ease; */
}

.caja-links.change-color, .caja-idiomas.change-color{
   filter: brightness(0) saturate(100%) invert(15%) sepia(91%) saturate(1%) hue-rotate(339deg) brightness(104%) contrast(95%) !important;
   -webkit-filter: brightness(0) saturate(100%) invert(15%) sepia(91%) saturate(1%) hue-rotate(339deg) brightness(104%) contrast(95%) !important;
   transition: none !important;
   -webkit-transition: none !important;
   -moz-transition: none !important;
   -ms-transition: none !important;
   -o-transition: none !important;
}


#boton-burguer.change-color span{
    
    background-color: var(--doctaforum) !important;
 }

.logo-header{
    /*transition: color 0.3s ease, filter 0.3s ease;
    */max-width:110px;
}

.space{
    height: 275px  !important;
    display: block;
}
.contenedor-principal{
    font-family: Doctaforum;
    color:white;
    min-height: 100vh;
    height: 100%;
}

.caja-idiomas{

    font-size: 18px;
    font-style: normal;
    line-height: 30px;
    transition: color 0.3s ease, filter 0.3s ease;
    color: white;
}

.caja-links{
    /*text-shadow:     -1px -1px 0 black,     1px -1px 0 black,        -1px 1px 0 black,          1px 1px 0 black;
    Sombrahaciaabajoaladerecha*/width:40% !important;
    flex-shrink: 0;
    font-size: 16px;
    font-style: normal;
    transition: color 0.3s ease, filter 0.3s ease;
    z-index:1001;
    line-height: normal;
    color: white;
    /*Stickyseactivaenrelaciónalbody,perotomacomoreferenciasuposicióninicial*/position: fixed;
    opacity:0;
    top: 0;
    transition: opacity 1.5s ease;
    /*Transiciónde0.5segundos*/
    -webkit-transition: opacity 1.5s ease;
    -moz-transition: opacity 1.5s ease;
    -ms-transition: opacity 1.5s ease;
    -o-transition: opacity 1.5s ease;
}

.link-home{
    color: white;
    text-decoration: none;
}


.link-home:hover{
    color: white;
    text-decoration: none;
}

.link-lang{
    color: white !important;
    position: relative;
    font-size:16px;
    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:white;
    background-color: white;
    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: white;
  }



/*? CONTENEDOR 1*/
    .contenedor-1{
        color: #333;
        height:80vh;
        width: 100% !important;
        background-color: white;
        z-index:100 !important;
    }
    .slow-shake {
        animation-duration: 13s; /* Ajusta la duración de la animación a 3 segundos */
    }

    .text-1-link{
        font-family: Doctaforum-Bold;
        color: #333;
        font-size: 70px;
        letter-spacing: -4px;
        line-height: 60px;
        opacity: 0;
        display: inline-block;
    }

    .texto-inicio{
        width:60% !important;
        font-size: 18px;
        font-style: normal;

        line-height: 30px;
        text-align: justify;
    }
    /*EFECTO FLECHA*/
    .flecha{
        position:absolute;
        cursor: pointer;
        transform: translateX(-50%);
        animation: rebote 2s infinite ease-in-out;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -webkit-animation: rebote 2s infinite ease-in-out;
}

@keyframes rebote {
    from,
        to {
          transform:translateY(0%);
          -webkit-transform:translateY(0%);
          -moz-transform:translateY(0%);
          -ms-transform:translateY(0%);
          -o-transform:translateY(0%);
}
      
        50% {
            transform:translateY(30%);
            -webkit-transform:translateY(30%);
            -moz-transform:translateY(30%);
            -ms-transform:translateY(30%);
            -o-transform:translateY(30%);
}
}

.shakeXModified{
    animation: shakeXModified 1.15s ease-in-out;
    -webkit-animation: shakeXModified 1.15s ease-in-out;
}
    /* Crear la animación de rebote */
    @keyframes shakeXModified {
        from,
        to {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
        }
      
        50% {
          -webkit-transform: translate3d(10px, 0, 0);
          transform: translate3d(10px, 0, 0);
        }
    }

/*? CONTENEDOR 2*/
    .contenedor-2{
        background: linear-gradient(to bottom, white 15%, #333 15%);
        width: 100% !important;
        height:100vh;
        max-width:100% !important;
        z-index:75 !important;
    }

    .video-desktop {
        max-width: 100% !important;
        min-height: 100vh;
        cursor: url('../../images/circle-play.svg'), auto;
        margin: 0 auto;
        transition: width 1.25s ease;
        width: 75vw;
        position: relative; /* o absolute, fixed, sticky */
        z-index:75 !important;
        -webkit-transition: width 1.25s ease;
        -moz-transition: width 1.25s ease;
        -ms-transition: width 1.25s ease;
        -o-transition: width 1.25s ease;
    }
    .contenedor-2  video.expandido {
        width: 100vw;
        z-index:75 !important;
    }

/*? CONTENEDOR 3*/
    .contenedor-3{
        background-color: #333;
        width: 100% !important;
        z-index: 80;
        min-height: 50vh !important;
    }

    .texto-3{
        width:65% !important;
        color: var(--doctaforum);
        font-family: Doctaforum-Bold;
        font-size: 36px;
        letter-spacing: -1.5px;
        font-style: normal;
        position: relative;
        z-index:10 !important;
        line-height: 55px;
    }

    
    .texto-3-oculto {
        visibility: hidden;
        opacity: 0;
        z-index:10;
        transform: translateY(-100%);
        transition: opacity 2.5s ease, transform 1.5s ease-in-out;
        -webkit-transition: opacity 2.5s ease, transform 1.5s ease-in-out;
        -moz-transition: opacity 2.5s ease, transform 1.5s ease-in-out;
        -ms-transition: opacity 2.5s ease, transform 1.5s ease-in-out;
        -o-transition: opacity 2.5s ease, transform 1.5s ease-in-out;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
}

    .mostrar-texto-3 {
        visibility: visible;
        display: inherit;
        z-index:10;
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
}

/*? CONTENEDOR 4*/
    .contenedor-4{
        background-color: white;
        width: 100% !important;
        height:90vh;
    }

    .contenedor-4 div{
        width:92% !important;
    }

    .texto-4 {
        color: var(--doctaforum);
        font-family: Doctaforum-Bold;
        font-size: 145px;
        font-style: normal;
        line-height: 110px;
        letter-spacing: -8px;
        white-space: nowrap;       /* Evita que el texto salte de línea */
        overflow: hidden;          /* Oculta el texto que no cabe en el contenedor */
        text-overflow: ellipsis; 
      }

    .texto-4-first{
        color: #333333;
        display: inline-block;
        position: relative;

    }

    .hover-circle-1 {
        position: fixed;
        width: 75px;
        height: 75px;
        border-radius: 50%;
        background-color: white;
        pointer-events: none;
        /*Nointerferirconlasinteraccionesdelcursor*/mix-blend-mode: difference;
        /*Mezclaconelfondo*/z-index: 9999;
        /*Círculosiempreporencima*/transform: translate(-50%, -50%);
        opacity: 0;
        /*Elcírculoiniciainvisible*/transition: opacity 0.1s ease;
        -webkit-transition: opacity 0.2s ease;
        -moz-transition: opacity 0.2s ease;
        -ms-transition: opacity 0.2s ease;
        -o-transition: opacity 0.2s ease;
}

.hover-effect-1:hover {
    cursor: pointer; /* Esconder el cursor predeterminado */
}

    .hover-circle {
            position: fixed;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            /* border:2px solid #333; */
            background-color: transparent !important;
            pointer-events: none;
            mix-blend-mode: luminosity;
            z-index: 9999;
            transform: translate(-50%, -50%);
            opacity: 0;
            color: #555;
            display: flex;
            letter-spacing: -2px;
            justify-content: end;
            font-family: Doctaforum;
            align-items: start;
            font-size: 75px;
            transition: opacity 0.1s ease;
            -webkit-transition: opacity 0.2s ease;
            -moz-transition: opacity 0.2s ease;
            -ms-transition: opacity 0.2s ease;
            -o-transition: opacity 0.2s ease;
    } 

    .hover-effect:hover {
        cursor: pointer; /* Esconder el cursor predeterminado */
    }
    


/*? CONTENEDOR 5*/
    .contenedor-5{
        background-color: white;
        width: 100% !important;
        height:100vh !important;
    }

    .swiper{
        overflow-x: scroll;
    }
    .swiper-slide{
        display:flex !important;
    }
    
    .img-premio{
        max-width: 600px !important;
    }

    @supports (not selector(::-webkit-scrollbar)) {
        .swiper {
            scrollbar-color: transparent transparent;
            scrollbar-width: none;
            scrollbar-gutter: stable;
            scroll-behavior: smooth;
        }
        
    }
    .swiper::-webkit-scrollbar {
        width: 12px;
    }

    .swiper::-webkit-scrollbar-track {
        background: transparent;
    }

    .swiper::-webkit-scrollbar-thumb {
        background-color: transparent;
    }


    .swiper::-webkit-scrollbar-thumb:hover {
        background-color: transparent
    }

    /*Imagen*/
    .oculto-5-1-1 {
        opacity: 0;
        transform: translateX(-100%);
        transition: opacity 1.5s ease, transform 1.5s ease;
        -webkit-transition: opacity 1.5s ease, transform 1.5s ease;
        -moz-transition: opacity 1.5s ease, transform 1.5s ease;
        -ms-transition: opacity 1.5s ease, transform 1.5s ease;
        -o-transition: opacity 1.5s ease, transform 1.5s ease;
}
    /* Estado animado: aparece y se mueve a su posición original */
    .mostrar-5-1-1 {
        opacity: 1;
        transform: translateX(0);
    }

    .oculto-5-2-1 {
        opacity: 0;
        transform: translateY(100%);
        transition: opacity 1.5s ease, transform 1.5s ease;
        -webkit-transition: opacity 1.5s ease, transform 1.5s ease;
        -moz-transition: opacity 1.5s ease, transform 1.5s ease;
        -ms-transition: opacity 1.5s ease, transform 1.5s ease;
        -o-transition: opacity 1.5s ease, transform 1.5s ease;
}
    /* Estado animado: aparece y se mueve a su posición original */
    .mostrar-5-2-1 {
        opacity: 1;
        transform: translateY(0);
    }

    .oculto-5-3-1 {
        opacity: 0;
        transform: translateY(-100%);
        transition: opacity 1.5s ease, transform 1.5s ease;
        -webkit-transition: opacity 1.5s ease, transform 1.5s ease;
        -moz-transition: opacity 1.5s ease, transform 1.5s ease;
        -ms-transition: opacity 1.5s ease, transform 1.5s ease;
        -o-transition: opacity 1.5s ease, transform 1.5s ease;
}
    /* Estado animado: aparece y se mueve a su posición original */
    .mostrar-5-3-1 {
        opacity: 1;
        transform: translateY(0);
    }

    

    /*Textos*/
    .oculto-5-1-2 {
        opacity: 0;
        transform: translateY(100%);
        /*Desplazarfueradelapantalla*/transition: opacity 1.5s ease, transform 1.5s ease;
       
    }
    .mostrar-5-1-2 {
        opacity: 1;
        transform: translateY(0);
    }

    
    .oculto-5-2-2, .oculto-5-3-2 {
        opacity: 0;
        transform: translateX(100%);
        transition: opacity 1.5s ease, transform 1.5s ease;
        -webkit-transition: opacity 1.5s ease, transform 1.5s ease;
        -moz-transition: opacity 1.5s ease, transform 1.5s ease;
        -ms-transition: opacity 1.5s ease, transform 1.5s ease;
        -o-transition: opacity 1.5s ease, transform 1.5s ease;
}
    .mostrar-5-2-2, .mostrar-5-3-2 {
        opacity: 1;
        transform: translateX(0);
    }



.success-text-story{
    font-family: Doctaforum-Bold;
    font-size: 70px;
    font-style: normal;
    line-height: 100px;
    letter-spacing: -4px;
    padding-top: 200px !important;
    white-space: nowrap;
}

.title-success-story{
    color: #333;
    font-family: Doctaforum-Bold;
    font-size: 30px;
    font-style: normal;
    letter-spacing: -2px;
    white-space: nowrap;
}
    .empresa{
        color: #333;
        font-family: Doctaforum;
        font-size: 25px;
        font-style: normal;

        line-height: normal;
    }
    
    .proyecto{
        color: var(--doctaforum);
        font-family: Doctaforum-Bold;
        font-size: 20px;
        font-style: normal;
        line-height: 20px !important;
    }
    
    .descripcion{
        color: #808080;
        font-family: Doctaforum;
        font-size: 16px;
        font-style: normal;

        text-align: justify;
        line-height: normal;
    }

    .premio{
        color: #333;
        font-family: Doctaforum;
        font-size: 20px;
        font-style: italic;

        line-height: normal;
    }

    .desc-premio{
        color: #808080;
        font-family: Doctaforum;
        font-size: 16px;
        font-style: normal;

        line-height: normal;
    }

    .link-proyectos{
        font-family: Doctaforum;
        color:var(--doctaforum);
        padding: 7px 50px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        border-radius: 17.5px;
        border: 1px solid var(--doctaforum);
        transition:.25s;
    }

    .link-proyectos:hover{
        text-decoration: none;
        background-color: var(--doctaforum);
        transition:.25s;
        color:white;
    }


    
/*? CONTENEDOR 6*/
    .contenedor-6{
        background-color: #5eb57a;
        width: 100% !important;
        min-height:80vh;
    }

    .texto-6{
        width:95% !important;
        color: #FFF;
        font-family: Doctaforum-Bold;
        font-size: 92px;
        font-style: normal;

        line-height: 75px; /* 72.826% */
        letter-spacing: -5.52px;
    }

    .localizacion{
        line-height: 5px;
    }

    .titulo-localizacion{
        color: #FFF;
        font-family: Doctaforum-Bold;
        font-size: 24px;
        font-style: normal;

        line-height: normal;
    }

    .texto-localizacion{
        color: #FFF;
        font-family: Doctaforum;
        font-size: 16px;
        font-style: normal;

        line-height: normal;
    }

    .email-localizacion{
        color: white;
        font-family: Doctaforum;
        font-size: 16px;
        font-style: normal;

        line-height: normal;
    }

    .mailto{
        color:white;
        text-decoration: none;
        font-family: Doctaforum-Bold;
        
        pointer-events: none; /* Desactiva la interacción del cursor */
        user-select: none; /* Evita la selección del texto */
    }

    .mailto:hover{
        color:white;
        text-decoration: none;
    }
      .mailto::before {
        content: "info@doctaforum.com";
        pointer-events: auto; /* Reactiva la interacción del cursor solo en el contenido generado */
        user-select: auto; /* Permite la selección del texto en el contenido generado */
      }


/*? CONTENEDOR 7*/
    .contenedor-7{
        background-color: white;
        width: 100% !important;
        height:20vh;
    }

    @keyframes slides {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-100%);
        }
      }
      
      .logos {
        overflow: hidden;
        padding: 30px 0px;
        white-space: nowrap;
        position: relative;
        height: 100%;;
      }
      
      .logos:before, .logos:after {
        position: absolute;
        top: 0;
        content: '';
        width: 250px;
        height: 100%;
        z-index: 2;
      }
      
      .logos:before {
        left: 0;
      }
      
      .logos:after {
        right: 0;
      }
      
      .logo_items {
        display: inline-block;
        height: 100% !important;
        animation: 90s slides infinite linear;
        -webkit-animation: 90s slides infinite linear;
}
      
      /* .logos:hover .logo_items {
        animation-play-state: paused;
      } */
      
      .logo_items img{
        height: 100px;
        max-width:250px;
        max-height: 100% !important;
      }


@keyframes animate {
    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-810%);
        -webkit-transform: translateX(-810%);
        -moz-transform: translateX(-810%);
        -ms-transform: translateX(-810%);
        -o-transform: translateX(-810%);
}
}
    
/*? 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 !important;
    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) {
    .texto-inicio{
        width:75% !important;
    }

    /* Estilos generales para dispositivos con pantallas Retina MAC */
        .space{
            height: 20vh  !important;
            display: block;
        }

        .texto-3{
            width:65% !important;
            font-family: Doctaforum-Bold;
            font-size: 28px;
            font-style: normal;
    
            line-height: normal;
        }

        .contenedor-4 div{
            width: 80% !important;
        }

        .texto-4{
            color: var(--doctaforum);
            font-family: Doctaforum-Bold;
            font-size: 90px;
            font-style: normal;
    
            line-height: 70px;
            letter-spacing: -5.12px;
        }


        .empresa{
            color: #333;
            font-family: Doctaforum;
            font-size: 22px;
            font-style: normal;
    
            line-height: normal;
        }
        
        .proyecto{
            color: var(--doctaforum);
            font-family: Doctaforum-Bold;
            font-size: 20px;
            font-style: normal;
    
            line-height: normal;
        }
        
        .descripcion{
            color: #808080;
            font-family: Doctaforum;
            font-size: 14px;
            font-style: normal;
    
            line-height: normal;
        }
    
        .premio{
            color: #333;
            font-family: Doctaforum;
            font-size: 18px;
            font-style: italic;
    
            line-height: normal;
        }
    
        .desc-premio{
            color: #808080;
            font-family: Doctaforum;
            font-size: 14px;
            font-style: normal;
    
            line-height: normal;
        }
    
        .link-proyectos{
            font-family: Doctaforum;
            color:var(--doctaforum);
            padding: 7px 50px;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            border-radius: 17.5px;
            border: 1px solid var(--doctaforum);
            transition:.25s;
        }
    
        .link-proyectos:hover{
            text-decoration: none;
            background-color: var(--doctaforum);
            transition:.25s;
            color:white;
        }




        .texto-6{
            color: #FFF;
            font-family: Doctaforum-Bold;
            font-size: 80px;
            font-style: normal;
    
            line-height:b 70px; /* 72.826% */
            letter-spacing: -3.52px;
        }
    
        
    .localizacion{
        line-height: 5px;
        font-size:14px !important;
    }
}

/* TABLET */
@media screen and (min-width: 768px ) and (max-width: 1280px) {

    .header{
        position:fixed !important;
        top: 0px !important;
        z-index: 1000;
        transition: color 0.3s ease, filter 0.3s ease;
        -webkit-transition: color 0.3s ease, filter 0.3s ease;
        -moz-transition: color 0.3s ease, filter 0.3s ease;
        -ms-transition: color 0.3s ease, filter 0.3s ease;
        -o-transition: color 0.3s ease, filter 0.3s ease;
    }
        
    .logo-header {
        transition: color 0.3s ease, filter 0.3s ease !important;
        max-width: 100px !important;
        -webkit-transition: color 0.3s ease, filter 0.3s ease !important;
        -moz-transition: color 0.3s ease, filter 0.3s ease !important;
        -ms-transition: color 0.3s ease, filter 0.3s ease !important;
        -o-transition: color 0.3s ease, filter 0.3s ease !important;
    }

    
    .contenedor-1{
        width: 100% !important;
        min-height: 80vh;
        height:auto;
    }

    .texto-inicio{
        width: 80% !important;
        font-size: 18px;
        font-style: normal;

        line-height: 20px;
        text-align: justify;
    }

    .space{
        height: 16vh  !important;
        display: block;
    }
    
    .video-desktop {
        max-width: 100% !important;
       height:100% !important;
       min-height: auto !important;
        cursor: url('../../images/circle-play.svg'), auto;
        margin: 0 auto;
        transition: width 1.25s ease;
        width: 75vw;
        z-index:75 !important;
        -webkit-transition: width 1.25s ease;
        -moz-transition: width 1.25s ease;
        -ms-transition: width 1.25s ease;
        -o-transition: width 1.25s ease;
    }
    
    .contenedor-2  video.expandido {
        width: 100vw;
        z-index:75 !important;
    }

    .contenedor-2{
        background: linear-gradient(to bottom, white 5%, #333 5%);
        width: 100% !important;
        height: auto !important;
        z-index:75 !important;
    }

    .contenedor-3 {
        background-color: #333;
        width: 100% !important;
        min-height:50vh !important;
        height: auto !important;
        padding-top:0px !important;
      }

    .texto-3{
        width: 75% !important;
        color: var(--doctaforum);
        font-family: Doctaforum-Bold !important;
        font-size: 30px;
        letter-spacing: inherit0.5px;
        font-style: normal;
        z-index: 10 !important;

        line-height: 25px;
    }

    .contenedor-4 {
        background-color: white;
        width: 100% !important;
        min-height:  80vh;
        height: auto !important;
      }

    .texto-4{
        color: var(--doctaforum);
        font-family: Doctaforum-Bold;
        font-size: 85px !important;
        font-style: normal;

        line-height: 70px;
        letter-spacing: -8px;
    }

    .texto-6 {
        width: 95% !important;
        color: #FFF;
        font-family: Doctaforum-Bold;
        font-size: 75px;
        font-style: normal;

        line-height: 65px;
        letter-spacing: -6.52px;
      }
      .success-text-story {
        font-family: Doctaforum-Bold;
        font-size: 45px;
        font-style: normal;
        line-height: 100px;
        letter-spacing: -2px;
        padding-top: 150px !important;
        white-space: nowrap;
      }

}


@media screen and (min-width: 360px ) and (max-width: 768px) {

    .success-text-story {
        font-family: Doctaforum-Bold;
        font-size: 45px;
        font-style: normal;
        line-height: 100px;
        letter-spacing: -2px;
        padding-top: 50px !important;
        white-space: nowrap;
      }

    .logo-header{
        max-width:100px !important;
    }

    .header{
        position: fixed !important;
        top: 0px !important;
        z-index: 4000;
        transition: color .3s linear, filter .3s linear !important;
        -webkit-transition: color .3s linear, filter .3s linear !important;
        -moz-transition: color .3s linear, filter .3s linear !important;
        -ms-transition: color .3s linear, filter .3s linear !important;
        -o-transition: color .3s linear, filter .3s linear !important;
}

    html {
        scroll-behavior: smooth;
    }
    
    body{
        color:white;
        overflow-x:hidden !important;
        display: flex;
        justify-content: center;
        min-height: 100vh;
        max-width:100%;
        align-items: center;
        font-family:Doctaforum !important;
        flex-direction: column;
        background-color: var(--doctaforum);
    }

    .text-1-link {
        font-size: 35px !important;
        letter-spacing: -2px !important;
        line-height: 45px;
      }

    .caja-links{
        display: none !important;
    }

    .caja-idiomas{
        display: none !important;
    }

    .space{
        display: none !important;
    }

    .contenedor-1{
        width: 100% !important;
        min-height: 100vh;
        height:auto;
    }

    .texto-inicio{
        width: 100% !important;
        font-size:16px;
        text-align: left;
    }
    

    .contenedor-2{
        background: linear-gradient(to bottom, white 5%, #333 5%);
        width: 100% !important;
        max-height:90vh !important;
        z-index:75 !important;
        overflow-x:hidden !important;
    }

    .texto-container-1{
        line-height:17px;
    }

    .video-responsive{
        max-width: 100% !important;
        cursor: url('../../images/circle-play.svg'), auto;
        margin: 0 auto;
        transition: width 1.25s ease;
        overflow-x:hidden !important;
        width: 75vw;
        z-index:75 !important;
    }

    
    .contenedor-3{
        padding-top:0px !important;
        height: auto !important;
    }

    .texto-3{
        width: 100% !important;
        color: var(--doctaforum);
        font-family: Doctaforum-Bold;
        font-size: 24px;
        letter-spacing: -1px;
        font-style: normal;
        z-index: 10 !important;
        line-height: 22px;
    }

    
    .contenedor-4{
        height:auto !important;
    }

    .texto-4{
        color: var(--doctaforum);
        font-family: Doctaforum-Bold;
        font-size: 42px;
        font-style: normal;

        line-height: 35px;
        letter-spacing: -2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis !important;
    }

    .contenedor-5{
        background-color: white;
        width: 100% !important;
        min-height:100vh !important;
        height: auto !important;
    }

    .swiper{
        cursor: pointer;
        overflow-x: scroll;
        height: 100% !important;
    }
    .swiper-slide{
        display:flex !important;
    }

    .texto-mira{
        width:100% !important;
    }

    .empresa{
        color: #333;
        font-family: Doctaforum;
        font-size: 20px;
        font-style: normal;

        line-height: normal;
    }
    
    .proyecto{
        color: var(--doctaforum);
        font-family: Doctaforum-Bold;
        font-size: 20px;
        font-style: normal;
        line-height: 20px !important;
    }
    
    .descripcion{
        color: #808080;
        font-family: Doctaforum;
        font-size: 16px;
        font-style: normal;

        line-height: 18px !important;
    }

    .premio{
        color: #333;
        font-family: Doctaforum;
        font-size: 18px;
        font-style: italic;

        line-height: normal;
    }

    .desc-premio{
        color: #808080;
        font-family: Doctaforum;
        font-size: 16px;
        font-style: normal;

        line-height: 18px !important;
    }

    .link-proyectos{
        font-family: Doctaforum;
        color:var(--doctaforum);
        padding: 7px 50px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        border-radius: 17.5px;
        border: 1px solid var(--doctaforum);
        transition:.25s;
    }

    .contenedor-6 {
        width: 100% !important;
        min-height: 60vh !important;
      }

    .texto-6{
        width: auto !important;
        color: #FFF;
        font-family: Doctaforum-Bold;
        font-size: 40px;
        font-style: normal;

        line-height: 33px;
        letter-spacing: -2px;
    }

    .titulo-localizacion {
        color: #FFF;
        font-family: Doctaforum-Bold;
        font-size: 20px;
        font-style: normal;

        line-height: normal;
      }

      .texto-localizacion {
        color: #FFF;
        font-family: Doctaforum;
        font-size: 14px;
        font-style: normal;

        line-height: normal;
      }

      .email-localizacion {
        color: #333;
        font-family: Doctaforum;
        font-size: 14px;
        font-style: normal;

        line-height: normal;
      }

      .contenedor-7 {
        background-color: white;
        width: 100% !important;
        min-height: 15vh !important;
      }

      .swiper-sponsors {
            animation: animate 25s linear infinite;
            -webkit-animation: animate 25s linear infinite;
        }

    .contenedor-8 {
        background-color: #333;
        width: 100% !important;
        min-height: 30vh !important;
        height: auto !important;
        padding: 10% 10% !important;
    }

    .hover-circle{
        display: none !important;
    }

    div.col-md-6:nth-child(2){
        height: auto !important;
    }

}


/**? 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: rgba(255,255,255,1);
    }
    
    
.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;
        opacity: 0;
        z-index:3001;
        color:white;
}

     .collapse.show {
        display: block !important; /* Asegura que el menú se muestre cuando está activado */
     }

     .cuerpo-menu{
        /* height: 100% !important; */
        background-color: #ffffff;
        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%;
    }

    .pin-spacer{
        max-width: 100% !important;
    }
    .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%;
    }
