/*********************************
* ************* BOOT *************
******************************** */
* {
    font-family: 'Figtree', sans-serif;
    box-sizing: border-box; 
}

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;
}

/*********************************
* ******** 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%;
}

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

.form_input{
    width: 100%;
    font-size: var(--textSize15);
    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:hover{
    background: var(--colorPrimaryDark);
}

/* 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: 500;
    cursor: pointer;
    outline: none;
}

.btn:hover {
    background: var(--colorPrimaryDark);
}

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

.btn-default:hover {
    background: var(--colorPrimaryDark);
}

.btn-secondary {
    background: var(--colorSecondary);
    color: #FFFFFF;
}

.btn-secondary:hover {
    background: var(--colorSecondaryDark);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
}

.btn-icon-element{
    height: 16px;
    margin-right: 10px;
}

/* Loading */
.mask_load{
    background: rgba(0, 0, 0, 0.8) !important;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999999999999999999999999;
    display: none;
}

.mask_load img{
    margin: auto;
    height: 90px;
}

/* Modal */
.mask_modal{
    background: rgba(0, 2, 20, 0.85) !important;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999999;
    display: flex;
    transition: all .3s;
    visibility: hidden;
    opacity: 0;
}

.modal{
    margin: auto;
    width: 75%;
    max-width: 90%;
    transition: all .3s;
    transform: scale(.5) translateY(10%);
    position: relative;
}

.modal_header_close{
    font-size: 1.4em;
    color: var(--colorText_50);
    cursor: pointer;
    background: #FFFFFF;
    position: absolute;
    right: -20px;
    top: -20px;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.modal_header_close:hover{
    color: var(--colorPrimary);
}

.modal_content{
    overflow: hidden;
    border-radius: var(--borderRadius);
}

.show_modal{
    visibility: visible;
    opacity: 1;
}

.show_modal .modal{
    transform: scale(1) translateY(0);
}

/* Title */
.title-section-wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

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

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

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

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

.padding_container_page {
    padding: 100px 0;
}

/*********************************
* *********** HEADER *************
******************************** */
.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.header_main{
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(2.5px);
}

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

.header_logo_branca{
    display: block;
}

.header_logo_default{
    display: none;
}

.header_nav { 
    align-items: center;
}

.header_nav_wrapper{
    align-items: center;
}

.header_nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--textSize14);
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    padding: 43px 15px 43px 15px;
    position: relative;
    border-bottom: 3px solid transparent;
}

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

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

.header_nav_mobile{
    display: none;
    cursor: pointer;
    stroke: #FFFFFF;
}

.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);
}

.header_fixed .header_logo_branca{
    display: none;
}

.header_fixed .header_logo_default{
    display: block;
}

.header_fixed .header_nav a {
    color: var(--colorText_70);
}

.header_fixed .header_nav a.active,
.header_fixed .header_nav a:hover{
    color: var(--colorText_90);
    border-color: var(--colorPrimary);
}

.header_fixed .header_nav a.btn_nav {
    color: #fff;
}

.header_fixed .header_nav_mobile{
    stroke: var(--colorPrimary);
}

/*********************************
* *********** CONTENT *************
******************************** */
/* Banner Hero */
.banner {
    width: 100%;
    position: relative;
    height: 100vh;
}

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

.banner_bottom_buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.banner_bottom .btn_whatsapp {
    background: #2BB301;
}

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

.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.60);
    padding-bottom: 0px;
    text-align: left;
    font-size: var(--textSize14);
    font-weight: 600;
}

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

.banner_bottom .swiper-pagination-bullet-active .bar {
    background: var(--colorPrimary);
}

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

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

.banner_container .banner_text {
    width: 60%;
}

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

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

.banner_image{
    width: 100%;
}

.banner_image_desktop{
    display: block;
}

.banner_image_mobile{
    display: none;
}

.banner_image img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* About */
.about{
    width: 100%;
}

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

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

.about_left_header{
    width: 100%;
    margin-bottom: 40px;
}

.about_left_header .title-section-h2 {
    color: var(--colorPrimary);
}

.about_left_header .title-section-line {
    background: var(--colorPrimary);
}
 
.about_left_header .title-section-h1 {
    color: var(--colorText_90);
}

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

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

.about_right{
    width: 50%;
    position: relative;
}

.about_right img{
    border-radius: 10px;
}

/* Diferenciais */
.differences{
    width: 100%;
    background: var(--colorSecondary);
}

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

