/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
a {
  color: #3540F4;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: #0C047D;
  text-decoration: none;
}

.btn-laranja {
  border-radius: 5px;
  border: unset;
  background: #E1AB39;
  padding: 10px 20px;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.5s;
}

.btn-laranja:hover, .btn-laranja:focus, .btn-laranja:active {
  background: #E9C156;
  color: #000;
}

.text-justify {
  text-align: justify;
}

.mobile { display: none; }

@media (max-width: 768px) {
  .desktop { display: none !important; }
  .mobile { display: block; }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 100px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  border-bottom: 1px solid #B4B4B4;
  background: #011F5D;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
  background: #011F5D;
}

#header .logo img {
  max-height: 60px;
  max-width: 250px;
}

@media (max-width: 768px) {
  #header {
    height: 80px;
    padding: 0 15px;
  }

  #header .logo img {
    max-height: 45px;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul, .dropdown_perfil {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li, .dropdown_perfil li {
  position: relative;
}

.navbar a:before {
  content: "";
  position: absolute;
  background: transparent;
  height: 5px;
  width: 40px;
  border-radius: 5px;
  top: 0;
  left: calc(50% - 20px);
  transition: all 0.5s;
}

.navbar a,
.navbar a:focus,
.dropdown_perfil a,
.dropdown_perfil a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  transition: 0.3s;
  color: #FFF;
}

.navbar a i,
.navbar a:focus i,
.dropdown_perfil a i,
.dropdown_perfil a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a,
.dropdown_perfil a:hover,
.dropdown_perfil .active,
.dropdown_perfil .active:focus,
.dropdown_perfil li:hover>a {
  color: #FFF;
}

.navbar a:hover:before,
.navbar .active:before,
.navbar .active:focus:before {
  content: "";
  position: absolute;
  background: #E1AB39;
  height: 3px;
  width: 40px;
  border-radius: 5px;
  top: 0;
  left: calc(50% - 20px);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #21262a;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #3498db;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (max-width: 768px) {
  #header .align-items-center {
    justify-content: space-between !important;
  }

  #header .me-auto {
    margin: 0 !important;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #BE1823;
  font-size: 32px;
  margin-left: 20px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    color: #FFF;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(33, 38, 42, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 25px;
  right: 26px;
  background: #e1ab39;
  border-radius: 50%;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 65px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 25px !important;
  color: #384046;
  text-align: center;
  color: #03051A;
  margin: 0 10px;
  font-size: 12px;
  font-weight: 500;
  display: block;
}

