body {
    /* font-size: 0.9rem; */
    font-size: 1rem;
    /* font-family: 'Roboto', sans-serif; */

    font-family: "Helvetica Neue", Arial, sans-serif;


    /* Aplica la fuente Roboto a todo el cuerpo */
}

.bg-nativo {
    background-color: #0f47ad;
    color: white;
}

.text-nativo {
    color: #0f47ad;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Ajusta los valores según lo desees */
}

z h2 {
    font-weight: bold;
}

.titulo-color {
    color: #0f47ad;
}

h5,
h6 {
    color: #0f47ad;
}

.borde-texto {
    border-bottom: 5px solid #0f47ad;
    border-width: 50%;
}

.borde-texto-menu {
    width: 30%;
    border-bottom: 3px solid #0f47ad;
}

.menu-active {
    background-color: #0f47ad;
    color: white;
    border-radius: 4px;
}

.dropdown-item {
    margin-left: 10px;
    padding-left: 15px;
    font-size: 0.9rem;
    border-left: 2px solid white;
    transition: border-left 0.3s ease, color 0.5s ease;
}

.dropdown-item:hover {
    font-size: 0.9rem;
    color: #0f47ad;
    font-weight: bold;
    border-left: 2px solid #007bff;
    /* Borde lateral derecho en azul */
    padding-left: 15px;
    /* Espacio entre el texto y el borde */
    margin-left: 10px;
    /* Espacio entre los ítems del menú */
}

.bg-instituto {
    background-color: #0f47ad;
}

/* header */
.header-border-bottom {
    border-bottom: 5px solid #0D6EFD;
}



/*******SLIDER*******/

#publicidadLista>.owl-carousel .owl-dots {
    position: absolute;
    /* top: -60px; */
    bottom: -0px;
    right: 30px;
    background-color: #0f47ad;
    border-radius: 20px;
    transform: translateY(-50%);
    display: flex;
}

/* Posicionar los dots a la derecha del carrusel */
#programasEstudiosLista>.owl-carousel .owl-dots {
    position: absolute;
    /* top: -60px; */
    bottom: -70px;
    right: 30px;
    background-color: #0f47ad;
    border-radius: 20px;
    transform: translateY(-50%);
    display: flex;
}

/*.owl-carousel .owl-dots {
        position: absolute;
        top: -55px;
        right: 10px;
  
        transform: translateY(-50%);
        display: flex;
      
    }*/

.owl-carousel .owl-dot {
    margin: 5px 0;
    /* Espaciado entre los dots */
}

.owl-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background-color: #000;
    border-radius: 50%;
    display: block;
}

/* Ocultar la navegación (botones prev/next) */
.owl-carousel .owl-nav {
    display: none;
}

/**Programas item**/
.programa-item {

    color: #333;
    /* Color de texto inicial */
    /* padding: 10px; */
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Suaviza el cambio de color */
}

.programa-item:hover {
    background-color: hsla(199, 100%, 47%, 0.1);
    color: #0f47ad;

}

.programa-item img {
    width: 100%;
    /* Ajusta la imagen para que ocupe todo el ancho del contenedor */
    height: auto;
    filter: brightness(50%);
    /* Oscurece la imagen inicialmente */
    transition: filter 0.5s ease;
    /* Transición suave para el cambio de brillo */
}

/* Efecto al pasar el mouse */
.programa-item:hover img {
    filter: brightness(100%);
    /* Restaura la imagen a su brillo original */
}

/***boton del slider */

/* Opcional: Cambiar el color del ícono si es necesario */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    margin: 20px;
    padding: 30px;
    /* background-color: rgba(0, 0, 0, 0.5); */
    background-color: #0f47ad;
    border-radius: 20px;
    /* Fondo negro semitransparente para el ícono */
}

/** CARGANDO **/
/* Estilo para la pantalla de carga */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(210, 69%, 14%, 0.9);
    /* Fondo oscuro con opacidad */
    color: white;
    /* Color del texto */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    /* Asegura que la pantalla de carga esté encima del contenido */
}

