* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;

  outline: 0;
}

img {
  max-width: 100%;
}

:root {
  font-size: 62.5%;
  /* 1rem = 10px */
}

html {
  /* chrome://flags/#smooth-scrolling */
  scroll-behavior: smooth;
}
.center{
  text-align: center;
}
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
}

.mb-10 {
  margin-bottom: 1rem;
}

.container {
  width: 1192px;
  padding: 0 15px;
  margin: 0 auto
}

@media (max-width: 1200px) {
  .container {
    width: 100%;
    padding: 0px 24px
  }
}

header {
  background: url(../images/bg.jpg);
  padding-block: 4rem;
}

header .container {
  background-color: #fff;
  padding: 10px 40px 10px 40px;
  box-shadow: hsla(0, 1%, 9%, 0.54) 0 0 16px;
  border-radius: 4px;
  display: flex;

  justify-content: space-between;
  align-items: center;
}

header .container nav>ul {
  list-style: none;
  display: flex;

}

header .container nav>ul li {
  margin: 0 2rem;
}

header .container nav>ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  color: #BDBDBD;
  text-transform: uppercase;
}

header .container nav>ul li a:hover {
  color: #8F1F1F;
}

header .container nav>ul li.current a {
  color: #8F1F1F;
  font-weight: 900;
}

.time {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  font-size: 1.2rem;
}

.time span:last-child {
  text-transform: uppercase;

}

.time span:last-child strong {
  color: #8F1F1F;
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
}

header #page-title {
  text-align: center;
  margin: 2rem 0;
}

header #page-title h1 {
  color: #fff;
  font-weight: 400;
  font-size: 4rem;
  text-transform: uppercase;
}

header #page-title h1 span {
  font-weight: 900;
  display: block;
}

/* Conteudo */
main {
  padding: 5rem 0;
}

p {
  margin-bottom: 1.5rem;
  line-height: 140%;
}
main h3{
  margin: 1rem 0;
}

.swal2-popup{
  font-size: 1.5rem !important;
}
main strong{
  font-weight: 900;
}
main .title{
  margin-bottom: 20px;
}
main .title h2{
  color:#8F1F1F;
  text-transform: uppercase;
  font-size: 3.7rem;

  font-weight: 900;
display: flex;
align-items: center;
justify-content: center;
}
.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 1rem;
  padding: 0.5rem 2rem;
  text-transform: uppercase;
  font-weight: 900;
}

.btn-open-report {
  background-color: #8F1F1F;
  color: #fff;
}

.btn-open-report:hover {
  opacity: 0.9;
}

.btn-follow-report {
  background: #ACB0AA;
  color: #fff;
}

.btn-follow-report:hover {
  opacity: 0.9;
}

main.action-buttons {
  margin: 1rem 0;
}

/* Rodape */
footer .footer-widgets-wrap {
  background: url(../images/bg_rodape.jpg) center center no-repeat;
  padding: 0;
}

footer .container {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.address {
  color: #fff;
  display: flex;
  align-items: center;
}

footer .time,
footer .time span:last-child strong {
  color: #fff;
}

footer .time path {
  fill: #fff;
}

#copyrights {
  font-size: 1.3rem;
}


/* header .menu-button {
  display: none;
} */

.menu-button {
  position: relative;
  opacity: 1;
  width: 32px;
  padding: 8px 0;
  cursor: pointer;
  -webkit-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  -o-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1)
}
.menu-button {
  display: none;
}
@media (max-width: 960px) {
  .menu-button {
    display: block !important;

    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 2000;
  }
  #logo > a img{
    height: 60px;
  }
}

/* Menu Mobile */
a.menu-button:hover .menu-icon, a.menu-button:hover .menu-icon::after {
  width: 32px;
  -webkit-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  -o-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1)
}

.menu-icon {
  width: 32px;
  height: 3px;
  background-color:#8F1F1F;
  display: block;
  position: relative;
  -webkit-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  -o-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  border-radius: 7px
}

.menu-icon::before, .menu-icon::after {
  content: "";
  display: block;
  height: 3px;
  border-radius: 7px;
  background-color: #8F1F1F;
  position: absolute;
  right: 0;
  -webkit-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  -o-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1)
}

.menu-icon::before {
  margin-top: -10px;
  width: 32px;
  -webkit-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  -o-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1)
}

.menu-icon::after {
  margin-top: 10px;
  width: 32px;
  -webkit-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  -o-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1)
}

.menu-opened .menu-button .menu-icon {
  height: 0;
  width: 32px;
  -webkit-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  -o-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1)
}

.menu-opened .menu-button .menu-icon::after {
  width: 32px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: 0;
  -webkit-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  -o-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1)
}

.menu-opened .menu-button .menu-icon::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: 0;
  -webkit-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  -o-transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1);
  transition: 0.2s all cubic-bezier(0.4, -0.1, 0, 1.1)
}


