@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

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

.reset {
  clear: both;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  outline: none;
}

/*Fontes*/
/*Variações Fonte*/
/*Cores*/
/*Fim Cores*/
/*Estilo Font*/
.light {
  font-weight: 300;
}

.bold__italic {
  font-weight: 700;
  font-style: italic;
}

.Ebold__italic {
  font-weight: 800;
  font-style: italic;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.Ebold {
  font-weight: 800;
}

b {
  font-weight: 700;
}

@keyframes arrow-pulse-down {
  0% {
    bottom: 40px;
    opacity: 0;
  }
  25% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.75;
  }
  100% {
    bottom: 20px;
    opacity: 1;
  }
}
header {
  padding: 1.5rem 0 2.2rem;
}
header .container__flex {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
header .container__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
header .container__logo .logo {
  padding-right: 1.2rem;
}
@media only screen and (max-width: 640px) {
  header .container__logo .logo {
    width: 40%;
  }
}
header .container__logo .logo img {
  max-width: 100%;
}
header .container__logo .link__canal {
  text-decoration: none;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  position: relative;
  padding-left: 1.2rem;
  transition: 0.2s;
}
@media only screen and (max-width: 640px) {
  header .container__logo .link__canal {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
}
header .container__logo .link__canal:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: #B9BABC;
}
@media only screen and (max-width: 950px) {
  header .nav__menu {
    display: none;
    position: absolute;
    background: #3B4B16;
    width: 100%;
    height: 100vh;
    top: 0;
    z-index: 2;
    left: 0;
    padding-top: 5rem;
    color: #ffffff;
  }
  header .nav__menu .link__mobile {
    margin-bottom: 4rem;
  }
  header .nav__menu .link__mobile i {
    font-size: 4rem;
    color: #B9BABC;
    margin-right: 0;
  }
}
header .nav__menu.active {
  display: block;
}
header .nav__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media only screen and (max-width: 950px) {
  header .nav__menu ul {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
header .nav__menu ul a {
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #000;
  transition: 0.2s;
}
@media only screen and (max-width: 950px) {
  header .nav__menu ul a {
    font-size: 2.4rem;
    line-height: 3.2rem;
    color: #ffffff;
  }
}
header .nav__menu ul a:hover {
  color: #B9BABC;
}
header .nav__menu ul a i {
  margin-right: 1.2rem;
}
header .link__mobile {
  display: none;
  font-size: 3rem;
  color: #3B4B16;
  font-weight: 700;
}
@media only screen and (max-width: 950px) {
  header .link__mobile {
    display: block;
  }
}

footer {
  padding: 4.4rem 0;
  background: #3B4B16;
}
footer .container__flex {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  footer .container__flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.6rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
footer a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 2.4rem;
  transition: 0.2s;
}
footer a:hover {
  color: #B9BABC;
}

.btn {
  height: 50px;
  border: none;
  font-size: 1.8rem;
  line-height: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  transition: 0.2s ease;
  cursor: pointer;
  width: max-content;
  padding: 1.4rem 3.7rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.btn.btn__green {
  border: solid 1px #3B4B16;
  background: #3B4B16;
  color: #ffffff;
}
.btn.btn__green:hover {
  background: transparent;
  border: solid 1px #3B4B16;
  color: #3B4B16;
}
.btn.btn__green i {
  margin-right: 1.4rem;
}
.btn.btn__green__out {
  border: solid 1px #3B4B16;
  color: #3B4B16;
}
.btn.btn__green__out:hover {
  background: #3B4B16;
  color: #ffffff;
}
.btn.btn__green__out i {
  margin-right: 1.4rem;
}

.group__btn {
  margin: 4.8rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
}
@media only screen and (max-width: 640px) {
  .group__btn {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .group__btn a {
    width: 100%;
  }
}

.field, field {
  width: 100%;
  display: block;
  position: relative;
}
.field:not(:last-child), field:not(:last-child) {
  margin-bottom: 2.4rem;
}
.field:last-child label, field:last-child label {
  margin-bottom: 1.6rem;
}

label {
  display: block;
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 600;
  margin-bottom: 2.6rem;
}
label.not__mg {
  margin: 0;
}

.input {
  width: 100%;
  height: 50px;
  padding: 1.4rem 0rem;
  font-size: 2rem;
  background: transparent;
  color: #000;
  border: none;
  border-bottom: solid 1px #707070;
}
.input.area {
  height: 180px;
}

.input__area {
  width: 100%;
  height: 266px;
  padding: 1.4rem 1.6rem;
  font-size: 2.4rem;
  background: transparent;
  border-radius: 0.8rem;
  background: #ffffff;
  border: none;
  resize: none;
}

.group__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.6rem;
}
@media only screen and (max-width: 640px) {
  .group__field {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.group__field:not(:last-child) {
  margin-bottom: 2rem;
}
.group__field:last-child label {
  margin-bottom: 2.4rem;
}
.group__field .field:not(:last-child), .group__field field:not(:last-child) {
  margin: 0;
}

.field__row {
  position: relative;
}

/*Placeholder*/
.input::-webkit-input-placeholder, .input__area::-webkit-input-placeholder {
  font-size: 2rem;
  color: #000;
}

.input:-moz-placeholder, .input__area:-moz-placeholder {
  font-size: 2rem;
  color: #000;
}

.input::-moz-placeholder, .input__area::-moz-placeholder {
  font-size: 2rem;
  color: #000;
}

.input:-ms-input-placeholder, .input__area:-ms-input-placeholder {
  font-size: 2rem;
  color: #000;
}

.form__container {
  width: 100%;
}

/*Formulário Mensagem Erro*/
.formulario_error_box, .input.formulario_error_box {
  border: solid 1px #BE2A2A;
  box-shadow: inset 0 0 0 2px #BE2A2A !important;
}

.formulario_error_mensagem {
  display: none;
  color: #BE2A2A;
  width: 100%;
  z-index: 2;
  font-size: 1.4rem;
  margin-top: 1rem;
}

.formulario_error_mensagem__register {
  display: none;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #BE2A2A;
  border: solid 1px #BE2A2A;
  padding: 1.8rem 3.8rem;
  box-sizing: border-box;
  background: #ffffff;
  margin-bottom: 4rem;
}

/*Switch*/
.switch {
  display: inline-block;
  height: 21px;
  position: relative;
  width: 37px;
  margin-bottom: 0 !important;
}

.switch .checkbox__disable {
  display: none;
}

.checkbox__disable {
  display: none;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
}

.slider:before {
  background-color: #fff;
  bottom: 1px;
  content: "";
  height: 19px;
  left: 1px;
  position: absolute;
  transition: 0.4s;
  width: 19px;
}

input:checked + .slider {
  background-color: #89AB3B;
}

input:checked + .slider:before {
  transform: translateX(15px);
}

.slider.round {
  border-radius: 20px;
}

.slider.round:before {
  border-radius: 50%;
}

.disabled {
  opacity: 0.3;
}

/*Select*/
.select {
  position: relative;
  height: auto;
  padding: 0px;
  margin-bottom: 30px;
  text-align: left;
}

.select select {
  display: none;
}

.select-selected {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.8) !important;
}

.select-selected:after {
  position: absolute;
  content: "";
  right: 10px;
  background: url(../../img/arrow-select.png) no-repeat;
  width: 13px;
  height: 8px;
  top: 8px;
}

.select-selected:before {
  position: absolute;
  content: "";
  top: 18px;
  right: 10px;
  width: 0;
  height: 0;
  background: url(../../img/arrow-select.png) no-repeat;
  transform: rotate(180deg);
}

.select-selected.select-arrow-active:before {
  border: none;
}

.select-selected.select-arrow-active:after {
  transform: rotate(180deg);
}

.select-items div, .select-selected {
  color: #ffffff;
  padding: 8px 0px;
  background: transparent;
  border-bottom: 1px solid #707070;
  cursor: pointer;
}

.select-items {
  position: absolute;
  background-color: #3B4B16;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 0 10px;
  height: 200px;
  overflow-y: auto;
}

.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

/*File Upload*/
.input-file {
  background-color: #EEEEEF;
  height: 42px;
  width: 100%;
}

.input-file::file-selector-button {
  border: none;
  color: #000;
  height: 42px;
  cursor: pointer;
  transition: all 0.25s ease-in;
  cursor: pointer;
}

section.banner {
  background: url(../../images/Perplan.jpg) center top no-repeat;
  min-height: 400px;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
section.banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(59, 75, 22, 0.7);
}
section.banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}
section.banner .center {
  position: relative;
  z-index: 1;
}
section.banner .container__texto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: baseline;
  gap: 10.8rem;
}
@media only screen and (max-width: 640px) {
  section.banner .container__texto {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6rem;
    padding: 4rem 0;
  }
}
section.banner .container__texto .chamada__destaque {
  color: #ffffff;
}
section.banner .container__texto .chamada__destaque h1 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 5.2rem;
  margin-bottom: 1.6rem;
}
section.banner .container__texto .chamada__destaque p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.4rem;
}
section.banner .container__texto .descricao__destaque {
  max-width: 670px;
  color: #ffffff;
}
section.banner .container__texto .descricao__destaque p {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
section.banner .container__texto .descricao__destaque p:not(:last-child) {
  margin-bottom: 3.2rem;
}

section.desejo {
  padding: 4.8rem 0;
}
section.desejo .container__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  max-width: 752px;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  section.desejo .container__grid {
    grid-template-columns: 1fr;
  }
}
section.desejo .container__grid .item {
  transition: 0.2s;
}
section.desejo .container__grid .item:hover .box {
  transform: scale(1.1);
}
section.desejo .container__grid .item a {
  text-decoration: none;
  transition: 0.2s;
}
section.desejo .container__grid .box {
  background: #ffffff;
  padding: 2.2rem 4rem 3.8rem;
  box-sizing: border-box;
  transition: 0.2s;
}
section.desejo .container__grid .box .icon {
  margin-bottom: 1.6rem;
}
section.desejo .container__grid .box .icon i {
  font-size: 3rem;
  color: #3B4B16;
}
section.desejo .container__grid .box h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.4rem;
  color: #3B4B16;
  margin-bottom: 1.2rem;
}
section.desejo .container__grid .box p {
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: #000;
}