/* Estilo para el texto de carga */
.loader p {
    font-size: 1.5em;
    margin: 0;
}

/***fondo estadistica */
.gradient-background2 {
    /* margin: 100px 0px; */
    width: 100%;
    min-height: 350px;
    /* Ajusta la altura según tus necesidades */
    background:
        /* Imagen de fondo */
        url('../../assets/img/index/fondo-estadistica.jpg') no-repeat center center/cover,
        /* Color azul semitransparente */
        rgba(0, 0, 255, 0.5);
    /* Otros estilos opcionales */

    background-attachment: fixed;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;

}

.gradient-background {
    margin: 70px 0px;
    width: 100%;
    min-height: 300px;
    /* Ajusta la altura según tus necesidades */
    background-color: #0f47ad;
    background-attachment: fixed;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.titulo-contador {
    font-weight: bold;
    font-size: 2rem;
}

.blinking-border {

    border-bottom: 2px solid transparent;
    /* Inicialmente sin borde */
    animation: blink 3s infinite;
    /* Animación de parpadeo */
}

@keyframes blink {
    0% {
        border-color: transparent;
        /* Sin borde */
    }

    50% {
        border-color: greenyellow;
        /* Color del borde (puedes cambiar el color) 007bff */
    }

    100% {
        border-color: transparent;
        /* Sin borde */
    }
}


#scrollUp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    /* Inicialmente oculto */
    z-index: 2147483647;
    background-color: #0f47ad;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
    border: 1px solid white;
}

/* Estilo para los bordes y colores de las pestañas (tabs) */
.nav-tabs .nav-link {
    border: 1px solid #007bff;
    /* Borde de las pestañas */
    border-radius: 5px;
    /* Bordes redondeados en la parte superior */
    margin-right: 5px;
    /* Espaciado entre pestañas */
    color: #007bff;
    /* Color del texto de las pestañas */
    background-color: #f8f9fa;
    /* Color de fondo de las pestañas */
    margin-bottom: 15px;
}

.nav-tabs {
    /* padding-bottom: 15px; */
}

/* Estilo para la pestaña activa */
.nav-tabs .nav-link.active {
    background-color: #0f47ad;
    /* Color de fondo de la pestaña activa */
    color: white;
    /* Color del texto de la pestaña activa */
}

/* Estilo para el contenido de las pestañas */
.tab-content {
    /* border: 1px solid #0f47ad;
            border-top: none; 
            padding: 15px; 
            border-radius: 0 5px 5px 5px;  */
    padding-top: 20px;
    margin-top: 10px;
}

.text-justify {
    text-align: justify;
}

h3 .border-titulo:before {

    content: "";
    height: 3px;
    width: 100px;
    position: absolute;
    left: 0;
    bottom: -15px;
    z-index: 1;
    background: #8b0000;
}

.p-100 {
    padding: 100px 0px 100px 0
}

footer {
    background-color: #0f47ad;
    /* margin-top: 50px; */
    /* border-top: 5px solid #0358ad; */
}

.div-box {
    margin-top: 20px;
    box-shadow: 0px 10px 13px -5px rgba(0, 0, 0, 0.63)
}


/* efecto para la imagen */
.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    display: block;
    width: 100%;
    max-width: 100%;
    /* Asegura que la imagen llene todo el contenedor */
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    /* Comienza fuera del borde izquierdo */
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    animation: lightSweep 1s ease-in-out 1s, lightSweep 3s ease-in-out 7s infinite;
    /* Barrido de 3s seguido de una pausa de 10s después de la primera ejecución */
}

@keyframes lightSweep {
    0% {
        left: -100%;
        /* Comienza fuera de la imagen */
    }

    100% {
        left: 100%;
        /* Termina fuera del borde derecho */
    }
}

