@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;900&display=swap");

/*RESET*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  height: auto;
  min-height: 100%;
  font-size: 16px;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

a {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

body {
  background-size: 100%;
  line-height: 1.3;
  cursor: default;
}

/*
  ========================================
  Typography
  ========================================
*/
b,
strong {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

/*
  ========================================
  Img
  ========================================
*/
img,
picture,
video,
embed,
object {
  max-width: 100%;
}

img {
  display: inline-block;
  vertical-align: middle;
}

:root {
  --gradient-site: linear-gradient(to right, #094066 0%, #1a689f 100%);
}

/**/
body {
  background: #fff;
  font-family: "Poppins", sans-serif;
  color: #000000;
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: 0px;
}

body * {
  color: #000000;
  font-family: "Poppins", sans-serif;
}

p {
  font-size: 1rem;
}

/*CONTAINER*/
.container {
  margin: 0 auto;
  max-width: 67.5rem;
  padding-left: 20px;
  padding-right: 20px;
}

.swiper {
  position: relative;
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #ede4db;
}

::-webkit-scrollbar-thumb {
  background: #F6F6F6;
  border-radius: 30px;
}

::-webkit-scrollbar-thumb:active {
  background: #094066;
}

.grecaptcha-badge {
  visibility: collapse;
  z-index: -9999;
}

.alert.alert-danger {
  font-size: 0.875rem;
  color: #d30202;
}

/* DESKTOP LARGE - 1400px*/
/* DESKTOP - 1200px*/
/* LAPTOP - 1024px*/
/* TABLET BIG - 900px*/
/* TABLET - 600px*/
/* MOBILE - 400px*/
/*
  ========================================
  HEADER
  ========================================
*/
header {
  height: 100px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  gap: 40px;
  background-color: #094066;
  z-index: 99;
  position: relative;
}
header .__logo {
  width: 180px;
  padding: 20px 0;
  display: flex;
}
header .__logo img {
  -o-object-fit: cover;
     object-fit: cover;
}
header .__menu {
  width: 100%;
  height: 100px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #fff;
  border-radius: 10px;
  transform: translateY(50%);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
header .__menu a {
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}
header .__menu a::after {
  content: "";
  width: 0%;
  height: 1px;
  background-color: #094066;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all 0.3s;
}
header .__menu a:hover {
  color: #094066;
}
header .__menu a:hover::after {
  width: 100%;
}
header .__menu .--divisor {
  width: 1px;
  height: 50%;
  background-color: #C4C4C4;
}

/* RESPONSIVE */
/* DESKTOP LARGE - 1400px*/
@media screen and (max-width: 87.5rem) {
  header {
    height: 80px;
    grid-template-columns: 150px 1fr 150px;
  }
  header .__logo {
    width: 130px;
  }
  header .__menu {
    height: 80px;
  }
}
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  header {
    gap: 30px;
  }
  header .__menu a {
    font-size: 0.875rem;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  header .__menu {
    display: none;
  }
}
/*
  ========================================
  FOOTER
  ========================================
*/
footer {
  background-color: #094066;
  padding: 35px 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px 20px;
}
footer .container .__logo {
  width: 170px;
}
footer .container .--divider {
  width: 2px;
  height: 105px;
  background-color: rgba(255, 255, 255, 0.4784313725);
}
footer .container .__local p, footer .container .__local a {
  color: #fff;
  text-align: center;
}
footer .container .__local p {
  margin-bottom: 20px;
}
footer .container .__local a {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: block;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
footer .container .__local a:hover {
  color: #D00A11;
}
footer .container .__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.--direitos-footer {
  background-color: #052943;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0 30px;
  flex-wrap: wrap;
  font-size: 0.625rem;
  color: #fff;
  padding: 4px 20px;
}

.__whats_float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
}

/* RESPONSIVE */
/* TABLET BIG - 900px*/
@media (max-width: 56.25rem) {
  footer {
    padding: 25px 0;
  }
  footer .container {
    gap: 10px;
  }
  footer .container .__logo {
    width: 150px;
  }
  footer .container .__local p, footer .container .__local a {
    font-size: 0.875rem;
  }
  footer .container .__local p {
    margin-bottom: 15px;
  }
  footer .container .__social {
    gap: 10px;
  }
}
/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  footer {
    padding: 20px 0;
  }
  footer .container {
    flex-direction: column;
  }
  footer .container .__logo {
    width: 170px;
  }
  footer .container .--divider {
    width: 150px;
    height: 2px;
  }
  footer .container .__local p, footer .container .__local a {
    font-size: 0.875rem;
  }
  footer .container .__local p {
    margin-bottom: 15px;
  }
  footer .container .__social {
    gap: 10px;
  }
}
/*
  ========================================
  HOME
  ========================================
*/
.home {
  padding: 75px 0;
}
.home .__noticias {
  margin-bottom: 50px;
}
.home .__noticias .__grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px;
}
.home .__livro {
  background: #094066 url("../images/bg_50_anos.png") bottom left no-repeat;
  background-size: 20%;
  padding: 100px 0 50px 0;
  position: relative;
  overflow: hidden;
}
.home .__livro::before {
  content: "";
  width: 100%;
  height: 50px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
.home .__livro .__txt {
  max-width: 384px;
}
.home .__livro .__txt * {
  color: #fff;
}
.home .__livro .__txt h5 {
  font-size: 1.875rem;
  margin-bottom: 16px;
}
.home .__livro .__txt a {
  width: -moz-fit-content;
  width: fit-content;
  height: 34px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 18px;
  border: 2px solid #FFFFFF;
  border-radius: 5px;
  transition: all 0.3s;
}
.home .__livro .__txt a:hover {
  border-color: #D00A11;
  color: #D00A11;
  background-color: #fff;
}
.home .__livro .__img {
  position: absolute;
  top: 0px;
  width: 100%;
  display: flex;
  justify-content: end;
  max-width: 1400px;
  margin: auto;
  left: 0;
  right: 0;
  pointer-events: none;
}
.home .__agenda {
  background: #F6F6F6;
  padding: 74px 0;
  /*  & h4 {
    color: main.$ColorMain;
    font-weight: 600;
    line-height: 1.3;
    font-size: reset.toRem(25);
  } */
}
.home .__agenda .--title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px 65px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  max-width: 790px;
}
.home .__agenda .swiper {
  margin-top: 20px;
}
.home .__agenda .swiper .__item .__img {
  aspect-ratio: 260/170;
  background-color: #ededed;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.home .__agenda .swiper .__item .__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.home .__agenda .swiper .__item .__txt {
  padding: 10px 20px;
}
.home .__agenda .swiper .__item .__txt .--date {
  font-size: 0.875rem;
}
.home .__agenda .swiper .__item .__txt h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #D00A11;
  line-height: 1.2;
  margin: 5px 0;
}
.home .__agenda .swiper .swiper-button-prev, .home .__agenda .swiper .swiper-button-next {
  color: #094066;
}
.home .__agenda .swiper .swiper-button-prev.swiper-button-disabled, .home .__agenda .swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0 !important;
}
.home .__links {
  padding: 74px 0;
}
.home .__links h6 {
  margin-top: 65px;
  color: #D00A11;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.home .__links .__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 30px;
}
.home .__links .__grid .__item {
  background-color: #094066;
  border-radius: 10px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0 20px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  gap: 20px;
  transition: all 0.3s;
  line-height: 1;
}
.home .__links .__grid .__item img {
  width: 45px;
}
.home .__links .__grid .__item:hover {
  background-color: #D00A11;
  box-shadow: 4px 4px 14px -2px #D00A11;
}
.home .__comissao_tematica {
  background: #F6F6F6 url("../images/bg_comissoes_tematicas.png") no-repeat right top;
  margin-bottom: 74px;
}
.home .__comissao_tematica .container {
  transform: translateY(74px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.home .__comissao_tematica .container img {
  border-radius: 10px 0 10px 10px;
}
.home .__comissao_tematica .container .__txt {
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px 25px;
  font-size: 2.1875rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  background-color: #D00A11;
  border-radius: 0 10px 10px 0;
  position: relative;
}
.home .__comissao_tematica .container .__txt::before {
  content: "";
  width: 170px;
  height: 100%;
  background-color: rgba(109, 0, 4, 0.6588235294);
  position: absolute;
  left: -170px;
  top: 0;
  border-radius: 10px 0 0 10px;
}
.home .__comissao_tematica .container p {
  padding: 5px 25px;
  font-size: 1rem;
}

/* RESPONSIVE */
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .home {
    padding: 45px 0;
  }
  .home .__noticias {
    margin-bottom: 30px;
  }
  .home .__noticias .__grid {
    gap: 45px;
  }
  .home .__livro {
    padding: 80px 0 30px 0;
  }
  .home .__livro .__txt h5 {
    font-size: 1.375rem;
    margin-bottom: 10px;
  }
  .home .__livro .__img {
    width: 62%;
    margin: 0;
    left: auto;
  }
  .home .__agenda {
    padding: 45px 0;
  }
  .home .__agenda .--title {
    margin-bottom: 30px;
  }
  .home .__agenda .swiper .__item .__txt {
    padding: 10px;
  }
  .home .__agenda .swiper .__item .__txt h4 {
    margin: 2px 0;
  }
  .home .__links {
    padding: 45px 0;
  }
  .home .__links h6 {
    margin-top: 40px;
  }
  .home .__links .__grid {
    gap: 20px;
  }
  .home .__links .__grid .__item {
    font-size: 1rem;
  }
  .home .__links .__grid .__item img {
    width: 35px;
  }
  .home .__comissao_tematica {
    margin-bottom: 45px;
  }
  .home .__comissao_tematica .container {
    transform: translateY(45px);
  }
  .home .__comissao_tematica .container .__txt {
    font-size: 1.5625rem;
  }
  .home .__comissao_tematica .container .__txt::before {
    width: 130px;
    left: -130px;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .home {
    padding: 30px 0;
  }
  .home .__noticias .__grid {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
  .home .__livro {
    padding: 30px 0;
  }
  .home .__livro::before {
    display: none;
  }
  .home .__livro .__txt {
    margin: auto;
  }
  .home .__livro .__txt h5 {
    font-size: 1.125rem;
  }
  .home .__livro .__txt > * {
    text-align: center;
    margin: auto;
  }
  .home .__livro .__img {
    display: none;
  }
  .home .__agenda {
    padding: 30px 0;
  }
  .home .__agenda .--title {
    margin-bottom: 20px;
  }
  .home .__links {
    padding: 30px 0;
  }
  .home .__links h6 {
    margin-top: 30px;
  }
  .home .__links .__grid {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .home .__comissao_tematica {
    margin-bottom: 30px;
  }
  .home .__comissao_tematica .container {
    transform: translateY(30px);
  }
  .home .__comissao_tematica .container .__txt {
    font-size: 1.25rem;
    padding: 10px;
  }
  .home .__comissao_tematica .container p {
    padding: 10px;
  }
}
/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  .home .__noticias .__grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }
  .home .__agenda {
    padding: 30px 0;
  }
  .home .__agenda .--title {
    flex-direction: column;
  }
  .home .__links .__grid .__item {
    flex-grow: 1;
    font-size: 0.875rem;
    min-width: calc(50% - 10px);
  }
  .home .__comissao_tematica {
    padding: 30px 0;
  }
  .home .__comissao_tematica .container {
    transform: translateY(0px);
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home .__comissao_tematica .container img {
    border-radius: 10px;
  }
  .home .__comissao_tematica .container .__txt {
    border-radius: 10px;
    text-align: center;
  }
  .home .__comissao_tematica .container .__txt::before {
    display: none;
  }
  .home .__comissao_tematica .container p {
    padding: 10px 0 0 0;
  }
}
/*
  ========================================
  INSTITUICAO
  ========================================
*/
.instituicao .__banner {
  height: 250px;
  position: relative;
}
.instituicao .__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-position: right;
     object-position: right;
  z-index: -1;
}
.instituicao .__banner .container {
  height: 100%;
  padding-bottom: 60px;
  display: flex;
  align-items: end;
}
.instituicao .__banner .container .__titleMain {
  color: #fff;
  border-color: #fff;
}
.instituicao .--justify-text p {
  text-align: justify;
  text-indent: 30px;
}
.instituicao .__emphasis {
  padding: 74px 0;
}
.instituicao .__emphasis .__titleMain {
  text-align: center;
  margin: 0 auto 74px auto;
}
.instituicao .__emphasis .__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 85px;
  margin-bottom: 30px;
}
.instituicao .__emphasis .__grid img {
  border-radius: 20px;
}
.instituicao .__emphasis .--grid-conselho {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.instituicao .__historia .__grid {
  margin-bottom: 74px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.instituicao .__historia .__grid .__item {
  padding: 50px 80px;
  background: #F6F6F6;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.instituicao .__last_text {
  background-color: #F6F6F6;
  padding: 35px 0;
  /* margin-bottom: 74px; */
}

/* RESPONSIVE */
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .instituicao .__banner {
    height: 200px;
  }
  .instituicao .__banner .container {
    padding-bottom: 30px;
  }
  .instituicao .__emphasis {
    padding: 45px 0;
  }
  .instituicao .__emphasis .__titleMain {
    margin: 0 auto 45px auto;
  }
  .instituicao .__emphasis .__grid {
    gap: 60px;
    margin-bottom: 25px;
  }
  .instituicao .__historia .__grid {
    margin-bottom: 45px;
    gap: 30px;
  }
  .instituicao .__historia .__grid .__item {
    padding: 30px 50px;
  }
  .instituicao .__last_text {
    background-color: #F6F6F6;
    padding: 30px 0;
    /* margin-bottom: 45px; */
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .instituicao .__banner {
    height: 150px;
  }
  .instituicao .__emphasis {
    padding: 30px 0;
  }
  .instituicao .__emphasis .__titleMain {
    margin: 0 auto 30px auto;
  }
  .instituicao .__emphasis .__grid {
    gap: 20px;
    margin-bottom: 20px;
    grid-template-columns: 1fr;
  }
  .instituicao .__emphasis .__grid img {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
  .instituicao .__emphasis .--grid-conselho {
    grid-template-columns: 1fr;
  }
  .instituicao .__historia .__grid {
    margin-bottom: 30px 0;
    gap: 20px;
    grid-template-columns: 1fr;
  }
  .instituicao .__historia .__grid .__item {
    padding: 30px 50px;
  }
  .instituicao .__last_text {
    /* margin-bottom: 30px; */
  }
}
/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  .instituicao .__banner .container .__titleMain {
    background-color: rgba(0, 0, 0, 0.368627451);
  }
  .instituicao .__historia .__grid .__item {
    padding: 20px;
  }
  .instituicao .__last_text {
    padding: 20px 0;
    /* margin-bottom: 30px; */
  }
}
/*
  ========================================
  COMISSOES
  ========================================
*/
.comissoes .__banner {
  height: 250px;
  position: relative;
}
.comissoes .__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-position: right;
     object-position: right;
  z-index: -1;
}
.comissoes .__banner .container {
  height: 100%;
  padding-bottom: 60px;
  display: flex;
  align-items: end;
}
.comissoes .__banner .container .__titleMain {
  border-color: #094066;
}
.comissoes .__content {
  padding: 74px 0;
}
.comissoes .__content .__subTitle {
  font-size: 1.5625rem;
  font-weight: 600;
  margin-bottom: 50px;
}
.comissoes .__content .__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.comissoes .__content .__grid ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.comissoes .__content .__grid ul li {
  border-bottom: solid 1px #707070;
  padding-bottom: 5px;
}
.comissoes .__content .__button {
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 1.5625rem;
  font-weight: 500;
  color: #fff;
  background: #D00A11;
  border-radius: 10px;
  margin: 65px auto 0 auto;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1;
}
.comissoes .__content .__button:hover {
  background-color: #094066;
  box-shadow: 5px 5px 18px -8px #094066;
}

/* RESPONSIVE */
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .comissoes .__banner {
    height: 200px;
  }
  .comissoes .__banner .container {
    padding-bottom: 30px;
  }
  .comissoes .__content {
    padding: 45px 0;
  }
  .comissoes .__content .__subTitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
  .comissoes .__content .__grid {
    gap: 30px;
  }
  .comissoes .__content .__button {
    font-size: 1.25rem;
    margin: 35px auto 0 auto;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .comissoes .__banner {
    height: 150px;
  }
  .comissoes .__content {
    padding: 30px 0;
  }
  .comissoes .__content .__subTitle {
    margin-bottom: 25px;
  }
  .comissoes .__content .__grid {
    gap: 8px;
    grid-template-columns: 1fr;
  }
}
/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  .comissoes .__banner .container .__titleMain {
    background-color: rgba(255, 255, 255, 0.368627451);
  }
  .comissoes .__content .__button {
    font-size: 1rem;
  }
}
/*
  ========================================
  VAGAS
  ========================================
*/
.vagas .__banner {
  height: 250px;
  position: relative;
}
.vagas .__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-position: right;
     object-position: right;
  z-index: -1;
}
.vagas .__banner .container {
  height: 100%;
  padding-bottom: 60px;
  display: flex;
  align-items: end;
}
.vagas .__banner .container .__titleMain {
  border-color: #fff;
  color: #fff;
}
.vagas .__content {
  padding: 74px 0;
}
.vagas .__content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 20px;
}
.vagas .__content .container .__item {
  border: 1px solid #094066;
  padding: 20px 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  transition: all 0.3s;
}
.vagas .__content .container .__item h4 {
  font-size: 1.5625rem;
  font-weight: 600;
  color: #D00A11;
  line-height: 1.2;
}
.vagas .__content .container .__item .__txt b {
  font-weight: 500;
}
.vagas .__content .container .__item .__link {
  font-size: 1rem;
  font-weight: 600;
  color: #D00A11;
  transition: all 0.3s;
}
.vagas .__content .container .__item .__link:hover {
  color: #094066;
}
.vagas .__content .container .__item:hover {
  border-color: #D00A11;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1607843137);
}
.vagas .__content .container .paginator {
  margin: 50px 0 0 0;
  grid-column: span 2;
}

