@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Lato", sans-serif;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 4rem 0 0 0;
}

/* MIXINS RESPONSIVO */
header nav {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 992px) {
  header nav {
    width: 90vw;
  }
}
header nav #logo img {
  width: 400px;
}
@media only screen and (max-width: 1440px) {
  header nav #logo img {
    width: 320px;
  }
}
@media only screen and (max-width: 1280px) {
  header nav #logo img {
    width: 280px;
  }
}
header nav #hamburger-btn {
  display: none;
}
@media (max-width: 992px) {
  header nav #hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
  }
  header nav #hamburger-btn span {
    height: 3px;
    background: #212529;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  header nav #hamburger-btn.open span {
    background: #fff;
  }
  header nav #hamburger-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 9px);
  }
  header nav #hamburger-btn.open span:nth-child(2) {
    opacity: 0;
  }
  header nav #hamburger-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
header nav #navbar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: "Bebas Neue", sans-serif;
  color: #212529;
}
@media (max-width: 992px) {
  header nav #navbar {
    display: none;
  }
}
header nav #navbar .dropdown {
  position: relative;
  display: inline-block;
}
header nav #navbar .dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header nav #navbar .dropdown-trigger .dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s ease;
}
header nav #navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: all 0.3s ease;
  background: #b6d44b;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: -moz-max-content;
  width: max-content;
}
header nav #navbar .dropdown-menu a {
  color: #fff;
  transition: all 0.2s ease;
}
header nav #navbar .dropdown-menu a:hover {
  color: #7c9524;
}
header nav #navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
header nav #navbar .dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
header nav #navbar .dropdown:hover .dropdown-trigger {
  color: #b6d44b;
}
header nav #navbar span, header nav #navbar a {
  cursor: pointer;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  white-space: nowrap;
  transition: all 0.2s ease;
}
header nav #navbar span:hover, header nav #navbar a:hover {
  color: #b6d44b;
}
@media only screen and (max-width: 1440px) {
  header nav #navbar span, header nav #navbar a {
    font-size: 1rem;
  }
}
header nav #mobile-menu {
  display: none;
}
@media (max-width: 992px) {
  header nav #mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    background: rgba(33, 37, 41, 0.95);
    padding: 6rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  header nav #mobile-menu.open {
    transform: translateX(0);
  }
  header nav #mobile-menu .mobile-item {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
  }
  header nav #mobile-menu .has-submenu {
    display: flex;
    flex-direction: column;
  }
  header nav #mobile-menu .has-submenu .submenu-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 0.5rem;
  }
  header nav #mobile-menu .has-submenu .submenu {
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: max-height 0.3s ease;
  }
  header nav #mobile-menu .has-submenu .submenu a {
    color: #fff;
    font-size: 1.4rem;
    margin: 0 0 0 0.5rem;
  }
  header nav #mobile-menu .has-submenu .submenu.open {
    max-height: 300px;
  }
  header nav #mobile-menu .mobile-item, header nav #mobile-menu .submenu-toggle {
    color: #b6d44b !important;
    font-family: "Bebas Neue", sans-serif;
    color: #212529;
    font-size: 2.5rem;
    font-size: 1.8rem !important;
  }
  header nav #mobile-menu #lang,
  header nav #mobile-menu #social {
    display: flex !important;
    margin-top: 2rem;
    gap: 1rem;
    align-items: center;
  }
  header nav #mobile-menu #lang a img {
    width: 24px;
  }
  header nav #mobile-menu #social svg {
    fill: #fff;
    transition: all 0.2s ease;
  }
  header nav #mobile-menu #social svg:hover {
    fill: #b6d44b;
  }
}
header nav #social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header nav #social svg {
  transition: all 0.2s ease;
}
header nav #social svg:hover {
  fill: #b6d44b;
}
@media only screen and (max-width: 1280px) {
  header nav #social svg {
    width: 19px;
  }
}
@media (max-width: 992px) {
  header nav #social {
    display: none;
  }
}

body.no-scroll {
  overflow: hidden;
}

#lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#lang #pt-br {
  position: relative;
  transition: all ease 0.3s;
}
#lang #pt-br::after {
  content: "Português";
  display: block;
  width: -moz-max-content;
  width: max-content;
  background: rgba(47, 88, 168, 0.2);
  color: #2f58a8;
  position: absolute;
  bottom: -30px;
  left: -27px;
  padding: 0.4rem;
  border-radius: 0.3rem;
  font-size: 0.9rem;
  opacity: 0;
  transition: all ease 0.3s;
}
#lang #pt-br:hover::after {
  opacity: 1;
}
#lang #pt-br img {
  box-shadow: 0px 0px 0px 2px #2f58a8;
}
#lang #en {
  position: relative;
  transition: all ease 0.3s;
}
#lang #en::after {
  content: "English";
  display: block;
  width: -moz-max-content;
  width: max-content;
  background: rgba(47, 88, 168, 0.2);
  color: #2f58a8;
  position: absolute;
  bottom: -30px;
  left: -17px;
  padding: 0.4rem;
  border-radius: 0.3rem;
  font-size: 0.9rem;
  opacity: 0;
  transition: all ease 0.3s;
}
#lang #en:hover::after {
  opacity: 1;
}
#lang #en img {
  box-shadow: 0px 0px 0px 2px #ddd;
}
#lang a img {
  width: 24px;
  border-radius: 100%;
}
@media only screen and (max-width: 1440px) {
  #lang a img {
    width: 22px;
  }
}
@media only screen and (max-width: 1280px) {
  #lang a img {
    width: 20px;
  }
}
@media (max-width: 992px) {
  #lang {
    display: none;
  }
}

#english-navbar #lang #pt-br::after {
  content: "Portuguese";
}
#english-navbar #lang #pt-br img {
  box-shadow: 0px 0px 0px 2px #ddd;
}
#english-navbar #lang #en img {
  box-shadow: 0px 0px 0px 2px #2f58a8;
}

.carousel {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .carousel {
    height: 50vh;
  }
}
@media only screen and (max-width: 768px) {
  .carousel {
    height: 40vh;
  }
}
@media only screen and (max-width: 576px) {
  .carousel {
    height: 50vh;
  }
}
.carousel .carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
.carousel .carousel-item.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel .carousel-item a {
  width: 100%;
  height: 100%;
}
.carousel .carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 576px) {
  .carousel .carousel-item img {
    width: 200%;
  }
}
@media only screen and (max-width: 375px) {
  .carousel .carousel-item img {
    width: 240%;
  }
}
.carousel .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}
.carousel .arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}
.carousel .arrow.left {
  left: 10px;
}
.carousel .arrow.right {
  right: 10px;
}

.itemscarousel-container {
  position: relative;
  width: 100%;
}
.itemscarousel-container .itemscarousel-arrow {
  position: absolute;
  top: -10%;
  transform: translateY(-50%);
  color: #2f58a8;
  font-size: 32px;
  padding: 10px;
  border: none;
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
  background: transparent;
}
.itemscarousel-container .itemscarousel-arrow.itemscarousel-arrow-left {
  right: 4%;
}
.itemscarousel-container .itemscarousel-arrow.itemscarousel-arrow-right {
  right: 0;
}
.itemscarousel-container .itemscarousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.itemscarousel-container .itemscarousel-wrapper {
  overflow: hidden;
  width: 100%;
}
.itemscarousel-container .itemscarousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.itemscarousel-container .item {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  box-sizing: border-box;
  padding: 0 10px;
}
.itemscarousel-container .item .itemscarousel-card-content {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  text-align: left;
}
.itemscarousel-container .item .itemscarousel-card-content img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.itemscarousel-container .item .itemscarousel-card-content .itemscarousel-label {
  background-color: rgba(47, 88, 168, 0.6);
  color: #fff;
  padding: 0.5rem;
  font-size: 0.8rem;
  margin: 0.8rem;
  border-radius: 0.3rem;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 800;
}
.itemscarousel-container .item .itemscarousel-card-content h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0 0;
  padding: 0 1rem 1rem;
}
@media only screen and (max-width: 576px) {
  .itemscarousel-container .item .itemscarousel-card-content h3 {
    text-align: center;
    padding: 0 0 1rem;
  }
}
.itemscarousel-container .item .itemscarousel-card-content .itemscarousel-meta {
  font-size: 0.75rem;
  color: rgba(33, 37, 41, 0.5);
  padding: 0 1rem 1rem;
  margin: 0.5rem 0 0 0;
}
@media only screen and (max-width: 576px) {
  .itemscarousel-container .item .itemscarousel-card-content .itemscarousel-meta {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .itemscarousel-container .item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .itemscarousel-container .item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

footer {
  padding: 8rem 0;
}
footer .back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #2f58a8;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(33, 37, 41, 0.2);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
footer .back-to-top:hover {
  background-color: #244380;
}
footer .back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
footer .container {
  width: 45vw;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
@media only screen and (max-width: 1900px) {
  footer .container {
    width: 60vw;
  }
}
@media only screen and (max-width: 1640px) {
  footer .container {
    width: 65vw;
  }
}
@media only screen and (max-width: 1440px) {
  footer .container {
    width: 75vw;
  }
}
@media only screen and (max-width: 1280px) {
  footer .container {
    width: 85vw;
  }
}
@media only screen and (max-width: 768px) {
  footer .container {
    width: 95vw;
  }
}
@media only screen and (max-width: 768px) {
  footer .container {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2rem;
  }
}
footer .container #logo img {
  width: 400px;
}
@media only screen and (max-width: 992px) {
  footer .container #logo img {
    width: 280px;
  }
}
@media only screen and (max-width: 768px) {
  footer .container #logo img {
    width: 320px;
  }
}
footer .container #parceiros img {
  width: 450px;
}
@media only screen and (max-width: 992px) {
  footer .container #parceiros img {
    width: 280px;
  }
}
@media only screen and (max-width: 768px) {
  footer .container #parceiros img {
    width: 320px;
  }
}
footer .container #social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
footer .container #social svg {
  transition: all 0.2s ease;
}
footer .container #social svg:hover {
  fill: #b6d44b;
}
footer #copy {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0 0 0;
}
footer #copy p {
  font-size: 0.9rem;
}

