.socio-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;
}

.socio-card{

    width:100%;

    max-width:850px;

    background:rgba(255,255,255,.92);

    border-radius:24px;

    padding:40px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.18);

    backdrop-filter:blur(6px);
}

.socio-title{

    text-align:center;

    color:#1f1f1f;

    font-size:2rem;

    font-weight:700;

    margin-bottom:35px;

    line-height:1.4;
}

.socio-container{

    display:flex;

    flex-direction:column;

    gap:14px;
}

.socio-btn{

    border:none;

    border-radius:14px;

    padding:18px;

    background:#edf6ed;

    color:#2e7d32;

    font-size:1.1rem;

    font-weight:600;

    transition:all .25s ease;

    cursor:pointer;
}

.socio-btn:hover{

    background:#dff0df;

    transform:translateY(-2px);

    box-shadow:
        0 8px 20px rgba(46,125,50,.18);
}


.socio-btn.selected{

    background:#43a047;

    color:white;
}



.socio-paso{
    text-align:center;
    font-size:.95rem;
    font-weight:600;
    color:#5f6f5f;
    margin-bottom:15px;
}

.socio-progress{

    width:100%;

    height:10px;

    background:#e9ecef;

    border-radius:50px;

    overflow:hidden;

    margin-bottom:25px;
}

.socio-progress-bar{

    height:100%;

    background:linear-gradient(
        90deg,
        #66bb6a,
        #2e7d32
    );

    transition:.4s;
}


.socio-card{

    animation:socioFade .35s ease;
}

@keyframes socioFade{

    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}


.socio-id{

    text-align:center;

    margin-bottom:15px;

    color:white;

    font-size:1rem;

    font-weight:600;

    letter-spacing:1px;
}