/* RESPONSIVE */
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .vagas .__banner {
    height: 200px;
  }
  .vagas .__banner .container {
    padding-bottom: 30px;
  }
  .vagas .__content {
    padding: 45px 0;
  }
  .vagas .__content .container {
    gap: 25px 20px;
  }
  .vagas .__content .container .__item {
    padding: 15px 20px;
    gap: 20px;
  }
  .vagas .__content .container .__item h4 {
    font-size: 1.25rem;
  }
  .vagas .__content .container .paginator {
    margin: 30px 0 0 0;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .vagas .__banner {
    height: 150px;
  }
  .vagas .__content {
    padding: 30px 0;
  }
  .vagas .__content .container {
    gap: 20px;
  }
  .vagas .__content .container .__item {
    padding: 10px 20px;
  }
  .vagas .__content .container .__item h4 {
    font-size: 1.125rem;
  }
}
/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  .vagas .__banner .container .__titleMain {
    background: rgba(0, 0, 0, 0.368627451);
  }
  .vagas .__content .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vagas .__content .container .__item {
    padding: 10px;
    gap: 15px;
  }
}
/*
  ========================================
  DETALHE VAGA
  ========================================
*/
.detalhe_vaga .__banner {
  height: 250px;
  position: relative;
}
.detalhe_vaga .__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-position: right;
     object-position: right;
  z-index: -1;
}
.detalhe_vaga .__banner .container {
  height: 100%;
  padding-bottom: 60px;
  display: flex;
  align-items: end;
}
.detalhe_vaga .__banner .container .__titleMain {
  border-color: #fff;
  color: #fff;
}
.detalhe_vaga .__content {
  padding: 74px 0;
}
.detalhe_vaga .__content .__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin-top: 74px;
}
.detalhe_vaga .__content .__grid .__txt h6 {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 40px;
  max-width: 310px;
}
.detalhe_vaga .__content .__grid .__form .__display {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.detalhe_vaga .__content .__grid .__form .__display .--duo {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: inherit;
}
.detalhe_vaga .__content .__grid .__button input {
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  padding: 0 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: #D00A11;
  border-radius: 10px;
  margin-top: 25px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.detalhe_vaga .__content .__grid .__button input:hover {
  background-color: #094066;
  box-shadow: 5px 5px 18px -8px #094066;
}

/* RESPONSIVE */
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .detalhe_vaga .__banner {
    height: 200px;
  }
  .detalhe_vaga .__banner .container {
    padding-bottom: 30px;
  }
  .detalhe_vaga .__content {
    padding: 45px 0;
  }
  .detalhe_vaga .__content .__grid {
    gap: 40px;
    margin-top: 45px;
  }
  .detalhe_vaga .__content .__grid .__txt h6 {
    margin-top: 30px;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .detalhe_vaga .__banner {
    height: 150px;
  }
  .detalhe_vaga .__banner .container {
    padding-bottom: 30px;
  }
  .detalhe_vaga .__content {
    padding: 30px 0;
  }
  .detalhe_vaga .__content .__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .detalhe_vaga .__content .__grid .__txt h6 {
    margin-top: 30px;
  }
}
/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  .detalhe_vaga .__banner .container .__titleMain {
    background-color: rgba(0, 0, 0, 0.368627451);
  }
}
/* MOBILE - 400px*/
@media (max-width: 25rem) {
  .detalhe_vaga .__content .__grid .__form .__display .--duo {
    grid-template-columns: 1fr;
  }
}
/*
  ========================================
  DOCUMENTOS
  ========================================
*/
.documentos .__banner {
  height: 250px;
  position: relative;
}
.documentos .__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-position: right;
     object-position: right;
  z-index: -1;
}
.documentos .__banner .container {
  height: 100%;
  padding-bottom: 60px;
  display: flex;
  align-items: end;
}
.documentos .__banner .container .__titleMain {
  color: #fff;
  border-color: #fff;
}
.documentos .__content {
  padding: 74px 0;
}
.documentos .__content .__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 10px;
}
.documentos .__content .__grid a {
  display: flex;
  padding-bottom: 5px;
  padding-right: 45px;
  background: url("../images/icons/download.png") no-repeat center right 15px;
  transition: all 0.3s;
  padding: 15px 40px;
  box-shadow: 4px 4px 10px #dfdfdf;
  border-radius: 8px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.documentos .__content .__grid a:hover {
  color: #D00A11;
  box-shadow: 4px 4px 10px #d4d4d4;
}
.documentos .__content .__grid a.--word {
  background: url("../images/icons/download.png") no-repeat center right 10px, url("../images/icons/word.png") no-repeat center left 10px;
}
.documentos .__content .__grid a.--pdf {
  background: url("../images/icons/download.png") no-repeat center right 10px, url("../images/icons/pdf.png") no-repeat center left 10px;
}
.documentos .__content .__grid a.--excel {
  background: url("../images/icons/download.png") no-repeat center right 10px, url("../images/icons/excel.png") no-repeat center left 10px;
}

/* RESPONSIVE */
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .documentos .__banner {
    height: 200px;
  }
  .documentos .__banner .container {
    padding-bottom: 30px;
  }
  .documentos .__content {
    padding: 45px 0;
  }
  .documentos .__content .__grid {
    gap: 30px;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .documentos .__banner {
    height: 150px;
  }
  .documentos .__content {
    padding: 30px 0;
  }
  .documentos .__content .__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .documentos .__content .__grid a {
    font-size: 0.875rem;
  }
}
/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  .documentos .__banner .container .__titleMain {
    background: rgba(0, 0, 0, 0.368627451);
  }
}
/*
  ========================================
  CONTATO
  ========================================
*/
.contato {
  padding-top: 50px;
}
.contato .__content {
  padding: 74px 0;
  display: grid;
  grid-template-columns: 490px 1px 300px;
  gap: 84px;
  justify-content: center;
  align-items: center;
}
.contato .__content .__form p {
  margin-bottom: 15px;
}
.contato .__content .__form .__display {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contato .__content .__form .__display .--duo {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: inherit;
}
.contato .__content .__form .__button input {
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  padding: 0 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: #D00A11;
  border-radius: 10px;
  margin-top: 25px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.contato .__content .__form .__button input:hover {
  background-color: #094066;
  box-shadow: 5px 5px 18px -8px #094066;
}
.contato .__content .--divider {
  width: 100%;
  height: 305px;
  background-color: #707070;
}
.contato .__content .__txt .__item {
  margin-bottom: 35px;
}
.contato .__content .__txt .__item h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

/* RESPONSIVE */
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .contato .__content {
    padding: 45px 0;
    gap: 40px;
  }
  .contato .__content .__txt .__item {
    margin-bottom: 25px;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .contato {
    padding: 0;
  }
  .contato .__content {
    padding: 30px 0;
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .contato .__content .--divider {
    display: none;
  }
}
/* MOBILE - 400px*/
@media (max-width: 25rem) {
  .contato .__content .__form .__display .--duo {
    grid-template-columns: 1fr;
  }
}
/*
  ========================================
  DETALHE EVENTO
  ========================================
*/
.detalhe_evento {
  padding-top: 50px;
}
.detalhe_evento .__content {
  padding: 74px 0;
}
.detalhe_evento .__content .__titleMain {
  margin-bottom: 40px;
}
.detalhe_evento .__content .--date {
  font-size: 0.875rem;
  display: block;
  text-align: end;
  margin-bottom: 5px;
}
.detalhe_evento .__content .__img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 65px;
}
.detalhe_evento .__content h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #D00A11;
  margin-bottom: 10px;
}
.detalhe_evento .__content .__button {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  font-family: Raleway, Helvetica, sans-serif;
  font-weight: 700;
  height: 2.75em;
  line-height: 2.75em;
  padding: 0 1.5em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: transparent;
  color: #444;
  box-shadow: inset 0 0 0 1px #444;
}
.detalhe_evento .__content .__button:hover {
  box-shadow: inset 0 0 0 2px #094066;
  color: #094066;
  background-color: #F6F6F6;
}
.detalhe_evento .__others {
  margin-bottom: 50px;
}
.detalhe_evento .__others .__titleMain {
  margin-bottom: 30px;
}
.detalhe_evento .__others .__display {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.detalhe_evento .__others .__display .__item .__img {
  aspect-ratio: 260/170;
  background-color: #ededed;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.detalhe_evento .__others .__display .__item .__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.detalhe_evento .__others .__display .__item .__txt {
  padding: 10px 20px;
}
.detalhe_evento .__others .__display .__item .__txt .--date {
  font-size: 0.875rem;
}
.detalhe_evento .__others .__display .__item .__txt h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #D00A11;
  line-height: 1.2;
  margin: 5px 0;
}

/* RESPONSIVE */
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .detalhe_evento .__content {
    padding: 45px 0;
  }
  .detalhe_evento .__content .__titleMain {
    margin-bottom: 25px;
  }
  .detalhe_evento .__content .__img {
    margin-bottom: 45px;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .detalhe_evento {
    padding: 0;
  }
  .detalhe_evento .__content {
    padding: 30px 0;
  }
  .detalhe_evento .__content .__titleMain {
    margin-bottom: 15px;
  }
  .detalhe_evento .__content .__img {
    margin-bottom: 30px;
  }
  .detalhe_evento .__others .__titleMain {
    margin-bottom: 20px;
  }
  .detalhe_evento .__others .__display {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .detalhe_evento .__others .__display .__item .__img {
    aspect-ratio: 260/170;
    background-color: #ededed;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .detalhe_evento .__others .__display .__item .__img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .detalhe_evento .__others .__display .__item .__txt {
    padding: 10px 20px;
  }
  .detalhe_evento .__others .__display .__item .__txt .--date {
    font-size: 0.875rem;
  }
  .detalhe_evento .__others .__display .__item .__txt h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #D00A11;
    line-height: 1.2;
    margin: 5px 0;
  }
}
/*
  ========================================
  NOTICIAS
  ========================================
*/
.noticias {
  padding-top: 50px;
}
.noticias .__content {
  padding: 74px 0;
}
.noticias .__content .__titleMain {
  margin-bottom: 65px;
}
.noticias .__content .__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 65px;
}

