/* =====================================================
   SERVICES
===================================================== */

.services{

    position:relative;

    padding:120px 0;

    background:#F8FAFD;

    overflow:hidden;

}

/* Fundo decorativo */

.services::before{

    content:"";

    position:absolute;

    top:-180px;

    left:-150px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(29,47,88,.03);

}

.services::after{

    content:"";

    position:absolute;

    right:-180px;

    bottom:-180px;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(254,144,76,.04);

}

/* =====================================================
   TÍTULO
===================================================== */

.section-title{

    max-width:760px;

    margin:0 auto 70px;

}

.section-title h2{

    font-size:48px;

    font-weight:700;

    color:#1D2F58;

    margin:18px 0 20px;

    line-height:1.2;

}

.section-title p{

    font-size:18px;

    line-height:1.9;

    color:#6B7280;

    margin-bottom: -40px;

}

/* =====================================================
   CARD
===================================================== */

.service-card{

    background:#FFF;

    border-radius:24px;

    padding:25px 20px;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    transition:.35s ease;

    box-shadow:

    0 10px 30px rgba(15,23,42,.04);

    border:1px solid #EDF2F7;

    position:relative;

    overflow:hidden;

    text-align: center;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#FE904C;

    transform:scaleX(0);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:

    0 25px 50px rgba(15,23,42,.12);

}

.service-card:hover::before{

    transform:scaleX(1);

}

/* =====================================================
   ÍCONE
===================================================== */

.service-icon{

    width:72px;
    height:72px;

    margin:0 auto 28px;

    border-radius:18px;

    background:#F3F7FD;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;


}

.service-icon i{

    font-size:30px;

    color:#FE904C;

    transition:.35s;

}

.service-card:hover .service-icon{

    background:#1D2F58;

}

.service-card:hover .service-icon i{

    color:#FFF;

    transform:scale(1.08);

}

/* =====================================================
   TÍTULO CARD
===================================================== */

.service-card h3{

    font-size:24px;

    color:#1D2F58;

    line-height:1.3;

    margin-bottom:20px;

    font-weight:700;

}

/* =====================================================
   TEXTO
===================================================== */

.service-card p{

    color:#6B7280;

    line-height:1.9;

    margin-bottom:35px;

    flex:1;

}

/* =====================================================
   LINK
===================================================== */

.service-card a{


    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

}

.service-card a i{

    transition:.35s;

}

.service-card:hover a{

    color:#FE904C;

}

.service-card:hover a i{

    transform:translateX(6px);

}

/* =====================================================
   BOTÃO
===================================================== */

.services-button{

    display:inline-flex;

    align-items:center;

    gap:14px;

    margin-top:70px;

    background:#1D2F58;

    color:#FFF;

    padding:18px 42px;

    border-radius:14px;

    font-size:17px;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

}

.services-button:hover{

    background:#FE904C;

    color:#FFF;

}

.services-button i{

    transition:.35s;

}

.services-button:hover i{

    transform:translateX(8px);

}

/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:992px){

.section-title{

margin-bottom:50px;

}

.section-title h2{

font-size:38px;

}

.service-card{

padding:35px;

}

.service-card h3{

font-size:24px;

}

}

@media(max-width:768px){

.services{

padding:90px 0;

}

.section-title h2{

font-size:32px;

}

.section-title p{

font-size:16px;

}

.service-card{

text-align:center;

align-items:center;

}

.service-card p{

margin-bottom:28px;

}

.service-card a{

justify-content:center;

}

.services-button{

width:100%;

justify-content:center;

    position: relative;
    z-index: 9999;

}

}