/* Estilos básicos de la imagen */
.hover-image {
    width: 100%;
    /* Asegura que la imagen ocupe todo el ancho del contenedor */
    transition: transform 0.5s ease;
    /* Transición suave para la imagen */
}

/* Añadir animación de Animate.css al pasar el cursor */
.image-container:hover .hover-image {
    animation: bounceIn 1s;
    /* Cambia "bounceIn" a cualquier animación de Animate.css que prefieras */
}


/* estilos del nav */



.navbar-nav .nav-link {
    text-decoration: none;
    transition: border-bottom 0.5s ease, color 0.3s ease;
    /* Transición suave solo para el borde superior y color del texto */

    padding: 10px 15px;
    /* Relleno interno */

    color: white;
    /* El texto es blanco por defecto */
    border-bottom: 3px solid white;
    /* Borde inicial invisible */
}

/* Añadir borde superior al pasar el cursor */
.navbar-nav .nav-link:hover {
    border-bottom: 3px solid #0D6EFD;
    /* Borde superior en color azul oscuro (#0f47ad) */
    color: white;
    /* Mantener el color del texto en blanco */
}

/* para el alto del modal */
.modal-altura-custom {
    height: 90vh;
    /* Ajusta la altura del modal a 90% del viewport */
    max-height: 90vh;
    /* Asegura que no sobrepase el 90% del viewport */
    overflow-y: auto;
    /* Habilita el scroll si el contenido es muy largo */
}


/* estilos para el logo */

.bg-verde {
    background-color: #28A745;
}

/* Personalización de los indicadores */
.carousel-indicators [data-bs-target] {
    background-color: #0D6EFD;
    /* Color de fondo de los indicadores */
    border-radius: 50%;
    /* Forma circular */
    width: 12px;
    /* Ancho */
    height: 12px;
    /* Alto */
}

.carousel-indicators .active {
    background-color: #f8f9fa;
    /* Color del indicador activo */
}

.carousel-indicators [data-bs-target]:not(.active):hover {
    background-color: #0056b3;
    /* Color al pasar el mouse */
}

.carousel-caption {
    background-color: hsla(210, 100%, 5%, 0.7);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    #myCarousel .carousel-inner {
        min-height: 400px;
        /* Altura mínima para el carrusel en dispositivos móviles */
        overflow: hidden;
        /* Evita que el contenido adicional se desborde */
    }

    #myCarousel .carousel-item img {
        width: 100%;
        /* Asegúrate de que la imagen ocupe el ancho completo */
        height: 100%;
        /* Asegúrate de que la imagen ocupe la altura completa */
        object-fit: cover;
        /* Mantiene la proporción de la imagen y cubre el contenedor */
    }

}

/* Estilos básicos del div */
.shining-div {
    position: relative;
    /* Necesario para que los pseudo-elementos se posicionen correctamente */

    overflow: hidden;
    /* Para evitar que los destellos se salgan del div */
}

/* Pseudo-elemento para crear los destellos */
.shining-div::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 20%, transparent 70%);
    animation: shine 3s infinite linear;
    /* Animación de movimiento continuo */
    opacity: 0.6;
    /* Nivel de transparencia de los destellos */
}

/* Animación de los destellos en movimiento */
@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }

    100% {
        transform: translateX(100%) translateY(100%);
    }
}


/* Estilos para el cargando que cubre toda la pantalla */
/* #cargando {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* cargando dentro del acordion docente */
#cargando {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilos del spinner (puedes personalizar o usar un GIF) */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #5156be;
    animation: spin 1s infinite linear;
}

/* Animación para el spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




/* ANIMACIÓN Y EFECTOS DE ONDAS */
/* Contenedor de burbujas dentro del carrusel */
.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
}

/* Estilos para las burbujas */
.bubble-container .bubble {
    position: absolute;
    bottom: -150px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0.7;
    animation: float-up 10s infinite ease-in-out;
}

/* Varias clases de burbujas con diferentes tamaños y colores suaves */
.bubble-container .bubble.small {
    width: 20px;
    height: 20px;
    animation-duration: 12s;
}

