.elementor-5769 .elementor-element.elementor-element-5b2d8cc{margin-top:60px;margin-bottom:0px;}.elementor-5769 .elementor-element.elementor-element-a507476 > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-5769 .elementor-element.elementor-element-78ea257{text-align:center;}@media(min-width:768px){.elementor-5769 .elementor-element.elementor-element-a507476{width:100%;}}/* Start custom CSS for column, class: .elementor-element-a507476 */.elementor-5769 .elementor-element.elementor-element-a507476{
    display: flex;
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-5b2d8cc *//* GRID CONTENEDOR */
.soup-grid > .elementor-widget-wrap {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(16px, 3vw, 32px);
  align-items: stretch;       /* todos los ítems con la misma altura */
  justify-items: center;
  max-width: 1200px;
  margin-inline: auto;
  padding: clamp(8px, 2vw, 24px);
}

/* CADA CELDA: centrar contenido */
.soup-round .elementor-widget-container {
  display: flex;
  align-items: center;   /* centra vertical */
  justify-content: center; /* centra horizontal */
  height: 300px;         /* alto fijo para alinear */
  width: 100%;
}

/* IMAGEN REDONDA */
.soup-round .elementor-widget-container img {
  aspect-ratio: 1 / 1;
  width: clamp(240px, 20vw, 300px);
  height: auto;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  padding: clamp(8px, 1.5vw, 16px);
  display: block;
}

/* Hover opcional */
.soup-round .elementor-widget-container img:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  transition: .25s ease;
}

/* RESPONSIVE para pantallas pequeñas */
@media (max-width: 480px) {
  .soup-grid > .elementor-widget-wrap {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
  }
  .soup-round .elementor-widget-container {
    height: 240px;
  }
  .soup-round .elementor-widget-container img {
    width: 240px;
    padding: 10px;
  }
}/* End custom CSS */