/* Igualar altura de columnas */
.servicio-row {
    display: flex;
    align-items: stretch;
}

/* Columnas flex */
.servicio-row > div {
    display: flex;
}

/* Caja de texto */
.servicio-bordados .p-4 {
    line-height: 1.8;
    font-size: 1.05rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 50%;
}

/* 🔥 IMAGEN AJUSTADA AL TEXTO */
.servicio-img {
    max-height: 100%;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain; /* 🔥 CAMBIO IMPORTANTE */
}