
          .galeria-imovel-swiper .swiper-slide { position: relative; }

          /* Mantém vídeo e imagens com a mesma altura (16:9) */
          .ratio-16x9 {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
            overflow: hidden;
            background: #000;
          }
          .ratio-16x9 > * {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
          }
          .ratio-16x9 img { object-fit: cover; display:block; }
          .ratio-16x9 iframe { border: 0; }

          /* Espaçamento entre destaque e thumbs */
          .galeria-thumbs { margin-top: 10px; }
          @media (min-width: 768px) {
            .galeria-thumbs { margin-top: 16px; }
          }

          /* Thumbs padronizadas */
          .galeria-thumbs .swiper-slide {
            height: 65px;                  /* <<< ALTURA AJUSTADA PARA MOBILE */
            overflow: hidden;
            border: 2px solid transparent;
            cursor: pointer;
            border-radius: 4px; /* Opcional: bordas arredondadas */
          }
          @media (min-width: 768px) {
            .galeria-thumbs .swiper-slide {
              height: 80px;                /* <<< ALTURA PARA DESKTOP */
            }
          }
          .galeria-thumbs .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;             /* preenche sem distorcer */
            display: block;
          }
          .galeria-thumbs .swiper-slide-thumb-active {
            border-color: #007aff;         /* destaque da thumb ativa */
          }
        