/*********************************
* ************* BOOT *************
******************************** */
* {
    font-family: 'Inter', sans-serif;
}

@font-face {
    font-family: 'Noir Pro';
    src: url('fonts/noirpro-light.woff2') format('woff2'), url('fonts/noirpro-light.woff') format('woff');
    font-weight: 300; 
    font-style: normal;
}

@font-face {
    font-family: 'Noir Pro';
    src: url('fonts/noirpro-regular.woff2') format('woff2'), url('fonts/noirpro-regular.woff') format('woff');
    font-weight: 400; 
    font-style: normal;
}

@font-face {
    font-family: 'Noir Pro';
    src: url('fonts/noirpro-medium.woff2') format('woff2'), url('fonts/noirpro-medium.woff') format('woff');
    font-weight: 500; 
    font-style: normal;
}

@font-face {
    font-family: 'Noir Pro';
    src: url('fonts/noirpro-bold.woff2') format('woff2'), url('fonts/noirpro-bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

body {
    background: #FFFFFF;
    overflow-x: hidden;
}

h1{
    font-family: "Noir Pro", Sans-serif;
    font-weight: 500;
}

/*********************************
* ******** 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(--colorSecondary);
    color: #FFFFFF;
}

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

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

.btn-icon-element{
    margin-left: 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: 400;
    line-height: 20px;
    width: 100%;
    margin-bottom: 15px;
}

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

.title-section-h1 {
    font-size: var(--textSize36);
    font-weight: 500;
    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_top{
    background: #FFFFFF;
    width: 100%;
    padding: 9px 0;
}

.header_top_content{
    justify-content: end;
}

.header_top_text{
    align-items: center;
    margin-right: 20px;
}

.header_top_text a{
    font-size: var(--textSize13);
    color: var(--colorText_60);
    text-decoration: none;
}

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

.header_top_language{
   position: relative;
}

.header_top_language .language_box{
    align-items: center;
    border: 1px solid var(--colorBorder);
    border-radius: 40px;
    cursor: pointer;
    padding: 6px 10px;
}

.header_top_language .language_box_icon{
    font-size: var(--textSize13);
    color: var(--colorText_60);
    margin-left: 3px;
}

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

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

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

.header_fixed .header_nav a.btn_nav {
    color: var(--colorSecondary);
    border: 1px solid var(--colorSecondary);
}

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

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

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

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

.banner_container .banner_text {
    width: 60%;
}

.banner_container .banner_text h1 {
    font-size: var(--textSize68);
    line-height: 70px;
    font-weight: 500;
    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_container .banner_bottom{
    width: 100%;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.banner_container .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_container .banner_bottom .swiper-pagination-bullet .text{
    width: 100%;
    color: rgba(255, 255, 255, 0.60);
    padding-bottom: 8px;
    text-align: left;
    font-size: var(--textSize15);
    font-weight: 600;
}

.banner_container .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_container .banner_bottom .swiper-pagination-bullet-active .bar {
    background: var(--colorSecondary);
}

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

.banner_image{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.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(40% - 40px);
}

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

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

.about_left_header .title-section-line {
    background: var(--colorSecondary);
}
 
.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_left_btn{
    margin-top: 34px;
}

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

.about_right_btn{
    position: absolute;
    bottom: 36px;
    right: 84px;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    height: auto;
    overflow: hidden;
}

.about_right_btn:hover{
    background: var(--colorSecondaryClear);
}

.about_right_btn_icon{
    background: var(--colorSecondaryDark);
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
}

.about_right_btn span{
    padding: 30px 42px;
    line-height: 20px;
}

/* Solutions */
.solutions{
    width: 100%;
    background: var(--colorPrimaryDark);
}

.solutions_bg{
    background: url(../../img/bg-solutions.jpg) no-repeat top center;
    width: 100%;
    height: 140px;
}

.solutions_content{
    position: relative;
}

.solutions_content_symbol{
    position: absolute;
    right: 0;
    top: -68px;
}

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

.solutions_header .title-section-h2 {
    color: var(--colorSecondary);
}

.solutions_header .title-section-line {
    background: var(--colorSecondary);
}

.solutions_header_title{
    width: 100%;
    align-items: center;
    margin-top: 30px;
    justify-content: space-between;
}

.solutions_header_title h1 {
    color: #FFFFFF;
    width: calc(60% - 40px);
    padding: 0;
}
 
.solutions_header_title span{
    font-size: var(--textSize14);
    color: rgba(255, 255, 255, 0.7);
    line-height: 22px;
    width: 40%;
    text-align: right;
}

.solutions_items{
    width: 100%;
    justify-content: space-between;
}

.solutions_items_left{
    width: 30%;
    border-radius: var(--borderRadius);
    overflow: hidden;
}

.solutions_items_left_box{
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 34px 40px;
    cursor: pointer;
    align-items: center;
}

.solutions_items_left_box:hover{
    background: rgba(255, 255, 255, 0.1);
}

.solutions_items_left_box.active{
    background: #FFFFFF;
    border-left: 4px solid var(--colorSecondary);
    border-bottom: none;
}

.solutions_items_left_box:last-child{
    border-bottom: none;
}

.solutions_items_left_box_image{
    margin-right: 15px;
}

.solutions_items_left_box_title{
    font-size: var(--textSize17);
    color: #FFFFFF;
    line-height: 22px;
    font-weight: 600;
}

.solutions_items_left_box.active .solutions_items_left_box_title{
    color: var(--colorText_90);
}

.solutions_items_left_box_content{
    display: none;
}

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

.solutions_items_content_image{
    border-radius: var(--borderRadius);
    margin-bottom: 24px;
}

.solutions_items_content p{
    font-size: var(--textSize16);
    color: #FFFFFF;
    line-height: 22px;
}

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

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

.work_left{
    width: 30%;
}

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

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

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

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

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

.work_left_btn{
    margin-top: 34px;
}

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

.work_right img{
    width: 100%;
}

/* Sectors */
.sectors{
    width: 100%;
    background: #FFFFFF;
    border-top: 1px solid var(--colorBorder);
}
 
.sectors_content{
    padding: 60px 0;
    justify-content: space-between;
    align-items: center;
}

.sectors h2{
    font-size: var(--textSize20);
    font-weight: 500;
    color: var(--colorText_90);
}

.sectors_bar{
    width: 1px;
    height: 60px;
    background: var(--colorBorder);
}

.sectors_wrapper{
    width: 74%;
    overflow: hidden;
}

.sectors_wrapper .swiper-slide{
    display: flex;
}

.sectors_box{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    border: 1px solid var(--colorBorder);
    border-radius: var(--borderRadius);
    padding: 20px;
}

.sectors_box h3{
    font-size: var(--textSize16);
    color: var(--colorText_70);
    font-weight: 500;
}

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

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

.footer_main{
    width: 100%;
}

.footer_main_content{
    padding: 70px 0;
}

.footer_main_logo{
    margin-bottom: 40px;
}

.footer_main_infos{
    width: 100%;
    justify-content: space-between;
    align-items: start;
}

.footer_main_info{
    display: inline-grid;
}

.footer_main_info_header{
    margin-bottom: 32px;
    position: relative;
}

.footer_main_info_header h3{
    font-size: var(--textSize15);
    color: var(--colorText_90);
}

.footer_main_info_header::before{
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--colorPrimary);
    bottom: -10px;
}

.footer_main_info_content{
    display: flex;
    flex-wrap: wrap;
}

.footer_main_info .footer_info{
    align-items: center;
    text-decoration: none;
}

.footer_main_info_content .footer_info:last-child{
    margin-left: 30px;
}

.footer_main_info .footer_info img{
    margin-right: 15px;
}

.footer_info_text{
    display: inline-grid;
}

.footer_info_text .footer_info_title{
    font-size: var(--textSize13);
    color: var(--colorText_90);
    font-weight: 600;
}

.footer_info_text .footer_info_span{
    font-size: var(--textSize14);
    color: var(--colorText_80);
}

.footer_main_info .networks_items{
    align-items: center;
}

.footer_main_info .networks_item{
    text-decoration: none;
    background: rgba(40, 158, 108, 0.1);
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    margin-right: 10px;
}

.footer_main_info .networks_item img{
    height: 16px;
}

.footer_main_info .networks_item:last-child{
    margin-right: 0;
}

.footer_main_info .networks_item:hover{
    background: rgba(40, 158, 108, 0.2);
}

.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{
    font-size: var(--textSize14);
    color: var(--colorText_80);
}

.footer_copy_content .copy_author{
    align-items: center;
}

.footer_copy_content .copy_author span{
    font-size: var(--textSize13);
    color: var(--colorText_70);
    margin-right: 10px;
}

.footer_copy_content .copy_author .polo{
    margin-left: 12px;
}

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

.banner_page.about video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que o vídeo preencha o espaço */
    z-index: -1; /* Faz o vídeo ficar atrás do conteúdo */
}

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

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

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