/* RESPONSIVE */
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .noticias .__content {
    padding: 45px 0;
  }
  .noticias .__content .__titleMain {
    margin-bottom: 45px;
  }
  .noticias .__content .__grid {
    gap: 30px;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .noticias .__content {
    padding: 30px 0;
  }
  .noticias .__content .__titleMain {
    margin-bottom: 30px;
  }
  .noticias .__content .__grid {
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
}
/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  .noticias .__content .__grid {
    grid-template-columns: 1fr;
  }
}
/*
  ========================================
  DETALHE OPORTUNIDADE
  ========================================
*/
.detalhe_oportunidade {
  padding-top: 50px;
}
.detalhe_oportunidade .__content {
  padding: 74px 0;
}
.detalhe_oportunidade .__content .__titleMain {
  margin-bottom: 65px;
}
.detalhe_oportunidade .__content .__img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 65px;
}
.detalhe_oportunidade .__content .__img img {
  width: 100%;
}
.detalhe_oportunidade .__content h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #D00A11;
  margin-bottom: 10px;
}
.detalhe_oportunidade .__content .__video {
  margin-top: 30px;
}
.detalhe_oportunidade .__content .__video video {
  border-radius: 10px;
  width: 100%;
}

/* RESPONSIVE */
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .detalhe_oportunidade .__content {
    padding: 45px 0;
  }
  .detalhe_oportunidade .__content .__titleMain {
    margin-bottom: 45px;
  }
  .detalhe_oportunidade .__content .__img {
    margin-bottom: 45px;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .detalhe_oportunidade {
    padding: 0;
  }
  .detalhe_oportunidade .__content {
    padding: 30px 0;
  }
  .detalhe_oportunidade .__content .__titleMain {
    margin-bottom: 30px;
  }
  .detalhe_oportunidade .__content .__img {
    margin-bottom: 30px;
  }
}
/*
  ========================================
  POLITICA
  ========================================
*/
.politica h2 {
  font-size: 1.5625rem;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: 50px;
  text-decoration: underline;
  color: #094066;
}
.politica h3 {
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  margin: 30px 0;
  color: #D00A11;
}
.politica h3::before {
  content: "•";
  margin-right: 10px;
}
.politica .--red * {
  color: #d05b5b;
}
.politica p {
  font-size: 1rem;
  line-height: 20px;
  color: #000000;
  margin-bottom: 20px;
}
.politica p span {
  font-weight: 600;
  color: #D00A11;
}
.politica a {
  color: #D00A11;
  transition: all 0.3s;
}
.politica a:hover {
  color: #C4C4C4;
}
.politica .--abc {
  margin-left: 20px;
  line-height: 25px;
}

