
/* =========================
   SOLUCIONES
========================= */

.soluciones-section{
    padding: 0px 0;
    background: #ffffff;
}

.soluciones-header{
    text-align: center;
    margin-bottom: 50px;
}

.section-description{
    max-width: 700px;
    margin: auto;
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.3;
    color: #64748b;
}

.soluciones-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 35px;
}

.solucion-card{
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all .4s ease;
    box-shadow: 0 10px 30px rgba(15,23,42,0.05);
    position: relative;
}

.solucion-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(15,23,42,0.10);
}

.solucion-image{
    height: 240px;
    background: linear-gradient(135deg, #03243e, #097494);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.solucion-image img{
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transition: transform .4s ease;
}

.solucion-card:hover .solucion-image img{
    transform: scale(1.06);
}

.solucion-content{
    padding: 35px;
}

.solucion-badge{
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    background: #dbeafe;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solucion-content h3{
    font-size: 20px;
    line-height: 1.2;
    font-weight: var(--heading-weight);
    color: var(--color-heading);
    margin-bottom: 18px;
}



.mini-text{
    color: #2563eb !important;
    font-weight: 600;
    margin-bottom: 12px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .soluciones-section{
        padding: 80px 0;
    }

    .section-title-modern{
        font-size: 34px;
    }

    .solucion-content{
        padding: 28px;
    }

    .solucion-content h3{
        font-size: 25px;
    }

}