.differences_header{
    width: calc(30% - 40px);
}

.differences_header .title-section-wrapper{
    width: 100%;
}

.differences_header .title-section-line {
    background: var(--colorPrimary);
}

.differences_header .title-section-h2 {
    color: var(--colorPrimary);
}

.differences_header .title-section-h1{
    width: 100%;
    color: #FFFFFF;
}

.differences_wrapper{
    width: 70%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.differences_box{
    background: #FFFFFF;
    padding: 24px;
    border-radius: 10px;
    gap: 28px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.differences_box_icon{
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #fef2e9;
}

.differences_box_content{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-direction: column;
}

.differences_box_content h4{
    font-size: var(--textSize18);
    line-height: 28px;
    font-weight: 600;
    color: var(--colorText_90);
}

.differences_box_content p{
    font-size: var(--textSize14);
    line-height: 20px;
    color: var(--colorText_60);
}

/* Regioes */
.regions{
    width: 100%;
}

.regions_content{
    gap: 80px;
}

.regions_header{
    width: 100%;
    justify-content: center;
    text-align: center;
}

.regions_header .title-section-wrapper{
    justify-content: center;
    width: 100%;
}

.regions_header .title-section-line {
    background: var(--colorPrimary);
}

.regions_header .title-section-h2 {
    color: var(--colorPrimary);
}

.regions_header .title-section-h1{
    width: 100%;
    color: var(--colorText_90)
}

.regions_wrapper{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.regions_wrapper_image{
    width: calc(50% - 50px)
}

.regions_wrapper_list{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--colorSecondary);
    border-radius: 10px;
    padding: 50px;
}

.regions_wrapper_list_item{
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
}

.regions_wrapper_list_item:last-child{
    border-bottom: none;
    padding-bottom: 0;
}

.regions_wrapper_list_item span{
    font-size: var(--textSize22);
    color: var(--colorPrimary);
    margin-right: 10px;
}

.regions_wrapper_list_item h3{
    font-size: var(--textSize18);
    font-weight: 600;
    color: #FFFFFF;
}

/* Testimony */
.testimony{
    width: 100%;
    overflow: hidden;
}

.testimony_content{
    gap: 80px;
}
 
.testimony_header{
    width: 100%;
    justify-content: center;
    text-align: center;
}

.testimony_header .title-section-wrapper{
    justify-content: center;
}

.testimony_header .title-section-line{
    background: var(--colorPrimary)
}

.testimony_header .title-section-h2 {
    color: var(--colorPrimary);
}

.testimony_header .title-section-h1 {
    color: var(--colorText_90);
}

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

.testimony_wrapper .swiper-slide{
    background: #FDEFEA;
    border-radius: 10px;
    padding: 40px;
}

.testimony_box{
    width: 100%;
    gap: 40px;
    flex-direction: column;
}

.testimony_box_icon{
    background: var(--colorPrimary);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.testimony_box_text{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

.testimony_box_text span{
    font-size: var(--textSize16);
    font-weight: 600;
    color: var(--colorText_80);
    line-height: 24px;
    position: relative;
    width: 100%;
    padding-top: 12px;
}

.testimony_box_text span::before{
    content: "";
    background: var(--colorPrimary);
    width: 30px;
    height: 2px;
    position: absolute;
    top: 0;
}

.testimony_buttons{
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin-top: -20px;
}

.testimony_button_prev,
.testimony_button_next{
    background: transparent;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    border: 1px solid var(--colorPrimary);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.testimony_button_prev.swiper-button-disabled,
.testimony_button_next.swiper-button-disabled {
    background: transparent;
    opacity: 0.4;
}

/* Products */
.products{
    width: 100%;
    background: #FDEFEA;
    overflow: hidden;
}

.products_header{
    width: 100%;
    margin-bottom: 60px;
}

.products_header .title-section-line{
    background: var(--colorPrimary);
}

.products_header .title-section-h2 {
    color: var(--colorPrimary);
}

.products_header .title-section-h1 {
    color: var(--colorText_90);
}

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

.products_header_title h1{
    width: 50%;
}

.products_header_paginator{
    gap: 10px;
}

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

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

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

.products_header_paginator_prev.swiper-button-disabled,
.products_header_paginator_next.swiper-button-disabled {
    background: transparent;
    opacity: 0.4;
}

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

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

.products_box{
    width: 100%;
    position: relative;
}

.products_box img{
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.products_box .products_box_title{
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 24px;
}

.products_box .products_box_title_text{
    display: flex;
    justify-content: space-between;
    background: var(--colorPrimary);
    padding: 16px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
}

.products_box .products_box_title_text h3{
    font-weight: 600;
    font-size: var(--textSize20);
}

.products_box .products_box_title_text span{
    font-size: 22px;
}

/* Contact */
.contact{
    width: 100%;
    background: var(--colorPrimary)
}
 
.contact_content{
    padding: 100px 0 120px 0;
    justify-content: center;
}

.contact_title{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 34px;
}

.contact_content h1{
    width: 100%;
    color: var(--colorWhite);
    text-align: center;
    padding: 0;
}

.contact_btn{
    background: var(--colorSecondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact_btn:hover{
    background: var(--colorPrimaryDark);
}

.contact_btn i{
    font-size: 20px;
}

/* Network */
.network{
    width: 100%;
}

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

.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: #FDF3F0;
    text-decoration: none;
}

.footer_main_header_network_item i{
    font-size: 16px;
    color: var(--colorPrimary);
}

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

.footer_main_bottom_bar{
    width: 1px;
    height: 40px;
    background: var(--colorBorder);
}

.footer_main_bottom_infos{
    gap: 40px;
}

.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_wrappper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.footer_main_bottom_info_circle{
    width: 6px;
    height: 6px;
    background: var(--colorPrimary);
    border-radius: 100%;
}

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

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

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

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

.footer_copy_content .copy_infos{
    align-items: center;
    gap: 25px;
}

.footer_copy_content .copy_infos .copy_author{
    align-items: center;
    gap: 12px;
}

.footer_copy_content .copy_infos .copy_author span{
    font-size: var(--textSize14);
    color: var(--colorText_80);
}

.footer_copy_content .copy_bar{
    width: 1px;
    height: 20px;
    background: var(--colorBorder);
}

.footer_copy_content .copy_infos .copy_top{
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer_copy_content .copy_infos .copy_top span{
    font-size: var(--textSize14);
    color: var(--colorText_80);
    font-weight: 500;
}

.footer_copy_content .copy_infos .copy_top i{
    width: 20px;
    height: 20px;
    background: var(--colorPrimary);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 12px;
}

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

/* Pages */
.banner_page{
    width: 100%;
    padding: 200px 0 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--colorPrimary);
}

.banner_page_content h1{
    width: 100%;
    font-size: var(--textSize40);
    color: #FFFFFF;
    font-weight: 600;
    text-align: center;
}

.banner_page_content span{
    width: 100%;
    font-size: var(--textSize18);
    color: rgba(255, 255, 255, 0.7);
    line-height: 26px;
    text-align: center;
    margin-top: 20px;
    font-weight: 400;
    padding: 0 100px;
}

/* Page error */
/* 404 */
.page_error{
    width: 100%;
    background: #FDEFEA;
}

.page_error_content{
    justify-content: center;
    padding: 100px 0;
}

.page_error .error_box_infos{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.page_error .error_box_infos h1 {
    width: 100%;
    font-size: var(--textSize90);
    text-align: center;
    font-weight: 500;
    color: var(--colorPrimary);
    padding-bottom: 10px;
}

.page_error .error_box_infos h2{
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: var(--textSize28);
    color: var(--colorText_90);
    padding-bottom: 10px;
}

.page_error .error_box_infos span{
    text-align: center;
    font-size: var(--textSize16);
    line-height: 22px;
    color: var(--colorText_70);
    display: flex;
    padding-bottom: 50px;
}

/*********************************
* *********** COOKIES *************
******************************** */
.cookies {
    color: var(--colorText_90);
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 99;
    font-size: var(--textSize14);
    line-height: 22px;
    box-shadow: 0 4px 70px rgba(2, 33, 23, 0.2);
    background: var(--colorWhite);
    display: flex;
}

.cookies_wrapper {
    padding: 30px 40px;
    margin: auto;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(1rem);
    animation: slideUp 0.5s forwards;
}

.cookies_wrapper p {
    padding-right: 40px;
    margin-bottom: 0;
}

@keyframes slideUp {
    to {
        transform: initial;
        opacity: initial;
    }
}

.cookies_btn {
    background: var(--colorPrimary);
    color: var(--colorWhite);
    cursor: pointer;
    border: none;
    padding: 0.8rem 50px;
    font-size: var(--textSize14);
    font-weight: bold;
    text-transform: uppercase;
    border-radius: var(--borderRadius);
    -moz-border-radius: var(--borderRadius);
    -webkit-border-radius: var(--borderRadius);
}

.cookies_btn:hover {
    background: var(--colorPrimaryDark);
}

/*********************************
* ******** MEDIA QUERIES *********
******************************** */
/* Media Queries */
/* 1200 */
@media (max-width: 1200px) {
    /* Header */
    .header_main{
        padding: 29.5px 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(--colorSecondary);
        color: #FFFFFF !important;
    }

    .header_nav a.btn_nav:hover{
        background: var(--colorSecondaryDark);
    }

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

    .header_nav_close:hover{
        stroke: var(--colorPrimaryDark);
    }

    /* Banner hero */
    .banner_container .banner_text{
        width: 80%;
    }
}

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

    .padding_container_page {
        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;
    }

    /* Banner hero */
    .banner_container .banner_text h1{
        font-size: var(--textSize60);
        line-height: 60px;
    }

    /* About */
    .about_left {
        width: 100%;
        margin-bottom: 30px;
    }

    .about_left_header{
        margin-bottom: 30px;
    }

    .about_right{
        width: 100%;
    }

    .about_right_img{
        width: 100%;
    }

    /* Diferenciais */
    .differences_content {
        gap: 50px;
    }

    .differences_header{
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .differences_header .title-section-wrapper{
        justify-content: center;
    }

    .differences_wrapper{
        width: 100%;
        grid-template-columns: 1fr;
    }

    /* Regioes */
    .regions_content{
        gap: 40px;
    }

    .regions_wrapper_image {
        width: 100%;
    }

    .regions_wrapper_list{
        width: 100%;
        margin-top: 30px;
    }

    .products_header{
        margin-bottom: 40px;
    }

    .products_header .title-section-wrapper {
        justify-content: center;
        text-align: center;
    }

    .products_header_title {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 20px;
        width: 100%;
    }

    .products_header_title h1{
        width: 100%;
    }

    /* Depoimentos */
    .testimony_content {
        gap: 40px;
    }

     /* Footer */
    .footer_main_content {
        padding: 40px 0;
    }

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

    .footer_main_bottom_infos{
        gap: 20px;
    }

    .footer_main_bottom_bar{
        display: none;
    }

    .footer_copy_content {
        flex-direction: column;
        gap: 15px;
    }

    .footer_copy_content .copy_infos{
        gap: 15px;
    }

    /* Cookies */
    .cookies_wrapper {
        flex-wrap: wrap;
    }

    .cookies_wrapper p {
        width: 100%;
        text-align: center;
        padding-bottom: 25px;
        padding-right: 0;
    }

    .cookies_btn {
        width: 100%;
    }

    /* Page About */
    .banner_page {
        padding: 246px 0 90px 0;
    }

    .about_page_texts_p{
        width: 100%;
    }

    .about_page_texts_image{
        width: 100%;
        margin-top: 30px;
    }

    .about_page_differences_left{
        width: 100%;
    }

    .about_page_differences_video{
        width: 100%;
        margin-top: 30px;
    }

    .about_page_location_header{
        justify-content: start;
    }

    .about_page_location_header_bar{
        display: none;
    }

    .about_page_location_header span{
        width: 100%;
        margin-top: 20px;
    }

    .about_page_location_wrapper{
        gap: 30px;
    }

    .about_page_location_wrapper_image,
    .about_page_location_wrapper_list{
        width: 100%;
    }

    /* Page About */
    .solution_page_list{
        flex-wrap: wrap;
    }

    .solution_page_list_image, 
    .solution_page_list_info{
        width: 100%;
    }

    .solution_page_list_image{
        height: auto;
    }

    .solution_page_list_info{
        padding: 40px;
    }

    .solution_page_appeals_header{
        margin-bottom: 40px;
    }

    .solution_page_appeals_items{
        gap: 25px;
    }

    .solution_page_appeals_item{
        width: 100%;
        flex: none;
    }

    /* Page Work */
    .work_page_form_left,
    .work_page_form_right{
        width: 100%;
    }

    .work_page_form_left{
        gap: 20px;
    }

    .work_page_form_right{
        margin-top: 40px;
        padding: 40px;
    }

    /* Page Contact */
    .contact_page_form_left,
    .contact_page_form_right{
        width: 100%;
    }

    .contact_page_form_left{
        gap: 50px;
    }

    .contact_page_form_left_header h1{
        margin-bottom: 15px;
    }

    .contact_page_form_right{
        margin-top: 40px;
        padding: 40px;
    }

    /* Page Ombudsman */
    .ombudsman_page_left,
    .ombudsman_page_right{
        width: 100%;
    }

    .ombudsman_page_bar{
        display: none;
    }

    .ombudsman_page_left{
        gap: 30px;
    }

    .ombudsman_page_right{
        margin-top: 40px;
        gap: 30px;
    }

    .ombudsman_page_right_item{
        width: calc(50% - 20px);
    }

    /* Page Sectors */
    .sectors h2{
        width: 100%;
    }

    .sectors_bar{
        display: none;
    }

    .sectors_wrapper{
        width: 100%;
        margin-top: 20px;
    }
}

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

    .padding_container_page{
        padding: 50px 0;
    }

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

    /* Header */
    .header{
        position: relative;
    }

    .header_top_content{
        justify-content: center;
    }

    .header_top_text{
        margin-right: 0;
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
    }

    .header_top_text_bar{
        margin: 0 10px;
    }

    .header_main {
        padding: 15px 0;
        border-top: 1px solid var(--colorBorder);
    }

    .header_logo img{
        height: 42px;
    }

    .header_logo_branca{
        display: none;
    }

    .header_logo_default{
        display: block;
    }

    .header_nav_mobile{
        stroke: var(--colorPrimary);
    }

    .header_nav{
        top: -76px;
    }

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

    /* Banner hero */
    .banner{
        height: auto;
    }

    .banner_bottom{
        bottom: 30px;
    }

    .banner_container {
        bottom: 170px;
    }
    
    .banner_container .banner_text{
        width: 100%;
    }

    .banner_container .banner_text h1{
        font-size: var(--textSize40);
        line-height: 40px;
    }

    .banner_container .banner_text span{
        font-size: var(--textSize16);
        line-height: 22px;
    }

    .banner_bottom .swiper-pagination{
        margin-top: 40px;
    }

    .banner_image_desktop{
        display: none;
    }
    
    .banner_image_mobile{
        display: block;
    }

    .banner_image img{
        height: 550px;
    }

    /* About */
    .about_right_btn{
        right: 0;
        bottom: -10px;
    }

    .about_right_btn_icon{
        align-items: center;
    }

    .about_right_btn_icon img{
        height: 40px;
    }

    .about_right_btn span{
        padding: 20px;
    }

    /* Solutions */
    .solutions_content_symbol {
        height: 120px;
        top: -50px;
    }

    .solutions_header{
        margin-bottom: 34px;
    }

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

    .footer_main_info_content{
        justify-content: center;
        display: inline-grid;
    }

    .footer_main_info_content .footer_info:last-child{
        margin-left: 0;
        margin-top: 15px;
    }

    /* Page About */
    .banner_page {
        padding: 90px 0 90px 0;
    }

    .banner_page_content h1{
        font-size: var(--textSize40);
    }

    .about_page_trajectory_header{
        gap: 20px;
        margin-bottom: 40px;
    }

    .about_page_location_wrapper_list{
        padding: 26px;
    }

    .about_page_location_wrapper_list_item_info{
        gap: 15px;
    }

    .about_page_location_wrapper_list_item_info img,
    .about_page_location_wrapper_list_item_info span{
        width: 100%;
    }

    /* Page About */
    .solution_page_list_info{
        padding: 34px;
    }

    .solution_page_lists_content{
        gap: 20px;
    }

    .solution_page_list_info h3{
        padding-bottom: 10px;
    }

    .solution_page_appeals_header h1{
        font-size: var(--textSize32);
    }

    /* Page Work */
    .work_page_form_right{
        padding: 30px;
    }

    .work_page_photo{
        width: 50%;
    }

    /* Page Contact */
    .contact_page_form_left{
        gap: 30px;
    }

    .contact_page_form_left_items{
        gap: 15px;
    }

    .contact_page_form_right{
        padding: 30px;
        margin-top: 30px;
    }

    /* Page Ombudsman */
    .ombudsman_page_right_item{
        width: 100%;
    }

    .ombudsman_page_right_item img{
        margin-bottom: 15px;
    }

    /* Page Policies */
    .policies_page_item_header{
        padding: 15px 20px;
    }

    .policies_page_item_header_titles_icon{
        margin-right: 5px;
    }

    .policies_page_item_header_titles h3{
        font-size: var(--textSize16);
    }

    .policies_page_item_content{
        padding: 20px;
    }

    /* Page Sectors */
    .sectors_content{
        padding: 40px 0;
    }
}