.navbar-mobile .btn {
  border-radius: 8px;
  background: #e1ab39;
  margin: 0 10px;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.navbar-mobile .btn:hover {
  background: #6D0D14;
  color: #FFF;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #03051A;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #3498db;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

.page-wrapper { padding-top: 100px; }

.nav_botoes {
  display: contents;
}

.btn_login {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 15px;
  transition: all 0.5s;
  border-radius: 3px;
}

.btn_login:hover, .btn_login:active, .btn_login:focus {
  color: #FFF;
  text-decoration: unset;
  background: #ffffff3d;
}

.nav_botoes img, .dropdown_perfil img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}


.dropdown_perfil .dropdown ul {
  display: block;
  position: absolute;
  right: -20px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0px 4px 19px 0px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

.dropdown_perfil ul li a {
  color: #1F2133;
  font-size: 12px;
  font-weight: 500;
}

.dropdown_perfil .dropdown ul li {
  min-width: 200px;
}

.dropdown_perfil .dropdown ul li+li {
  border-top: 1px solid #D9D9D9;
}

.dropdown_perfil .dropdown ul a {
  padding: 10px 20px;
  color: #03051A;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  display: block;
}

.dropdown_perfil .dropdown ul a:hover,
.dropdown_perfil .dropdown ul .active:hover,
.dropdown_perfil .dropdown ul li:hover>a {
  color: #BE1823;
}

.dropdown_perfil .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.dropdown_perfil .dropdown .dropdown ul {
  top: 0;
  right: calc(100% - 30px);
  visibility: hidden;
}

.dropdown_perfil ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.dropdown_perfil .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .dropdown_perfil .dropdown .dropdown ul {
    left: -90%;
  }

  .dropdown_perfil .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (max-width: 768px) {
  .page-wrapper { padding-top: 80px; }

  .dropdown_perfil, .btn_login, .nav_botoes {
    display: none !important;
  }
}

.btn_comprar {
  border-radius: 5px;
  border: unset;
  background: #E1AB39;
  display: inline-flex;
  padding: 10px 20px;
  align-items: flex-start;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin-left: 20px;
  transition: all 0.5s;
}

.btn_comprar:hover, .btn_comprar:focus, .btn_comprar:active {
  background: #E9C156;
  color: #000;
}

@media (max-width: 1400px) {
  .btn_comprar {
    padding: 10px 20px;
    font-size: 14px;
  }

  .navbar a, .navbar a:focus, .dropdown_perfil a, .dropdown_perfil a:focus {
    padding: 10px 0 10px 25px;
  }
  .nav_botoes {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .btn_comprar {
    padding: 7px 20px;
    font-size: 14px;
  }

  .header-social-links { display: none !important; }
  #header > .align-items-center { justify-content: space-between; }
  #header > .align-items-center .me-auto { margin-right: unset !important; }
  .col_offset_planos { display: none; }
}

@media (max-width: 768px) {
  .btn_comprar {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# HOME
--------------------------------------------------------------*/
/*---- Busca ----*/
.search-box {
  background-image: url('../img/Topo.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.search-box .content-box {
  border-radius: 5px;
  background: #FFF;
  margin-top: 100px;
  padding: 40px 60px;
}

.search-box .content-box h2 {
  color: #011F5D;
  font-size: 28px;
  font-weight: 800;
  padding-bottom: 10px;
}

.search-box .content-box .form-box {
  border-radius: 3px;
  border: 1px solid #B4B4B4;
  background: #FFF;
  padding: 10px 5px;
}

.search-box .content-box .input-group-text {
  background: #fff;
  border: unset;
}

.search-box .content-box .input-group-text img {
  height: 15px;
}

.search-box .content-box .border-right {
  border-right: 1px solid #B4B4B4;
}

.search-box .content-box input {
  border: unset;
  border-radius: unset;
  padding-left: 0;
}

.search-box .content-box button {
  border-radius: 5px;
  background: #E1AB39;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  border: unset;
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
}

.search-box .content-box .form-control:focus {
  box-shadow: unset;
  border-bottom: 1px solid rgba(1, 31, 93, 0.10);
}

/*---- Categorias ----*/
.categorias h2 {
  color: #011F5D;
  font-size: 34px;
  font-weight: 800;
}

.categorias a {
  padding: 10px;
  color: #011F5D;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.5s;
}

.categorias a:hover,
.categorias a:active,
.categorias a:focus {
  color: #141B38;
}

.categorias a.btn-categoria {
  display: block;
  border-radius: 3px;
  background: rgba(1, 31, 93, 0.10);
  color: #011F5D;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 25px;
  height: 100%;
  align-content: center;
  transition: all 0.5s;
}

.categorias a:hover.btn-categoria {
  color: #FFF;
  background: #011F5D;
  box-shadow: 0px 9px 24.1px 0px rgba(20, 27, 56, 0.25);
}

.categorias a.btn-categoria img {
  float: right;
  height: 20px;
  margin-top: 2px;
}

.titulo {
  color: #011F5D;
  font-size: 34px;
  font-weight: 800;
}

.subtitulo {
  color: #1F1F1F;
  font-size: 20px;
  font-weight: 400;
}

.institucional img {
  width: 100%;
  border-radius: 5px;
}


/*---- CTA ----*/
.cta {
  padding: 80px 0 50px;
}

.cta .bg-cta {
  background-image: url('../img/CTAbackground.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
}

.cta h2 {
  color: #FFF;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 30px;
}

.cta .section-title {
  padding: 80px 0 80px 80px;
}

.cta img {
  margin-top: -50px;
  position: absolute;
  bottom: 0;
  right: 70px;
  width: 120%;
}

.cta a {
  border-radius: 8px;
  background: #e1ab39;
  padding: 10px 30px;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  float: left;
}

.cta a:hover,
.cta a:active,
.cta a:focus {
  background: #E9C156;
}

@media (max-width: 768px) {
  .cta {
    padding: 0 15px;
  }

  .cta .section-title {
    padding: 40px;
  }

  .cta h2 {
    font-size: 25px;
    text-align: center;
  }

  .cta img {
    margin-top: 0;
    position: relative;
    bottom: unset;
    right: unset;
    max-width: 100%;
    margin-left: 0;
  }

  .cta a {
    padding: 10px 20px;
    font-size: 14px;
    float: unset;
    display: block;
    text-align: center;
  }
}


/*---- Vagas ----*/
.box-vagas {
  border-radius: 5px;
  border: 1px solid #B4B4B4;
  background: #FFF;
  padding: 25px;
  color: #5B5B5B;
  transition: all 0.5s;
  height: 100%;
}

.box-vagas.active {
  border: 1px solid #011F5D;
  transition: all 0.5s;
}

.box-vagas:hover {
  background: #EBE6EF;
  box-shadow: 0px 4px 35px 0px rgba(20, 27, 56, 0.35);
}

.box-vagas h3 {
  color: #011F5D;
  font-size: 21px;
  font-weight: 800;
  padding-right: 10px;
}

.box-vagas p.data {
  color: #5B5B5B;
  font-size: 14px;
  font-weight: 400;
  padding-top: 3px;
  text-align: right;
}

.box-vagas p {
  color: #5B5B5B;
  font-size: 16px;
  font-weight: 400;
}

.box-vagas p b {
  color: #000;
}

.box-vagas p.info {
  font-size: 12px;
  font-weight: 400;
}

.box-vagas p.descricao {
  margin: 0;
}

.box-vagas p img {
  height: 18px;
  margin-top: -5px;
  margin-right: 5px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

/*--------------------------------------------------------------
# PESQUISA
--------------------------------------------------------------*/
/*---- Filtros ----*/
.filtros-box {
  background: #011F5D;
  padding: 70px 0;
}

.filtros-box .content-box .form-box {
  border-radius: 3px;
  border: 1px solid #B4B4B4;
  background: #FFF;
  padding: 10px 5px;
}

.filtros-box .content-box .input-group-text {
  background: #fff;
  border: unset;
}

.filtros-box .content-box .input-group-text img {
  height: 15px;
}

.filtros-box .content-box .border-right {
  border-right: 1px solid #B4B4B4;
}

.filtros-box .content-box input {
  border: unset;
  border-radius: unset;
  padding-left: 0;
}

.filtros-box .content-box button {
  border-radius: 5px;
  background: #E1AB39;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  border: unset;
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
}

.filtros-box .content-box .form-control:focus {
  box-shadow: unset;
  border-bottom: 1px solid rgba(1, 31, 93, 0.10);
}

.box-localizacao { 
  position: relative;
}

.localizacao_drop {        
    background: #fff;
    border-radius: 5px;
    height: 0;
    overflow: hidden;  
    box-shadow: 1px 2px 5px rgba(0,0,0,0.2);
    transition: .4s height;
    padding: 0;
    position: absolute;
    top: 35px;
    left: 33px;
    right: 0;
}

.localizacao_drop li {
    font-size: 13px;
    padding: 10px 10px;
    list-style: none;
    border-top: 1px solid #ddd;
    cursor: pointer;
}

.txt-filtro {
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  margin: 15px 0 5px;
}

.txt-filtro img {
  height: 14px;
  margin-right: 5px;
  vertical-align: sub;
}

.filtros select {
  width: 100%;
  padding: 14px 10px;
}

#detalhesVaga {
  position: sticky;
  top: 120px;
}

.box-detalhes {
  border-radius: 5px;
  background: #E6E9EF;
  padding: 40px 30px;
}

.box-detalhes h3 {
  color: #011F5D;
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 20px;
}

.box-detalhes p.empresa {
  color: #5B5B5B;
  font-size: 16px;
  font-weight: 400;
}

.box-detalhes p {
  color: #5B5B5B;
  font-size: 14px;
  font-weight: 400;
}

.box-detalhes p b {
  color: #1F1F1F;
}

.box-detalhes p img {
  height: 18px;
  margin-top: -5px;
  margin-right: 5px;
}

.btn_detalhes {
  padding: 10px;
  color: #011F5D;
  font-size: 16px;
  font-weight: 400;
  display: block;
  text-align: center;
}

/*---- Breadcrumbs ----*/
.qtd-vagas {
  color: #5B5B5B;
  font-size: 12px;
  font-weight: 500;
}

.breadcrumbs,
.breadcrumbs a {
  color: #5B5B5B;
  font-size: 12px;
  font-weight: 400;
  text-align: right;
}

.breadcrumbs a:hover,
.breadcrumbs a:active,
.breadcrumbs a:focus {
  text-decoration: underline;
}

.breadcrumbs img {
  height: 17px;
  vertical-align: sub;
  padding-right: 5px;
}

.breadcrumbs img.seta {
  height: 9px;
  padding: 0 5px;
  vertical-align: middle;
}

.breadcrumbs span {
  color: #011F5D;
  font-weight: 700;
}

.title-vagas {
  color: #011F5D;
  font-size: 21px;
  font-weight: 800;
}

@media (max-width: 768px) {
}

/*---- Paginação ----*/
.pagination-resultado {
  display: block;
  float: left;
  margin: 20px 0 10px;
}

.pagination-resultado .link {
  padding: 10px;
  border-radius: 5px;
  background: #011F5D;
  border: 1px solid #011F5D;
  margin-right: 6px;
  margin-top: 10px;
  color: #FFF;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.pagination-resultado p {
  color: #878CAB !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.pagination-resultado .link.current {
  background: #FFF;
  color: #011F5D;
  border-color: #011F5D;
}

.pagination-resultado .link.disabled {
  cursor: not-allowed;
}



/*--------------------------------------------------------------
# VAGA - INTERNA
--------------------------------------------------------------*/
.vaga {
  padding-top: 40px;
}

.vaga .titulo {
  color: #011F5D;
  font-size: 26px;
  font-weight: 800;
}

.vaga .info {
  color: #5B5B5B;
  font-size: 14px;
  font-weight: 400;
}

.vaga .info b {
  color: #1F1F1F;
}

.vaga .info img {
  height: 20px;
  margin-right: 5px;
  margin-top: -3px;
}

/*---- Formulário ----*/
.formulario {
  background: #E6E9EF;
  padding: 80px 0;
  transition: all 0.5s;
  margin-bottom: 60px;
}

.formulario .titulo {
  color: #FFF;
  font-size: 20px;
  font-weight: 800;
  border-radius: 5px;
  border: 1px solid #011F5D;
  background: #011F5D;
  padding: 15px;
}

.formulario input {
  border-radius: 5px;
  border: 1px solid #5B5B5B;
  background: #FFF;
  padding: 15px;
  background-color: #fff;
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.formulario input.file-caption-name {
  margin-bottom: 0 !important;
  background-color: #fff;
}

.formulario label {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  float: left;
  width: calc(100% - 30px);
}

.formulario label a {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  display: inline;
}

.formulario input[type="checkbox"] {
  width: 20px;
  height: 20px;
  float: left;
  margin: 0;  
  margin-right: 10px;
}

.formulario a {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  padding: 17px 0 0;
  display: block;
  width: 100%;
}

.formulario a:hover {
  text-decoration: underline;
}

.btn-buscar {
  border-radius: 0px 5px 5px 0px;
  border: 1px solid #5B5B5B;
  background: #E1AB39;
  height: 56px;
  padding: 16px 20px 0;
  color: ##000000;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.5s;
}

/*---- Beneficios ----*/
.beneficios {
  padding: 0;
}

.beneficios p {
  color: #011F5D;
  font-size: 14px;
  font-weight: 800;
}

.beneficios-box {
  border-radius: 10px;
  background: #E6E9EF;
  padding: 25px 45px;
  margin-bottom: 40px;
}

.beneficios p.beneficios-lista {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  margin-top: 10px;
}

.beneficios p.beneficios-lista img {
  height: 20px;
  margin-right: 5px;
  margin-top: -3px;
}

/*---- Detalhes ----*/
.detalhes-vaga {
  padding-top: 0;
}

.detalhes-vaga p.titulo-topico {
  color: #011F5D;
  font-size: 20px;
  font-weight: 800;
}

.detalhes-vaga p.txt-topico {
  color: #000;
  font-size: 14px;
  font-weight: 400;
}




/*--------------------------------------------------------------
# Contato
--------------------------------------------------------------*/
.titulo-branco {
  color: #FFF;
  font-size: 34px;
  font-weight: 800;
}

.contato-box {
  border-radius: 10px;
  background: #FFF;
  padding: 30px;
}

.contato-box input,
.contato-box textarea {
  border-radius: 5px;
  border: 1px solid #D9D9D9;
  background: #FFF;
  padding: 18px 15px;
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.dados-faq {
  padding: 80px 0;
}

.dados-faq .subtitulo-azul {
  color: #011F5D;
  font-size: 20px;
  font-weight: 800;
  margin-top: 20px;
}

.dados-faq p {
  color: #5B5B5B;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}


/*---- FAQ ----*/
.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 20px 0;
  padding-right: 50px;
  border-bottom: 1px solid #D9D9D9;
  color: #5B5B5B !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 116.298%;
  text-align: left;
  background: #FFF;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  background: #fff;
  border-bottom: 0;
  box-shadow: none;
  color: #000 !important;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  height: 17px;
  top: 25px;
  background-size: contain;
  background-image: url('../img/icones/chevron-down.png') !important;
}

.faq .accordion-body {
  padding: 0;
  padding-bottom: 20px;
  padding-top: 10px;
  border: unset;
  background: #fff;
  color: #606060;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  border-bottom: 1px solid #D9D9D9;
}

.faq .accordion-button:not(.collapsed)::after {
  top: 19px;
}

@media (max-width: 768px) {
  .faq .accordion-button {
    padding: 20px 0;
    padding-right: 45px;
    border: 0;
    border-bottom: 1px solid rgba(135, 140, 171, 0.63);
  }

  .faq .accordion-item {
    margin-bottom: 0;
  }

  .faq .accordion-button:not(.collapsed) {
    background: #fff;
    color: #BE1823;
  }

  .faq .accordion-body {
    padding-top: 10px;
    border: unset;
    border-bottom: 1px solid rgba(135, 140, 171, 0.63);
    background-color: transparent;
  }

  .faq .link, .faq .link a {
    font-size: 14px;
  }

  .faq .link img {
    margin-top: 2px;
  }
}


/*--------------------------------------------------------------
# politica
--------------------------------------------------------------*/
.politica h3 {
  color: #011F5D;
  font-size: 18px;
  font-weight: 800;
  margin-top: 20px;
}

.politica p {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 5px;
}



/*--------------------------------------------------------------
# Curriculo
--------------------------------------------------------------*/
/*---- Formulário ----*/
.form-curriculo input {
  border-radius: 5px;
  border: 1px solid #5B5B5B;
  background: #FFF;
  padding: 15px;
  background-color: #fff;
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.form-curriculo input.file-caption-name {
  margin-bottom: 0 !important;
  background-color: #fff;
}

.form-curriculo label {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  float: left;
  width: calc(100% - 30px);
}

.form-curriculo label a {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  display: initial;
}

.form-curriculo input[type="checkbox"] {
  width: 20px;
  height: 20px;
  float: left;
  margin: 0;  
  margin-right: 10px;
}

.form-curriculo a {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  padding: 17px 0 0;
  display: block;
  width: 100%;
}

.form-curriculo a:hover {
  text-decoration: underline;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
}

#footer .footer-top {
  padding: 40px 0;
  background: #011F5D;
}

#footer .footer-top .footer-logo {
  max-width: 250px;
  display: block;
}

#footer .footer-top p {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  padding: 7px 0;
  margin: 0;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 10px;
  display: block;
}

#footer .footer-top .footer-links ul a,
#footer .footer-top .footer-links ul li,
#footer .copyright a {
  transition: 0.3s;
  text-decoration: unset;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

#footer .footer-top .footer-links ul a:hover,
#footer .copyright a:hover {
  text-decoration: none;
  color: #E9C156;
}

#footer .footer-copy {
  padding: 22px 0;
  background: #141B38;
}

#footer .footer-copy p {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

#footer .footer-copy .text-right {
  text-align: right;
}

#footer .footer-logo-curriculo {
  max-width: 150px;
}

@media (max-width: 768px) {
  #footer .footer-top {
    padding: 30px 0 25px 0;
  }

  #footer .footer-top .footer-logo {
    max-width: 150px;
    margin: 0 auto;
  }

  #footer .footer-top .footer-links ul {
    float: unset;
    margin-top: 25px;
  }

  #footer .footer-top .footer-links ul li {
    display: block;
  }

  #footer .copyright p {
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    padding-left: 10px;
    text-align: center;
  }

  #footer .text-right {
    text-align: left;
  }

  #footer .footer-copy .text-right {
    text-align: center;
  } 

  #footer .copyright a {
    font-size: 12px;
  }

}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: rgba(255,255,255,0.7);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: #011F5D #E1AB39 #011F5D #E1AB39;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* --- LOADER BTN ---- */
@-webkit-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-moz-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-o-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.m-progress {
  position: relative;
  opacity: .8;
  color: transparent !important;
  text-shadow: none !important;
}

