@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1;
  background-color: var(--bg-body);
  color: var(--color-body);
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}

.reset-content {
  padding-inline: 30px;
  width: 100%;
}

.col-wide {
  grid-column: 1/-1;
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 30%;
  font-size: 4rem !important;
  cursor: pointer !important;
}

.owl-prev {
  left: -50px;
}

.owl-next {
  right: -50px;
}

noscript {
  display: none;
}

.image__email {
  width: 20px;
  height: 20px;
  background-image: url("/src/images/public/email.svg");
  background-size: cover;
  background-position: center;
  transition: background-image 0.3s ease;
  filter: var(--color-image-email);
}

.copy__email:has(.image__email):hover .image__email {
  background-image: url("/src/images/public/email-open.svg");
}

.modal {
  position: absolute;
  top: -100%;
  left: 2vw;
  width: 300px;
  font-weight: 500;
  border-radius: 20px;
  background-color: rgba(91, 175, 91, 0.722);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  letter-spacing: 1.5px;
  transition: all 0.5 ease-in-out;
}
.modal.active {
  top: 7vh;
}

.hidden-md {
  display: block;
}

.visible-md {
  display: none;
}

@media (max-width: 1550px) {
  .hidden-md {
    display: none !important;
  }
  .visible-md {
    display: block !important;
  }
}
@media (max-width: 760px) {
  .hidden-sm {
    display: none !important;
  }
}
::-webkit-scrollbar {
  width: 6px;
}
@media (max-width: 760px) {
  ::-webkit-scrollbar {
    height: 6px;
  }
}

