body {
  color: #fff;
  background-color: #0d0d0d;
  margin: 0;
  font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

#vista-index {
  width: 100%;
  padding: 100px 0;

  & .galeria-card {
    cursor: pointer;
    background: #1a1a1a;
    border-radius: 15px;
    width: 80%;
    height: 70vh;
    margin: 0 auto 150px;
    position: relative;
    overflow: hidden;

    & img {
      object-fit: cover;
      opacity: .7;
      width: 100%;
      height: 100%;
      transition: transform .8s cubic-bezier(.2, 1, .3, 1);
    }

    & h2 {
      text-transform: uppercase;
      letter-spacing: 5px;
      text-align: center;
      z-index: 2;
      margin: 0;
      font-size: 3.5rem;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    &:hover img {
      opacity: 1;
      transform: scale(1.1);
    }
  }
}

#vista-galeria {
  width: 100%;
  height: 100vh;
  position: relative;

  & #galeria-titulo {
    text-align: center;
    z-index: 100;
    pointer-events: none;
    width: 100%;
    font-size: 2rem;
    position: fixed;
    top: 40px;
    left: 0;
  }

  & .horizontal-wrapper {
    will-change: transform;
    align-items: center;
    height: 100vh;
    display: flex;
  }

  & .pista {
    flex-wrap: nowrap;
    gap: 60px;
    height: 75vh;
    padding: 0 15vw;
    display: flex;

    & img {
      border-radius: 8px;
      width: auto;
      height: 100%;
      box-shadow: 0 20px 50px #00000080;
    }
  }
}

.auth-overlay {
  z-index: 1000;
  background: #000000f2;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;

  & .auth-box {
    text-align: center;
    background: #222;
    border-radius: 20px;
    padding: 40px;

    & input {
      border: none;
      border-radius: 5px;
      width: 100%;
      margin-bottom: 20px;
      padding: 12px;
      display: block;
    }

    & button {
      color: #000;
      cursor: pointer;
      background: #fff;
      border: none;
      padding: 10px 30px;
      font-weight: bold;
    }
  }
}
/*# sourceMappingURL=Galeria digital.360ff3db.css.map */
