.elementor-544 .elementor-element.elementor-element-ff713a9{--display:flex;--margin-top:-16px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-675ab6f *//* IMPORTAR POPPINS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* ================================================= */
/* ================= SERVICES SECTION ============== */
/* ================================================= */

.services-section{
    width: 100%;

    padding: 120px 7vw;

    background: #f5f7fb;

    font-family: 'Poppins', sans-serif;
}


/* ================================================= */
/* ==================== HEADER ===================== */
/* ================================================= */

.services-header{
    text-align: center;

    max-width: 850px;

    margin: 0 auto 70px;
}

/* TAG */

.services-tag{
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;

    color: #0d6efd;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.services-tag span{
    width: 50px;
    height: 2px;

    background: #0d6efd;

    border-radius: 50px;
}


/* TITULO */

.services-header h2{
    margin: 0;

    color: #081120;

    font-size: clamp(42px, 4vw, 72px);

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -3px;
}


/* ================================================= */
/* ==================== GRID ======================= */
/* ================================================= */

.services-grid{
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 26px;
}


/* ================================================= */
/* ==================== CARD ======================= */
/* ================================================= */

.service-card{
    position: relative;

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    transition: .35s ease;

    box-shadow:
    0 10px 30px rgba(15,23,42,0.05);

    border: 1px solid #edf1f7;
}

.service-card:hover{
    transform: translateY(-8px);

    box-shadow:
    0 18px 45px rgba(15,23,42,0.10);
}


/* ================================================= */
/* ==================== IMAGE ====================== */
/* ================================================= */

.service-image{
    position: relative;

    overflow: hidden;
}

.service-image img{
    width: 100%;
    height: 250px;

    object-fit: cover;

    display: block;

    transition: transform .6s ease;
}

.service-card:hover .service-image img{
    transform: scale(1.05);
}


/* OVERLAY */

.service-image::after{
    content: '';

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.22),
        transparent 60%
    );
}


/* ================================================= */
/* ==================== CONTENT ==================== */
/* ================================================= */

.service-content{
    padding: 30px;
}

.service-content h3{
    margin: 0 0 14px;

    color: #081120;

    font-size: 24px;

    line-height: 1.2;

    font-weight: 600;
}

.service-content p{
    margin: 0 0 28px;

    color: #667085;

    font-size: 15px;

    line-height: 1.9;

    font-weight: 400;
}


/* ================================================= */
/* ==================== BUTTON ===================== */
/* ================================================= */

.service-content a{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #0d6efd;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: .3s ease;
}

.service-content a span{
    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: rgba(13,110,253,0.10);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;

    transition: .3s ease;
}

.service-content a:hover span{
    transform: translateX(5px);

    background: #0d6efd;

    color: #fff;
}


/* ================================================= */
/* ==================== TABLET ===================== */
/* ================================================= */

@media(max-width: 1200px){

    .services-grid{
        grid-template-columns: repeat(2,1fr);
    }

}


/* ================================================= */
/* ==================== MOBILE ===================== */
/* ================================================= */

@media(max-width: 767px){

    .services-section{
        padding: 90px 24px;
    }

    .services-header{
        margin-bottom: 50px;
    }

    .services-header h2{
        font-size: 38px;

        letter-spacing: -2px;
    }

    .services-grid{
        grid-template-columns: 1fr;
    }

    .service-image img{
        height: 230px;
    }

    .service-content{
        padding: 24px;
    }

    .service-content h3{
        font-size: 22px;
    }

}/* End custom CSS */