html,
      body {
        position: relative;
        height: 100%;
      }

      body {
        background: #00210c;
        color: #000;
      }

      body::after {
        display: none;
      }

      /* Mosaico de galería */
      .galeria-mosaico {
        background: #00210c;
        margin-top: 40px;
        position: relative;
        z-index: 1;
        padding-bottom: 30px;
        width: 100vw;
        max-width: 100vw;
        left: 50%;
        right: 50%;
        transform: translateX(-50%);
        padding-left: 40px;
        padding-right: 40px;
      }
      .mosaico-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 30px 0 0 0;
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 100%;
      }
      .mosaico-img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
        position: relative;
        z-index: 1;
        background: #222;
      }
      .mosaico-img:hover {
        transform: scale(1.04);
        box-shadow: 0 4px 16px rgba(0,0,0,0.3);
      }
      /* Lightbox */
      .lightbox-mosaico {
        display: none;
        position: fixed;
        z-index: 2000;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.85);
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }
      .lightbox-img {
        max-width: 90vw;
        max-height: 80vh;
        border-radius: 10px;
        box-shadow: 0 4px 32px rgba(0,0,0,0.7);
      }
      .close-lightbox {
        color: #fff;
        font-size: 3rem;
        position: absolute;
        top: 30px;
        right: 50px;
        cursor: pointer;
        z-index: 2100;
        transition: color 0.2s;
      }
      .close-lightbox:hover {
        color: #d6b864;
      }
      @media (max-width: 900px) {
        .mosaico-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .galeria-mosaico {
          padding-left: 20px;
          padding-right: 20px;
        }
      }
      @media (max-width: 600px) {
        .mosaico-grid {
          grid-template-columns: 1fr;
          padding-left: 0;
          padding-right: 0;
        }
        .galeria-mosaico {
          padding-left: 16px;
          padding-right: 16px;
          padding-bottom: 20px;
        }
        .mosaico-img {
          aspect-ratio: 4/3;
          height: auto;
        }
        .close-lightbox {
          top: 10px;
          right: 20px;
          font-size: 2rem;
        }
      }
      /* Elimino estilos de Swiper */
      .swiper, .swiper-slide, .mySwiper2, .mySwiper { display: none !important; }