body {
    margin: 0;
    padding: 0;
    width: 100%;
    color: #afafaf;
    font: normal 12px/1.8em Arial, Helvetica, sans-serif;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(0, 0, 0, 0.8);
}

/*CONTENEDOR PRINSIPAL*/
.background-container {
    position: relative;
    width: 100%;
    height: 85vh;
    background: url('img/frente bibliotecajms.jpg') center/cover no-repeat fixed;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('img/frente bibliotecajms.jpg') center/cover no-repeat fixed;
    background-position: center top;
}

.imgLogoBiblioteca {
    width: 25%;
    height: auto;
}
.animated-text {
    font-size: 3em;
    text-align: center;
    animation: fadeIn 3s ease-in-out  alternate;
}

.animated1-text {
    font-size: 2em;
    text-align: center;
    animation: fadeIn 3s ease-in-out  alternate;
    color: #76e7de;
    font-weight: bold;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.animated-text8 {
    font-size: 3em;
    text-align: center;
    animation: moveText 1s infinite alternate;
    color:  #76e7de;
    font-weight: bold; /* Puedes ajustar el valor según tus preferencias, por ejemplo: bold, bolder, 600, 700, etc. */
    border: none;
    background: none;
}

@keyframes moveText {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px); /* Ajusta según la distancia de movimiento */
    }
}

.container{
    border: 2px solid black;
    margin-bottom: 10px;
    padding-bottom: 20px;
    padding-top: 20px;
    background-color: #e5b48a;
}

#conteiner-login{
    height: 500px ;
}
.imgLogoBiblioteca{
    max-width: 100%;
    height: auto;
}

.informacion{
    text-align: center;
}
/* SECCION DE NOTICIAS */
.MuestraDeInformacion{
    border-radius: 1%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.06);
}
.tituloNoticia {
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    margin: 10px;
}

.noticia-texto {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 10px;
    padding-top: 20px;
    white-space: pre-wrap; /* Preserva los saltos de línea y espacios */
    text-align: justify; /* Alinea el texto de manera justificada */
}
.leer-mas {
    color: black; /* Color azul */
    text-decoration: none; /* Sin subrayado */
    cursor: pointer; /* Cursor de puntero */
}
.leer-mas:hover {
    text-decoration: underline; /* Subrayado al pasar el ratón por encima */
}
.texto-completo {
    white-space: pre-wrap; /* Preserva los saltos de línea y espacios */
    text-align: justify; /* Alinea el texto de manera justificada */
}


.fecha-publicacion {
    text-align: right;
    margin: 10px;
}

.d-grid.gap-2.d-md-block {
    margin-bottom: 50px; /* Ajusta el valor según sea necesario */
}

.filaDerecha{
    border-left: 1px solid black;
    padding-left: 10px;
}

.panelAdm{
    text-align: center;
}
.cargaPublicacion {
    text-align: center;
}

.formPublicacion {
    border: 1px solid activeborder;
    width: 70%;
    padding-bottom: 10px;
    padding-top: 10px;
    margin: auto;
    background-image: url(./img/hojaRayada.jpg); /* Añadido para establecer la imagen de fondo */
    background-size: cover; /* Añadido para asegurarse de que la imagen cubra todo el fondo */
}


.imagenPreviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.tarjetImg {
    width: 150px;
    height: auto;
    padding: 10px;
    background-color: black;
    margin: 5px;
    cursor: pointer;
    flex: 0 0 calc(25% - 20px); /* 25% - (márgenes a ambos lados) */
}

.secNotImg {
    width: 100%;
    height: auto;
    padding: 5px;
}

.textoImg {
    color: white;
    font-size: 10px;
    margin: 0;
}

.tarjetImg.seleccionada {
    border: 2px solid #007bff;
}
.tarjetImg {
    position: relative;
}

.seleccionarImagen {
    position: absolute;
    top: 5px;
    right: 5px; /* Ajusta la posición desde la derecha */
    width: 20px; /* Ajusta el ancho del checkbox */
    height: 20px; /* Ajusta la altura del checkbox */
}
.formDeImg {
    max-width: 400px;
    margin: 0 auto;
    background-color:  #363942;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.formulario {
    display: grid;
    gap: 10px;
}

.campoFormulario {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
}

input[type="file"],
input[type="text"],
input[type="date"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;

}

input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    width: 100%;

}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.form-label{
    color: black;
    opacity: 0.8;
}

.botonEliminar,
.botonPublicar,
.botonConfirmar {
    display: none;
}

