:root {
  --primary-color: #284d91;
  --secundary-color: #fe8140;
  --action-color-success: #116611;
  --action-color-error: #ff0000;

  --background-color: #f0f2f5;
  --background-box:#ffffff;

  --text-color: black;
  --text-title-color: #284e91;
  --text-color-white: #fff;
  --text-color-correcao: #cc0000;

  --icon-disable: #979292;
  --icon-active: #284d91;

  --icon-button: #979797;

  --icon-success: #116611;
  --icon-success-background: #d1f5d6;

  --icon-active-background: #dfe4ef;
  --icon-disable-hover: #52545a;

  --border-color: #b8cfe4;
  --border-color-primary: #b4c6eb;
  --border-color-input: #979797;
  --border-color-table: #000000;

  --grafic-primary-color: #284e91;
  --grafic-second-color: #da3d2c;
  --grafic-third-color: #f48736;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  /* overflow: hidden; */
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
html,
body {
  background-color: var(--background-color);
  font-family: 'Montserrat', sans-serif;
  font-style: var(--text-color);
}

footer{
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  width: 100%;
  height: 70px;
  margin-top: 1rem;
  padding: 15px 0;
  overflow: hidden;
}

img, a, li, div, ul{
  -webkit-user-drag: none;
}

.nav--footer{
  grid-area: nav--footer;
  text-align: center;
}
.nav--footer a{
  display: inline-block;
  margin: 10px 10px;
}

#all-infor-geral {
  border: 0.5px solid var(--border-color-primary);
  justify-content: center;
  align-items: center;
  padding: 2%;
  border-radius: 10px;
  margin-top: 1rem;
}

.icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  margin: 0 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-list {
  border: 0.5px solid var(--border-color-primary);
  margin-top: 2rem;
  display: flex;
  justify-content: right;
  align-items: center;
  /* padding: 1rem 0; */
  border-radius: 10px;
  width: 100%;
}

a {
  color: var( --primary-color);
  text-decoration: none;
}

a:hover{
  opacity: 0.7;
}

nav{
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #ffffff;
  height: 18vh; /* 100vh sera todo o display. */
  padding: 1%;
}

main{
  background: --background-color;
  padding: 1%;
  min-height: 80vh;
  overflow: hidden;
}

.logo-header img{
  margin: 0;
  height: 90px;
}

.nav-list {
  display: flex;
  list-style: none;
  border: none;
  margin: 0;
  width: 65%;
}

.nav-list li {
  letter-spacing: 3px;
  margin-left: 24px;
}

.mobile-menu{
  display: none;
  cursor: pointer;
}

.mobile-menu div{
  width: 32px;
  height: 2px;
  background: var(--primary-color);
  margin: 8px;
  transition: 0.3s;
}

.bt-buscar{
  background-color: #284c90;
  color: #FFFFFF;
  font-weight:bold;
  padding: 0 2px 0 2px;
  height: 32px;
  width: 64px;
}

@media (max-width:780px){
  /* body{
    overflow-x: hidden;
  } */
  .nav-list{
      position: absolute;
      top: 18vh;
      right: 0vh;
      width: 60vh;
      height: 85vh;
      background: #ffffff !important;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      transform: translateX(100%);
      transition: transform 0.3s ease-in;
      margin: 0;
      padding: 0;
      z-index:3; /* Camada para sobrepor os outros elementos */
  }
  .nav-list li{
  }
  .mobile-menu{
      display: block;
  }
  .nav-element {
    align-items: center;
    padding: 0;
    margin: 0;
    margin-bottom: 0;
  }
  footer{
    height:120px;
  }
}

.nav-list.active{
  transform: translateX(0%);
}

@keyframes navLinkFade{
  form {
      opacity: 0;
      transform: translateX(50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

.mobile-menu.active .line1{
  transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2{
  opacity: 0;    
}

.mobile-menu.active .line3{
  transform: rotate(45deg) translate(-5px, -7px);
}

/* 
.infor-user{
  position: absolute;
  right: 20px;
}

p{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: bold;
}

.infor-user.active {
  visibility: hidden;
} */

.icon16{
  width: 16px;
  height: 16px;
}

.icon24{
  width: 24px;
  height: 24px;
}

.icon32{
  width: 32px;
  height: 32px;
}

.pag-atual-nav{
  /* display: none; */
}

.pag-atual-nav {
  width: 100%;
  height: 5px;
  background: var(--primary-color);
  transition: 0.3s;
  margin-top: 10px;
}
.nav-logo {
  width: auto;
}

.nav-element {
  width: auto;
  padding: auto;
}

.nav-element a{
  font-size: 20px;
}

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

.alert-danger{
  overflow: hidden;
}

.erro{
  border-color: red;
}

body:not(.modal){
  padding-right: 0px !important;
}
.modal{
  background-color: rgba(0, 0, 0, 0.7);
}
.modal-content{
  background-color: var(--background-box);
}

.modal-title{
  width: 100%;
  text-align: center;
}
.modal-text{
  font-size: 16px;
  font-weight: 600;
  text-align: justify;
}
.btn-close {
  border: solid 0.5px rgba(0, 0, 0, 0.3);
}