@media(max-width:960px) {
  footer .footer-widgets-wrap {
    background: #9A2732 url(../images/bg_rodape_m.jpg) no-repeat top center;
    background-size: cover;
  }

  footer #logo-footer {
    /* height: 80px; */
    margin-bottom:20px;
  }

  footer #logo-footer img{
    height: 100px;
    width: 100%;
    object-fit: contain;
  }
  header .container {
    flex-direction: column;
    border-radius: 0;
    align-items: flex-start;
  }

  header .time {
    width: 100%;
    border-top: 1px solid #ebebeb;
    margin-top: 2px;
  }

  footer .container {
    flex-direction: column;
    height: 100% !important;
  }

  footer .time {
    width: 100%;
    margin: 10px 0;
  }

  header #page-title h1 {
    font-size: 2rem;
    margin-top: 50px;
  }

  header {
    padding-block-start: 0;
    background-size: cover;
  }

  main {
    padding: 5rem 0;
  }

 

  header .container nav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 145px;
  }

  .menu-opened header .container nav>ul{
    opacity: 1;
  }
  header .container nav>ul {
    background: #f3f3f3;
    opacity: 0;
    flex-direction: column;
    box-shadow: #0a0a0a17 0px 7px 10px;
    border-radius: 0;
    margin: 0;
    width: 100%;
    padding: 0;
  }

  header .container nav>ul>li {
    padding: 2rem;
    margin: 0;
    border-bottom: 1px solid #fff;
  }
  header .container nav>ul>li:last-child{
    border-bottom: 0;
  }
}
.modalReportConfirm{
  /* padding: 20px; */
  text-align: justify;
}
.swal2-html-container{
  margin: 0 !important;
}
.swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation{
  background: rgba(0, 0, 0, 0.05);
backdrop-filter: blur(5px);
}
.swal2-actions{
flex-wrap: inherit !important;
/* padding: 0 2rem !important; */
}
.swal2-confirm {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #8F1F1F!important;
    color: #fff;
    font-size: 1.5rem !important;
    width: 50%;
    padding: 2rem !important;
    font-weight: 900 !important;
    outline: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
}
.swal2-cancel{
  width: 50%;
  outline: 0 !important;
  font-weight: 900 !important;
  padding: 2rem !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 1.5rem !important;
  color: #000 !important;
  background: rgba(189, 189, 189, 0.35)!important;;
}
.swal2-actions{
  width: 100% !important;
}
.swal2-container{
  font-family: 'Montserrat', sans-serif !important;

}
::-webkit-input-placeholder { /* Edge */
  color: #000000;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000000;
}

::placeholder {
  color: #000000;
}

.box-form{
  margin-inline:auto;
  max-width: 55%;
}
.box-form > span{
  margin-bottom: 20px;
  display: inline-block;
}
.box-form strong{
  display: inline-block;
  margin-bottom: 10px;
}
label{
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600;
}
label small{
  font-weight: 400;
}
.group-form{
  margin: 1rem 0;
}
select,
textarea,
input[type="text"],
input[type="email"]{
  background: #FAF9F9;
border: 1px solid #F2F2F2;
border-radius: 10px;
width: 100%;
padding: 1.5rem 2rem;
margin: 0.5rem 0;
font-size: 1.6rem;
}
input:focus,
input:hover{
  border-color: #A33032;
}
input[type="file"] {
  background: none;
  border: 0;
}
form button{
  background: #8F1F1F;
border: 0;
color: #fff;
padding: 1rem 2.5rem;
border-radius: 10px;
font-size: 2rem;
font-weight: 900;
cursor: pointer;
font-family: 'Montserrat', sans-serif;
}
form button:focus,
form button:hover{
  background: #A33032;
}
.alert {
  position: relative;
    padding: 0.75rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 1rem;
  color: #000;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert p{
  margin-bottom: 0;
}
.alert-success {
  position: relative;
    padding: 2rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 1rem;
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-success p{
  margin-bottom: 0;
}
.mt-30{
  margin-bottom: 30px;
}
.row-group{
  display: flex;
  justify-content: space-between;
}
hr{
  border-top: 1px solid #D9D9D9;
}
.btn-to-accompany {
  background-color: #8F1F1F;
  color: #fff;
  padding: 1.4rem 2rem;
}
.swal2-title{
  padding: 0 !important;
  color: #000 !important;
text-align: left !important;
  text-transform: uppercase !important;
}
.swal2-input{
  background: #FAF9F9 !important;
border: 1px solid #F2F2F2 !important;
border-radius: 5px !important;
}
.box-follow-report span.status  strong{
  border-radius: 50px;
  padding:0.6rem 2rem;
}
.box-follow-report span{
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: start;
  margin-bottom: 1rem;
}
.box-follow-report span > strong{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.box-follow-report .report > div{
  margin: 1rem 0;
  background: #F8F8F9;
border: 1px solid #ECEFFB;
border-radius: 10px;
padding: 2rem;
}
.box-follow-report .report-return > div{
  margin: 1rem 0;
  background: #FFFBE8;
border: 1px solid rgba(169, 142, 55, 0.4);
border-radius: 10px;
padding: 2rem;
}
.to-respond{
  width: 100%;
  text-align: right;

}
.to-respond a{
  color: #8F1F1F;
  display: inline-flex;
  align-items: center;
  justify-content: end;
  width: fit-content;
}
.to-respond a:hover{
  opacity: 0.7;
}
@media(max-width:960px) {
  main .title h2 {
    font-size: 2.7rem;
    flex-direction: column;
  }
  .box-form {
    margin-inline: auto;
    max-width:100%;
}
.row-group{
  display: flex;
  flex-direction: column;
}
.swal2-actions{
  flex-direction: column !important;
}
.swal2-confirm,
.swal2-cancel{
  width: 100%;
}
.box-follow-report span{
  flex-direction: column;
}
}
.date_answer {
  font-size: 13px !important;
  font-style: italic;
}