.intro-text {
  padding: 4rem 0 0 0;
}
.intro-text .container {
  width: 45vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1900px) {
  .intro-text .container {
    width: 60vw;
  }
}
@media only screen and (max-width: 1640px) {
  .intro-text .container {
    width: 65vw;
  }
}
@media only screen and (max-width: 1440px) {
  .intro-text .container {
    width: 75vw;
  }
}
@media only screen and (max-width: 1280px) {
  .intro-text .container {
    width: 85vw;
  }
}
@media only screen and (max-width: 768px) {
  .intro-text .container {
    width: 95vw;
  }
}
.intro-text .container p {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .intro-text .container p {
    margin: 0 0 3rem 0;
  }
}

.home-carousels .container {
  width: 45vw;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 44vw;
}
@media only screen and (max-width: 1900px) {
  .home-carousels .container {
    width: 60vw;
  }
}
@media only screen and (max-width: 1640px) {
  .home-carousels .container {
    width: 65vw;
  }
}
@media only screen and (max-width: 1440px) {
  .home-carousels .container {
    width: 75vw;
  }
}
@media only screen and (max-width: 1280px) {
  .home-carousels .container {
    width: 85vw;
  }
}
@media only screen and (max-width: 768px) {
  .home-carousels .container {
    width: 95vw;
  }
}
.home-carousels .container .title {
  font-family: "Bebas Neue", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  margin: 0 0 2rem 0;
}
@media only screen and (max-width: 768px) {
  .home-carousels .container .title {
    margin: 0 0 3rem 0;
  }
}