.banner_page.policies {
    background: url(../../img/bg-page-policies.jpg) center / cover no-repeat;
}

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

.banner_page_content h1{
    width: 100%;
    font-size: var(--textSize54);
    color: #FFFFFF;
    font-weight: 500;
    text-align: center;
    position: relative; /* Garante que o conteúdo fique acima do vídeo */
    z-index: 1;
}

.content_page{
    width: 100%;
}

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

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

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

.about_page_texts_p p{
    font-size: var(--textSize16);
    color: var(--colorText_80);
    line-height: 20px;
    margin-bottom: 20px;
}

.about_page_texts_p p:last-child{
    margin-bottom: 0;
}

.about_page_texts_image{
    width: calc(50% - 30px);
    border-radius: var(--borderRadius);
}

.about_page_differences{
    background: #EAF5F0;
}

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

.about_page_differences_left{
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}

.about_page_differences_left_item{
    display: flex;
    align-items: start;
}

.about_page_differences_left_item img{
    margin-right: 25px;
}

.about_page_differences_left_item_text{
    display: inline-grid;
    gap: 8px;
}

.about_page_differences_left_item_text h3{
    font-size: var(--textSize18);
    color: var(--colorText_90);
}

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

.about_page_differences_video{
    width: calc(60% - 40px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--borderRadius);
    overflow: hidden;
}