.intern {
  padding: 5.8rem 0 0;
}
.intern .center {
  max-width: 752px;
}

section.agradecimento__colaboracao {
  padding-bottom: 17rem;
}
section.agradecimento__colaboracao .subtitle__intern {
  margin-bottom: 2.4rem;
}
section.agradecimento__colaboracao p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #000;
}
section.agradecimento__colaboracao .numero__protocolo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin: 3.2rem 0 2.2rem;
}
section.agradecimento__colaboracao .copy {
  padding: 0.8rem 1.6rem;
}
section.agradecimento__colaboracao .copy span {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
}
section.agradecimento__colaboracao .copy a {
  margin-left: 1.8rem;
  font-size: 1.9rem;
  color: #B9BABC;
}

section.consulta__denuncia {
  padding-bottom: 38.8rem;
}
section.consulta__denuncia .subtitle__intern {
  margin-bottom: 4.6rem;
}
section.consulta__denuncia .container__flex {
  gap: 4.8rem;
}
@media only screen and (max-width: 640px) {
  section.consulta__denuncia .container__flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2.4rem;
  }
  section.consulta__denuncia .container__flex button {
    width: 100%;
  }
}

section.erro {
  padding: 18rem 0 24.5rem;
}
section.erro .subtitle__intern {
  margin-bottom: 2.2rem;
}
section.erro p {
  font-size: 2rem;
  line-height: 2.4rem;
  color: #000;
  margin-bottom: 0.8rem;
}