.imagenSeleccionable {
    display: inline-block;
    margin: 10px;
    width: 150px; /* Ajusta el ancho según lo necesites */
    position: relative; /* Establece el posicionamiento relativo para el contenedor */
}

.imagenSeleccionable img {
    width: 100%; /* Haz que la imagen ocupe el 100% del contenedor */
    height: auto; /* Mantén la proporción de aspecto */
    border: 1px solid #ccc; /* Añade un borde a las imágenes si lo deseas */
}

/* Añade un poco de espacio alrededor del checkbox */
.imagenSeleccionable input[type="checkbox"] {
    position: absolute; /* Establece el posicionamiento absoluto */
    top: 0; /* Coloca el checkbox en la esquina superior */
    right: 0; /* Coloca el checkbox en la esquina derecha */
}
.logoRedSocial{
    width: 5%;
    height: 5%;
    min-width: 40px;
    min-height: 40px;
    margin:10px;
}
.rSocial {
    margin-top: 50px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.redSocial{
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    width: 200px;
}

.espacioDeBotones {
    margin: 20px;
    opacity:  initial ;
}
/*formulario de pubicacion*/
.form-publicacion {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 80%;
    margin: auto; /* Centrar en el eje horizontal */
}

.form-title {
    text-align: center;
    color: #333;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

.form-input{
    text-align-last: center;
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    margin-top: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.form-textarea {
    width: 100%;
    height: 400px;
    padding: 8px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-submit {
    background-color: #4caf50;
    color: white;
    cursor: pointer;
}

.form-submit:hover {
    background-color: #45a049;
}

/*imagen dentro del formulario */
.contenedorCuadricula {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.tarjetaImagen {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.tarjetaImagen img {
    max-width: 100%;
    height: auto;
}

/* contenedor de imagen de la noticia en el index*/
.contenedor-imagenes{
    border: solid #333;
    border-radius: 3%;
    padding: 10px;
    width: 90%;
    margin: 0 auto;
}


/* FORMULARIO DE COMENTARIO */
[id^="formulario_"] {
    position: relative;
}

.form-control {
    width: calc(100% - 10px);
    margin-bottom: 10px;
}

.enviarBtn {
    position: absolute;
    margin: 20px;
    bottom: 0px;
    right: 0;
}

/*COMENTARIO EN PANTALLA */
.comentario-container {
    width: 90%;
    margin-bottom: 5px; /* Ajusta el espacio entre comentarios */
    border: 1px solid #ddd;
    border-radius: 15px;
    background-color: rgba(54, 57, 66, 0.8); /* Color con opacidad */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex; /* Utilizar flexbox para organizar elementos en fila */
    align-items: center; /* Centrar verticalmente los elementos en el contenedor */
    padding: 3px;
}

.comentario-nombre {
    text-align: left;
    font-size: 16px;
    color: #007bff;
    text-decoration: underline;
}

.nombre-con-dos-puntos {
    display: inline-block;
}

.comentario-mensaje {
    color: #ccc;
    text-align: left;
    margin-left: 15px; /* Ajuste para el espacio entre el nombre y el mensaje */
    font-size: 14px;
}

.cerrarBtnContainer {
    float: right;
}
.numeroConetador {
    font-size: 13px;
    color: red;
    position: relative;
    display: inline-flex;
    align-items: center;
    left: -2px;
    top: -7px;
}

/*BOTON EN COMENTARIO*/
.respuestaComentario {
    margin-left: auto; /* Empujar el botón hacia la derecha */
}
/*FORMUALARIO COMENTARIO */
.fromularioComentario{
    display: none;
    margin-top: 10px;
    width: 60%;
    border: 1px solid  #333;
    border-radius: 5px;
    z-index: 2;
}

/*RESPUESTA EN PANTALLA */
.respuesta-container {
    width: 90%;
    margin-bottom: 5px; /* Ajusta el espacio entre comentarios */
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: rgba(218, 215, 206, 0.8); /* Color con opacidad */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex; /* Utilizar flexbox para organizar elementos en fila */
    align-items: center; /* Centrar verticalmente los elementos en el contenedor */
    padding: 3px;
    margin-left: auto; /* Desplazar el contenedor hacia la derecha */
}

.respuesta-nombre {
    text-align: left;
    font-size: 16px;
    color:  goldenrod;
    text-decoration: underline;
}

.nombre-con-dos-puntos {
    display: inline-block;
}

.respuesta-mensaje {
    color:  #333;
    text-align: left;
    margin-left: 15px; /* Ajuste para el espacio entre el nombre y el mensaje */
    font-size: 14px;
}
.botonMostrarRespuestas{
    float:  right;
    border: none;
    background: none;
}

/*FORMUALARIO RESPUESTA */
.fromularioRespuesta{
    display: none;
    margin-top: 10px;
    width: 60%;
    border: 1px solid  #333;
    border-radius: 5px;
    z-index: 2;
}

.separacionDeNoticias{
    margin-top: 10px;
}



/*BOTON FLOTANTE PARA IR AL PRINCIPIO DE LA PAGINA*/
#floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}




/* ESTILO DE IMAGEN DE PUBLICIDAD */

#carouselExampleSlidesOnly {
}


.carousel-container {
    background-color: rgba(54, 57, 66, 0.8);
    padding: 15px;
}

.carousel-image {

    width: 100%;
    height: 150px;
    object-fit: contain;
}

/* BOTON DE COMPARTIR */
.BotonesDeCompartir{
    border: 2px solid #555;
    border-radius: 5px;
    padding: 20px;
    background-color: #ddd;
    /*  background-color:rgba(202, 88, 234, 0.27);*/
    /*  backdrop-filter: blur(4px);*/
    display: none;
    z-index: 2;
}


.botonFace{
    border: none;
}

.botonWhat{
    border:none;
}

.content {
    margin-top: 200px;
    text-align: center;
}

/* Añade estilos para la barra fija */
.navbar {
    background-color: #333;
    color: white;
    padding: 10px 0;
    z-index: 1000;
}

.navbar.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
}

.navbar.transparent-bg {
    background-color: transparent;
    padding: 5px 0;
}

.bordeTarjeta{
    padding: 10px;
    border: 3px solid  #333;
    border-radius: 5px;
    background-color: rgba(1, 163, 255, 0.15);
    backdrop-filter: blur(8px);
    margin-bottom: 10px;
}

.bordeTarjeta:hover{
    border: 6px solid  #333;

}

/*estilo de los perfiles profecionales */
.bloque-comision {
    position: relative;
    padding: 60px 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    overflow: hidden;
}

.bloque-comision {
  position: relative;
  padding: 20px 12px; 
  border-radius: 15px;
  margin-bottom: 40px;
  overflow: hidden;
  background: linear-gradient(to bottom, #4caf50 , #ffffff); 
}

.bloque-comision > * {
  position: relative;
  z-index: 1;
}

/* Estilo del título */
.bloque-comision h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #004466;
}

/* Separador */
.bloque-comision hr {
  border-top: 1px solid #ccc;
  margin: 30px 0;
}


.perfiles{
    border-radius: 50%;
    border: 5px solid #ccc;

}
.cargo {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.perfilProfecional{
    transition: background 0.5s ease-in-out; 

}

.perfilProfecional:hover{
    background: rgba(245, 40, 145, 0.1);
    border: solid 5px  #ff6666;
    border-radius: 5px;
    padding: 10px;
    transition: background 0.5s ease-in-out; /* Ajusta la duración según tus necesidades */
}
/*FORMULARIO DE EDITAR NOTICIAS*/
/* Estilos para el modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

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

.resenia{
    font-size: 18px;
}
.vertical-line {
    border-left: 1px solid #ccc; /* Cambia el color y el grosor según tus preferencias */
    height: 100%;
}

.integrantesBibli{
    text-decoration: none;
    color: #333;
}
.integrantesBibli:hover{
    color: white;
    font-family:  cursive;
    font-size: 16px;
    border-radius: 5px;
    border: 3px solid rgba(0, 0, 0, 0.8);
    background-color: rgba(0, 0, 0, 0.5);
}
.cargo{
    width: 40%;
}
.nombre{
    width: 60%;
    text-decoration: none;
    color: #333;
}

.tituloFor{
    text-align: center;
}

.formulario-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

.formulario-section form {
    background-color: rgba(0, 0, 0, 0.3); /* Fondo negro semi-transparente */
    color: #fff; /* Texto en blanco para mayor contraste */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.formulario-section label {
    text-align: center;
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #ddd;
}

.formulario-section input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.formulario-section button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.formulario-section button:hover {
    background-color: #0056b3;
}


/* PIE DE PAGINA */
.pieDePagina {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.logosRedScilDesarrollador {
    display: flex;
    align-items: center;
    gap: 10px; 
}

p {
    margin: 0;
}

.redScilDesarrollador1 {
    color: #555;
    text-decoration: none;
}
.redScilDesarrollador1 {
    color: #555;
}

.redScilDesarrollador1:hover {
    color: #fff;
}

.redScilDesarrollador {
    color: #555;
}

.redScilDesarrollador:hover {
    color: #fff;
}

#floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.imgSeccionAdm{
    width: 50%;
    align-items: center;
    margin: auto;
    margin-bottom: 20px;
}
.cardAdmTitle{
    color:  #333;
    text-decoration: none;
}
.cardAdmText{
    color:  #333;
    text-decoration: none;
}


/*ESTILO DEL BOTON DE MOSTRAR CONTRASEÑA*/
.custom-input-group {
    position: relative;
}

.custom-input-group input {
    border-radius: 4px;
    padding: 10px;
    width: calc(100% - 40px);
}

.custom-input-group button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
}

/* TABLA DE PUBLICACIONES */
.tablaDePublicaciones {
    border-collapse: collapse;
    width: 100%;
    border: 2px solid #ddd; /* Borde general de la tabla */
}

.tablaDePublicaciones th, .tablaDePublicaciones td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.imagenContainer img {
    border: 1px solid #ddd; 
    margin: 2px; 
}

.btn {
    margin: 2px; 
}

/* Estilos para el modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.campEditarImgPublicacion{
    border: 3px solid #888;
    border-radius: 1%;
    width: 90%;
    height: auto;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* FORMULAIOE DE ADMINISTRADOR */
.formularioGuardar{
}
.cerrarForm{
    float: right;
    margin-right: 10px;
    text-decoration: none;
    border: solid 2px #363942;
    padding: 1px 6px;
    border-radius: 5px;
    color:  #333;
}

.cerrarForm:hover{
    background-color: red;
    opacity: 0.4;
    color: white
}



.show-password-btn {
    background: none;
    transform: translateY(-10%);
    margin: 0 0 ;
    padding:  0px  0px;
}

.carousel-inner {
    height: 300px;
    overflow: hidden;
}

.carousel-item img{
    margin: auto;
    width: 90%;
    height: 245px;
    object-fit: cover;
}


/*TABLA DE COTIZACION DE MONEDAS*/
.informacionDeMoneda {
    background: linear-gradient(145deg, #1e1e2f, #2c2c3f);
    color: #e0e0e0;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    font-family: 'Segoe UI', sans-serif;
    max-width: 600px;
    margin: 30px auto;
    border: 1px solid #444;
}

/* Título */
.informacionDeMoneda h5 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

/* Fecha */
#fechaActualizacion {
    text-align: right;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
}

/* Conversor */
.conversor {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

.conversor label {
    font-weight: bold;
    color: #ccc;
    align-self: flex-start;
}

.conversor input,
.conversor select {
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #666;
    background-color: #2a2a3d;
    color: #fff;
    font-size: 16px;
    width: 100%;
    max-width: 200px;
}

.conversor button {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
    color: #1e1e2f;
    background-color: #00ffff;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.conversor button:hover {
    background-color: #00dddd;
    transform: scale(1.05);
}

/* Resultado */
#resultado {
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #00ffcc;
    margin-top: 10px;
}

/*RESENIA ESTILO TEXTO CORTO A LARGO*/
.resenia-container {
  position: relative;
}

.resenia-text {
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.5s ease;
  position: relative;
}

/* Degradado inferior */
.resenia-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgb(229, 180, 138));
  pointer-events: none;
}

/* Al expandir, damos altura suficiente para mostrar todo */
.resenia-text.expanded {
  max-height: 2000px; /* o podés usar none si preferís sin límite */
}

/* Oculta el degradado al expandir */
.resenia-text.expanded::after {
  display: none;
}

#leerMasBtn {
  background: none;
  border: none;
  color: #8B4513; /* tono fuerte tipo marrón oscuro */
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  margin-top: 10px;
}

