   /* Cuadrícula responsive */
  #links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
  }

  #links a {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #links a:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  #links img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Personalizar el fondo del lightbox */
  .blueimp-gallery > .slides > .slide > img {
    border-radius: 3px;
  }


    #heroV{
    min-height: 100vh;
    position: relative;
    color: aliceblue;

  }

  video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.capa {
  position: absolute;
    top: 0;
    left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  /*mix-blend-mode: overlay;*/
  }