/* RESPONSIVE */
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .politica h2 {
    font-size: 1.375rem;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .politica h3 {
    font-size: 1.0625rem;
  }
  .politica p {
    font-size: 0.9375rem;
  }
  .politica a {
    font-size: 0.9375rem;
  }
}
/* TABLET BIG - 900px*/
@media (max-width: 56.25rem) {
  .politica h2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .politica h3 {
    font-size: 1rem;
  }
  .politica p {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
  .politica a {
    font-size: 0.875rem;
  }
  .politica .--abc {
    margin-left: 10px;
    line-height: 20px;
  }
}
/*
  ========================================
  FORMS
  ========================================
*/
.__form .input label {
  font-size: 0.875rem;
}
.__form .input input, .__form .input textarea, .__form .input select {
  width: 100%;
  height: 45px;
  outline: none;
  border: solid 1px #666666;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.875rem;
  transition: all 0.3s;
}
.__form .input input:focus, .__form .input textarea:focus, .__form .input select:focus {
  border-color: #094066;
  box-shadow: 4px 4px 12px -4px #094066;
}
.__form .input textarea {
  height: 200px;
  resize: none;
}
.__form .--msg-sucess {
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid green;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  color: green;
  font-weight: 600;
}
.__form .--msg-error {
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #dd0303;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  color: #dd0303;
  font-weight: 600;
}

/*
  ========================================
  BANNERS
  ========================================
*/
.bannerMain .swiper {
  position: relative;
  overflow: hidden;
}
.bannerMain .swiper .swiper-pagination {
  bottom: 15px !important;
}
.bannerMain .swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.bannerMain .swiper .swiper-pagination-bullet.swiper-pagination-bullet {
  opacity: 1 !important;
  background: #fff;
  margin: 0 8px !important;
}
.bannerMain .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #C4C4C4 !important;
}

