.galeria {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
  }

  .galeria h2,
  .galeria h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px;
    color: #333;
  }

  .galeria_img div,
  .galeria_videos div {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
  }

  .galeria_img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .galeria_img img:hover {
    transform: scale(1.03);
  }

  .galeria_videos video {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    background: #000;
  }

  #galeria {
    padding: 2rem 1rem;
  }

  /* Lightbox styles */
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
  }

  .lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px #000;
  }

  .lightbox:active,
  .lightbox.show {
    display: flex;
  }

  .lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    font-weight: bold;
  }

