/* Improve banner text contrast with a subtle dark overlay on images */
.banner_image {
    position: relative;
}

.banner_image img {
    display: block;
    width: 100%;
    height: auto;
}

.banner_image::after {
    content: "";
    position: absolute;
    inset: 0;
    /* Use a gradient to keep center a bit darker, edges lighter */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(0, 0, 0, 0.35) 100%
    );
    pointer-events: none;
}

/* Optional: slightly increase banner heading weight/letter-spacing for readability */
.banner_text h1 {
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.banner_text span {
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
/*********************************
* ************* BOOT *************
******************************** */
* {
    font-family: 'Figtree', sans-serif;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    html, body { 
        overflow-x: hidden;
    }
}

body {
    position: relative; 
    background: #FFFFFF !important;
}

* { 
    box-sizing: border-box; 
}

img, video { 
    max-width: 100%; 
    height: auto; 
}

/*********************************
* ******** REUTILIZÁVEIS *********
******************************** */
/* Forms */
.form{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.form_label_box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}

.form_label{
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.form_label_margin{
    margin-bottom: 0;
}

.form_label:last-child{
    margin-bottom: 0;
}

.form_label_two{
    width: calc(50% - 10px);
}

.form_text{
    font-size: var(--textSize14);
    color: var(--colorText_90);
    display: block;
    padding-bottom: 9px;
    width: 100%;
    font-weight: 500;
}

.form_text_info{
    font-size: var(--textSize12);
    color: var(--colorText_70);
    display: block;
    padding-top: 3px;
}

.form_input{
    width: 100%;
    font-size: var(--textSize16);
    height: 50px;
    color: var(--colorText_90);
    padding: 0 20px;
    border: 1px solid var(--colorBorder);
    outline: none;
    resize: none;
    border-radius: var(--borderRadius);
    -moz-border-radius: var(--borderRadius);
    -webkit-border-radius: var(--borderRadius);
    background: #FFFFFF;
}

.form_input_area{
    height: 130px;
    padding: 20px;
}

.form_input:focus{
    border:2px solid var(--colorPrimary);
}

.form_input.disabled{
    background: #f5f5f5;
}

.form_label_info{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form_label_info .form_text{
    padding-bottom: 0;
}

.form_label select{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url("data:image/svg+xml,%3Csvg width='14' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1 1 6 6 6-6' stroke='%235A5A5A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 20px center no-repeat;
    cursor: pointer;
    padding-right: 40px;
}

.form_label_upload_wrapper{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.form_label_upload_input{
    width: calc(100% - 65px);
    display: flex;
    align-items: center;
    font-size: var(--textSize15);
    color: var(--colorText_90);
}

.form_label_upload_btn{
    background: var(--colorPrimary);
    width: 50px;
    height: 50px;
    border-radius: var(--borderRadius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: var(--textSize20);
    cursor: pointer;
}

.form_label_upload_btn svg{
    width: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    border: none;
    text-decoration: none;
    font-size: var(--textSize15);
    color: var(--colorWhite);
    background: #666;
    border-radius: var(--borderRadius);
    padding: 0 30px;
    height: 50px;
    line-height: 50px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    border-radius: 8px;
}

.btn-default {
    background: var(--colorPrimary);
    color: #fff;
}

/* Title */
.title-section-wrapper{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.title-section-line{
    width: 20px;
    height: 2px;
    background: gray;
}

.title-section-h2 {
    font-size: var(--textSize14);
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
}

.title-section-h1 {
    font-size: var(--textSize48);
    line-height: 60px;
    font-weight: 600;
    width: 100%;
    padding: 20px 0 0 0;
}

/* Padding Container */
.padding_container {
    padding: 100px 0;
}

/*********************************
* *********** HEADER *************
******************************** */
.header {
    width: 100%;
}

.header_top{
    background: #FAFAFA;
    width: 100%;
    padding: 10px 0;
}

.header_top_content{
    justify-content: space-between;
}

.header_top_text{
    align-items: center;
}

.header_top_text a{
    font-size: var(--textSize14);
    color: var(--colorText_60);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.header_top_text a svg{
    width: 18px;
}

.header_top_text_bar{
    width: 1px;
    height: 18px;
    background: var(--colorBorder);
    margin: 0 14px;
}

.header_top_networks{
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 8px;
}

.header_top_networks .networks_box{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--colorBorder);
}

.header_top_networks .networks_box svg{
    width: 14px;
    color: var(--colorText_70);
}

.header_main{
    width: 100%;
}

.header_main_content {
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header_nav { 
    align-items: center;
}

.header_nav_wrapper{
    align-items: center;
}

.header_nav a {
    color: var(--colorText_50);
    font-size: var(--textSize14);
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    padding: 43px 15px 43px 15px;
    position: relative;
}

.header_nav a.active,
.header_nav a:hover{
    color: var(--colorPrimary);
    font-weight: 500;
}

.header_nav a.btn_nav {
    display: flex;
    padding: 12px 28px;
    border-radius: var(--borderRadius);
    color: #FFFFFF;
    font-weight: 500;
    align-items: center;
    background: var(--colorPrimary);
    margin-left: 20px;
}

.header_nav_mobile{
    display: none;
    cursor: pointer;
    stroke: var(--colorPrimary);
}

.header_nav_close {
    display: none;
    cursor: pointer;
    stroke: var(--colorPrimary);
}

.header_fixed {
    position: fixed;
    background: #FFFFFF;
    top: 0;
    left: 0;
    z-index: 9;
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1);
}

/*********************************
* *********** CONTENT *************
******************************** */
/* Banner Hero */
.banner {
    width: 100%;
    position: relative;
    height: calc(100vh - 97px);
}

.banner .swiper-slide {
    position: relative;
    height: calc(100vh - 97px);
    display: flex;
    align-items: center;
}

.banner_container{
    width: 100%;
    position: absolute;
    z-index: 2;
}

.banner_container .container{
    justify-content: center;
    gap: 50px;
}

.banner_container .banner_text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 300px;
    text-align: center;
}

.banner_container .banner_text h1 {
    font-size: var(--textSize60);
    line-height: 72px;
    font-weight: 600;
    color: #FFFFFF;
}

.banner_container .banner_text span {
    font-size: var(--textSize18);
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
}

.banner_container .banner_btn{
    background: #FFFFFF;
    color: var(--colorText_90);
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner_btn_icon{
    width: 20px;
}

.banner_image{
    width: 100%;
}

.banner_image img{
    width: 100%;
    height: calc(100vh - 97px);
    object-fit: cover;
}

.banner_bottom{
    width: 100%;
    position: absolute;
    bottom: 40px;
    left: 0;
    z-index: 2;
}

.banner_bottom .container{
    justify-content: space-between;
    align-items: center;
}

.banner_bottom .swiper-pagination {
    position: relative !important;
    width: auto !important;
    display: flex;
    bottom: auto;
}

.banner_bottom .swiper-pagination-bullet {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    height: auto;
    background: transparent;
    justify-content: start;
    border-radius: 0;
    opacity: 1;
    margin: 0;
}

.banner_bottom .swiper-pagination-bullet .text{
    width: 100%;
    color: rgba(255, 255, 255, 0.50);
    padding-bottom: 8px;
    text-align: left;
    font-size: var(--textSize14);
    font-weight: 600;
}

.banner_bottom .swiper-pagination-bullet .bar{
    width: 50px;
    height: 2px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.50);
    transition: background-color 0.3s ease;
}

.banner_bottom .swiper-pagination-bullet-active .bar {
    background: #FFFFFF;
}

.banner_bottom .swiper-pagination-bullet-active .text {
    color: #FFFFFF;
}

.banner_bottom .banner_bottom_button_prev,
.banner_bottom .banner_bottom_button_next{
    background: transparent;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    border: 1px solid #FFF;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_bottom .banner_bottom_button_next{
    margin-left: 10px;
}

.banner_bottom .banner_bottom_button_prev svg,
.banner_bottom .banner_bottom_button_next svg {
    color: #FFFFFF;
}

.banner_bottom .banner_bottom_button_next span{
    padding-left: 2px;
}

.banner_bottom .banner_bottom_button_prev.swiper-button-disabled,
.banner_bottom .banner_bottom_button_next.swiper-button-disabled {
    background: transparent;
    opacity: 0.4;
}

/* About */
.about{
    background: #FFFFFF;
}

.about_content{
    gap: 80px;
}

.about_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}

.about_left{
    width: calc(40% - 50px);
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.about_left .title-section-line {
    background: var(--colorText_50);
}

.about_left .title-section-h2 {
    color: var(--colorText_50);
}

.about_left .title-section-h1{
    color: var(--colorText_80);
}

.about_left_text{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.about_left_text p{
    font-size: var(--textSize16);
    line-height: 24px;
    color: var(--colorText_60);
}

.about_right{
    width: 60%;
}

.about_right .about_image{
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.about_right .about_image img{
    width: 100%;
    object-fit: cover;
    height: 415px;
}

.about_differences{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about_differences_box{
    background: #f4f4f4;
    padding: 34px;
    border-radius: 10px;
    gap: 28px;
    display: flex;
    flex-wrap: wrap;
}

.about_differences_box_icon{
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: var(--colorText_30);
}

.about_differences_box_content{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about_differences_box_content h4{
    font-size: var(--textSize20);
    line-height: 30px;
    font-weight: 600;
    color: var(--colorText_80);
}

.about_differences_box_content p{
    font-size: var(--textSize16);
    line-height: 24px;
    color: var(--colorText_60);
}

/* Services */
.services{
    width: 100%;
    background: var(--colorText_10);
    overflow: hidden;
}

.services_header{
    width: 100%;
    margin-bottom: 80px;
    gap: 25px;
}

.services_header .title-section-line{
    background: var(--colorText_50);
}

.services_header .title-section-h2 {
    color: var(--colorText_50);
}

.services_header .title-section-h1 {
    color: var(--colorText_80);
}

.services_header_title{
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.services_header_title h1{
    width: 50%;
    padding: 0;
}

.services_header_paginator{
    gap: 10px;
}

.services_header_paginator_prev,
.services_header_paginator_next{
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid var(--colorText_90);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services_header_paginator_prev span,
.services_header_paginator_next span {
    font-size: 1.3em;
    color: var(--colorPrimary);
}

.services_header_paginator_next span{
    padding-left: 2px;
}

.services_header_paginator_prev.swiper-button-disabled,
.services_header_paginator_next.swiper-button-disabled {
    background: transparent;
    opacity: 0.4;
}

.services_wrapper{
    width: 100%;
    overflow: visible;
}

.services_wrapper .swiper-slide{
    background: var(--colorWhite);
    border-radius: var(--borderRadius);
    overflow: hidden;
}

.services_box{
    width: 100%;

    .image{
        width: 100%;
    }

    .image a{
        width: 100%;
    }

    .image img{
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

    .text{
        width: 100%;
        padding: 30px 40px;
    }

    .text_title{
        color: var(--colorText_90);
        text-decoration: none;
    }

    .text_title h3{
        font-size: var(--textSize18);
        line-height: 22px;
    }

    .text p{
        padding-top: 10px;
        font-size: var(--textSize15);
        color: var(--colorText_70);
    }

    .text_link{
        display: flex;
        align-items: center;
        text-decoration: none;
        padding-top: 25px;
        gap: 10px;
        color: var(--colorPrimary);
    }

    .text_link a:hover{
        color: var(--colorPrimaryDark);
    }

    .text_link span{
        font-size: var(--textSize15);
        font-weight: 600;
    }
}

/* Work */
.work{
    width: 100%;
}

.work_content{
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.work_left{
    width: 40%;
}

.work_left_header{
    width: 100%;
    margin-bottom: 24px;
}

.work_left_header .title-section-h2 {
    color: var(--colorText_50);
}

.work_left_header .title-section-line {
    background: var(--colorText_50);
}
 
.work_left_header .title-section-h1 {
    color: var(--colorText_80);
}

.work_left_content{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.work_left_content p{
    width: 100%;
    font-size: var(--textSize16);
    color: var(--colorText_60);
    line-height: 24px;
}

.work_left_btn{
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.work_right{
    width: calc(60% - 80px);
    display: flex;
}

.work_right img{
    width: 100%;
    border-radius: 10px;
}

/*********************************
* *********** FOOTER *************
******************************** */
/* Footer */
.footer{
    width: 100%;
    background: #FAFAFA;
}

.footer_main{
    width: 100%;
}

.footer_main_content{
    padding: 70px 0;
    gap: 44px;
}

.footer_main_header{
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--colorBorder);
    padding: 0 0 44px 0;
}

.footer_main_header_network{
    align-items: center;
    gap: 20px;
}

.footer_main_header_network h3{
    font-size: var(--textSize14);
    font-weight: 600;
    color: var(--colorText_80);
}

.footer_main_header_network_items{
    gap: 8px;
}

.footer_main_header_network_item{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--colorBorder);
}

.footer_main_header_network_item svg{
    width: 16px;
    color: var(--colorText_70);
}

.footer_main_bottom{
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.footer_main_bottom_infos{
    gap: 28px;
}

.footer_main_bottom_info{
    display: flex;
    flex-direction: row;
    gap: 14px;
    text-decoration: none;
    align-items: center;
}

.footer_main_bottom_info_texts{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer_main_bottom_info_title{
    font-size: var(--textSize14);
    color: var(--colorText_80);
    font-weight: 600;
}

.footer_main_bottom_info_text{
    font-size: var(--textSize14);
    color: var(--colorText_70);
}

.footer_copy{
    width: 100%;
    padding: 25px 0;
    border-top: 1px solid var(--colorBorder);
}

.footer_copy_content{
    justify-content: center;
    align-items: center;
}

.footer_copy_content .copy_text{
    text-align: center;
    font-size: var(--textSize14);
    color: var(--colorText_80);
}

.footer_copy_whatsapp{
    width: 60px;
    height: 60px;
    background: var(--colorPrimary);
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/*********************************
* *********** PAGES *************
******************************** */
/* Pages */
.banner_page{
    width: 100%;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    background: red;
}

.banner_page.work {
    background: url(../images/bg-page-work.jpg) top / cover no-repeat;
}

.banner_page.contact {
    background: url(../images/bg-page-contact.jpg) top / cover no-repeat;
}

.banner_page_content{
    text-align: center;
    justify-content: center;
}

.banner_page h1{
    font-size: var(--textSize60);
    line-height: 72px;
    color: #FFFFFF;
    font-weight: 600;
}

/* Works */
.work_page_form_content{
    gap: 42px;
}

.work_page_form_header{
    display: inline-grid;
    gap: 20px;
    justify-content: center;
    text-align: center;
    padding: 0 200px;
    width: 100%;
}

.work_page_form_header h1{
    font-size: var(--textSize36);
    line-height: 40px;
    font-weight: 600;
    color: var(--colorText_90);
}

.work_page_form_header span{
    font-size: var(--textSize16);
    line-height: 22px;
    color: var(--colorText_80);
}

.work_page_form_wrapper{
    width: 100%;
    border: 1px solid var(--colorBorder);
    border-radius: var(--borderRadius);
    padding: 50px;
}

/*********************************
* ******** MEDIA QUERIES *********
******************************** */
/* Media Queries */
/* 1200 */
@media (max-width: 1200px) {
    /* Header */
    .header_main{
        padding: 20px 0;
    }

    .header_nav {
        width: 100%;
        height: 100vh;
        position: fixed;
        background: #FFFFFF;
        right: -100%;
        top: 0;
        z-index: 999;
    }

    .header_nav_wrapper {
        margin: auto;
        width: 600px;
        max-width: 90%;
        justify-content: center;
    }

    .header_nav a {
        width: 100%;
        text-align: center;
        padding: 0 0 50px 0;
        color: var(--colorText_70) !important;
        font-size: var(--textSize20);
        position: relative;
        display: flex;
        justify-content: center;
        font-weight: 500;
        border: none;
    }

    .header_nav a:hover{
        color: var(--colorPrimary) !important;
    }

    .header_nav_mobile {
        display: block;
    }

    .header_nav a.btn_nav{
        width: 50%;
        padding: 15px 30px;
        margin-left: 0;
        background: var(--colorPrimary);
        color: #FFFFFF !important;
    }

    .header_nav_close {
        display: block;
        position: absolute;
        right: 40px;
        top: 40px;
        stroke: var(--colorPrimary);
    }

    /* Banner hero */
    .banner_container .banner_text{
        padding: 0 100px;
    }
}

/* 991 */
@media (max-width: 991px) {
    /* Padding Container */
    .padding_container {
        padding: 80px 0;
    }

    /* Form */
    .form_label_two{
        width: 100%;
    }

    .form_label_two:last-child{
        margin-bottom: 20px;
    }

    /* Title Section */
    .title-section-h1 {
        padding: 20px 0 0 0;
    }
    
    /* About */
    .about_content,
    .about_wrapper{
        gap: 50px;
    }

    .about_left,
    .about_right {
        width: 100%;
    }

    .about_differences{
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Services */
    .services_header{
        margin-bottom: 50px;
    }

    .services_header_title{
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .services_header_title h1{
        width: 100%;
    }

    .services_box {
        .text {
            padding: 20px;
        }
    }

    /* Works */
    .work_content {
        gap: 40px;
    }

    .work_left,
    .work_right {
        width: 100%;
    }

    /* Page Works */
    .work_page_form_wrapper{
        padding: 30px;
    }

    .work_page_form_header{
        padding: 0;
    }
}

/* 640 */
@media(max-width: 640px){
    /* Padding Container */
    .padding_container{
        padding: 50px 0;
    }

    /* Title Section */
    .title-section-h1 {
        font-size: var(--textSize32);
        line-height: 38px;
    }

    /* Header */
    .header_top_content{
        justify-content: center;
        gap: 8px;
    }

    .header_nav a.btn_nav{
        width: 100%;
    }

    .header_top_text_bar{
        display: none;
    }

    .header_top_text{
        justify-content: center;
        gap: 10px;
    }

    /* Banner page */
    .banner_page{
        padding: 80px 0;
    }

    .banner_page h1{
        font-size: var(--textSize48);
        line-height: 54px;
    }

    /* About */
    .about_content, .about_wrapper{
        gap: 40px;
    }

    /* Services */
    .services_header{
        margin-bottom: 40px;
    }

    /* Footer */
    .footer_main_content {
        padding: 30px 0;
        gap: 20px;
    }

    .footer_main_header {
        flex-direction: column;
        padding: 0 0 20px 0;
        gap: 20px;
    }

    .footer_main_bottom {
        justify-content: center;
        gap: 20px;
    }

    .footer_main_bottom_infos {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Page Works */
    .work_page_form_wrapper{
        padding: 20px;
    }
}