#leerMasBtn:hover {
  color: #5C3317; /* más intenso al pasar el mouse */
  text-decoration: underline;
}
/*ESTILO MIDAL*/
.modal-posicion-superior {
  margin-top: 30px;
}


.boton-imagen img {
  width: 100%; /* Ajustá el tamaño según tu diseño */
  height: auto;
  border: 2px solid yellow;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.boton-imagen img:hover {
  transform: scale(1.05);
}


/* ESTILO RESOLUCION MENOR A 768px*/
@media(max-width:768px){
    .fechaHoy{
        font-size: 10px;
    }

    .imgLogoBiblioteca {
        width: 33%;
        height: auto;
    }

    .animated-text {
        font-size: 2em;
        text-align: center;
        animation: 3s ease-in-out 0s 1 alternate none running fadeIn;
    }

    .animated1-text {
        font-size: 1.5em;
        text-align: center;
        animation: fadeIn 3s
            ease-in-out alternate;
        color: #76e7de;
        font-weight: bold;
    }

    .d-grid.gap-2.d-md-block {
        margin-bottom: 15px; /* Ajusta el valor según sea necesario */
    }
    .col2 tr th {
        display: none; /* Oculta los elementos th en pantallas de hasta 780px */
    }
}
@media(max-width:412px){

    #conteiner-login{
        height: 650px;
    }
    .col2 tr th {
        display: none; /* Oculta los elementos th en pantallas de hasta 780px */
    }
    .vertical-line{
        display: none;
    }
}
@media(max-width:375px){
    #conteiner-login{
        height: 500px;
    }
    .col2 tr th{
        display: none; /* Oculta los elementos th en pantallas de hasta 780px */
    }
    .vertical-line{
        display: none;
    }
}
@media(max-width:360px){
    #conteiner-login{
        height: 450px;
    }
    .col2 tr th {
        display: none; /* Oculta los elementos th en pantallas de hasta 780px */
    }
    .vertical-line{
        display: none;
    }
}