/*
  ========================================
  TITLE MAIN
  ========================================
*/
.__titleMain {
  width: -moz-fit-content;
  width: fit-content;
  color: #094066;
  font-size: 2.1875rem;
  font-weight: 600;
  line-height: 1.3;
}
.__titleMain.--emphasis {
  border: 2px solid #D00A11;
  border-radius: 10px;
  padding: 8px 24px;
}

/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .__titleMain {
    font-size: 1.5625rem;
  }
  .__titleMain.--emphasis {
    padding: 8px 18px;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .__titleMain {
    font-size: 1.25rem;
  }
  .__titleMain.--emphasis {
    padding: 5px 15px;
  }
}
/*
  ========================================
  MENU RESPONSIVE
  ========================================
*/
.button_container {
  position: absolute;
  top: 35px;
  right: 33px;
  height: 27px;
  width: 40px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
  transition: all 0.3s ease;
}

.button_container:hover {
  opacity: 0.7;
}

.button_container.active .top {
  transform: translateY(10px) translateX(0) rotate(45deg);
  background: #FFF;
}

.button_container.active .middle {
  opacity: 0;
  background: #FFF;
}

.button_container.active .bottom {
  transform: translateY(-10px) translateX(0) rotate(-45deg);
  background: #FFF;
}

.button_container span {
  background: #fff;
  border: none;
  height: 4px;
  border-radius: 10px;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}

