/* Contenedor principal */
.linea-negocio {
    margin-top: 50px;
}

/* Estilo de las tarjetas */
.tarjeta-neg {
    border-left-width: 8px;
  box-shadow: 2px 4px 15px 0 #E7E9F6;
       border-radius: 5px;
  overflow: hidden;
}



/* Título y descripción */
.tarjeta-neg h2 {
    font-size: 33px;
    font-weight: 600;
    color: #333;
}

.tarjeta-neg p {
    font-size: 16px;
    color: #555;
}

/* Botón */
.btn-custom {
   
    border-radius: 40px;
    transition: all 0.3s ease;
    display: inline-block;
    color: #fff;
    font-weight: 600;
}

.btn-custom:hover {
    background-color: #242E7C !important;
    color: #fff;
    text-decoration: none;
}

/* Imagen de producto */
.div-img-dest img {
      object-fit: cover;
}
.div-img-dest {
    height: 450px;
}
/* Estilos responsivos */
@media (max-width: 767px) {
    .tarjeta-neg .col-md-7, .tarjeta-neg .col-md-5 {
        flex: 1 1 100%;
        max-width: 100%;
    }
}