.m-progress:hover,
.m-progress:active,
.m-progress:focus {
  cursor: default;
  color: transparent;
  outline: none !important;
  box-shadow: none;
}

.m-progress:before {
  content: '';
  display: inline-block;
  position: absolute;
  background: transparent;
  border: 1px solid #fff;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -12px;
  width: 24px;
  height: 24px;
  -webkit-animation: ld 1s ease-in-out infinite;
  -moz-animation:    ld 1s ease-in-out infinite;
  -o-animation:      ld 1s ease-in-out infinite;
  animation:         ld 1s ease-in-out infinite;
}

.shine-me {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    width:100%;
    height: 100%;
    background-color:transparent;
    -webkit-animation-name: ShineAnimation;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(.12,.89,.98,.47);
}

@-webkit-keyframes ShineAnimation{
    from {
        background-repeat:no-repeat;
        background-image:-webkit-linear-gradient(
            top left,
            rgba(204, 224, 253, 0.0) 0%,
            rgba(204, 224, 253, 0.0) 45%,
            rgba(204, 224, 253, 0.5) 48%,
            rgba(204, 224, 253, 0.8) 50%,
            rgba(204, 224, 253, 0.5) 52%,
            rgba(204, 224, 253, 0.0) 57%,
            rgba(204, 224, 253, 0.0) 100%
        );
        background-position:-250px -250px;
        background-size: 600px 600px
    }
    to {
        background-repeat:no-repeat;
        background-position:400px 400px;
    }
}