.container {
    position: relative; /* Necesario para el spinner */
    min-height: 84px;

}

#precarga {
    position: absolute; /* Spinner fuera del flujo de las columnas */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8); /* Fondo semitransparente */
    z-index: 1000; /* Asegura que el spinner esté encima */
}

contenidodenoticia {
    display: none; /* Inicialmente oculto, hasta que se cargue */
}

.d-none {
    display: none !important; /* Para ocultar el spinner cuando termine de cargar */
}

.row {
    display: flex; /* Asegura que las columnas estén alineadas en una fila */
}





.contenedor-imagenes {
    max-width: 800px; /* Ajusta el ancho máximo */
}

.imagen-grande {
    margin-bottom: 20px; /* Agrega margen entre imagen grande y miniaturas */
}

.miniaturas-container {
    display: flex;               /* Flexbox para alinear las miniaturas en una fila */
    flex-wrap: wrap;             /* Permite que las miniaturas pasen a otra línea si es necesario */
    justify-content: space-between; /* Alinea las miniaturas uniformemente */
    gap: 0;                      /* Espacio entre las miniaturas, puedes ajustarlo si quieres un pequeño margen */
    background-color:  #555;
    opacity: 3;
}

.miniatura {
    flex: 1 1 calc(33.33%);      /* Cada miniatura ocupa 1/3 del ancho del contenedor (3 por fila) */
    max-width: calc(33.33%);     /* Limita el ancho máximo de cada miniatura a 33.33% */
    margin: 0;                   /* Elimina márgenes entre miniaturas */
    padding: 0;                  /* Sin padding */
}