.button_container span:nth-of-type(2) {
  top: 10px;
}

.button_container span:nth-of-type(3) {
  top: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, width 0.35s;
  z-index: 50;
}

.overlay:before {
  content: "";
  background: #252525;
  left: -55%;
  top: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  transition: left 0.35s ease;
}

.overlay:after {
  content: "";
  background: #252525;
  right: -55%;
  top: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  transition: all 0.35s ease;
}

.overlay.open {
  opacity: 0.92;
  visibility: visible;
  height: 100%;
}

.overlay.open:before {
  left: 0;
}

.overlay.open:after {
  right: 0;
}

.overlay.open li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.05s;
}

.overlay.open li:nth-of-type(2) {
  animation-delay: 0.15s;
}

.overlay.open li:nth-of-type(3) {
  animation-delay: 0.35s;
}

.overlay.open li:nth-of-type(4) {
  animation-delay: 0.55s;
}

.overlay.open li:nth-of-type(5) {
  animation-delay: 0.75s;
}

.overlay.open li:nth-of-type(6) {
  animation-delay: 0.95s;
}

.overlay.open li:nth-of-type(7) {
  animation-delay: 1.05s;
}

.overlay.open li:nth-of-type(8) {
  animation-delay: 1.25s;
}

.overlay nav {
  display: block !important;
  position: relative;
  height: 70%;
  top: 50%;
  padding-bottom: 10px;
  transform: translateY(-50%);
  font-size: 20px;
  font-family: "Lato", serif;
  font-weight: 400;
  text-align: center;
  z-index: 100;
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
  padding-right: 0px;
}

