    /* Estilos generales */
    body {
      font-family: Arial, sans-serif;
      line-height: 1.5;
      margin: 0;
      padding: 0;
      background-color: #f9f9f9;
      color: #333;
    }

    /* Estilos de cabecera */
    .header {
      background-color: #fff; /*#0070B8;*/
      padding: 20px;
      text-align: center;
      color: #555;
    }

    .logoMenu {
      display: flex;
      height: 60px;
      /*border: 1px red solid;*/
      flex-grow: 0; /* Agregado */
      flex-shrink: 0; /* Agregado */
    }

    .logoMenu img {
      width: 70px;
      height: 70px;
    }

    .tituloMenu {
      width: auto;
      height: 60px;
      margin-bottom: 10px;
      flex-grow: 1; /* Agregado */
      text-align: center; /* Agregado para centrar el texto */
      color: #0070b8;
    }

    .tituloMenu h1 {
      margin-bottom: 0;
    }

        /* ////////////////// boton modo obscuro /////////////// */
    /* Estilos para el botón modo obscuro */
    .dark-mode-switch {
      position: relative;
      width: 60px;
      height: 34px;
    }
    
    .dark-mode-switch input[type="checkbox"] {
      display: none;
    }
    .dark-mode-switch label {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 47px;
      height: 8px;
      background-color: rgba(0, 112, 184, 0.5); /* color original en el label #ccc; */
      border-radius: 34px;
      cursor: pointer;
      transition: background-color 0.3s ease-in-out;
    }
    
    .dark-mode-switch label:before {
      content: "\2600"; /* Código Unicode para el sol */
      position: absolute;
      top: -10px;
      left: -20px;
      font-size: 20px;
      color: black;
    }
    
    .dark-mode-switch label:after {
      content: "";
      position: absolute;
      top: -4px;
      left: 3px;
      width: 15px;
      height: 15px;
      background-color: #f2f2f2; /* thumb de color #f2f2f2 */
      border-radius: 50%;
      border: 1px #c2c2c2 solid;
      transition: transform 0.3s ease-in-out;
    }
    
    .dark-mode-switch input:checked + label {
      background-color: #c2c2c2; /*color del fondo del label,  #2196f3; color original */
    }
    
    .dark-mode-switch input:checked + label:before {
      content: "\263D"; /* Código Unicode para la luna */
      position: absolute;
      top: -10px;
      left: 50px;
      font-size: 20px;
      color: #0070B8; /* Color de la luna */
    }
    
    .dark-mode-switch input:checked + label:after {
      transform: translateX(26px);
      background-color: rgba(100, 112, 284, 0.9); /* #0070B8 Color del thumb cuando el modo oscuro está activado */
    }
    /* ////////////// SubMenu /////////////// */  
        .nav-wrapper {
          display: flex;
          justify-content: center;
          padding-top: 20px;
          margin-bottom: 20px;
        }

        .nav-tabs ul {
          list-style: none;
          padding: 0;
          margin: 0;
          display: flex;
        }

        .nav-tabs li {
          margin-right: 10px;
        }

        .nav-tabs a {
          display: block;
          padding: 10px 15px;
          background-color: #f2f2f2;
          /*margin-top: 10px;*/
          color: #333;
          text-decoration: none;
          border-left: 1px solid #ccc;
          border-top: 1px solid #ccc;
          border-right: 1px solid #ccc;
          border-radius: 5px 5px 0 0;
          cursor: pointer;
          transition: background-color 0.3s ease-in-out;
        }

        .nav-tabs a.active {
          background-color: #ccc;
          color: #fff; /* Color del texto en modo oscuro */
          font-weight: bold;
        }

     
     /* //////////////  Menu Heder //////////// */
     .mimenu, .mimenu li{ /* contenedor menu principal */
         color: #ffffff;
     }
     .mimenu, .mimenu li::hover{
         color: #f8f8f8;
     }

    .hederMenu {
      display: flex;
    }

    /* Estilos de menu 1 */
    #g-header a, #g-header .g-menu-item i { /*Opciones Menu principal */
        color: #ffffff;
    }
    .g-menu-item-container{
        margin-left: 5px;
    }

    .menu { /* nose cual es */
      background-color: #0070b8;
      padding: 10px;
      text-align: center;
    }

    .menu ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: center;
    }

    .menu li {
      margin: 0 10px;
      color: #fff;
    }

    .menu a {
      text-decoration: none;
      color: #fff;
    }
    /* ////////////// Menu 2 /////////////// */  
      
	.minav {
	  display: flex;
	  justify-content: center;
	}

	.minav ul {
	  display: flex;
	  list-style: none;
	  padding: 0;
	  margin: 0;
	}

	.minav .menu-item {
	  padding: 10px 10px 2px 10px;
	  margin: 0 5px;
	  /*color: #fff;*/
	  color: var(--colorMenuPrin);
	  cursor: pointer;
	}
	.minav .active {
	  border-top: 2px var(--colorMenuPrin) solid;
	}

	.minav .menu-item:hover {
	  /*background-color: #005083;*/
	  border-bottom: 2px var(--colorMenuPrin) solid;
	}

	@media (max-width: 768px) {
	  .minav {
	    flex-direction: column;
	    align-items: center;
	  }

	  .minav  .menu-item {
	     margin: 5px;
	  }
	}
      
    /* ////////////// SubMenu /////////////// */  
        .nav-wrapper {
          display: flex;
          justify-content: center;
          padding-top: 20px;
          margin-bottom: 20px;
          border-bottom: 1px #ccc solid;
        }

        .nav-tabs ul {
          list-style: none;
          padding: 0;
          margin: 0;
          display: flex;
        }

        .nav-tabs li {
          margin-right: 10px;
        }

        .nav-tabs a {
          display: block;
          padding: 10px 15px;
          background-color: #f2f2f2;
          /*margin-top: 10px;*/
          color: #333;
          text-decoration: none;
          border-left: 1px solid #ccc;
          border-top: 1px solid #ccc;
          border-right: 1px solid #ccc;
          border-radius: 5px 5px 0 0;
          cursor: pointer;
          transition: background-color 0.3s ease-in-out;
        }

        .nav-tabs a.active {
          background-color: #ccc;
          color: #fff; /* Color del texto en modo oscuro */
          font-weight: bold;
        }


    /* Estilos de secciones */
    section {
      padding: 50px 0;
      text-align: center;
    }

    section h2 {
      font-size: 34px;
      margin-bottom: 20px;
      color: #0070B8;
    }

    section p {
      font-size: 18px;
      color: #555;
    }

    /* Estilos responsivos */
    @media (max-width: 768px) {
      .header h1 {
        font-size: 24px;
      }

      .menu li {
        margin: 0 5px;
      }

      section {
        padding: 30px 0;
      }

      section h2 {
        font-size: 20px;
      }

    }

    /* Estilos para el modo obscuro */
    .dark-mode{
      background-color: #111;
      color: #ccc;
    }
    .dark-mode #g-features,
    .dark-mode #g-utility,
    .dark-mode #g-above {
              background-color: #111;
              color: #ccc;
    }

    .dark-mode .header{
      background-color: #ddd;
      color: #0070b8;
      padding: 20px;
  }

    .dark-mode .menu{
      background-color: rgba(0, 112, 184, 0.5);
      color: #ccc;
    }

    .dark-mode .menu a {
      color: #ccc;
      
    }

    .dark-mode .section1 {
      background-color: #222;
      border: 2px #aaa solid;
      color: #ccc;
    }
    .dark-mode .section1a {
      background-color: #222;
      border: 1px #555 solid;
      color: #ccc;
    }
    .dark-mode h2,
    .dark-mode h3,
    .dark-mode .oferta-academica h3,
    .dark-mode .programas-enfocados h3,
    .dark-mode .oferta-academica p,
    .dark-mode h4,
    .dark-mode h5,
    .dark-mode h6 {
      color: #ccc;
    }

    .dark-mode section p {
      color: #ccc;
    }

    /* ///////////// animacion logo ///////////////// */
    .mueve {
      transform-origin: center;
      animation: spinAnimation 10s linear;
      animation-delay: calc((5 - var(--index)) * 2s);
    }

    @keyframes spinAnimation {
      0% {
        transform: rotateX(0);
      }
      50% {
        transform: rotateX(360deg);
      }
      100% {
        transform: rotateX(720deg);
      }
    }
    /* ///////////// secction1 ///////////////// */
    .section1 {
        padding: 40px;
        background-color: #fcfcfc;
        color: #333;
        border-radius: 10px;
        margin: 5px 30px 30px 30px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        border: 2px #0070B8 solid;
      }
    .section1a {
        padding: 40px;
        background-color: #fcfcfc;
        color: #333;
        border-radius: 10px;
        /*margin: 5px 30px 30px 30px;*/
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        /*border: 2px #0070B8 solid;*/
        margin-top: 100px;
      }
    .section2 {
      padding: 40px;
      background-color: #f2f2f2;
      margin-bottom: 20px;
    } 
    .section3 {
        background-color: #f5f5f5;
        color: #333;
      }
    .sectionGris {
        padding: 50px 80px;
        background-color: #cccacb;
        margin-bottom: 20px;
      }
    .section {
      padding: 20px;
      background-color: #f2f2f2;
      border: 1px solid #ccc;
      border-radius: 5px;
      margin-bottom: 20px;
    } 
    .sectionInterno {
        padding: 40px;
        background-color: #fcfcfc;
        color: #333;
        border-radius: 10px;
        margin: 5px 30px 30px 30px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        /*border: 2px #0070B8 solid;*/
      }
    .secionOculta{
        display: none;
    }
    .panelDrch30, .panelIzq30 { width: 30%; margin: auto 0 auto 20px;}
    .panelDrch50, .panelIzq50 { width: 50%; margin: auto 0 auto 20px;}
    .panelDrch70, .panelIzq70 { width: 70%; margin: auto 0 auto 20px;}
    .panelDrch80, .panelIzq80 { width: 80%; margin: auto 0 auto 20px;}
    .panelDrch30 img, .panelIzq30 img,
    .panelDrch50 img, .panelIzq50 img,
    .panelDrch80 img, .panelIzq80 img  { border-radius: 10px;}


      .section1-heading {
        text-align: center;
        font-size: 24px;
        color: #555;
        margin-bottom: 20px;
      }

      .section1-paragraph {
        font-size: 18px;
        line-height: 1.5;
      }
      .imgSecc1 {
         width: 100%;
         height: 100%;
         margin: auto 0;
      }

      .imgSecc1 img{
          border-radius: 5px;
      }

      /* Estilos para el modo oscuro */
      body.dark-mode .section1, body.dark-mode .section2,
      body.dark-mode .section3 {
        background-color: #111;
        color: #ccc;
      }

      body.dark-mode .sectionInterno {
          background-color: #111;
          color: #ccc;
          box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
          border: 2px #0070B8 solid;
       }

      body.dark-mode .section1-heading {
        color: #ccc;
      }

      body.dark-mode .section1-paragraph {
        color: #ccc;
      }
        body.dark-mode .program-card h4 {
          color: #fff;
        }
        body.dark-mode .program-card, 
        body.dark-mode .utg-contenttabs-tab-wrapper-body {
          background-color: #222;
          box-shadow: 4px 4px 8px rgba(255, 255, 255, 0.3);
          border: 1px #999 solid;
          color: #ccc;
        }
        body.dark-mode .program-card:hover {
          box-shadow: 4px 4px 8px rgba(255, 0, 0, 0.5);
        }
        body.dark-mode .utg-contenttabs-tab-wrapper-body p {
	color: #ccc;
        }
        body.dark-mode .utg-contenttabs-tab-wrapper-body h2,
        body.dark-mode .utg-contenttabs-tab-wrapper-body h3 {
	color: #aaa;
        }
    .seccFlex {
      display: flex;
    }

    .g-container {  width: 100%;}
    
    /* /////////// Secciones ///////////////////// */
    
        #programas-academicos h2 {
          text-align: center;
          margin-bottom: 30px;
        }

        .oferta-academica {
          text-align: center;
          margin-bottom: 50px;
        }

        .oferta-academica h3 {
          color: #555;
          font-size: 24px;
          margin-bottom: 10px;
        }

        .oferta-academica p {
          font-size: 18px;
        }

        .program-cards {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 20px;
          margin: 40px 0;
        }

        .program-card {
          background-color: #fff;
          border-radius: 5px;
          padding: 20px;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          text-align: center;
          transition: box-shadow 0.3s ease-in-out;
          cursor: pointer;
        }

        .program-card:hover {
          background-color: rgba(0, 112, 184, 0.01);
          box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
        }

        .program-card img {
          width: 60px;
          height: auto;
          margin-bottom: 20px;
          border-radius: 5px;
        }

        .program-card h4 {
          color: #555;
          font-size: 20px;
          margin-bottom: 10px;
        }

        .program-card p {
          font-size: 16px;
          line-height: 1.5;
        }

        .programas-enfocados {
            text-align: center;
            margin-top: 20px;
            padding: 0 10%;
         }

          .programas-enfocados h3 {
            color: #0070B8;
            font-size: 28px;
            margin-bottom: 20px;
            padding-top: 40px;
          }

          .programas-enfocados ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
          }

          .programas-enfocados li {
            font-size: 20px;
            margin-bottom: 10px;
            cursor: pointer;
            position: relative; /* Añadido para el posicionamiento de la flecha */
          }
          /*
         .programas-enfocados li:hover + .manita::before {
           content: ""; 
           color: red;
           position: absolute;
           left: -20px;
           top: 0; 
           border: 1px red solid;
         }
         */
         .programas-enfocados li:hover .txtSelccLic {
           /*color: red;*/
           font-style: italic;
           text-decoration-line: underline;
           text-decoration-thickness: 3px;
           text-decoration-color: rgba(255, 0, 0, 0.1);
         }
         .programas-enfocados li .manita-senala {
           color: red;
           min-width: 40px;
           max-width: 40px;
           padding-top: 10px;
         }

         /* Estilo para los emojis */
         .emoji {
           display: inline;
           margin-right: 10px;
           width: 55px;
         }
         .txtSelccLic { }

          /* Estilos específicos para el modo oscuro */
          body.dark-mode {
            background-color: #222;
            color: #fff;
          }
          body.dark-mode  .imgLndgPgsSwd{
	box-shadow: 0 4px 8px rgba(255, 255, 255, 0.4);
          }
          body.dark-mode .sectionGris{
            background-color: #444;
            border-top: 1px solid rgba(200, 200, 200, 0.4);
            border-bottom: 1px solid rgba(200, 200, 200, 0.4);
          }

         body.dark-mode .programas-enfocados li:hover .txtSelccLic {
           text-decoration-color: rgba(255, 0, 0, 0.3);
         }


    /* ////////////// Admici¨®n /////////////// */  
      .admission-info {
        display: block;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
      }

      .admission-info .admission-step {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease-in-out;
        cursor: pointer;
        margin-bottom: 20px;
      }

      .admission-step:hover {
        background: rgba(0, 112, 184, 0.03);
        box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
      }

      .admission-step h3 {
        color: #aaa;
        margin: 0;
        margin-bottom: 5px;
      }

      .admission-step p {
        margin: 0;
      }
      
    .logoMenu {
      display: flex;
      height: 60px;
      flex-grow: 0; /* Agregado */
      flex-shrink: 0; /* Agregado */
    }

    .logoMenu img {
      width: 70px;
      height: 70px;
    }

    .tituloMenu {
      width: auto;
      height: 60px;
      margin-bottom: 10px;
      flex-grow: 1; /* Agregado */
      text-align: center; /* Agregado para centrar el texto */
    }

    .tituloMenu h1 {
      margin-bottom: 0;
    }

    .btonModObscuro {
      width: 100px;
      height: 60px;
      margin-left: auto;
    }

    .hederMenu {
      display: flex;
    }
    .imgPrgsAcdm {
        height: 40px;
        width: 40px;
    }

    .DivFlexTxtCent {
        display: flex;
        justify-content: center; /* Centrar horizontalmente */
        align-items: flex-start; /* Alinear arriba verticalmente */
        padding-bottom: 40px;
    }
    .DivFlex{
        display: flex;
    }

    .DivEnlinea {
        margin: 0 15px; /* Espacio moderado entre las dos columnas */
        width: 42%;
    }
    .imgAdmiPasos {
        width: 100px;
        min-width: 100px;
        height: 120px;
        margin-right: 20px;
        border: 1px #ccc solid;
    }
    .paddDrch {
        padding: 10px;
    }
      .padIzq20{
          padding: 20px;
      }
    .g-sublevel{ /* fondo submenu */
	background-color: #0070B8;
    }
    /* /////////////// Texto Justificado //////////////// */
    .txtCent {text-align: center;}
    .txtDrc {text-align: right;}
    .txtIzq {text-align: left;}
    .txtJust {text-align: justify;}
    .txtClrBlk {color: black;}
    .divCent {margin: 0 auto;}
    /* /////////// Imagen Principal ////////////// */
    .imgLndgPgsSwd{
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
       border-radius: 20px;
        margin-bottom: 20px;
    }
    .imgLndgPgsSwd2{
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
       border-radius: 20px;
        margin-bottom: 20px;
    }
    .imgLndgPgsSwd2 img {
        width: 90%;
        height: 100%;
        margin: 30px;
    }
    .imgLndgSVGprc {
        width: 50px;
        height: 50px;
    }
    .tmnImgPrc { height: 150px;}
    /*.tmnImgPrc:hover { text-shadow: 0 0 14px #0070B8;}*/

    .tmnImgPrcSvg {}
    .tmnImgPrcSvg:hover { cursor: pointer; text-shadow: 0 0 14px #0070B8; color: yellow;}

    .ctrVertImg { margin: auto 0 auto 0;}
    .ctrHorzImg { margin: 0 auto 0 auto;}
    .ctrVeHoImg { margin: auto auto auto auto;}

    .imgSecc1 img{
        width: 100%;
        height: 100%;
    }
    .dark-mode .imgSecc1 img{
        width: 100%;
        height: 100%;
        background-color: #f2f2f2;
    }
    .optFlex   { display: flex; align-items: center;}
    .optFlex2 { display: flex;}
    .optEnlinea { display: inline;}
    .g-particle { 
    }
    .g-particle img {border-radius: 5px;}

    .utgp-title{ color: #cccacb;}
@media screen and (max-width: 700px) {
  .optFlex2 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .DivFlexTxtCent {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .programas-enfocados{
      padding: 0 1%;
   }
    .sectionGris {
        padding: 50px 20px;
      }
   .txtSelccLic {
       padding-top: 10px;
       min-width: 240px;
   }
   .emoji-s {
       min-width: 40px;
       height: 30px;
   }
   .panelIzq30 { display: none;}
   .panelDrch70{ width: 100%}
}

/* Estilos para el modal para Admiciones*/
.rotating-image {
    animation: rotate 10s linear infinite;
    transform-origin: center;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.modalAdmin {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modalAdmin-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
}

.closeAdmin {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
}

.closeAdmin:hover,
.closeAdmin:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/*---------------- modales --------------*/
/* Estilos para los modales */
.modalOfePrin {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modalOfePrin .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Estilos para el botón "close" */
.modal-content .close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 10px; /* Ajusta la posición del botón "close" al lado derecho */
    font-size: 28px;
    font-weight: bold;
}

.modal-content .close:hover,
.modal-content .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/*------------------ Tamaño de texto -----------------*/
.fntSize14 {font-size: 14px;}
.fntSize16 {font-size: 16px;}
.fntSize18 {font-size: 18px;}
.fntSize20 {font-size: 20px;}
.fntSize22 {font-size: 22px;}
.fntSize24 {font-size: 24px;}
.fntSize26 {font-size: 26px;}
.fntSize28 {font-size: 28px;}
.fntSize14Negrita {font-size: 14px; font-weight: bold;}
.fntSize16Negrita {font-size: 16px; font-weight: bold;}
.fntSize18Negrita {font-size: 18px; font-weight: bold;}
.fntSize20Negrita {font-size: 20px; font-weight: bold;}
.fntSize22Negrita {font-size: 22px; font-weight: bold;}
.fntSize24Negrita {font-size: 24px; font-weight: bold;}
.fntSize26Negrita {font-size: 26px; font-weight: bold;}
.fntSize28Negrita {font-size: 28px; font-weight: bold;}