section.denuncia {
  padding: 0 0 7rem;
}
section.denuncia .subtitle__intern {
  margin-bottom: 2.4rem;
}
section.denuncia .subtitle__intern h1 {
  margin-bottom: 0.8rem;
}
section.denuncia .box__denuncia {
  background: #ffffff;
  padding: 4rem;
}
@media only screen and (max-width: 640px) {
  section.denuncia .box__denuncia {
    padding: 2rem;
  }
}
section.denuncia .box__denuncia .header__denuncia {
  text-transform: uppercase;
  padding: 0 0 2.5rem;
}
section.denuncia .box__denuncia .header__denuncia .date {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #000;
}
section.denuncia .box__denuncia .header__denuncia .container__flex {
  align-items: baseline;
  gap: 16px;
}
@media only screen and (max-width: 640px) {
  section.denuncia .box__denuncia .header__denuncia .container__flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2.2rem;
  }
  section.denuncia .box__denuncia .header__denuncia .container__flex h2 {
    margin-bottom: 0;
  }
}
section.denuncia .box__denuncia .header__denuncia h2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  color: #000;
  margin-bottom: 1.6rem;
}
section.denuncia .box__denuncia .header__denuncia h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.2rem;
  color: #3B4B16;
}
section.denuncia .container__respostas .questao__item:not(:last-child) {
  margin-bottom: 2.4rem;
}
section.denuncia .container__respostas .questao__item .questao__pergunta {
  margin-bottom: 0.8rem;
}
section.denuncia .container__respostas .questao__item .questao__pergunta h4 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.2rem;
  color: #000;
}
section.denuncia .container__respostas .questao__item .questao__resposta p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #000;
}
section.denuncia .container__respostas .questao__item .container__anexos .item__anexo {
  background: #FBFBFB;
  padding: 1.4rem 2rem;
}
section.denuncia .container__respostas .questao__item .container__anexos .item__anexo:not(:last-child) {
  margin-bottom: 0.4rem;
}
section.denuncia .container__respostas .questao__item .container__anexos .item__anexo a {
  font-size: 1.4rem;
  color: #3B4B16;
}
section.denuncia .box__resposta__perplan {
  background: #ffffff;
  padding: 3.2rem 4rem;
  margin: 4rem 0;
}
section.denuncia .box__resposta__perplan:nth-child(1) {
  border: solid 1px #3B4B16;
}
@media only screen and (max-width: 640px) {
  section.denuncia .box__resposta__perplan {
    padding: 2rem;
  }
}
section.denuncia .box__resposta__perplan .header__denuncia {
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
section.denuncia .box__resposta__perplan .header__denuncia h2 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  color: #000;
}
section.denuncia .box__resposta__perplan .header__denuncia .date {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #000;
}
section.denuncia .box__resposta__perplan .header__denuncia .container__flex {
  align-items: baseline;
  gap: 16px;
}
@media only screen and (max-width: 640px) {
  section.denuncia .box__resposta__perplan .header__denuncia .container__flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2.2rem;
  }
  section.denuncia .box__resposta__perplan .header__denuncia .container__flex h2 {
    margin-bottom: 0;
  }
}
section.denuncia .box__resposta__perplan .resposta__perplan p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #000;
}

