
  .headerSlide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-color:grey;
  }

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

.headerSlide.active {
    opacity: 1;
  }


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

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


