.financieras-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.financiera-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.financiera-card:hover {
    transform: translateY(-5px);
}

.financiera-logo {
    max-width: 100px;
    margin-right: 20px;
}

.financiera-detalle {
    flex: 1;
    margin-left: 20px;
}

.financiera-detalle h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.financiera-detalle ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.financiera-detalle li {
    font-size: 14px;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.financiera-detalle li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.solicitar-btn, .detalles-btn {
    display: block;
    margin: 5px 0;
    padding: 8px 20px;
    background-color: #28a745;
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.solicitar-btn:hover {
    background-color: #218838;
}

.detalles-btn {
    background-color: #17a2b8;
}

.detalles-btn:hover {
    background-color: #138496;
}

.sp-financieras-header {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 40px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.sp-financieras-title {
    color: #333333;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 2;
    padding: 10px;
}

.sp-financieras-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(23, 162, 184, 0.2));
    transform: skewX(-20deg);
    z-index: 1;
    pointer-events: none;
}


@media (max-width: 1000px) {
    .sp-financieras-header {
        padding: 20px;
    }
    .sp-financieras-title {
        font-size: 18px;
    }
}



