.eventosTitles {
  all: unset;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 38px; /*px*/
  line-height: 47px; /* ej. 1.5, 20px, auto*/
  letter-spacing: 0.01em; /*ej. 2px o 0.1 em*/
  max-width: 468px;
  color: white;
} 

.eventos {
  display: flex;
  padding: 75px 160px 106px 160px;
  background-color: black;
  /*background-image:url("./imgs_innovacion/head.png");*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 646px;
  align-items: center;
  position: relative;
}

.eventos h1 {
  position: relative;
  z-index: 4;
}

.eventosSlide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  /*background-color: orange;*/
}

.eventosSlide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eventosSlide-texto {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 5px;
  border-radius: 5px;
}

.eventosSlide.active {
  opacity: 1;
}

.eventosBotones {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.eventosBoton {
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  margin: 40px;
}

@media(max-width: 850px) {
  .eventos {
    padding: 40px;
    height: 570px;
  }
  .eventosBotones {
    top: 85%;
    justify-content: center;
  }
}
