.header-event {
    background: url(../imgs/eventos.jpg) no-repeat center center fixed;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto;
    height: 285px;              /*   height: 496px;  */
  }
  
  .title-events{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    line-height: 45px;
    font-size: 38px;
    letter-spacing: -0.2px;
    color: #05347f;
  }

  .info-background{
    background-image: url(../imgs/info-background.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto;
}

.info-background_2{
  background-image: url(../imgs/info-background.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
  height: 400px;
}

.boton-event {
  background-color: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease !important; 
  padding: 20px 20px 20px 20px;
  border-width: 2px;
  border-color: #155a92;
  border-style: solid;
  color: white;
}

.boton-event:hover{
  color:white;
  background-color: #cb4f1d;
  border-color: #cb4f1d;
  transition: background-color 0.5s ease; 
  transition: border-color 0.5s ease; 
}

/* CALENDARIO DE EVENTOS */

.header-calendar {
  background-image: url(../imgs/calendario.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
  margin-bottom: -665px;
  height: 1000px;
}

.overlay-calendar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 80%);/* Color de fondo naranja con opacidad */
  opacity: 0; /* Inicialmente oculto */
  transition: opacity 0.3s ease; /* Transición para la opacidad */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.image-container{
  position: relative;
  cursor: pointer; /* Cambia el cursor al pasar por encima */
}

.image-container:hover .overlay-calendar {
  opacity: 1; /* Muestra el overlay al pasar el mouse por encima */
}

.icon-overlay{
  font-family: 'FontAwesome';
  width: 43px;
  height: 43px;
  font-size: 18px;
  line-height: 44px;
  text-align: center;
  color: #fff;
  display: inline-block;
  border-radius: 50%;
  background-color: #05347f;
  z-index: 11;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}