.elementor-2035 .elementor-element.elementor-element-0f5a0b9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:120px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-widget-gallery .elementor-gallery-item__title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-gallery .elementor-gallery-item__description{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-gallery{--galleries-title-color-normal:var( --e-global-color-primary );--galleries-title-color-hover:var( --e-global-color-secondary );--galleries-pointer-bg-color-hover:var( --e-global-color-accent );--gallery-title-color-active:var( --e-global-color-secondary );--galleries-pointer-bg-color-active:var( --e-global-color-accent );}.elementor-widget-gallery .elementor-gallery-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-2035 .elementor-element.elementor-element-149d273 .e-gallery-item:hover .elementor-gallery-item__overlay, .elementor-2035 .elementor-element.elementor-element-149d273 .e-gallery-item:focus .elementor-gallery-item__overlay{background-color:rgba(0,0,0,0.5);}.elementor-2035 .elementor-element.elementor-element-149d273{--image-border-width:0px;--image-border-radius:5px;--image-transition-duration:800ms;--overlay-transition-duration:800ms;--content-text-align:center;--content-padding:20px;--content-transition-duration:800ms;--content-transition-delay:800ms;}/* Start custom CSS *//* Contenedor tipo lightbox */
.gallery-hover-lightbox {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Imagen normal (miniatura) */
.gallery-hover-lightbox img {
  max-width: 100%;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

/* Fondo al hacer hover */
.gallery-hover-lightbox::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9000;
}

/* Imagen ampliada al hover */
.gallery-hover-lightbox:hover img {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  z-index: 9999;
  box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

/* Activar fondo */
.gallery-hover-lightbox:hover::after {
  opacity: 1;
}/* End custom CSS */