        
        /* NAVEGADOR */
        a.nav-link {
            font-size: 15px;
            font-family: "Nunito Sans", sans-serif;
        }

        /* Navbar personalizada */
        .navbar-custom {
            background-color: #141e42;
            background: rgba(242, 0, 55, 0.55); /*rgba(242, 0, 55, 0.55) - rgba(62, 71, 81, 0.55);*/
            box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.08);
            /* Azul oscuro */
        }

        /* Estilo para el submenú */
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: #f8f9fa;
            z-index: 1000;
            margin-top: -1px;

            display: flex;
            justify-content: center;
            gap: 2rem;
            padding: 1rem 0;

            opacity: 0;
            visibility: hidden;
            /*transform: translateY(-10px);*/
            transition: opacity 0.3s ease, transform 0.5s ease, visibility 0.3s ease;
            box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.08);
        }

        .submenu ul {
            border-right: 2px solid #ededed;
            padding-right: 30px;
            padding-left: 0;
        }

        /* Al pasar el mouse, mostramos con animación */
        .nav-item:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .submenu a {
            color: #032a51;
            opacity: .41;
            font-weight: 500;
            text-decoration: none;
            transition: opacity .3s ease;
        }

        .submenu a:hover {
            opacity: 1;
        }


        .navbar-custom .nav-link,
        .navbar-custom .navbar-brand {
            color: white;
            margin-right: 40px;
        }



        /* Estilo para el enlace activo */
        .navbar-custom .nav-link.active {
            color: #fff !important;
            font-weight: bold;
            border-bottom: 2px solid #fff;
            transition: all 0.3s ease;
        }

        .nav-custom a.active::before {
            content: "";
            width: 0;
            position: absolute;
            bottom: 0;
            left: 0;
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
            background: white;
            height: 2px;
        }

        /* Offcanvas oscuro */
        .offcanvas-custom {
            background-color: #003060;
            /*opacity: 0.9;*/
            color: white;
        }

        .offcanvas-custom .nav-link {
            color: white;
            padding: 24px;
        }

        .offcanvas-custom .nav-link.active {
            color: #fff !important;
            font-weight: bold;
            /*border-left: 3px solid #fff;*/
        }

        .offcanvas-custom .nav-link:hover {
            color: #e1e1e1 !important;

            /*color: #004060;*/
        }

        .nav-item a {
            position: relative;
            /* Necesario para posicionar el ::before */
            text-decoration: none;
        }

        .nav-item a::before {
            content: "";
            width: 0;
            position: absolute;
            bottom: 0;
            left: 0;
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
            background: white;/*#002856*/
            height: 2px;
        }



        .nav-item a:hover::before {
            width: 100%;
        }


        /* Estilo para el botón del offcanvas (hamburger) */
        .navbar-toggler {
            border: none !important;
            outline: none !important;
            box-shadow: none !important;
        }

        /* Cambiar color del ícono a blanco */
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }

        /* Evita cualquier borde al pasar el mouse */
        .navbar-toggler:focus,
        .navbar-toggler:active,
        .navbar-toggler:hover {
            border: none !important;
            outline: none !important;
            box-shadow: none !important;
        }


        /* TRANSICIÓN SUAVE Y EFECTO VISUAL */
        .navbar-toggler {
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        /* Al pasar el mouse: agranda un poco y baja opacidad */
        .navbar-toggler:hover {
            transform: scale(1.1);
            opacity: 0.85;
        }

        /* Al hacer clic: efecto pequeño de presión */
        .navbar-toggler:active {
            transform: scale(0.95);
            opacity: 1;
        }

        .nav-item a {
            padding-left: 0 !important;
            padding-right: 0 !important;
            /*padding: 0 !important;*/
        }


        .navbar-scrolled {
            background-color: #F20037 !important;
            /* Color más sólido */
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        /* Mostrar submenu en móvil dentro del offcanvas */
        @media (max-width: 991px) {

            .submenu {
                position: relative;
                opacity: 1 !important;
                visibility: visible !important;
                flex-direction: column;
                gap: 0;
                padding: 0.5rem 1rem;
                background-color: transparent;
                box-shadow: none;
            }

            .submenu ul {
                border: none;
                padding: 4px 0;
                margin: 0;
            }

            .submenu a {
                color: #fff;
                opacity: 1;
            }

            .submenu a:hover {
                color: #e1e1e1 !important;
                opacity: 1;
            }

            /* Ocultar por defecto en móvil y abrir al click */
            .submenu {
                display: none;
            }

            .submenu.open {
                display: block;
            }

            .offcanvas-custom .nav-link {
                color: white;
                padding: 10px;
            }

            .dropdown-toggle1 {
                position: relative;
                padding-right: 30px;
                /* espacio para el icono */
            }

            /* Icono flecha */
            .dropdown-toggle1::after {
                content: "";
                border-top: .3em solid;
                border-right: .3em solid transparent;
                border-bottom: 0;
                border-left: .3em solid transparent;
                /* flecha abajo */
                position: absolute;
                right: 10px;
                top: 50%;
                transform: translateY(-50%);
                font-size: 12px;
                transition: transform 0.3s ease;
            }

            /* Cuando está abierto, rotamos la flecha */
            .dropdown-toggle1.open::after {
                transform: translateY(-50%) rotate(180deg);
            }

            .offcanvas-custom {
                background-color: #F20037;/*#003060*/
                opacity: 0.9;
                color: white;
            }

            .responsable-tecnico .card-body{
                padding-left: 0px !important;
            }
        }

        /* CARRUSEL */

        .custom-carousel {
            margin-top: 0px;/*73*/
            min-height: 489px;
            max-height: 80vh;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        }

        .custom-carousel .carousel-inner {
            height: 100%;
        }

        .custom-carousel .carousel-img {
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease-in-out;

            height: 489px;

        }

        .custom-carousel .carousel-item:hover .carousel-img {
            transform: scale(1.03);
        }

        .carousel-caption {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 1rem 1.5rem;
            border-radius: 8px;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            filter: invert(1);
        }

        .carousel-indicators button {
            background-color: #ffffff;
        }










        @media only screen and (min-width: 1024px) and (max-width: 1280px) {
            .card-text1 {

                color: red !important;
            }
        }

        @media only screen and (min-width: 768px) and (max-width: 1023px) {
            .card-text1 {

                color: blue !important;
            }
        }

        @media only screen and (min-width: 480px) and (max-width: 767px) {
            .card-text1 {

                color: violet !important;
            }
        }

        @media only screen and (min-width: 768px) and (max-width: 990px) {
            .indicadores .card-text {
                font-size: 16px !important;
            }

            .indicadores .card-title {
                font-size: 37px !important;
            }

            .indicadores .card-body {
                margin-top: 14px;
            }
        }


        @media only screen and (max-width: 991px) {}


        @media only screen and (min-width: 868px) {
            .imagen-movil {
                display: none !important;
            }
        }

        /* CARRUSEL */
        @media (min-width: 768px) {
            .imagen-movil {
                display: none !important;
            }
        }

        @media (max-width: 767px) {
            .imagen-laptop {
                display: none !important;
            }

            .custom-carousel {
                min-height: 60vh;
            }

            .custom-carousel .carousel-img {
                height: 60vh !important;
            }

            .documento-gestion .card-body{
                padding-left: 0px !important;
            }
        }

        /* INDICADORES */

        .indicadores .card-img-top {
            max-width: 90px;
            filter: brightness(1.5) saturate(0.4) contrast(0.9);
        }

        .card {
            border: 0px;
        }

        .card-body {
            padding: 16px 0px;
        }

        .responsive-title {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            /* Ajusta entre 1.5rem y 2.5rem */
            font-weight: bold;
        }

        .responsive-text {
            font-size: clamp(0.9rem, 1.5vw, 1.2rem);
            /* Ajusta entre 0.9rem y 1.2rem */
        }

        .indicadores .card-text {
            margin-top: 25px;
            color: #828282;

            /*color: #3d3d3d;*/
            font-family: 'Montserrat', sans-serif;

            /*color: #383838;*/
            font-size: 21px;
            font-weight: 350;
            line-height: 23px;
        }

        .indicadores .card-text:hover {
            transition: all .31s ease;
            font-weight: 600;
        }

        .indicadores .card-text:link,
        .indicadores .card-text:visited {

            font-weight: 600;
        }

        .indicadores .card-title {
            margin-top: 10px;
            font-size: 45px;
            font-weight: 300;
            font-family: "Montserrat";
            text-transform: none;
            line-height: 17px;
        }

        .f1 {
            color: #64a2e8;
        }

        .f2 {
            color: #59baef;
        }

        .f3 {
            color: #58d4a9;
        }

        .f4 {
            color: #9ec73b;
        }

        .f5 {
            color: #ff9d39;
        }

        .f6 {
            color: #ec63a5;
        }

        h1 {
            color: #141e42;
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 25px;
        }

        /* NOSOTROS */

        .nosotros h2{
            margin-bottom: 0px;
        }

        .nosotros .card-text {
            font-family: 'Montserrat', sans-serif;
            color: #0a0a0a;
            line-height: 1.5;
            text-align: justify;
            font-weight: 300;
            font-size: 15px;
            margin-right: 10px;
        }

        .card-miembro{
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            box-shadow: 5px 7px 15px rgba(56,37,98,0.08);
            transition: all 0.4s ease;
        }

        .card-miembro:hover{
            /*transform: scale(1.03);*/
            /*transform: translateY(0);  sube el card-body */
            
            transition: all 0.4s ease;
            /*box-shadow: 0 4px 15px rgba(236,95,126,0.08);*/
            box-shadow: 0 0 9rem 0 rgba(0, 0, 0, 0.2);

            .profile-img {
                filter: grayscale(0%);            /* Vuelve a color al pasar el mouse */
            }
        }

        .card-miembro h5{
            margin-bottom: 1px;
        }

        .card-miembro p{
            margin-bottom: 5px;
        }

        .card-miembro .card-title {
            color: #141e42;
        }

        .card-miembro .cargo-miembro{
            color: #EC5F7E;
            font-weight: 600;
        }

        .contacto-miembro a {
            display: inline-block; /* Necesario para usar transform correctamente */
            font-size: 22px;       /* Tamaño base del icono */
            text-decoration: none;
            margin-right: 10px;
            color: gray;/*rgba(13, 110, 253, 0.68);*/

            transition: transform 0.3s ease, color 0.3s ease;
        }

        .contacto-miembro a:hover {
            transform: scale(1.25);  /*Crece suavemente */
            color: #382562;        /* Color de hover */
        }


        .doc-item {
            display: inline-flex;
            align-items: center;
            background: rgba(245, 245, 245, 0.78);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 15px;
            color: #000;
            margin: 10px;
            transition: all .2s;

            text-decoration: none;
        }

        .doc-item:hover {
            background: rgb(245, 245, 245);
            transform: translateY(-2px);
            cursor: pointer;
        }

        .doc-item i {
            margin-right: 8px;
            font-size: 18px;
        }

        /* INFORMACION DOCTORADO */

        .info-doctorado p {
            font-family: 'Montserrat', sans-serif;
            color: #0a0a0a;
            line-height: 1.5;
            text-align: justify;
            font-weight: 300;
        }

        /* NOTICIAS */

        .content-noticias .card-img-top {
            max-width: 100%;
        }

        .content-noticias .card{
            transition: all 0.4s ease;
        }

        .content-noticias h4 {
            font-size: 13px;
            font-family: "Nunito-Sans-Bold", sans-serif;
            text-transform: uppercase;
            line-height: 1;
            padding: 0;
        }

        .content-noticias h3 {
            margin: 17px 0;
            color: #002856;
            font-size: 20px;
            font-family: "Nunito-Sans-Bold", sans-serif;
            line-height: 1.3;
            padding: 0;
        }

        .content-noticias p {
            line-height: 1.4;
            font-size: 14px;
            font-family: "Nunito-Sans-Bold", sans-serif;
            margin: 0;
        }

        .content-noticias h4,
        h3 {
            font-weight: 600;
        }

        /* EVENTOS */

        .content-eventos .card-img-top {
            max-width: 100%;
        }

        /* ACCESO DIRECTO */

        .content-accesos a {
            color: #002856;
            font-size: 20px;
            border: 1px solid #eee;
            padding: 17px 25px;
            border-radius: 2px;
            text-decoration: none;
            line-height: 1;
            font-family: "Nunito-Sans-Bold", sans-serif;
            margin-right: 9px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all .3s ease-in-out;
        }

        .content-accesos a:hover {
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.32);
        }

        .content-accesos h4 {
            margin: 0;
            font-family: "Nunito-Sans-Bold", sans-serif;
            font-size: 20px;
        }

        .content-accesos span {
            padding: 0 15.5px;
            border-radius: 2px;
            background: #005cb9;
            line-height: 45px;
            text-align: center;
            color: #ffffff;
        }

        /* FOOTER */

        footer {
            background: #F20037;/*#002856;*/
            color: #dcdcdc;
        }

        footer .red-social a {
            position: relative;
            /* Necesario para posicionar el ::before */
            text-decoration: none;
            color: #fff;
            margin: 5px;
        }

        /* MODULO PROGRAMA DOCTORAL */

        .programa-doctoral p {
            font-family: 'Montserrat', sans-serif;
            color: #0a0a0a;
            line-height: 1.5;
            text-align: justify;
            font-weight: 300;
        }

        h2 {
            color: #141e42;
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 15px;
        }

        .programa-doctoral ul {
            font-family: 'Montserrat', sans-serif;
            list-style: none;
            padding-left: 5px;
        }

        .programa-doctoral ul li {
            position: relative;
            padding-left: 25px;
            /* Espacio para el ícono */
            font-size: 16px;
            line-height: 1.38;
            font-weight: 300;
            /*color: #3e4751;*/
            margin-bottom: 5px;
        }

        .programa-doctoral ul li:before {
            font-family: 'icomoon' !important;
            content: '\ea54';
            position: absolute;
            left: 0;
            top: 0;
            color: #00518e;
        }

        /* MODULO DIRECTORIO */
        .responsable-tecnico:after {
            content: '';
            background-color: #002856;
            width: 100%;
            height: 3px;
            display: block;
            margin: 35px 0;
        }

        .responsable-tecnico .card-body {
            padding-left: 70px;
        }

        .responsable-tecnico p {
            font-family: 'Montserrat', sans-serif;
            color: #0a0a0a;
            line-height: 1.5;
            text-align: justify;
            font-weight: 300;
        }

        .responsable-tecnico .card-link {
            margin-bottom: 2px;
            margin-left: 0;
        }

        .responsable-tecnico .card-link a {
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
            text-decoration: none;
        }

        .responsable-tecnico .card-link a .text-body-secondary {
            color: #034095 !important;
            font-size: 16px;
        }

        .equipo-tecnico .col{
            margin-bottom: 45px;
        }

        .equipo-tecnico ul {
            font-family: 'Montserrat', sans-serif;
            list-style: none;
            padding-left: 15px;
            margin-top: 28px;
        }

        .equipo-tecnico ul li {
            position: relative;
            padding-left: 25px;
            /* Espacio para el ícono */
            font-size: 16px;
            line-height: 1.38;
            font-weight: 300;
            /*color: #3e4751;*/
        }

        .equipo-tecnico ul li:before {
            font-family: 'icomoon' !important;
            content: '\ea54';
            position: absolute;
            left: 0;
            top: 0;
            color: #00518e;
        }

        .equipo-tecnico h4 {
            font-size: 18px;
        }

        .equipo-tecnico .cargo {
            font-size: 16px;
            line-height: normal;
            letter-spacing: normal;
            padding-bottom: 4px;
        }

        .equipo-tecnico .descripcion-equipo{
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            line-height: 1.5;
            font-weight: 300;
        }

        .miembro-equipo{
            background-color: rgb(51 0 114 / 1);
            color: #fff;
            transition: all 0.4s ease;
            transform: translateY(34%);
            border-top-right-radius: 15px;
        }

        .equipo-tecnico .card{
            transition: all 0.4s ease;
        }

        .equipo-tecnico .card:hover {
            transform: scale(1.03);
            /*transform: translateY(0);  sube el card-body */
            box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
            transition: all 0.4s ease;
        }

        .equipo-tecnico .card:hover .miembro-equipo {
            /*transform: translateY(0);  sube el card-body */
            box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
        }

        .miembro-equipo h3{
            font-size: 20px;
            margin-bottom: 3px;
        }

        .miembro-equipo .carrera-miembro{
            font-size: 15px;
        }

        .miembro-equipo .cargo-miembro{
            margin-bottom: 2px;
        }

        .redes-miembro{
            /*opacity: 0;*/
            /*display: none;*/
            transition: opacity 0.4s ease;
        }

        .card:hover .redes-miembro {
            /*opacity: 1;  muestra las redes sociales 
            display: block;*/
            transition: opacity 0.4s ease;
        }

        .redes-miembro a{
            font-size: 22px;
            color: #fff;
            margin-right: 5px;
            text-decoration: none;
        }


        /* MODULO REDES SOCIALES */


        .redes-sociales{
            margin: 80px 0;
        }

        .redes-sociales .card{
            font-size: 14px;
            color: #141e42;
            transition: all 0.4s ease;
        }

        .redes-sociales .card:hover{
            background: #f8f7ff;
            border-radius: 10px;
            cursor: pointer;
            color: rgb(51 0 114 / 1);
            
            .red-custom {
                background: rgb(51 0 114 / 1);
                transition: all 0.4s ease;
            }

            .red-boton{
                background: rgb(51 0 114 / 1);
                transition: all 0.4s ease;
            }

            .enlace-boton{
                color: #fff;
                text-decoration: none;
                transition: all 0.4s ease;
            }
        }

        .red-body{
            color: rgb(51 0 114 / 1);
        }

        .redes-sociales .red-boton{
            margin-top: 10px;
            border-radius: 10px;
            padding: 5px;
        }

        .redes-sociales .red-boton a{
            color: rgb(51 0 114 / 1);
            text-decoration: none;
        }

        .bg-custom-linkedin {
            background: #0A66C2;
            padding: 10px;
            width: 50px;
            border-radius: .75rem;
        }

        .bg-custom-instagram {
            background: transparent linear-gradient(42deg, #FED52E 0%, #FE7A23 20%, #FC146B 51%, #D01EC2 75%, #7642F6 100%) 0% 0% no-repeat padding-box;
            padding: 10px;
            width: 50px;
            border-radius: .75rem;
        }

        .bg-custom-facebook{
            background: #0779EB;
            padding: 10px;
            width: 50px;
            border-radius: .75rem;
        }

        .bg-custom-facebook img{
            max-height: 30px;
        }

        .bg-custom-youtube{
            background: #FE0000;
            padding: 10px;
            width: 50px;
            border-radius: .75rem;
        }

        .bg-custom-youtube img{
            min-height: 30px;
        }

        /* MODULO NOTICIAS */

        h2 .titulo-noticia {
            font-size: 1rem ;
            color: #002856;
            font-weight: 500;
        }

        .titulo-lateral{
            background: #002856;
            font-size: 16px;
            color: #fff;
            padding: 12px 19px;
            margin-bottom: 20px;
        }

        .cuerpo-noticia-lateral{
            padding: 0px;
        }

        .titulo-noticia-lateral{
            color: #3e4751;
            font-weight: bold;
            font-size: 15px;
            margin-top: 1px;
            margin-left: 10px;
            margin-bottom: 3px;
        }

        .fecha-noticia-lateral{
            margin-left: 10px;
            font-size: 12px;
        }

        /* MODULO DOCUMENTOS */

        .documento-gestion:after {
            content: '';
            background-color: #002856;
            width: 100%;
            height: 3px;
            display: block;
            margin: 35px 0;
        }

        .documento-gestion .card-body {
            padding-left: 70px;
        }

        .documento-gestion p {
            font-family: 'Montserrat', sans-serif;
            color: #0a0a0a;
            line-height: 1.5;
            text-align: justify;
            font-weight: 300;
        }

        .documentos a {
            color: #002856;
            font-size: 20px;
            border: 1px solid #C1C7CD;
            padding: 17px 25px;
            border-radius: 2px;
            text-decoration: none;
            line-height: 1;
            font-family: "Nunito-Sans-Bold", sans-serif;
            margin-right: 9px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all .3s ease-in-out;
        }

        .documentos a:hover {
            -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.32);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.32);
        }

        .documentos h4 {
            margin: 0;
            font-family: "Nunito-Sans-Bold", sans-serif;
            font-size: 20px;
        }

        .documentos span {
            padding: 0 15.5px;
            border-radius: 2px;
            background: #005cb9;
            line-height: 45px;
            text-align: center;
            color: #ffffff;
        }

        /* MODULO PLAN DE ESTUDIOS */

        .plan-estudio:after {
            content: '';
            background-color: #002856;
            width: 100%;
            height: 3px;
            display: block;
            margin: 35px 0;
        }

        .plan-estudio .card-body {
            padding-left: 70px;
        }

        .plan p {
            font-family: 'Montserrat', sans-serif;
            color: #0a0a0a;
            line-height: 1.5;
            text-align: justify;
            font-weight: 300;
        }

        .plan a {
            color: #002856;
            font-size: 20px;
            border: 1px solid #C1C7CD;
            padding: 17px 25px;
            border-radius: 2px;
            text-decoration: none;
            line-height: 1;
            font-family: "Nunito-Sans-Bold", sans-serif;
            margin-right: 9px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all .3s ease-in-out;
        }

        .plan a:hover {
            -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.32);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.32);
        }

        .plan .plan-body h2 {
            color: #141e42;
            font-family: 'Montserrat', sans-serif;
            margin-top: 35px;
            margin-bottom: 35px;
        }

        .plan h4 {
            margin: 0;
            font-family: "Nunito-Sans-Bold", sans-serif;
            font-size: 20px;
        }

        .plan span {
            padding: 0 15.5px;
            border-radius: 2px;
            background: #005cb9;
            line-height: 45px;
            text-align: center;
            color: #ffffff;
        }

        .accordion-item{
            
            margin-bottom: 10px !important;
            border-radius: 0px !important;
            border: 0px !important;

        }

        .accordion-button{
            border-radius: 0px !important;
            background: #f2f5f9 !important;
            color: #00518e !important;
        }

        .accordion-button:focus{
            box-shadow: none;
        }

        /* MODULO PROGRAMAS */

        .content-programas .card-img-top {
            max-width: 100%;
        }

        .content-programas .card{
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(56,37,98,0.08);
            /*box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;*/
        }

        .content-programas .card:hover {
            transform: scale(1.03);
            /*transform: translateY(0);  sube el card-body */
            box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
            transition: all 0.4s ease;
            
        }

        .content-programas .card-body {
            padding: 10px 15px 20px;
            color: #3e4751;
        }

        .content-programas .card-body small{
            font-size: 11px;
        }

        .content-programas h4 {
            font-size: 13px;
            font-family: "Nunito-Sans-Bold", sans-serif;
            text-transform: uppercase;
            line-height: 1;
            padding: 0;
            
        }

        .content-programas h3 {
            /*margin: 17px 0;*/
            color: #002856;
            font-size: 20px;
            font-family: "Nunito-Sans-Bold", sans-serif;
            line-height: 1.3;
            padding: 0;
            padding-top: 5px;
        }

        .content-programas p {
            line-height: 1.4;
            font-size: 14px;
            font-family: "Nunito-Sans-Bold", sans-serif;
            margin: 0;
        }

        .content-programas h4,
        h3 {
            font-weight: 600;
        }

        .content-programas .card a{
            text-decoration: none !important;
        }

        /* MODULO PROGRAMA */

        .btn-programa a{
            background:rgba(14, 108, 249, 0.70);
            background:rgba(236, 95, 126, 0.70);
            /*background:rgba(251, 184, 20, 0.70);*/
            color:#fff;
        }

        .btn-programa a:hover{
            background:rgba(14, 108, 249, 0.89);
            background:rgba(236, 95, 126, 0.89);
            /*background:rgba(251, 184, 20, 0.89);*/
            color:#fff;
        }
        
        .programa-cerrado {
            opacity: 0.6;
            /*pointer-events: none;*/
        }

        /* MODULO PORTAFOLIO */

        .content-portafolio .card-img-top {
            max-width: 100%;
        }

        .content-portafolio .card{
            transition: all 0.4s ease;
            box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
        }

        .content-portafolio .card:hover {
            transform: scale(1.03);
            /*transform: translateY(0);  sube el card-body */
            
            transition: all 0.4s ease;
        }

        .content-portafolio .card-body {
            padding: 10px 10px;
            color: #3e4751;
        }

        .content-portafolio h4 {
            font-size: 13px;
            font-family: "Nunito-Sans-Bold", sans-serif;
            text-transform: uppercase;
            line-height: 1;
            padding: 0;
        }

        .content-portafolio h3 {
            margin: 17px 0;
            color: #002856;
            font-size: 20px;
            font-family: "Nunito-Sans-Bold", sans-serif;
            line-height: 1.3;
            padding: 0;
        }

        .content-portafolio p {
            line-height: 1.4;
            font-size: 14px;
            font-family: "Nunito-Sans-Bold", sans-serif;
            margin: 0;
        }

        .content-portafolio h4,
        h3 {
            font-weight: 600;
        }

        .content-portafolio .card a{
            text-decoration: none;
        }

        .content-portafolio .verticales{
            color: #EC5F7E;
        }

        /* ALIADOS */

        /* Contenedor principal */
        .scroll-container {
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        }

        /* Contenido desplazable */
        .scroll-content {
        display: flex;
        animation: scroll-left 40s linear infinite;
        }

        /* Imágenes del carrusel */
        .scroll-content img {
        height: 80px;
        margin: 0 40px;
        filter: grayscale(100%);
        transition: filter 0.3s ease;
        }

        .scroll-content img:hover {
        filter: grayscale(0%);
        }

        /* Animación infinita */
        @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
        }

        /* Pausar animación al pasar el mouse */
        .scroll-container:hover .scroll-content {
        /*animation-play-state: paused;*/
        }

        /* MODULO EGRESADO */

        .content-egresado .card-img-top {
            max-width: 100%;
        }

        .content-egresado .card-body {
            padding: 10px 10px;
            color: #3e4751;
        }

        .content-egresado h4 {
            font-size: 13px;
            font-family: "Nunito-Sans-Bold", sans-serif;
            text-transform: uppercase;
            line-height: 1;
            padding: 0;
        }

        .content-egresado h3 {
            margin: 17px 0;
            color: #002856;
            font-size: 20px;
            font-family: "Nunito-Sans-Bold", sans-serif;
            line-height: 1.3;
            padding: 0;
        }

        .content-egresado p {
            line-height: 1.4;
            font-size: 14px;
            font-family: "Nunito-Sans-Bold", sans-serif;
            margin: 0;
        }

        .content-egresado h4,
        h3 {
            font-weight: 600;
        }

        /* MODULO GALERIA */

        .content-galeria .card-img-top {
            max-width: 100%;
        }

        .content-galeria .card-body {
            padding: 20px 5px;
            color: #3e4751;
        }

        .content-galeria h4 {
            font-size: 13px;
            font-family: "Nunito-Sans-Bold", sans-serif;
            text-transform: uppercase;
            line-height: 1;
            padding: 0;
        }

        .content-galeria h3 {
            margin: 17px 0;
            color: #002856;
            font-size: 20px;
            font-family: "Nunito-Sans-Bold", sans-serif;
            line-height: 1.3;
            padding: 0;
        }

        .content-galeria p {
            line-height: 1.4;
            font-size: 15px;
            font-family: "Nunito-Sans-Bold", sans-serif;
            margin: 0;
        }

        .content-galeria h4,
        h3 {
            font-weight: 600;
        }


        /* MODULO CONTACTO */

        .img-sm{
            width: 2.25rem;
            height: 2.25rem;
        }