/*==========================================================
        PROPUESTA DE VALOR — ITEMCOL
==========================================================*/

.propuesta-valor{
    position:relative;
    padding:120px 8%;
    background:linear-gradient(135deg,#0e1116 0%,#14245b 55%,#173e83 100%);
    overflow:hidden;
}

.propuesta-valor::before{
    content:"06";
    position:absolute;
    right:4%;
    top:10px;
    font-size:clamp(130px,20vw,260px);
    line-height:1;
    font-weight:900;
    color:rgba(255,255,255,.035);
    pointer-events:none;
}

.propuesta-encabezado{
    position:relative;
    z-index:2;
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
}

.propuesta-etiqueta{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#ffd21c;
    font-size:.8rem;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.propuesta-etiqueta::before{
    content:"";
    width:34px;
    height:3px;
    background:#ffd21c;
    border-radius:4px;
}

.propuesta-encabezado h2{
    margin:14px 0 18px;
    color:#fff;
    font-size:clamp(2rem,4vw,3.2rem);
    line-height:1.15;
}

.propuesta-encabezado p{
    max-width:760px;
    margin:auto;
    color:rgba(255,255,255,.75);
    line-height:1.8;
}

.propuesta-grid{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.propuesta-card{
    position:relative;
    min-height:235px;
    padding:34px 30px 30px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:20px;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    overflow:hidden;
    transition:transform .35s ease,border-color .35s ease,background .35s ease;
}

.propuesta-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,210,28,.55);
    background:rgba(255,255,255,.09);
}

.propuesta-letra{
    position:absolute;
    right:20px;
    top:8px;
    font-size:4.5rem;
    font-weight:900;
    line-height:1;
    color:rgba(255,255,255,.055);
}

.propuesta-icono{
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    border-radius:14px;
    background:rgba(255,210,28,.12);
    color:#ffd21c;
    font-size:22px;
}

.propuesta-card h3{
    margin:0 0 12px;
    color:#fff;
    font-size:1.18rem;
}

.propuesta-card p{
    margin:0;
    color:rgba(255,255,255,.72);
    line-height:1.7;
}

.propuesta-cierre{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:55px auto 0;
    padding:22px 28px;
    border-left:4px solid #ffd21c;
    background:rgba(255,255,255,.05);
    color:rgba(255,255,255,.82);
    line-height:1.7;
}

@media (max-width:900px){
    .propuesta-grid{grid-template-columns:repeat(2,1fr);}
}

@media (max-width:576px){
    .propuesta-valor{padding:85px 5%;}
    .propuesta-grid{grid-template-columns:1fr;gap:16px;}
    .propuesta-card{min-height:auto;padding:28px 24px;}
    .propuesta-cierre{margin-top:35px;padding:18px 20px;}
}
