#services .row-20 {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch; /* hace que ambas columnas tengan la misma altura */
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
  }
  
  /* Columna de imagen con altura completa */
  #services .col-md-7 {
    padding: 0;
    margin: 0;
    flex: 1;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Imagen se adapta a toda la altura del contenedor */
  #services .col-md-7 img {
    height: 100%; 
    max-height: 100%;
    width: auto;
    border-radius: 1rem;
    object-fit: contain;
    /*box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);*/
    
  }
  
  
  /* Tarjetas */
  #services .col-lg-7.col-xl-6 {
    padding: 0;
    margin: 0;
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  /* Responsive: en móviles sí se apilan */
  @media (max-width: 991.98px) {
    #services .row-20 {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
      padding: 2rem 1rem;
    }
  
    #services .col-md-7,
    #services .col-lg-7.col-xl-6 {
      max-width: 100%;
      width: 100%;
    }
  
    #services .col-md-7 {
      justify-content: center;
    }
  
    #services .col-md-7 img {
      width: 100%;
      height: auto;
      max-height: none;
      object-fit: contain;
      border-radius: 1rem;
    }
  }