section.impressao {
  padding: 0 0 7rem;
}
section.impressao .subtitle__intern {
  margin-bottom: 2.4rem;
}
section.impressao .subtitle__intern h1 {
  margin-bottom: 0.8rem;
}
section.impressao .box__impressao {
  background: #ffffff;
  padding: 4rem;
}
@media only screen and (max-width: 640px) {
  section.impressao .box__impressao {
    padding: 2rem;
  }
}
section.impressao .box__impressao .header__denuncia {
  text-transform: uppercase;
  padding: 0 0 2.5rem;
}
section.impressao .box__impressao .header__denuncia h2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  color: #000;
  margin-bottom: 1.6rem;
}
section.impressao .box__impressao .header__denuncia h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.2rem;
  color: #3B4B16;
}
section.impressao .container__respostas .questao__item:not(:last-child) {
  margin-bottom: 2.4rem;
}
section.impressao .container__respostas .questao__item .questao__pergunta {
  margin-bottom: 0.8rem;
}
section.impressao .container__respostas .questao__item .questao__pergunta h4 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.2rem;
  color: #000;
}
section.impressao .container__respostas .questao__item .questao__resposta p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #000;
}
section.impressao .container__respostas .questao__item .container__anexos .item__anexo {
  background: #FBFBFB;
  padding: 1.4rem 2rem;
}
section.impressao .container__respostas .questao__item .container__anexos .item__anexo:not(:last-child) {
  margin-bottom: 0.4rem;
}
section.impressao .container__respostas .questao__item .container__anexos .item__anexo a {
  font-size: 1.4rem;
  color: #3B4B16;
}

