.elementor-1774 .elementor-element.elementor-element-a6af36e .elementor-container:not(.elementor-column-gap-no) .elementor-column > .elementor-element-populated,.elementor-1774 .elementor-element.elementor-element-a6af36e .elementor-container:not(.elementor-column-gap-no) .elementor-row > .elementor-column > .elementor-element-populated{padding:10px !important;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1774 .elementor-element.elementor-element-610b50a{text-align:center;}.elementor-1774 .elementor-element.elementor-element-610b50a .elementor-heading-title{font-family:"Poppins", Sans-serif;font-size:28px;font-weight:700;}.elementor-widget-image-gallery .gallery-item .gallery-caption{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-1774 .elementor-element.elementor-element-3383ac9 .gallery-item .gallery-caption{text-align:center;}@media(max-width:767px){.elementor-1774 .elementor-element.elementor-element-610b50a{text-align:center;}}/* Start custom CSS for image-gallery, class: .elementor-element-3383ac9 *//* Contenedor general de la galería */
#gallery-1.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columnas en pantallas grandes */
  gap: 20px;
}

/* Cada imagen dentro de la galería */
#gallery-1 .gallery-item img {
  width: 100%;
  height: 250px;        /* Ajusta aquí la altura deseada */
  object-fit: cover;    
  display: block;
  border-radius: 6px;
}

#gallery-1 .gallery-icon {
  width: 100%;
  height: 100%;
}

/* 🔥 RESPONSIVE: cuando la pantalla es más estrecha → 1 columna */
@media (max-width: 768px) {
  #gallery-1.gallery {
    grid-template-columns: 1fr; /* 1 columna */
  }

  #gallery-1 .gallery-item img {
    height: 200px; /* Opcional: un poco más baja en móvil */
  }
}/* End custom CSS */