.bubble-container .bubble.large {
    width: 60px;
    height: 60px;
    animation-duration: 8s;
}

/* Colores suaves (pastel) para las burbujas */
.bubble-container .bubble:nth-child(1) {
    background-color: hsla(200, 100%, 80%, 0.6);
    /* Azul suave */
}

.bubble-container .bubble:nth-child(2) {
    background-color: hsla(150, 100%, 85%, 0.6);
    /* Verde suave */
}

.bubble-container .bubble:nth-child(3) {
    background-color: hsla(50, 100%, 90%, 0.6);
    /* Amarillo suave */
}

.bubble-container .bubble:nth-child(4) {
    background-color: hsla(300, 100%, 90%, 0.6);
    /* Morado suave */
}

.bubble-container .bubble:nth-child(5) {
    background-color: hsla(0, 100%, 85%, 0.6);
    /* Rojo suave */
}

.bubble-container .bubble:nth-child(6) {
    background-color: hsla(30, 100%, 90%, 0.6);
    /* Naranja suave */
}

.bubble-container .bubble:nth-child(7) {
    background-color: hsla(180, 100%, 85%, 0.6);
    /* Cian suave */
}

.bubble-container .bubble:nth-child(8) {
    background-color: hsla(120, 100%, 85%, 0.6);
    /* Verde claro */
}

.bubble-container .bubble:nth-child(9) {
    background-color: hsla(270, 100%, 90%, 0.6);
    /* Violeta */
}

.bubble-container .bubble:nth-child(10) {
    background-color: hsla(210, 100%, 85%, 0.6);
    /* Azul pastel */
}

/* Animación de las burbujas */
@keyframes float-up {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-300px) scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: translateY(-600px) scale(1);
        opacity: 0;
    }
}

/* Distribuir las burbujas a lo largo del carrusel */
.bubble-container .bubble:nth-child(1) {
    left: 10%;
}

.bubble-container .bubble:nth-child(2) {
    left: 20%;
}

.bubble-container .bubble:nth-child(3) {
    left: 30%;
}

.bubble-container .bubble:nth-child(4) {
    left: 40%;
}

.bubble-container .bubble:nth-child(5) {
    left: 50%;
}

.bubble-container .bubble:nth-child(6) {
    left: 60%;
}

.bubble-container .bubble:nth-child(7) {
    left: 70%;
}

.bubble-container .bubble:nth-child(8) {
    left: 80%;
}

.bubble-container .bubble:nth-child(9) {
    left: 90%;
}

.bubble-container .bubble:nth-child(10) {
    left: 50%;
}


/* OTRAS ANIMACIONES ADICIONALES */
/* Motivación formando emprendedores*/
.wave-container {
    background-color: #003366;
    color: white;
    position: relative;
    background-image: url('/assets/img/index/opcion2.jpg');

    background-size: cover;
    /* URL de la imagen de fondo */
    background-size: cover;
    /* Hace que la imagen cubra todo el fondo */
    background-position: center;
    /* Centra la imagen */
    height: 650px;
    /* Ajusta la altura según tu diseño */
    overflow: hidden;
    /* Evita que el SVG se salga del contenedor */
}

.content {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    /* Centra horizontalmente */
    align-items: center;
    /* Centra verticalmente */
    /* Altura completa de la ventana */
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
}

/* OTRO ESTILO */
#publicidadLista .owl-carousel .item {
    max-width: 100%;
    /* Evitar que los elementos se desborden */
    text-align: center;
    /* Centrar el contenido si es necesario */
}

#publicidadLista img {
    width: 100%;
    /* Hacer que las imágenes ocupen todo el ancho del contenedor */
    height: auto;
    /* Mantener la proporción de las imágenes */
}

/* ESTO ES DEL TITULO DE ADMINISTRACIÓN DE REDES */
/* .de-notievento {
  font-size: clamp(14px, 2vw, 24px);

  white-space: nowrap;

} */