.overlay ul li {
  display: block;
  height: 14.2857142857%;
  min-height: 50px;
  position: relative;
  opacity: 0;
}

.overlay ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after,
.overlay ul li .ativo:after,
.overlay ul li .ativo:after,
.overlay ul li .ativo:after {
  width: 100%;
}

.overlay ul li .ativo {
  /* color:#6fc06c; */
}

.overlay ul li a:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 5px;
  background: #fff;
  transition: 0.35s;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@media (min-width: 1025px) {
  .button_container {
    display: none;
  }
}
/* 
  ================================
  MANAGER COOKIES
  ================================
*/
.manager_cookies:not(:has(.--active)) {
  animation: hideContent 0s linear 10s forwards;
}
@keyframes hideContent {
  to {
    display: none;
  }
}
.manager_cookies .__icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cbcaca;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999999;
  transition: all 0.5s;
}
.manager_cookies .__icon:hover {
  background-color: #094066;
}
.manager_cookies .__content, .manager_cookies .__options {
  max-width: 332px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 70px;
  left: 70px;
  z-index: 999999;
  transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.manager_cookies .__content.--active, .manager_cookies .__options.--active {
  visibility: visible;
  opacity: 1;
}
.manager_cookies .__content span {
  font-size: 11px;
  line-height: 15px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
  font-family: "Lato", sans-serif;
}
.manager_cookies .__options h2, .manager_cookies .__options h3 {
  font-size: 13px;
  line-height: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 5px;
  font-family: "Lato", sans-serif;
}
.manager_cookies .__options h2 {
  margin-bottom: 25px;
}
.manager_cookies .__options .__item:not(:nth-last-child(2)) {
  border-bottom: solid 1px #cbcaca;
  margin-bottom: 20px;
}
.manager_cookies .__options .__item p {
  font-size: 12px;
  line-height: 17px;
  color: #000;
  margin-bottom: 5px;
  font-family: "Lato", sans-serif;
  font-weight: 300;
}
.manager_cookies .__options .__item h4 {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
  color: #1A1A1A;
}
.manager_cookies .__options .__item .check {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 15px;
}
.manager_cookies .__options .__item .check .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  min-width: 40px;
  height: 19px;
}
.manager_cookies .__options .__item .check .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.manager_cookies .__options .__item .check .switch input:checked + .roundSwitch {
  background-color: #094066;
}
.manager_cookies .__options .__item .check .switch input:focus + .roundSwitch {
  box-shadow: 0 0 1px #094066;
}
.manager_cookies .__options .__item .check .switch input:checked + .roundSwitch:before {
  transform: translateX(16px);
}
.manager_cookies .__options .__item .check .roundSwitch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #858882;
  transition: 0.4s;
}
.manager_cookies .__options .__item .check .roundSwitch.round {
  border-radius: 20px;
}
.manager_cookies .__options .__item .check .roundSwitch.round:before {
  border-radius: 20px;
}
.manager_cookies .__options .__item .check .roundSwitch.saveCookies {
  width: 100%;
  padding: 10px 10px;
  color: #000000;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 30px;
  text-align: center;
  font-family: "Lato", sans-serif;
  background: #094066;
  color: #fff;
}
.manager_cookies .__options .__item .check .roundSwitch:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
}
.manager_cookies .buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.manager_cookies .buttons a {
  width: 45%;
  padding: 10px 10px;
  color: #000000;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 30px;
  text-align: center;
  font-family: "Lato", sans-serif;
  background: #fff;
  cursor: pointer;
  transition: all 0.5s;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.manager_cookies .buttons a.--ok, .manager_cookies .buttons a.--save {
  background-color: #094066;
  color: #fff;
}
.manager_cookies .buttons a.--save {
  width: 100%;
}
.manager_cookies .buttons a:hover {
  opacity: 0.8;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
}
.manager_cookies button.close_cookies {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  position: absolute;
  top: -20px;
  right: 12px;
  transition: all 0.3s;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.35);
}
.manager_cookies button.close_cookies:hover {
  color: #fff;
  background-color: #094066;
}