section.formulario__denuncia {
  padding-bottom: 4.2rem;
}
section.formulario__denuncia .subtitle__intern h1 {
  margin-bottom: 3.2rem;
}
section.formulario__denuncia #register {
  margin: 7.8rem 0 0;
}
@media only screen and (max-width: 640px) {
  section.formulario__denuncia #register .btn {
    width: 100%;
  }
}
section.formulario__denuncia #register label {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  line-height: 2.4rem;
  margin-bottom: 1.2rem;
}
section.formulario__denuncia #register .field .container__flex {
  gap: 1rem;
  align-items: center;
  padding-bottom: 3.2rem;
  border-bottom: solid 1px #EEEEEF;
  margin-bottom: 4.2rem;
}
@media only screen and (max-width: 640px) {
  section.formulario__denuncia #register .field .container__flex {
    font-size: 1.4rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
section.formulario__denuncia #register .field .container__flex input[type=checkbox] {
  width: 17px;
  height: 17px;
}
section.formulario__denuncia #register .field .container__flex a {
  color: #3B4B16;
}
section.formulario__denuncia #register .field {
  margin-bottom: 3.2rem;
}
section.formulario__denuncia #register .input {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #000;
}
section.formulario__denuncia #register .input::-webkit-input-placeholder, section.formulario__denuncia #register .input__area::-webkit-input-placeholder {
  font-size: 1.4rem;
  color: #000;
}
section.formulario__denuncia #register .input:-moz-placeholder, section.formulario__denuncia #register .input__area:-moz-placeholder {
  font-size: 1.4rem;
  color: #000;
}
section.formulario__denuncia #register .input::-moz-placeholder, section.formulario__denuncia #register .input__area::-moz-placeholder {
  font-size: 1.4rem;
  color: #000;
}
section.formulario__denuncia #register .input:-ms-input-placeholder, section.formulario__denuncia #register .input__area:-ms-input-placeholder {
  font-size: 1.4rem;
  color: #000;
}
section.formulario__denuncia #register .descricao__file {
  font-size: 1.2rem;
  line-height: 2rem;
  color: #000;
  margin: 2rem 0 0;
  padding-bottom: 3.2rem;
  border-bottom: solid 1px #EEEEEF;
}
section.formulario__denuncia #register .descricao__file p:first-child {
  margin-bottom: 1rem;
}
section.formulario__denuncia #register .descricao__file .bold {
  font-weight: 700;
}
section.formulario__denuncia #register .no-bold {
  font-weight: 400;
}
section.formulario__denuncia #register .anonimo {
  margin-bottom: 3.2rem;
}
section.formulario__denuncia #register .anonimo p {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  color: #000;
}
section.formulario__denuncia #register .anonimo .container__flex {
  align-items: center;
  gap: 1.4rem;
}
section.formulario__denuncia #register .dados__denunciante {
  margin-bottom: 6.2rem;
}
section.formulario__denuncia #register .dados__denunciante .container__flex {
  gap: 1.6rem;
}
@media only screen and (max-width: 640px) {
  section.formulario__denuncia #register .dados__denunciante .container__flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
  }
}
section.formulario__denuncia #register .dados__denunciante .container__flex .field label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  color: #000;
  margin-bottom: 1.2rem;
}
section.formulario__denuncia #register .dados__denunciante .container__flex .field .input {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #000;
}
section.formulario__denuncia #register .dados__denunciante .container__flex .field .input::-webkit-input-placeholder, section.formulario__denuncia #register .dados__denunciante .container__flex .field .input__area::-webkit-input-placeholder {
  font-size: 1.4rem;
  color: #000;
}
section.formulario__denuncia #register .dados__denunciante .container__flex .field .input:-moz-placeholder, section.formulario__denuncia #register .dados__denunciante .container__flex .field .input__area:-moz-placeholder {
  font-size: 1.4rem;
  color: #000;
}
section.formulario__denuncia #register .dados__denunciante .container__flex .field .input::-moz-placeholder, section.formulario__denuncia #register .dados__denunciante .container__flex .field .input__area::-moz-placeholder {
  font-size: 1.4rem;
  color: #000;
}
section.formulario__denuncia #register .dados__denunciante .container__flex .field .input:-ms-input-placeholder, section.formulario__denuncia #register .dados__denunciante .container__flex .field .input__area:-ms-input-placeholder {
  font-size: 1.4rem;
  color: #000;
}
section.formulario__denuncia #register .dados__denunciante .container__flex .field:first-child {
  width: 100%;
  max-width: 464px;
}
@media only screen and (max-width: 640px) {
  section.formulario__denuncia #register .dados__denunciante .container__flex .field:first-child {
    max-width: initial;
  }
}
section.formulario__denuncia #register .dados__denunciante .container__flex .field:last-child {
  width: 100%;
  max-width: 272px;
}
@media only screen and (max-width: 640px) {
  section.formulario__denuncia #register .dados__denunciante .container__flex .field:last-child {
    max-width: initial;
  }
}
section.formulario__denuncia #register .label__upload {
  background: #3B4B16;
  color: #ffffff;
  font-size: 1.6rem;
  width: 90px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 400;
  margin-bottom: 0;
  cursor: pointer;
}
@media only screen and (max-width: 640px) {
  section.formulario__denuncia #register .label__upload {
    display: none;
  }
}
section.formulario__denuncia #register .container__flex.upload {
  gap: 0;
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.modal {
  width: 100%;
  max-width: 624px !important;
  display: none;
}
@media only screen and (max-width: 640px) {
  .modal {
    max-width: 368px !important;
  }
}

