/*======================================
BENEFICIOS
======================================*/

#beneficios{

    padding:140px 0;

    background:#F8FAFC;

}

#beneficios .container{

    display:flex;

    flex-direction:column;

    align-items:center;

}

.beneficios-header{

    text-align:center;

    max-width:850px;

    margin-bottom:70px;

}

.beneficios-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    width:100%;

    margin-bottom:80px;

}

.beneficio-card{

    background:white;

    padding:40px;

    border-radius:24px;

    border:1px solid #edf1f7;

    box-shadow:0 20px 50px rgba(16,24,40,.08);

    transition:.35s;

}

.beneficio-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.beneficio-icon{

    font-size:48px;

    margin-bottom:20px;

}

.beneficio-card h3{

    color:#0B2149;

    font-size:26px;

    margin-bottom:18px;

}

.beneficio-card p{

    color:#667085;

    line-height:1.8;

}

.estadisticas{

    width:100%;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat{

    background:#0B2149;

    color:white;

    border-radius:18px;

    padding:40px 25px;

    text-align:center;

}

.stat strong{

    display:block;

    font-size:52px;

    color:#86B63A;

    margin-bottom:12px;

}

.stat span{

    font-size:18px;

    opacity:.95;

}