/*
  ========================================
  ACCEPT COOKIES
  ========================================
*/
#accept_cookies {
  position: fixed;
  bottom: 20px;
  z-index: 9999;
  width: 100%;
  display: none;
}
#accept_cookies .out {
  display: flex;
  justify-content: space-between;
  padding: 18px 25px;
  background: #f3f1f1;
  width: 75%;
  max-width: 1250px;
  font-size: 14px;
  margin: 0 auto;
  color: #222;
  box-shadow: 1px 1px 12px 0px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}
#accept_cookies .out a {
  font-weight: 600;
  color: #000;
  text-decoration: underline;
  transition: all 0.5s;
}
#accept_cookies .out a:hover {
  color: #000;
}
#accept_cookies .out button {
  background: #094066;
  border: none;
  color: #fff;
  font-size: 15px;
  width: 120px;
  padding: 8px 0;
  cursor: pointer;
  margin-left: 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
#accept_cookies .out button:hover {
  background: #F6F6F6;
}

/* TABLET BIG - 900px*/
@media (max-width: 900px) {
  #accept_cookies {
    z-index: 99999999;
    bottom: 0;
  }
  #accept_cookies .out {
    width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 10px 20px;
    font-size: 12px;
    flex-direction: column;
  }
  #accept_cookies .out button {
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
/*
  ========================================
  CARD NOTICIA
  ========================================
*/
.__card_noticia .__img {
  aspect-ratio: 275/146;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  background-color: #f8f8f8;
  overflow: hidden;
  border-radius: 10px;
}
.__card_noticia .__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.__card_noticia h5 {
  color: #D00A11;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 18px;
  height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.__card_noticia p {
  height: 104px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 16px;
}
.__card_noticia a {
  color: #D00A11;
  transition: all 0.3s;
  position: relative;
}
.__card_noticia a::before {
  content: "";
  width: 0%;
  height: 1px;
  background-color: #094066;
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: all 0.3s;
}
.__card_noticia a:hover {
  color: #094066;
}
.__card_noticia a:hover::before {
  width: 100%;
}

/* RESPONSIVE */
/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  .__card_noticia .__img {
    margin-bottom: 15px;
  }
  .__card_noticia h5 {
    margin-bottom: 10px;
    height: auto;
  }
  .__card_noticia p {
    margin-bottom: 10px;
    height: auto;
  }
}
/*
  ========================================
  POPUP SEJA MEMBRO
  ========================================
*/
/* .disableScroll {
  overflow: hidden;
} */
.__popup_seja_membro {
  width: 100%;
  min-height: 100vh;
  background-color: rgba(54, 52, 53, 0.768627451);
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}
.__popup_seja_membro.active {
  opacity: 1;
  visibility: visible;
}
.__popup_seja_membro .__view {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
}
.__popup_seja_membro .container {
  height: 100%;
  max-width: 620px;
  margin: 30px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.__popup_seja_membro .container .__button-close {
  position: absolute;
  top: -15px;
  right: -15px;
}
.__popup_seja_membro .container .__button-close button {
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}
.__popup_seja_membro .container .__button-close button svg circle, .__popup_seja_membro .container .__button-close button svg path {
  transition: all 0.3s;
}
.__popup_seja_membro .container .__button-close button:hover svg circle {
  fill: #D00A11;
}
.__popup_seja_membro .container .__button-close button:hover svg path {
  stroke: #fff;
}
.__popup_seja_membro .container .__content {
  width: 100%;
  padding: 32px 90px;
  background-color: #F6F6F6;
  border: solid 1px rgba(54, 52, 53, 0.768627451);
  border-radius: 20px;
  position: relative;
}
.__popup_seja_membro .container .__content .__logo {
  width: 112px;
  margin: 0 auto 54px auto;
}
.__popup_seja_membro .container .__content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #094066;
  text-align: center;
  margin-bottom: 25px;
}
.__popup_seja_membro .container .__content .__form .__display {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.__popup_seja_membro .container .__content .__form .__display .--duo {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: inherit;
}
.__popup_seja_membro .container .__content .__form .__button {
  display: flex;
  justify-content: center;
}
.__popup_seja_membro .container .__content .__form .__button input {
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  padding: 0 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: #D00A11;
  border-radius: 10px;
  margin-top: 25px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.__popup_seja_membro .container .__content .__form .__button input:hover {
  background-color: #094066;
  box-shadow: 5px 5px 18px -8px #094066;
}

/* Responsive */
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .__popup_seja_membro .container .__content {
    padding: 20px 40px;
  }
  .__popup_seja_membro .container .__content .__logo {
    margin: 0 auto 40px auto;
  }
  .__popup_seja_membro .container .__content h4 {
    margin-bottom: 20px;
  }
  .__popup_seja_membro .container .__content .__form .__display {
    gap: 15px;
  }
  .__popup_seja_membro .container .__content .__form .__button input {
    margin-top: 20px;
  }
}
/* TABLET BIG - 900px*/
@media (max-width: 56.25rem) {
  .__popup_seja_membro .container {
    margin: 0px auto;
    padding: 0;
    min-height: 100vh;
  }
  .__popup_seja_membro .container .__content {
    padding: 20px;
  }
  .__popup_seja_membro .container .__content .__logo {
    margin: 0 auto 20px auto;
  }
  .__popup_seja_membro .container .__content h4 {
    margin-bottom: 10px;
  }
  .__popup_seja_membro .container .__content .__form .__display {
    gap: 10px;
  }
  .__popup_seja_membro .container .__content .__form .__button input {
    margin-top: 15px;
  }
}
/* TABLET - 600px*/
/**/ /**/