@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

.modal-backdrop.fade.show {
  z-index: -1;
}

.containerEventosGrid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* 4 columnas del mismo tamaño */
  grid-auto-rows: 400px;
  /* Altura automática para las filas */
  gap: 20px;
  padding: 10px;
}

/* .containerEventosGrid br {
  display: none;
} */

.containerEventosGrid .descripcionPagina br {
  display: initial !important;
}

/* .containerEventosGrid p:empty {
  display: none;
} */

.containerEventosGrid .descripcionPagina p:empty {
  display: initial !important;
}

.containerEventosGrid .eventoLaNucia {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.containerEventosGrid .eventoLaNucia:hover {
  transform: scale(1.05);
  cursor: default;
}

.containerEventosGrid .eventoLaNucia .imagenEventoLaNucia, .containerEventosGrid .eventoLaNucia .imagenEventoLaNuciaSinHover{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(211, 211, 211, 0.9);
}

.containerEventosGrid .eventoLaNucia .infoEventoLaNucia {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(211, 211, 211, 0.9);
  /* Color gris claro con transparencia */
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  text-align: center;
  padding: 10px;
  font-weight: 600;
}

.containerEventosGrid .eventoLaNucia:hover .infoEventoLaNucia {
  opacity: 1;
}

.containerEventosGrid .infoEventoLaNucia h3 {
  font-weight: 600;
  color: #001e7b;
  font-size: 20px;
}

.containerEventosGrid .eventoLaNucia:hover .imagenEventoLaNucia {
  opacity: 0.3;
}

.containerEventosGrid .separadorInfoEventoTop {
  border-top: 1px solid black;
}


.containerEventosGrid .separadorInfoEventoBottom {
  border-bottom: 1px solid black;
}


.containerEventosGrid .linkEventoEventoLaNucia {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #001e7b;
  color: white;
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border: none;
  padding-bottom: 4px;
}

.containerEventosGrid .contenedorInfoModal{
  width: 50%;
  height: 100%;
}

.containerEventosGrid .tituloModal {
  color: #001e7b;
  font-weight: 600;
  font-size: 25px;
}


.containerEventosGrid .h-10 {
  height: 10%;
}

.containerEventosGrid .h-15 {
  height: 15%;
}

.containerEventosGrid .h-20 {
  height: 20%;
}

.containerEventosGrid .h-30 {
  height: 30%;
}

.containerEventosGrid .h-35 {
  height: 35%;
}

.containerEventosGrid .h-40 {
  height: 40%;
}

.containerEventosGrid .h-45 {
  height: 45%;
}

.containerEventosGrid .h-55 {
  height: 55%;
}

.containerEventosGrid .h-60 {
  height: 60%;
}

.containerEventosGrid .h-70 {
  height: 70%;
}

.containerEventosGrid .h-80 {
  height: 80%;
}

.containerEventosGrid .pointer {
  cursor: pointer;
}


.containerEventosGrid .fw-500 {
  font-weight: 500;
}


.containerEventosGrid .fw-600 {
  font-weight: 600;
}

.containerEventosGrid .overflow-y-auto {
  overflow-y: auto;
}


.containerEventosGrid .imagenEventoLaNuciaMovil{
  display: none;
}
.containerEventosGrid .hijosW-100 > * {
  width: 100%;
  word-wrap: break-word;
}

.containerEventosGrid .contenidoModal{
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
}

/*ABAJO NOTICIA SUELTA*/

.containerEvento {
  width: 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  color: #001e7b;
  font-family: "Poppins", sans-serif;
}

/* .containerEvento br {
  display: none;
}

.containerEvento p:empty {
  display: none !important;
} */



.containerEvento .imageBanner, .containerEvento .videoBanner {
  height: auto;
  max-height: 600px;
  object-fit: contain;
}



.containerEvento .contenidoEvento {
  max-width: 1000px;
  margin: auto;
  display: flex;
  margin-top: 20px;
}

.bgBlack{
  background-color:black;
}
.text-center{
  text-align: center;
}

.contenidoSocialNetwork {
  width: 100%;
  height: 65px;
  /* border-top: 1px solid #001e7b;
  border-bottom: 1px solid #001e7b; */
  border-top: 1px solid rgb(102, 102, 102);
  border-bottom: 1px solid rgb(102, 102, 102);
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.contenidoSocialNetwork a, .contenidoSocialNetwork i {
  font-size: 25px;
  text-decoration: none;
}
.contenidoSocialNetwork a{
  color:inherit;
}

.containerEvento .contenidoEvento > div:nth-child(1) {
  flex: 5;
}

.containerEvento .contenidoEvento > div:nth-child(2) {
  flex: 2;
}

.containerEvento h1 {
  font-size: 2.5rem;
  color: rgb(0, 30, 123);
}

.imageArchivo {
  width: 100%;
  height: auto;
  margin-top: 10px;
}

.containerEvento .w-80 {
  width: 80%;
}

.containerEvento .w-20 {
  width: 20%;
}

.containerEvento .px-10 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.containerEvento .max-w-1000px {
  max-width: 1000px;
}

.tituloPagina {
  font-weight: 600;
  margin-bottom:0px;
  padding-bottom: 0px;
}

.colorGrisContenido {
  color: rgb(102, 102, 102) !important;
}

.colorGrisContenido a {
  color: rgb(0, 30, 123);
}


@media (max-width: 979px) {
  .containerEvento .contenidoEvento{
    flex-direction: column;
    padding: 0px 10px;
  }

  .tituloPagina {
    font-size: 24px !important;
  }

  .contenidoLetra{
    font-size: 14px;
  }
}


@media (max-width: 980px) {
  .paddingMovil{
    padding: 0px 20px !important;
  }
  .containerEventosGrid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-auto-rows: auto;
      min-width: auto;
  }

  .containerEventosGrid .eventoModal {
      flex-direction: column;
  }
  
  .containerEventosGrid .infoEventoLaNucia, .containerEventosGrid .imagenEventoLaNucia, .containerEventosGrid .imagenEventoLaNuciaSinHover{
      display: none !important;
  }

  .containerEventosGrid .imagenEventoLaNuciaMovil{
      width: 100%;
      display: block !important;
      border-radius: 10px;
  }

  .containerEventosGrid .contenedorInfoModal{
      width: 100% !important;
  }

  .containerEventosGrid .linkEventoEventoLaNucia {
      padding-bottom: 4px;
  }

  .containerEventosGrid .tituloModal{
      text-align: center;
  }
}

.iframeTalleres{
  height: 600px;
  width: 100%;
}

.p-1vh{
  padding: 1vh 0px;
}

.Uc2NEf > .teQAzf {
  width: 1000px !important;
}