/*--------------------------------------------------------------
# MOBILE
--------------------------------------------------------------*/
@media (max-width: 768px) {
  #header {
    background: #011f5d !important;
    backdrop-filter: unset !important;
  }

  .search-box {
    background: #011F5D;
    padding: 100px 0 50px;
  }

  .filtros-box {
    padding: 20px 0;
  }

  .search-box .content-box,
  .filtros-box .content-box {
    border-radius: 5px;
    background: unset;
    margin: 0;
    padding: 20px;
  }

  .search-box .content-box h2, 
  .filtros-box .content-box h2 {
    color: #FFF;
    font-size: 28px;
    font-weight: 800;
    padding-bottom: 10px;
  }
  
  .search-box .content-box .form-box,
  .filtros-box .content-box .form-box {
    border-radius: unset;
    border: unset;
    background: unset;
    padding: 0;
  }
  
  .search-box .content-box .border-right,
  .filtros-box .content-box .border-right {
    border-right: unset;
  }

  .input-group {
    margin-bottom: 15px;
    height: 45px;
  }

  .form-control {
    height: 45px;
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
  }

  .input-group-text {
    height: 45px;
    border-radius: 5px;
  }

  .categorias a.btn-categoria {
    font-size: 12px;
    margin-bottom: 15px;
    padding: 10px 15px;
  }

  .categorias a.btn-categoria img {
    height: 14px;
  }

  .institucional {
    padding-top: 0;
    text-align: center;
  }

  .order-m-1 {
    order: 1;
  }

  .order-m-2 {
    order: 2;
  }

  .order-m-3 {
    order: 3;
  }

  .institucional .ps-5 {
    padding-left: 5px !important;
  } 

  .institucional .mt-5 {
    margin-top: 0 !important;
  } 

  .institucional .pe-5 {
    padding-right: 0 !important;
  }

  .vagas .titulo, .vagas .subtitulo {
    text-align: center;
  }

  .linha-footer {
    width: 90%;
    height: 1px;
    background: #fff;
    margin: 25px auto;
  }

  #footer .footer-top p { 
    padding: 0 10px;
  }

  .btn-filtro {
    text-align: center;
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
    margin: 15px 0 5px;
  }

  .btn-filtro:hover,
  .btn-filtro:active,
  .btn-filtro:focus {
    color: #FFF;
  }

  .btn-filtro img {
    height: 14px;
    margin-right: 5px;
    vertical-align: sub;
  }

  .filtros.none {
    display: none;
  }

  .txt-filtro-azul {
    color: #011F5D;
    font-size: 12px;
    font-weight: 500;
    margin: 15px 0;
  }

  .txt-filtro-azul img {
    height: 14px;
    margin-right: 5px;
    margin-top: -2px;
  }

  .filtros {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px 20px 30px;
    background: #FFF;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .filtros .col {
    flex: auto;
  }

  .filtros select {
    border-radius: 3px;
    border: 1px solid #B4B4B4;
    background: #FFF;
    margin-bottom: 10px;
  }

  .line-close {
    position: relative;
  }

  .line-close .line-gray {
    display: block;
    width: 50%;
    height: 3px;
    background-color: #B3BCCE;
    margin: 10px auto 30px;
    border-radius: 5px;
  }

  .line-close i {
    position: absolute;
    top: -7px;
    right: 8px;
  }

  .filtros-box .content-box button {
    padding: 15px;
  }

  .col-m-0 { padding: 0 !important; }
  .ms-m-0 { margin-left:0 !important }
  .mm-0 { margin: 0 !important }

  #pagination-result .box-vagas {
    border-radius: unset;
    border: unset;
    border-top: 1px solid #B4B4B4;
  }

  #pagination-result hr {
    margin: 8px -12px;
  }

  #pagination-result .mb-3 {
    margin-bottom: 0 !important;
  }

  .box-vagas:hover {
    box-shadow: unset;
  }

  .vaga .titulo,
  .vaga .info,
  .text-m-center { 
    text-align: center;
  }

  .btn-mobile {
    border-top: 1px solid #D9D9D9;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: -4px 0px 9.2px 0px rgba(1, 31, 93, 0.30);
    backdrop-filter: blur(2px);
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
  }

  .btn-mobile .btn-laranja {
    display: block;
    margin: 15px 50px;
  }

  .beneficios-box {
    border-radius: unset;
    padding: 25px 10px;
    margin-bottom: 30px;
  }

  #footer .footer-logo-curriculo {
    max-width: 150px;
    margin: 0 auto;
    display: block;
    margin-bottom: 15px;
  }

  .logo-mobile {
    max-width: 70%;
    display: block;
    margin: 0 auto;
  }

  .btn-buscar {
    height: 45px;
    padding: 9px 15px 0;
  }

  .form-control.file-caption-name {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .titulo-branco {
    font-size: 23px;
    margin-bottom: 20px;
  }

  .contato-box {
    border-radius: 0;
    background: transparent;
    padding: 0;
  }
  
  .dados-faq {
    padding: 30px 10px;
  }
  
  .formulario input {
    padding: 10px 15px;
  }
}


.cookies_bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f0f0f0;
  padding: 10px;
}

.cookies_bar p {
  margin: 0;
  font-size: 14px;
}