.header__modal {
  max-width: 320px;
  margin: 4rem auto 0;
}
.header__modal .icon__modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 2rem;
  color: #3B4B16;
}
.header__modal .icon__modal i {
  font-size: 12rem;
}

.txt__cadastro {
  font-size: 3rem;
  line-height: 3.6rem;
  font-weight: 700;
  text-align: center;
  max-width: 400px;
  margin: 0 auto 2.4rem;
  color: #3B4B16;
}

.txt__aguarde {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  color: #3B4B16;
}

.fancybox-content {
  border-radius: 24px;
  padding: 0 !important;
}
.fancybox-content .content {
  padding: 32px;
}

*, button, input {
  font-family: "Montserrat", sans-serif;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 1110px) {
  html {
    font-size: 56.25%;
  }
}

body {
  font-size: 1.6rem;
  width: 100%;
  min-height: 100vh;
  line-height: 1;
  position: relative;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  transition: 0.4s;
  background: #FBFBFB;
}

a, a:hover, a:focus, a:active {
  text-decoration: none;
}

a {
  text-decoration: underline;
}

img {
  display: block;
  border: none;
}

.center {
  width: 90%;
  max-width: 1136px;
  margin: 0 auto;
}

.container__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container__grid {
  display: -ms-grid;
  display: grid;
}

/*Slick Dots*/
.slick-dots {
  bottom: -10rem !important;
}

.slick-dots li button:before {
  font-size: 1.6rem !important;
  content: "\f111" !important;
  font-family: "Font Awesome 6 Pro" !important;
  opacity: 1 !important;
  font-weight: 400 !important;
}

.slick-dots li.slick-active button:before {
  opacity: 1 !important;
  content: "\f111" !important;
  font-family: "Font Awesome 6 Pro" !important;
  font-weight: 900 !important;
}

/*Subtitle*/
.subtitle__home {
  text-align: center;
  margin-bottom: 1.6rem;
}
.subtitle__home h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3.2rem;
  color: #000;
}

.subtitle__intern h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4.8rem;
  color: #3B4B16;
}
@media only screen and (max-width: 640px) {
  .subtitle__intern h1 {
    font-size: 2.8rem;
    line-height: 3.8rem;
  }
}
.subtitle__intern .date {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #000;
}
.subtitle__intern .status {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
.subtitle__intern .status .status__analise {
  background: #70B5D9;
  width: max-content;
  padding: 1.4rem 1.8rem;
}
.subtitle__intern .status .status__analise__prorrogado {
  background: #70B5D9;
  width: max-content;
  padding: 1.4rem 1.8rem;
}
.subtitle__intern .status .status__concluido {
  background: #6C8B25;
  width: max-content;
  padding: 1.4rem 1.8rem;
}
.subtitle__intern p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #000;
}
.subtitle__intern p:not(:last-child) {
  margin-bottom: 3.2rem;
}

/*Voltar*/
.back {
  margin-bottom: 3.2rem;
}
.back a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  text-transform: uppercase;
  text-decoration: none;
  color: #3B4B16;
  transition: 0.2s;
  cursor: pointer;
}
.back a:hover {
  color: #B9BABC;
}

.fc-container .fancybox-bg {
    background: #eee;
}

.fancybox-is-open.fc-container .fancybox-bg {
    opacity: 0.95;
}

.fc-content {
    margin: 20px;
    max-width: 550px;
    padding: 50px !important;
    box-shadow: 10px 10px 60px -25px;
    border-radius: 4px;
}

    .fc-content h3 {
        margin-top: 0;
        font-size: 1.6em;
        letter-spacing: normal;
    }

    .fc-content p {
        color: #666;
        line-height: 1.5;
    }

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

/* Custom animation */
.fancybox-fx-material.fancybox-slide--previous,
.fancybox-fx-material.fancybox-slide--next {
    transform: translateY(-60px) scale(1.1);
    opacity: 0;
}

.fancybox-fx-material.fancybox-slide--current {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.tright {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin-top: 40px;
}