.page-arede #navbar #sobre {
  color: #b6d44b;
}
.page-arede #navbar #a-rede {
  color: #7c9524;
}
.page-arede .a-rede .banner img {
  width: 100%;
  height: 35vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-arede .a-rede .content .container {
  width: 45vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1900px) {
  .page-arede .a-rede .content .container {
    width: 60vw;
  }
}
@media only screen and (max-width: 1640px) {
  .page-arede .a-rede .content .container {
    width: 65vw;
  }
}
@media only screen and (max-width: 1440px) {
  .page-arede .a-rede .content .container {
    width: 75vw;
  }
}
@media only screen and (max-width: 1280px) {
  .page-arede .a-rede .content .container {
    width: 85vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-arede .a-rede .content .container {
    width: 95vw;
  }
}
.page-arede .a-rede .content .container h2 {
  font-family: "Bebas Neue", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  margin: 0 0 2rem 0;
  color: #2f58a8;
  text-align: center;
}
.page-arede .a-rede .content .container p {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
}
.page-arede .a-rede .content .container a {
  color: #688dd5;
}

.page-equipes #navbar #sobre {
  color: #b6d44b;
}
.page-equipes #navbar #equipes {
  color: #7c9524;
}
.page-equipes .equipes .banner img {
  width: 100%;
  height: 35vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-equipes .equipes .content .container {
  width: 45vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1900px) {
  .page-equipes .equipes .content .container {
    width: 60vw;
  }
}
@media only screen and (max-width: 1640px) {
  .page-equipes .equipes .content .container {
    width: 65vw;
  }
}
@media only screen and (max-width: 1440px) {
  .page-equipes .equipes .content .container {
    width: 75vw;
  }
}
@media only screen and (max-width: 1280px) {
  .page-equipes .equipes .content .container {
    width: 85vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-equipes .equipes .content .container {
    width: 95vw;
  }
}
.page-equipes .equipes .content .container h2 {
  font-family: "Bebas Neue", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  color: #2f58a8;
  text-align: center;
}
.page-equipes .equipes .content .container h3 {
  font-size: 1.5rem;
  color: #2f58a8;
  margin: 2rem 0 0 0;
}
.page-equipes .equipes .content .container h4 {
  font-size: 1.25rem;
  margin: 0 0 0.2rem 0;
}
.page-equipes .equipes .content .container p {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
}
.page-equipes .equipes .content .container a {
  color: #688dd5;
}
.page-equipes .equipes .content .container .accordion {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.page-equipes .equipes .content .container .accordion .accordion-item {
  border-top: 1px solid rgba(33, 37, 41, 0.15);
}
.page-equipes .equipes .content .container .accordion .accordion-item:first-child {
  border-top: none;
}
.page-equipes .equipes .content .container .accordion .accordion-item:first-child .accordion-header {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.page-equipes .equipes .content .container .accordion .accordion-item .accordion-header {
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  color: #2f58a8;
  margin: 1rem 0 0 0;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
  background: transparent;
  padding: 1rem 0.5rem;
}
.page-equipes .equipes .content .container .accordion .accordion-item .accordion-header .arrow {
  transition: transform 0.3s ease;
}
.page-equipes .equipes .content .container .accordion .accordion-item .accordion-header.active .arrow {
  transform: rotate(180deg);
}
.page-equipes .equipes .content .container .accordion .accordion-item .accordion-body {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.page-equipes .equipes .content .container .accordion .accordion-item .accordion-body.open {
  padding: 1rem;
}
.page-equipes .equipes .content .container .accordion .accordion-item .accordion-body img {
  width: 100%;
  margin: 2rem 0;
}
.page-equipes .equipes .content .container .accordion .accordion-item .accordion-body ul {
  margin: 2rem 0 0 1.4rem;
  list-style: disc;
}
.page-equipes .equipes .content .container .accordion .accordion-item .accordion-body ul li {
  margin: 0.5rem 0 0 0;
}

.page-creditos-contato #navbar #sobre {
  color: #b6d44b;
}
.page-creditos-contato #navbar #creditos-contato {
  color: #7c9524;
}
.page-creditos-contato .creditos-contato .banner img {
  width: 100%;
  height: 35vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-creditos-contato .creditos-contato .content .container {
  width: 45vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1900px) {
  .page-creditos-contato .creditos-contato .content .container {
    width: 60vw;
  }
}
@media only screen and (max-width: 1640px) {
  .page-creditos-contato .creditos-contato .content .container {
    width: 65vw;
  }
}
@media only screen and (max-width: 1440px) {
  .page-creditos-contato .creditos-contato .content .container {
    width: 75vw;
  }
}
@media only screen and (max-width: 1280px) {
  .page-creditos-contato .creditos-contato .content .container {
    width: 85vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-creditos-contato .creditos-contato .content .container {
    width: 95vw;
  }
}
.page-creditos-contato .creditos-contato .content .container h2 {
  font-family: "Bebas Neue", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  margin: 0 0 2rem 0;
  color: #2f58a8;
  text-align: center;
}
.page-creditos-contato .creditos-contato .content .container h3 {
  font-size: 1.5rem;
  color: #2f58a8;
  margin: 0 0 1rem 0;
}
.page-creditos-contato .creditos-contato .content .container p {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
}
.page-creditos-contato .creditos-contato .content .container a {
  color: #688dd5;
}

.page-colecao #navbar #publicacoes {
  color: #b6d44b;
}
.page-colecao #navbar #colecao {
  color: #7c9524;
}
.page-colecao .colecao .banner img {
  width: 100%;
  height: 35vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-colecao .colecao .content .container {
  width: 45vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1900px) {
  .page-colecao .colecao .content .container {
    width: 60vw;
  }
}
@media only screen and (max-width: 1640px) {
  .page-colecao .colecao .content .container {
    width: 65vw;
  }
}
@media only screen and (max-width: 1440px) {
  .page-colecao .colecao .content .container {
    width: 75vw;
  }
}
@media only screen and (max-width: 1280px) {
  .page-colecao .colecao .content .container {
    width: 85vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-colecao .colecao .content .container {
    width: 95vw;
  }
}
.page-colecao .colecao .content .container h2 {
  font-family: "Bebas Neue", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  margin: 0 0 2rem 0;
  color: #2f58a8;
  text-align: center;
}
.page-colecao .colecao .content .container p {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
}
.page-colecao .colecao .content .container .items {
  margin: 2rem 0 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 230px));
  gap: 2rem;
  justify-content: center;
}
.page-colecao .colecao .content .container .items .item {
  overflow: hidden;
  box-shadow: 10px 10px 50px 0px rgba(128, 128, 128, 0.3411764706);
  border-radius: 0.6rem;
  min-width: 230px;
}
.page-colecao .colecao .content .container .items .item img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-colecao .colecao .content .container .items .item h4 {
  line-height: 1.4;
  padding: 1rem;
  text-align: center;
  font-size: 1.1rem;
  color: #212529;
}

.page-recursos #navbar #recursos {
  color: #b6d44b;
}
.page-recursos .recursos .banner img {
  width: 100%;
  height: 35vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-recursos .recursos .content .container {
  width: 45vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1900px) {
  .page-recursos .recursos .content .container {
    width: 60vw;
  }
}
@media only screen and (max-width: 1640px) {
  .page-recursos .recursos .content .container {
    width: 65vw;
  }
}
@media only screen and (max-width: 1440px) {
  .page-recursos .recursos .content .container {
    width: 75vw;
  }
}
@media only screen and (max-width: 1280px) {
  .page-recursos .recursos .content .container {
    width: 85vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-recursos .recursos .content .container {
    width: 95vw;
  }
}
.page-recursos .recursos .content .container h2 {
  font-family: "Bebas Neue", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  margin: 0 0 2rem 0;
  color: #2f58a8;
  text-align: center;
}
.page-recursos .recursos .content .container p {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
}
.page-recursos .recursos .content .container .items {
  margin: 2rem 0 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 230px));
  gap: 2rem;
  justify-content: center;
}
.page-recursos .recursos .content .container .items .item {
  overflow: hidden;
  box-shadow: 10px 10px 50px 0px rgba(128, 128, 128, 0.3411764706);
  border-radius: 0.6rem;
  min-width: 230px;
}
.page-recursos .recursos .content .container .items .item img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-recursos .recursos .content .container .items .item h4 {
  line-height: 1.4;
  padding: 1rem;
  text-align: center;
  font-size: 1.1rem;
  color: #212529;
}

.page-anuarios #navbar #publicacoes {
  color: #b6d44b;
}
.page-anuarios #navbar #anuarios {
  color: #7c9524;
}
.page-anuarios .anuarios .banner img {
  width: 100%;
  height: 35vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-anuarios .anuarios .content .container {
  width: 45vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1900px) {
  .page-anuarios .anuarios .content .container {
    width: 60vw;
  }
}
@media only screen and (max-width: 1640px) {
  .page-anuarios .anuarios .content .container {
    width: 65vw;
  }
}
@media only screen and (max-width: 1440px) {
  .page-anuarios .anuarios .content .container {
    width: 75vw;
  }
}
@media only screen and (max-width: 1280px) {
  .page-anuarios .anuarios .content .container {
    width: 85vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-anuarios .anuarios .content .container {
    width: 95vw;
  }
}
.page-anuarios .anuarios .content .container h2 {
  font-family: "Bebas Neue", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  margin: 0 0 2rem 0;
  color: #2f58a8;
  text-align: center;
}
.page-anuarios .anuarios .content .container p {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
}
.page-anuarios .anuarios .content .container .items {
  margin: 2rem 0 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 992px) {
  .page-anuarios .anuarios .content .container .items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .page-anuarios .anuarios .content .container .items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 375px) {
  .page-anuarios .anuarios .content .container .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-anuarios .anuarios .content .container .items .item {
  overflow: hidden;
  box-shadow: 10px 10px 50px 0px rgba(128, 128, 128, 0.3411764706);
  border-radius: 0.6rem;
  transition: all ease 0.3s;
}
.page-anuarios .anuarios .content .container .items .item:hover {
  background: #2f58a8;
}
.page-anuarios .anuarios .content .container .items .item:hover h4, .page-anuarios .anuarios .content .container .items .item:hover span {
  color: #fff;
}
.page-anuarios .anuarios .content .container .items .item img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-anuarios .anuarios .content .container .items .item h4 {
  line-height: 1.4;
  padding: 1rem;
  text-align: center;
  font-size: 1.1rem;
  color: #212529;
}
.page-anuarios .anuarios .content .container .items .item span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem 1rem 1rem;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(33, 37, 41, 0.6);
}

.page-encontros #navbar #eventos {
  color: #b6d44b;
}
.page-encontros #navbar #encontros {
  color: #7c9524;
}
.page-encontros .encontros .banner img {
  width: 100%;
  height: 35vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-encontros .encontros .content .container {
  width: 45vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1900px) {
  .page-encontros .encontros .content .container {
    width: 60vw;
  }
}
@media only screen and (max-width: 1640px) {
  .page-encontros .encontros .content .container {
    width: 65vw;
  }
}
@media only screen and (max-width: 1440px) {
  .page-encontros .encontros .content .container {
    width: 75vw;
  }
}
@media only screen and (max-width: 1280px) {
  .page-encontros .encontros .content .container {
    width: 85vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-encontros .encontros .content .container {
    width: 95vw;
  }
}
.page-encontros .encontros .content .container h2 {
  font-family: "Bebas Neue", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  margin: 0 0 2rem 0;
  color: #2f58a8;
  text-align: center;
}
.page-encontros .encontros .content .container #texto-intro {
  margin: 0 0 3rem 0;
}
.page-encontros .encontros .content .container h3 {
  font-size: 1.5rem;
  color: #2f58a8;
  margin: 0 0 1rem 0;
}
.page-encontros .encontros .content .container p {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
}
.page-encontros .encontros .content .container a {
  color: #688dd5;
}

.page-sobre #navbar #ficcao-cidadania {
  color: #b6d44b;
}
.page-sobre #navbar #ficcao-sobre {
  color: #7c9524;
}
.page-sobre .sobre .banner img {
  width: 100%;
  height: 35vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-sobre .sobre .content .container {
  width: 45vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1900px) {
  .page-sobre .sobre .content .container {
    width: 60vw;
  }
}
@media only screen and (max-width: 1640px) {
  .page-sobre .sobre .content .container {
    width: 65vw;
  }
}
@media only screen and (max-width: 1440px) {
  .page-sobre .sobre .content .container {
    width: 75vw;
  }
}
@media only screen and (max-width: 1280px) {
  .page-sobre .sobre .content .container {
    width: 85vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-sobre .sobre .content .container {
    width: 95vw;
  }
}
.page-sobre .sobre .content .container h2 {
  font-family: "Bebas Neue", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  margin: 0 0 2rem 0;
  color: #2f58a8;
  text-align: center;
}
.page-sobre .sobre .content .container p {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
}

.page-imprensa #navbar #imprensa {
  color: #b6d44b;
}
.page-imprensa .imprensa .banner img {
  width: 100%;
  height: 35vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-imprensa .imprensa .content .container {
  width: 45vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1900px) {
  .page-imprensa .imprensa .content .container {
    width: 60vw;
  }
}
@media only screen and (max-width: 1640px) {
  .page-imprensa .imprensa .content .container {
    width: 65vw;
  }
}
@media only screen and (max-width: 1440px) {
  .page-imprensa .imprensa .content .container {
    width: 75vw;
  }
}
@media only screen and (max-width: 1280px) {
  .page-imprensa .imprensa .content .container {
    width: 85vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-imprensa .imprensa .content .container {
    width: 95vw;
  }
}
.page-imprensa .imprensa .content .container h2 {
  font-family: "Bebas Neue", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  margin: 0 0 2rem 0;
  color: #2f58a8;
  text-align: center;
}
.page-imprensa .imprensa .content .container h3 {
  font-size: 1.5rem;
  color: #2f58a8;
  margin: 0 0 1rem 0;
}
.page-imprensa .imprensa .content .container p {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
}
.page-imprensa .imprensa .content .container a {
  color: #688dd5;
}

.page-blog #navbar #blog {
  color: #b6d44b;
}
.page-blog .blog .banner img {
  width: 100%;
  height: 35vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-blog .blog .container {
  width: 45vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1900px) {
  .page-blog .blog .container {
    width: 60vw;
  }
}
@media only screen and (max-width: 1640px) {
  .page-blog .blog .container {
    width: 65vw;
  }
}
@media only screen and (max-width: 1440px) {
  .page-blog .blog .container {
    width: 75vw;
  }
}
@media only screen and (max-width: 1280px) {
  .page-blog .blog .container {
    width: 85vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-blog .blog .container {
    width: 95vw;
  }
}
.page-blog .blog .container h2 {
  font-family: "Bebas Neue", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  color: #2f58a8;
  text-align: center;
}
.page-blog .blog .container .filtros-categorias {
  margin: 2rem 0 0 0;
}
.page-blog .blog .container .filtros-categorias p {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}
.page-blog .blog .container .filtros-categorias .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-blog .blog .container .filtros-categorias .buttons button {
  text-transform: uppercase;
  border: 1px solid #b6d44b;
  background: transparent;
  color: #212529;
  border-radius: 20rem;
  cursor: pointer;
  transition: all ease 0.2s;
  font-weight: 600;
  white-space: nowrap;
  height: 42px;
  padding: 0 1rem;
  line-height: 42px;
}
.page-blog .blog .container .filtros-categorias .buttons button:hover {
  background: #b6d44b;
}
.page-blog .blog .container .filtros-categorias .buttons .ativo {
  background: #b6d44b;
}
.page-blog .blog .container .items {
  margin: 3rem 0 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media only screen and (max-width: 992px) {
  .page-blog .blog .container .items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 576px) {
  .page-blog .blog .container .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-blog .blog .container .items .item {
  box-sizing: border-box;
}
.page-blog .blog .container .items .item:hover .card-content {
  background: #2f58a8;
}
.page-blog .blog .container .items .item:hover .card-content img {
  transform: scale(1.1);
}
.page-blog .blog .container .items .item:hover .card-content h3 {
  color: #fff;
}
.page-blog .blog .container .items .item:hover .card-content .leitura {
  color: #fff !important;
}
.page-blog .blog .container .items .item .card-content {
  background: transparent;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  transition: ease all 0.3s;
}
.page-blog .blog .container .items .item .card-content .image-wrapper {
  height: 200px;
  overflow: hidden;
}
.page-blog .blog .container .items .item .card-content .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 1s;
}
.page-blog .blog .container .items .item .card-content .labels {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.page-blog .blog .container .items .item .card-content .label {
  background-color: rgba(47, 88, 168, 0.6);
  color: #fff;
  padding: 0.5rem;
  font-size: 0.8rem;
  border-radius: 0.3rem;
  display: inline-block;
  font-weight: 800;
}
.page-blog .blog .container .items .item .card-content h3 {
  font-size: 1.2rem;
  margin: 1rem 0 0 0;
  padding: 0 0.5rem 1rem;
  line-height: 1.2;
}
.page-blog .blog .container .items .item .card-content .leitura {
  font-size: 0.75rem;
  color: rgba(33, 37, 41, 0.5);
  padding: 0 0.5rem 1rem;
}
.page-blog .blog .container .items .item.fade {
  transition: opacity 0.2s ease;
  opacity: 1;
}
.page-blog .blog .container .items .item.fade-in {
  opacity: 1;
}
.page-blog .blog .container .items .item.fade-out {
  opacity: 0;
}

.page-blogpost #navbar #blog {
  color: #b6d44b;
}
.page-blogpost .blogpost {
  padding: 4rem 0 0 0;
}
.page-blogpost .blogpost .container {
  width: 45vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1900px) {
  .page-blogpost .blogpost .container {
    width: 60vw;
  }
}
@media only screen and (max-width: 1640px) {
  .page-blogpost .blogpost .container {
    width: 65vw;
  }
}
@media only screen and (max-width: 1440px) {
  .page-blogpost .blogpost .container {
    width: 75vw;
  }
}
@media only screen and (max-width: 1280px) {
  .page-blogpost .blogpost .container {
    width: 85vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-blogpost .blogpost .container {
    width: 95vw;
  }
}
.page-blogpost .blogpost .container h1 {
  margin: 0 0 2rem 0;
  color: #212529;
  font-weight: 800;
  line-height: 1.2;
}
.page-blogpost .blogpost .container .info-text {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 2rem 0;
  color: rgba(33, 37, 41, 0.8);
}
.page-blogpost .blogpost .container .date {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 2rem 0;
  color: rgba(47, 88, 168, 0.8);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.page-blogpost .blogpost .container .date img {
  width: 20px;
}
.page-blogpost .blogpost .container .image-wrapper img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .page-blogpost .blogpost .container .image-wrapper img {
    height: 500px;
  }
}
@media only screen and (max-width: 576px) {
  .page-blogpost .blogpost .container .image-wrapper img {
    height: 400px;
  }
}
@media only screen and (max-width: 375px) {
  .page-blogpost .blogpost .container .image-wrapper img {
    height: 250px;
  }
}
.page-blogpost .blogpost .container .image-wrapper span {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 0.5rem 0 0 0;
  font-size: 1rem;
  color: rgba(33, 37, 41, 0.6);
}
.page-blogpost .blogpost .container .text-wrapper {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 3rem 0 0 0;
}

.page-conteudo #navbar #blog {
  color: #b6d44b;
}
.page-conteudo .conteudo {
  padding: 4rem 0 0 0;
}
.page-conteudo .conteudo .container {
  width: 45vw;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  gap: 4rem;
  width: 60vw;
}
@media only screen and (max-width: 1900px) {
  .page-conteudo .conteudo .container {
    width: 60vw;
  }
}
@media only screen and (max-width: 1640px) {
  .page-conteudo .conteudo .container {
    width: 65vw;
  }
}
@media only screen and (max-width: 1440px) {
  .page-conteudo .conteudo .container {
    width: 75vw;
  }
}
@media only screen and (max-width: 1280px) {
  .page-conteudo .conteudo .container {
    width: 85vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-conteudo .conteudo .container {
    width: 95vw;
  }
}
@media only screen and (max-width: 1900px) {
  .page-conteudo .conteudo .container {
    width: 70vw;
  }
}
@media only screen and (max-width: 1640px) {
  .page-conteudo .conteudo .container {
    width: 80vw;
  }
}
@media only screen and (max-width: 1440px) {
  .page-conteudo .conteudo .container {
    width: 90vw;
    gap: 2rem;
  }
}
@media only screen and (max-width: 1280px) {
  .page-conteudo .conteudo .container {
    flex-direction: column;
  }
}
.page-conteudo .conteudo .container .content {
  width: 70%;
}
@media only screen and (max-width: 1280px) {
  .page-conteudo .conteudo .container .content {
    width: 100%;
  }
}
.page-conteudo .conteudo .container .content h1 {
  margin: 0 0 2rem 0;
  color: #212529;
  font-weight: 800;
  line-height: 1.2;
}
.page-conteudo .conteudo .container .content .info-text {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 2rem 0;
  color: rgba(33, 37, 41, 0.8);
}
.page-conteudo .conteudo .container .content .date {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 2rem 0;
  color: rgba(47, 88, 168, 0.8);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.page-conteudo .conteudo .container .content .date img {
  width: 20px;
}
.page-conteudo .conteudo .container .content .image-wrapper img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .page-conteudo .conteudo .container .content .image-wrapper img {
    height: 500px;
  }
}
@media only screen and (max-width: 576px) {
  .page-conteudo .conteudo .container .content .image-wrapper img {
    height: 400px;
  }
}
@media only screen and (max-width: 375px) {
  .page-conteudo .conteudo .container .content .image-wrapper img {
    height: 250px;
  }
}
.page-conteudo .conteudo .container .content .image-wrapper span {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 0.5rem 0 0 0;
  font-size: 1rem;
  color: rgba(33, 37, 41, 0.6);
}
.page-conteudo .conteudo .container .content .text-wrapper {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 3rem 0 0 0;
}
.page-conteudo .conteudo .container .content .text-wrapper a {
  color: #547ecf;
}
.page-conteudo .conteudo .container .content .text-wrapper h3, .page-conteudo .conteudo .container .content .text-wrapper h4 {
  font-size: 1.8rem;
  margin: 1rem 0;
  color: #2f58a8;
}
.page-conteudo .conteudo .container .content .text-wrapper p {
  margin: 1.5rem 0 0 0;
}
.page-conteudo .conteudo .container .content .text-wrapper figure, .page-conteudo .conteudo .container .content .text-wrapper [id^=attachment] {
  width: 100% !important;
  margin: 2rem 0 0 0;
}
.page-conteudo .conteudo .container .content .text-wrapper figure img, .page-conteudo .conteudo .container .content .text-wrapper [id^=attachment] img {
  width: 100%;
  border-radius: 0.5rem;
}
.page-conteudo .conteudo .container .content .text-wrapper figcaption, .page-conteudo .conteudo .container .content .text-wrapper [id^=caption-attachment] {
  width: 100%;
  text-align: center;
  display: block;
  justify-content: center;
  margin: 0.5rem 0 0 0;
  font-size: 1rem;
  color: rgba(33, 37, 41, 0.6);
}
.page-conteudo .conteudo .container .content .text-wrapper blockquote {
  padding: 0 0 0 1rem;
  border-left: 4px solid #b6d44b;
}
.page-conteudo .conteudo .container .content .text-wrapper p:empty {
  display: none;
}
.page-conteudo .conteudo .container .content .mais {
  margin: 6rem 0 0 0;
}
.page-conteudo .conteudo .container .content .mais h4 {
  font-family: "Bebas Neue", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  font-size: 1.6rem;
  font-family: "Lato", sans-serif;
  font-weight: 800;
  margin: 0 0 1rem 0;
}
.page-conteudo .conteudo .container .content .mais ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 230px));
  gap: 1rem;
}
@media only screen and (max-width: 1280px) {
  .page-conteudo .conteudo .container .content .mais ul {
    grid-template-columns: repeat(auto-fit, minmax(210px, 210px));
  }
}
@media only screen and (max-width: 768px) {
  .page-conteudo .conteudo .container .content .mais ul {
    grid-template-columns: repeat(auto-fit, minmax(219px, 219px));
  }
}
@media only screen and (max-width: 576px) {
  .page-conteudo .conteudo .container .content .mais ul {
    grid-template-columns: repeat(auto-fit, minmax(250px, 250px));
  }
}
@media only screen and (max-width: 375px) {
  .page-conteudo .conteudo .container .content .mais ul {
    grid-template-columns: repeat(auto-fit, minmax(100%, 250px));
  }
}
.page-conteudo .conteudo .container .content .mais ul li a {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(33, 37, 41, 0.8);
}
.page-conteudo .conteudo .container .content .mais ul li a .image-wrapper {
  height: 150px;
}
.page-conteudo .conteudo .container .content .mais ul li a .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.2rem;
}
.page-conteudo .conteudo .container .content .mais ul li a h3 {
  margin: 0.6rem 0;
}
.page-conteudo .conteudo .container .content .mais ul li a p {
  font-size: 0.8rem;
}
.page-conteudo .conteudo .container .aside {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media only screen and (max-width: 1280px) {
  .page-conteudo .conteudo .container .aside {
    width: 100%;
    display: none;
  }
}
.page-conteudo .conteudo .container .aside h4 {
  font-family: "Bebas Neue", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  font-size: 1.4rem;
  font-family: "Lato", sans-serif;
  font-weight: 800;
  margin: 0 0 1rem 0;
}
.page-conteudo .conteudo .container .aside ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.page-conteudo .conteudo .container .aside ul li a {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(33, 37, 41, 0.8);
  transition: all 0.2s;
}
.page-conteudo .conteudo .container .aside ul li a:hover {
  color: #2f58a8;
}/*# sourceMappingURL=main.css.map */