/*=========================================================
SERVICIOS
=========================================================*/

.services{

    padding:100px 0;

    background:#FFFFFF;

}

/*=========================================================*/

.services-header{

    max-width:850px;

    margin:0 auto 70px;

}

/*=========================================================*/

.services-header .section-title{

    margin-top:15px;

    margin-bottom:20px;

}

/*=========================================================*/

.services-header .section-subtitle{

    font-size:20px;

    line-height:1.8;

    color:#64748B;

}

/*=========================================================
TARJETAS
=========================================================*/

.service-card{

    background:#FFFFFF;

    border-radius:22px;

    overflow:hidden;

    border:1px solid #E6ECF5;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

    display:flex;

    flex-direction:column;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 50px rgba(0,0,0,.18);

    border-color:#0F5BFF;

}

.service-card img{

    width:100%;

    height:250px;

    object-fit:cover;

}

.service-card h3{

    font-size:26px;

    color:#082A63;

    font-weight:700;

    padding:25px 25px 10px;

}

.service-card p{

    padding:0 25px 30px;

    color:#64748B;

    line-height:1.8;

    flex-grow:1;

}

.service-button{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    width:calc(100% - 50px);

    margin:0 auto 25px auto;

    padding:15px 18px;

    background:#25D366;

    color:#FFFFFF;

    border-radius:12px;

    font-weight:700;

    font-size:16px;

    text-decoration:none;

    transition:.35s;

}

.service-button i{

    font-size:22px;

    color:#FFFFFF;

}

.service-button:hover{

    background:#1EBE5D;

    color:#FFFFFF;

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(37,211,102,.35);

}

.services{

    padding:100px 0 50px;

}