.about_page_differences_video_image{
    width: 100%;
}

.about_page_differences_video_play{
    cursor: pointer;
    position: absolute;
    z-index: 9;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.about_page_differences_video_play img{
    width: 70px;
    height: 70px;
}

.about_page_differences_video_play span{
    font-size: var(--textSize16);
    color: #FFFFFF;
    width: 100%;
    text-align: center;
}

.about_page_trajectory{
    width: 100%;
    background: var(--colorPrimaryDark);
    overflow: hidden;
}

.about_page_trajectory_header{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
    align-items: center;
}

.about_page_trajectory_header h1{
    font-size: var(--textSize36);
    font-weight: 500;
    color: #FFFFFF;
}

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

.trajectory_header_paginator_next{
    margin-left: 10px;
}

.trajectory_header_paginator_prev span,
.trajectory_header_paginator_next span {
    font-size: 1.5em;
    color: var(--colorSecondary);
}

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

.trajectory_header_paginator_prev.swiper-button-disabled,
.trajectory_header_paginator_next.swiper-button-disabled {
    background: transparent;
    opacity: 0.4;
}

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

.about_page_trajectory_wrapper .swiper-slide {
    background: #FFFFFF;
    border-radius: var(--borderRadius);
    overflow: hidden;
}

.about_page_trajectory_wrapper .trajectory_box{
    padding: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.about_page_trajectory_wrapper .trajectory_box_header{
    background: #EFF7E6;
    border-radius: var(--borderRadius);
    padding: 15px 22px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.about_page_trajectory_wrapper .trajectory_box_header h3{
    font-size: var(--textSize16);
    font-weight: 700;
    color: var(--colorPrimaryDark);
}

.about_page_trajectory_wrapper .trajectory_box_header::after{
    content: "";
    width: 4px;
    height: 30px;
    border-radius: 6px;
    background: var(--colorSecondary);
    position: absolute;
    left: 0;
}

.about_page_trajectory_wrapper .trajectory_box_text{
    width: 100%;
    display: flex;
}

.about_page_trajectory_wrapper .trajectory_box_text span{
    font-size: var(--textSize16);
    color: var(--colorText_80);
    line-height: 20px;
}

.about_page_trajectory_pagination.swiper-pagination {
    position: relative;
    bottom: 0;
    width: 100%;
    justify-content: left;
    display: flex;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    height: 5px;
    margin-top: 40px;
}

.about_page_trajectory_pagination .swiper-pagination-bullet {
    width: 100%;
    border-radius: 10px;
    background: var(--colorSecondary);
    margin: 0 !important;
    height: 5px;
}

.about_page_trajectory_pagination .swiper-pagination-bullet-active {
    background: var(--colorSecondary);
}

.about_page_location{
    width: 100%;
}

.about_page_location_header{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.about_page_location_header h1{
    font-size: var(--textSize36);
    color: var(--colorText_90);
}

.about_page_location_header_bar{
    width: 1px;
    height: 60px;
    background: var(--colorBorder);
}

.about_page_location_header span{
    font-size: var(--textSize16);
    color: var(--colorText_80);
    line-height: 22px;
    width: 70%;
}

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

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

.about_page_location_wrapper_list{
    width: calc(50% - 25px);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border: 1px solid var(--colorBorder);
    border-radius: var(--borderRadius);
    padding: 50px;
}

.about_page_location_wrapper_list_item_line{
    width: 100%;
    height: 1px;
    background: var(--colorBorder);
}

.about_page_location_wrapper_list_item{
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--colorBorder);
    padding-bottom: 30px;
}

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

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

.about_page_location_wrapper_list_item h3{
    font-size: var(--textSize18);
    font-weight: 600;
    color: var(--colorText_90);
}

.about_page_location_wrapper_list_item h3 b{
    font-weight: 700;
    color: var(--colorPrimary);
}

.about_page_location_wrapper_list_item_info{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
}

.about_page_location_wrapper_list_item_info img{
    width: 35%;
    border-radius: var(--borderRadius);
    object-fit: cover;
}

.about_page_location_wrapper_list_item_info span{
    width: calc(65% - 20px);
    font-size: var(--textSize14);
    color: var(--colorText_80);
    line-height: 20px;
}

.about_page_photos{
    width: 100%;
    overflow: hidden;
}

.about_page_photos .swiper-slide img{
    width: 100%;
}

/* Solutions */
.solution_page_lists{
    width: 100%;   
}

.solution_page_lists_content{
    gap: 40px;
}

.solution_page_list{
    display: flex;
    align-items: center;
    background: #EAF5F0;
    border-radius: var(--borderRadius); 
    width: 100%;
    overflow: hidden;
}

.solution_page_list.middle{
    flex-direction: row-reverse;
}

.solution_page_list_image{
    width: 50%;
    height: 100%;
    object-fit: cover ;
}

.solution_page_list_info{
    width: 50%;
    padding: 70px;
}

.solution_page_list_info h3{
    font-size: var(--textSize20);
    color: var(--colorText_90);
    padding-bottom: 18px;
}

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

.solution_page_appeals{
    width: 100%;
    background: #EAF5F0;
}

.solution_page_appeals_header{
    width: 100%;
    margin-bottom: 50px;
}

.solution_page_appeals_header h1{
    font-size: var(--textSize36);
    color: var(--colorText_90);
    font-weight: 500;
}

.solution_page_appeals_items{
    display: inline-flex;
    flex-wrap: wrap;
    gap: 36px;
}

.solution_page_appeals_item{
    flex: 1;
    display: flex;
    align-items: center;
}

.solution_page_appeals_item img{
    margin-right: 25px;
}

.solution_page_appeals_item_text{
    display: inline-grid;
    gap: 8px;
}

.solution_page_appeals_item_text h3{
    font-size: var(--textSize18);
    color: var(--colorText_90);
}

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

.solution_page_appeals_video{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--borderRadius);
    overflow: hidden;
    margin-top: 40px;
}

.solution_page_appeals_video_image{
    width: 100%;
}

.solution_page_appeals_video_play{
    cursor: pointer;
    position: absolute;
    z-index: 9;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.solution_page_appeals_video_play img{
    width: 70px;
    height: 70px;
}

.solution_page_appeals_video_play span{
    font-size: var(--textSize16);
    color: #FFFFFF;
    width: 100%;
    text-align: center;
}

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

.solution_page_appeals_description p{
    font-size: var(--textSize16);
    color: var(--colorText_80);
    margin-bottom: 15px;
}

.solution_page_appeals_description p:last-child{
    margin-bottom: 0;
}

/* Works */
.work_page_form{
    background: #EAF5F0;
}

.work_page_form_content{
    align-items: start;
    justify-content: space-between;
}

.work_page_form_left{
    width: 34%;
    display: inline-grid;
    gap: 30px;
}

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

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

.work_page_form_right{
    width: calc(66% - 50px);
    background: #FFFFFF;
    border-radius: var(--borderRadius);
    padding: 60px;
}

.work_page_photos{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.work_page_photo{
    width: 25%;
}

/* Page Contact */
.contact_page_form{
    width: 100%;
    background: #EAF5F0;
}

.contact_page_form_content{
    align-items: start;
    justify-content: space-between;
}

.contact_page_form_left{
    width: 34%;
    display: inline-grid;
    gap: 50px;
}

.contact_page_form_left_header{
    display: inline-grid;
}

.contact_page_form_left_header h1{
    font-size: var(--textSize36);
    line-height: 40px;
    font-weight: 500;
    color: var(--colorText_90);
    margin-bottom: 25px;
}

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

.contact_page_form_left_items{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact_page_form_left_item{
    width: 100%;
    border: 2px solid var(--colorPrimary);
    border-radius: var(--borderRadius);
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 15px;
    text-decoration: none;
}

.contact_page_form_left_item img{
    width: 44px;
    height: 44px;
}

.contact_page_form_left_item_text{
    display: inline-grid;
    gap: 2px;
}

.contact_page_form_left_item_text_title{
    font-size: var(--textSize13);
    font-weight: 600;
    color: var(--colorText_90);
}

.contact_page_form_left_item_text_span{
    font-size: var(--textSize16);
    color: var(--colorText_80);
}

.contact_page_form_right{
    width: calc(66% - 50px);
    background: #FFFFFF;
    border-radius: var(--borderRadius);
    padding: 60px;
}

.contact_page_map{
    padding-bottom: 40% !important;
    height: 560px;
}

/* Page Ombudsman */
.ombudsman_page{
    width: 100%;
    background: #EAF5F0;
}

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

.ombudsman_page_left{
    width: 34%;
    display: inline-grid;
    gap: 50px;
}

.ombudsman_page_left_text{
    font-size: var(--textSize16);
    line-height: 22px;
    color: var(--colorText_80);
    display: flex;
    flex-wrap: wrap;
}

.ombudsman_page_left_text p{
    margin-bottom: 20px;
}

.ombudsman_page_left_text p:last-child{
    margin-bottom: 0;
}

.ombudsman_page_left_item{
    width: 100%;
    border: 2px solid var(--colorPrimary);
    border-radius: var(--borderRadius);
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 15px;
    text-decoration: none;
}

.ombudsman_page_left_item img{
    width: 44px;
    height: 44px;
}

.ombudsman_page_left_item_text{
    display: inline-grid;
    gap: 2px;
}

.ombudsman_page_left_item_text_title{
    font-size: var(--textSize13);
    font-weight: 600;
    color: var(--colorText_90);
}

.ombudsman_page_left_item_text_span{
    font-size: var(--textSize16);
    color: var(--colorText_80);
}

.ombudsman_page_bar{
    width: 1px;
    height: 400px;
    background: #B9DCCC;
}

.ombudsman_page_right{
    width: calc(66% - 140px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

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

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

.ombudsman_page_right_item_text{
    display: inline-grid;
    gap: 8px;
}

.ombudsman_page_right_item_text h3{
    font-size: var(--textSize18);
    color: var(--colorText_90);
}

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

/* Page Policies */
.policies_page{
    width: 100%;
    background: #EAF5F0;
}

.policies_page_content{
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.policies_page_item_header{
    width: 100%;
    background: #FFFFFF;
    border-radius: var(--borderRadius);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 34px;
    cursor: pointer;
}

.policies_page_item_header_titles{
    display: flex;
    align-items: center;
}

.policies_page_item_header_titles_icon{
    font-size: var(--textSize20);
    color: var(--colorText_70);
    margin-right: 10px;
}

.policies_page_item_header_titles h3{
    font-size: var(--textSize18);
    color: var(--colorText_90);
    font-weight: 600;
}

.policies_page_item_header_download{
    width: 36px;
    height: 36px;
    border-radius: var(--borderRadius);
    background: var(--colorPrimary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    text-decoration: none;
}

.policies_page_item_content{
    width: 100%;
    background: #D1DFD9;
    border-radius: var(--borderRadius);
    padding: 34px;
    margin-top: 15px;
    display: none;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.policies_page_item_content p{
    font-size: var(--textSize14);
    line-height: 18px;
    color: var(--colorText_90);
    margin-bottom: 15px;
}

.policies_page_item_content p:last-child{
    margin-bottom: 0;
}

.policies_page_item_content ul{
    list-style: disc;
    margin-left: 20px;
}

.policies_page_item_content ul li{
    font-size: var(--textSize14);
    line-height: 18px;
    color: var(--colorText_90);
    margin-bottom: 15px;
}

.policies_page_item_content ul li:last-child{
    margin-bottom: 0;
}

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

.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: -50px;
        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%;
        border-color: var(--colorPrimary);
        padding: 15px 30px;
        margin-left: 0;
        background: var(--colorPrimary);
        color: #FFFFFF !important;
    }

    .header_nav a.btn_nav:hover{
        background: var(--colorPrimaryDark);
        border-color: var(--colorPrimaryDark);
    }

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

    /* Solutions */
    .solutions_header_title{
        display: inline-grid;
    }

    .solutions_header_title h1{
        width: 100%;
    }

    .solutions_header_title span{
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }

    .solutions_items_left{
        width: 100%;
    }

    .solutions_items_left_box{
        padding: 24px;
    }

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

    .solutions_items_content img{
        width: 100%;
    }

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

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

    /* Footer */
    .footer_main_content{
        padding: 40px 0;
        justify-content: center;
    }

    .footer_main_infos{
        display: inline-grid;
        gap: 20px;
        justify-content: center;
    }

    .footer_main_info_header{
        text-align: center;
    }

    .footer_main_info_header::before{
        left: 50%;
        margin-left: -10px;
    }

    .footer_main_info{
        justify-content: center;
    }

    .footer_main_info .footer_info{
        justify-content: center;
    }

    .footer_main_info .footer_info img{
        margin-right: 10px;
    }

    .footer_copy_content{
        justify-content: center;
    }

    .footer_copy_content .copy_author{
        justify-content: center;
        margin-top: 15px;
        width: 100%;
    }

    /* 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,
    .banner_image{
        height: auto;
    }

    .banner_content{
        bottom: 30px;
    }
    
    .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_container .banner_bottom{
        flex-wrap: wrap;
        margin-top: 30px;
    }

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

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