::-webkit-scrollbar-thumb {
  background-color: #385073;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

header {
  width: 100%;
}

.topheader {
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gradient-blue);
}
.topheader__email {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  letter-spacing: 0.8px;
  font-weight: 700;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
.topheader__email:hover {
  text-decoration: underline;
}
@media (max-width: 500px) {
  .topheader__email {
    font-size: 0.7rem;
  }
}
.topheader__theme {
  display: flex;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-weight: 600;
}
.topheader__theme span {
  display: none;
}
.topheader__theme label {
  width: 100px;
  height: 40px;
  position: relative;
  display: block;
  background: #ebebeb;
  border-radius: 80px;
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.4), inset 0 -5px 15px hsla(0, 0%, 100%, 0.4);
  cursor: pointer;
}
.topheader__theme label::after {
  content: "";
  width: 30px;
  height: 32px;
  position: absolute;
  top: 5px;
  left: 5px;
  background: linear-gradient(180deg, #ffcc89, #d8860b);
  border-radius: 40%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.topheader__theme label:active::after {
  width: 40px;
}
.topheader__theme label svg {
  position: absolute;
  z-index: 100;
}
.topheader__theme__sun, .topheader__theme__moon {
  width: 30px;
  top: 5px;
  transition: 0.3s;
}
.topheader__theme__sun {
  left: 5px;
  fill: #fff;
}
.topheader__theme__moon {
  right: 5px;
  fill: #7e7e7e;
}
.topheader__theme input {
  width: 0;
  height: 0;
  visibility: hidden;
}
.topheader__theme input:checked + label {
  background: #242424;
  fill: #fff;
}
.topheader__theme input:checked + label:after {
  left: 95px;
  transform: translateX(-100%);
  background: linear-gradient(180deg, #777, #3a3a3a);
}
.topheader__theme input:checked + label svg.sun {
  fill: #7e7e7e;
}
.topheader__theme input:checked + label svg.moon {
  fill: #fff;
}

.mainheader {
  height: 15vh;
  background-color: var(--bg-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 760px) {
  .mainheader {
    justify-content: center;
  }
}
.mainheader__logo img {
  max-height: 13vh;
}
.mainheader__nav ul {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 20px;
}
.mainheader__nav ul li {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.mainheader__nav ul li a {
  padding: 10px 20px;
  font-size: 1rem;
  border: 1px solid var(--border-color-category);
  border-radius: 10px;
  background: var(--bg-category);
  color: var(--color-category);
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.3s ease-in-out;
}
.mainheader__nav ul li a:hover {
  background: var(--bg-category-hover);
  color: var(--color-category-hover);
}

.mainBanners {
  background: var(--bg-main-banner);
  margin-bottom: 50px;
}
.mainBanners,
.mainBanners img {
  width: 100%;
  height: 70vh;
}
.mainBanners img {
  -o-object-fit: cover;
     object-fit: cover;
}

.mainStructure {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 3fr, 300px;
  grid-template-areas: "sidenav content pdfs" "sidenav notices pdfs" "sidenav contact pdfs" "footer footer footer";
}
@media (max-width: 1200px) {
  .mainStructure {
    grid-template-areas: "header header header" "sidenav content content" "sidenav pdfs pdfs" "sidenav notices notices" "sidenav contact contact" "footer footer footer";
  }
}
@media (max-width: 760px) {
  .mainStructure {
    grid-template-columns: 100%;
    grid-template-areas: "header" "sidenav" "content" "notices" "pdfs" "contact" "footer";
  }
}

.sidenav {
  grid-area: sidenav;
  position: relative;
  background: var(--bg-sidenav);
  padding: 30px;
}
.sidenav__title {
  background-color: var(--bg-sidenav);
  padding-block: 5px;
  text-align: center;
  border-bottom: 1px solid var(--border-title-sidenav);
  position: sticky;
  top: 0;
  z-index: 200;
}
.sidenav ul {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  padding-block: 20px;
}
@media (min-width: 761px) {
  .sidenav ul {
    height: -moz-fit-content;
    height: fit-content;
    max-height: 95vh;
    overflow: hidden;
    overflow-y: scroll;
    position: sticky;
    top: 30px;
  }
}
.sidenav ul > li a {
  background: var(--bg-orientations);
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  color: var(--color-orientations);
  box-shadow: 5px 5px 15px 0px rgba(44, 44, 44, 0.15);
  transition: 0.1s ease-in-out;
}
.sidenav ul > li a.active {
  font-weight: bold;
  color: var(--color-orientations-active);
  border-color: var(--border-orientations-active);
}
.sidenav ul > li a:hover {
  border: 1px solid var(--border-orientations-hover);
}
@media (max-width: 1600px) {
  .sidenav ul > li a {
    width: 250px;
  }
}

@keyframes seta {
  from {
    right: 30px;
  }
  to {
    right: 20px;
  }
}
@media (max-width: 760px) {
  .sidenav {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .sidenav::after {
    content: "→";
    position: absolute;
    top: 5px;
    right: 30px;
    width: 30px;
    height: 30px;
    color: var(--color-arrow-orientations-mobile);
    animation: seta 0.5s ease-in 0s infinite alternate;
    z-index: 200;
  }
  .sidenav ul {
    display: flex;
    flex-direction: row;
    max-height: 100px;
    overflow-y: hidden;
  }
  .sidenav li {
    flex: 1 0 60px;
  }
  .sidenav {
    padding: 0 30px;
  }
  .sidenav li a {
    margin: 30px 30px 30px 0;
  }
}
.content {
  grid-area: content;
  max-width: 900px;
  margin: 0 auto;
  margin-block: 70px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  /*TITULO*/
}
@media (max-width: 600px) {
  .content {
    grid-template-columns: minmax(0, 100vw);
    padding: 15px;
  }
}
.content .titulo {
  color: var(--color-title-primary);
}
.content .titulo h1 {
  font-size: 3.75em;
  line-height: 1;
  font-weight: 700;
}
.content .titulo span {
  font-size: 1em;
  font-style: italic;
}
.content .imagem-1 {
  grid-row: span 2;
  align-self: end;
  width: 100%;
  max-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.content .item-2 {
  align-self: end;
}
.content p {
  font-size: 1.2em;
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: var(--color-p-primary);
  padding-right: 5px;
}
.content .orientation__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr minmax(0, 580px) minmax(0, 400px);
  gap: 30px;
}
@media (max-width: 1550px) {
  .content .orientation__item {
    display: flex;
    flex-direction: column;
  }
}
.content .orientation__details,
.content .orientation__info {
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}
.content .orientation__info p + p {
  margin-top: 20px;
  padding-bottom: 20px;
}
.content .citacao,
.content .orientation__attributes {
  align-self: start;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 5px 5px 15px 0px rgba(44, 44, 44, 0.15);
  background: var(--gradient-blue);
}
.content .citacao p {
  font-size: 1.5em;
  font-style: italic;
  text-align: center;
  color: var(--color-citacao);
  max-width: 500px;
  margin: 0 auto;
}
.content .orientation__title {
  text-align: center;
  font-size: 2em;
  border-bottom: 1px solid var(--color-title-orientation);
  padding-bottom: 5px;
}
@media (max-width: 760px) {
  .content .orientation__title {
    position: relative;
  }
  .content .orientation__title::after {
    content: "→";
    position: absolute;
    top: -5px;
    right: 30px;
    width: 30px;
    height: 30px;
    color: var(--color-arrow-orientations-mobile);
    animation: seta 0.5s ease-in 0s infinite alternate;
    z-index: 200;
  }
}
.content .orientation__attributes li {
  color: var(--color-attributes-orientation);
  font-family: Courier, monospace;
  font-size: 1.125em;
  padding: 15px;
}
.content .orientation__attributes li + li {
  border-top: 2px solid var(--border-attributes-orientation);
}
.content .orientation__seeMore {
  background: var(--bg-seeMore-orientation);
  color: var(--color-seeMore-orientation);
  width: 100%;
  margin-top: 20px;
  padding-block: 20px;
  text-align: center;
  font-size: 1.5em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 30px;
  transition: all 0.3 ease-in-out;
}
.content .orientation__seeMore:hover {
  background-color: var(--bg-seeMore-orientation-hover);
}
.content .orientation__image {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  border-radius: 10px;
}

.notices {
  grid-area: notices;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
}
@media (max-width: 1200px) {
  .notices {
    grid-template-columns: 1fr;
  }
}
.notices__image-header {
  max-height: 700px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.notices__title {
  font-family: "Fredericka the Great", serif;
  color: var(--color-title-pdfs);
  text-align: center;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-top: 2px solid #a3a3a3;
  border-bottom: 6px double #bfbfbf;
  padding-block: 10px;
}
.notices__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.notices__info-text {
  font-size: 1.2em;
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: var(--color-p-primary);
  padding-right: 5px;
}
.notices__info-newspaper {
  width: 100%;
  height: 50px;
  background-color: #808080;
  color: #fff;
  border: 1px solid #333333;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-size: 1.5em;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.5px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.notices__info-newspaper--mobile {
  display: none;
}
@media (max-width: 1200px) {
  .notices__info-newspaper {
    display: none;
  }
  .notices__info-newspaper--mobile {
    display: flex;
  }
}
.notices__info-newspaper .fa {
  font-size: 1.3em;
  transition: 0.3s ease-in-out;
}
.notices__info-newspaper:hover {
  background-color: #192f4b;
}
.notices__info-newspaper:hover .fa {
  transform: scale(1.5);
}
.notices__image-footer {
  max-height: 280px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
  cursor: zoom-in;
}
@media (min-width: 1200px) {
  .notices__image-footer:active {
    transform: scale(1.5);
  }
}

.pdfs {
  grid-area: pdfs;
  background: var(--bg-pdfs);
}
.pdfs__container {
  background: var(--bg-pdfs);
  display: grid;
  align-content: start;
  padding: 30px;
  grid-gap: 30px;
}
.pdfs__title {
  position: sticky;
  top: 0;
  text-align: center;
  padding-block: 5px;
  border-bottom: 1px solid var(--color-title-pdfs);
  background: var(--bg-pdfs);
  z-index: 200;
}
@media (max-width: 760px) {
  .pdfs__title {
    left: 0;
  }
}
.pdfs__item a {
  position: relative;
  display: inline-block;
}
.pdfs__item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.pdfs__item a:hover::before {
  content: "Clique para ver o conteúdo completo.";
  opacity: 1;
  filter: brightness(80%);
}
.pdfs__item img {
  width: 100%;
  max-width: 400px;
}
@media (min-width: 761px) {
  .pdfs {
    position: relative;
  }
  .pdfs .pdfs__container {
    position: sticky;
    top: 0px;
  }
}

.contact {
  grid-area: contact;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 70px;
}
.contact h2 {
  font-size: 2em;
  width: 100%;
  border-bottom: 1px solid var(--color-title-contact);
  padding-bottom: 5px;
  text-align: center;
  margin-bottom: 30px;
}
.contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--bg-email-contact);
  color: var(--color-email-contact);
  width: 80%;
  padding: 30px 50px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1.5em;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.contact a:hover {
  background-color: var(--bg-email-contact-hover);
}
.contact a .image__email {
  filter: invert(1);
}
@media (max-width: 500px) {
  .contact a {
    font-size: 1rem;
    padding-inline: 10px;
  }
}

.footer {
  grid-area: footer;
  background: var(--gradient-blue);
}

.footer p {
  color: var(--color-footer);
  text-align: center;
  padding: 30px;
}/*# sourceMappingURL=index.css.map */