.subtitulo-2 {
    text-align: center;
    font-weight: 300;
    color: var(--clr-neon);
    margin-bottom: 40px;
    font-size: 40px;
  
    padding: 0.25em 1em;
    border-radius: 0.25em;
  
    text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em currentColor;
  }

.contenedor-galeria {
    background-image: linear-gradient(to top, #00000077 0%, #0066c598 100%),
    url(../images/computer8.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    z-index: 1;
  }
  
  .img-galeria {
    object-fit: cover;
    width: 30%;
    display: block;
    margin-bottom: 15px;
    box-shadow: 0 0 16px var(--clr-neon);
    cursor: pointer;
    border-radius: 10px;
  
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -ms-transition-duration: 0.5s;
    margin: 0 2px 3px 0; /*Margen entre las imágenes*/
  }
  .img-galeria:hover {
    -webkit-transform: scale(
      1.1
    ); /*Webkit: Escala de aumento de la imagen 1.2x tamaño original*/
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    box-shadow: 0px 0px 30px var(--clr-neon); /*Sombra sobre toda la imagen*/
    -webkit-box-shadow: 0px 0px 30px var(--clr-neon);
    -moz-box-shadow: 0px 0px 30px var(--clr-neon);
    -ms-box-shadow: 0px 0px 30px var(--clr-neon);
    opacity: 1;
  }
  
  /* IMG LIGHT */
.imagen-light {
    position: fixed;
    background: #063c8d77;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(100%);
    transition: transform 0.2s ease-in-out;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    z-index: 2;
  }
  .show {
    transform: translate(0);
  } 
  
  .agregar-imagen {
    object-fit: cover;
    width: 68%;
    border-radius: 10px;
    transform: scale(1);
    transition: transform 0.3s 0.2s;
  
    -webkit-transform: scale(
      1.1
    ); /*Webkit: Escala de aumento de la imagen 1.2x tamaño original*/
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    box-shadow: 0px 0px 30px var(--clr-neon); /*Sombra sobre toda la imagen*/
    -webkit-box-shadow: 0px 0px 30px var(--clr-neon);
    -moz-box-shadow: 0px 0px 30px var(--clr-neon);
    -ms-box-shadow: 0px 0px 30px var(--clr-neon);
    opacity: 1;
  }
  
  /* clase extra para cuando se haga click en la imagen */
  .showImagen {
    transform: scale(1);
  }
  
  /* boton de close */
  .imagen-light i{
    position: absolute;
    top: 8%;
    right: 11%;
    width: 45px;
    height: 45px;
    padding: 12px;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
    text-decoration: none;
    color: #000000;
    border-radius: 0.25em;
    text-align: center;
  
    text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em currentColor;
  
  
    transition: 1.5s;
    z-index: 2;
    
  }
  .imagen-light i:hover{
    background-color: rgb(17, 0, 255);
    color: #fff;
  }


  @media screen and (max-width:1000px){
    .agregar-imagen{
        width: 60%;
        height: 400px;
      }
      .img-galeria{
        width: 45%;
        height: 400px;
      }
      .imagen-light i{
        top: 14%;
        right: 14%;
      }
  }