.miniatura img {
    width: 100%;                 /* La imagen ocupa el 100% del ancho de la miniatura */
    height: auto;                /* Mantiene la proporción de la imagen */
    object-fit: cover;           /* Asegura que la imagen cubra completamente el contenedor de miniatura */
}

/* Estilo para el contenedor de las imágenes */
.contenedorDeImgDeQuienesSomos {
    display: flex;
    justify-content: space-between; /* Distribuye el espacio entre las imágenes */
    align-items: center;
    width: 100%; /* Asegura que ocupe el 100% del ancho de la columna */
    flex-wrap: nowrap; /* Mantiene las imágenes en una fila */
}

/* Estilo para las imágenes */
.contenedorDeImgDeQuienesSomos img {
    width: 48%; /* Cada imagen ocupa el 48% del contenedor */
    height: auto; /* Mantiene la proporción de las imágenes */
    max-height: 200px; /* Define una altura máxima */
    object-fit: cover; /* Ajusta el contenido sin distorsionar */
    margin-bottom: 20px;
}

/* Media query para pantallas pequeñas */
@media (max-width: 600px) {
    .contenedorDeImgDeQuienesSomos img {
        max-height: 120px; /* Ajusta la altura máxima en dispositivos pequeños */
    }
}

/*estilo de la publicidad estaticas*/
.promo {
    width: 100%; /* Asegura que el contenedor ocupe el 100% del ancho disponible */
    overflow: hidden; /* Esconde cualquier contenido que sobresalga */
}

.promo img {
    width: 100%; /* Asegura que la imagen ocupe el 100% del ancho del contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    display: block; /* Elimina el espacio debajo de la imagen en algunos navegadores */
}

.promo1 {
    height: 210px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo1 img {
    height: 200px;
    width: 200px;
}
