/* Modal de vídeo - isolado do lightbox legado */
.video-modal {
  display: none;
  position: fixed;
  z-index: 99998;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal.is-open { display: flex; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
}
.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
}
.video-modal-dialog video {
  display: block;
  width: 100%;
  max-height: 85vh;
  background: #000;
}
.video-modal-close {
  position: absolute;
  z-index: 2;
  top: -42px;
  right: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}
html.video-modal-active,
body.video-modal-active { overflow: hidden; }

/* Galeria My Videos - poster inteiro clicável e Play centralizado */
/* GALERIA DE VÍDEOS - PLAY CENTRALIZADO */

#ourwork0 .lightCon {
  position: relative !important;
  overflow: hidden;
}

#ourwork0 .lightCon video {
  display: block;
  width: 100% !important;
  height: auto !important;
}

/* Camada sobre todo o vídeo */
#ourwork0 .hoverBox {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 10 !important;
}

/* Neutraliza posicionamento antigo do template */
#ourwork0 .smallIcon {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Toda a área do vídeo vira clicável */
#ourwork0 .video-modal-open {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;

  width: 100% !important;
  height: 100% !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
  padding: 0 !important;

  text-decoration: none !important;
  cursor: pointer;
}

/* Botão PLAY */
#ourwork0 .video-play-icon {
  position: static !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  width: 72px;
  height: 72px;

  margin: 0 !important;
  padding: 0 0 0 5px !important;

  border: 2px solid rgba(255,255,255,.95);
  border-radius: 50%;

  background: rgba(0,0,0,.55);
  color: #fff;

  font-size: 30px;
  line-height: 1;

  box-sizing: border-box;
  transition: transform .2s ease, background .2s ease;
}

#ourwork0 .video-modal-open:hover .video-play-icon {
  transform: scale(1.08);
  background: rgba(0,0,0,.72);
}

@media (max-width: 767px) {
  #ourwork0 .video-play-icon {
    width: 58px;
    height: 58px;
    font-size: 24px;
    padding-left: 4px !important;
  }
}