.header {
  background-color: rgb(9, 36, 79);
  padding: 32px 0;
  position: sticky;
  top: 0;
  z-index: 999999;
}
.header .row {
  align-items: center;
}
.header .top-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 0;
  list-style: none;
}
.header .top-menu .menu-item a {
  color: #fff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 100%;
}
.header .top-menu .menu-item a svg {
  margin-left: 5px;
  transition: rotate 0.3s ease-in-out;
}
.header .top-menu .menu-item .sub-menu {
  margin-bottom: 0;
  display: none;
  list-style: none;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  padding: 20px 10px;
  background-color: #fff;
  border-radius: 15px;
  z-index: 999;
}
.header .top-menu .menu-item .sub-menu li a {
  color: #09244F;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 100%;
}
.header .top-menu .menu-item:hover .sub-menu {
  display: flex;
}
.header .top-menu .menu-item:hover svg {
  rotate: 180deg;
}
.header .botao-verde {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .search-holder {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .search-holder .icon-search {
  cursor: pointer;
  z-index: 99;
}
.header .search-holder .icon-search .icon-close {
  display: none;
}
.header .search-holder .icon-search.active .icon-lupa {
  display: none;
}
.header .search-holder .icon-search.active .icon-close {
  display: inline;
}
.header .search-holder .search-form-holder {
  position: absolute;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100px);
  transition: all 0.1s ease-in-out;
  width: 670px;
}
.header .search-holder .search-form-holder.active {
  width: 670px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color: rgb(9, 36, 79);
}
.header .search-holder .search-form-holder .search-form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .search-holder .search-form-holder .search-form label {
  width: 290px;
}
.header .search-holder .search-form-holder .search-form .search-field {
  border-radius: 20px;
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 100%;
  height: 40px;
  padding: 10px 20px;
}
.header .search-holder .search-form-holder .search-form .search-field::-moz-placeholder {
  color: #fff;
}
.header .search-holder .search-form-holder .search-form .search-field::placeholder {
  color: #fff;
}
.header .search-holder .search-form-holder .search-form .search-submit {
  border: none;
  background-color: rgb(9, 36, 79);
}
.header .search-holder .search-form-holder .search-form .search-submit svg path {
  stroke: #05d758;
}
.header .header-mobile .mobile-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-mobile .mobile-container .hamburger {
  background-color: transparent;
  border: none;
}
.header .header-mobile .mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  height: 100%;
  width: 100%;
  z-index: 9999;
  flex-direction: column;
  align-items: stretch;
  padding: 52px 15px;
}
.header .header-mobile .mobile-menu .mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 33px;
}
.header .header-mobile .mobile-menu .mobile-menu-header .logo-holder img {
  height: 36px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .header-mobile .mobile-menu .mobile-menu-header .menu-close {
  background-color: transparent;
  border: none;
}
.header .header-mobile .mobile-menu .mobile-nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 56px;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item {
  padding: 20px;
  border-top: 1px solid #DCDCDC;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item:last-child {
  border-bottom: 1px solid #DCDCDC;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 100%;
  color: #071C3C;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item a svg path {
  stroke: #071C3C;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item .sub-menu {
  display: none;
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item .sub-menu .menu-item {
  padding: 8px 12px;
  border: none;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item .sub-menu a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 100%;
  color: #071C3C;
  text-decoration: none;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item.active a svg {
  rotate: 180deg;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item.active .sub-menu {
  display: flex;
  flex-direction: column;
}
.header .header-mobile .mobile-menu.active {
  display: flex;
}
.header .header-mobile .botao-verde {
  width: 100%;
}
.header .header-mobile .icons-holder {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .header-mobile .search-holder {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  z-index: 999;
}
.header .header-mobile .search-holder .icon-search {
  cursor: pointer;
  z-index: 9999;
  position: relative;
  pointer-events: auto;
}
.header .header-mobile .search-holder .icon-search svg, .header .header-mobile .search-holder .icon-search path {
  pointer-events: none;
}
.header .header-mobile .search-holder .icon-search .icon-close {
  display: none;
}
.header .header-mobile .search-holder .icon-search.active {
  position: absolute;
  right: 15px;
}
.header .header-mobile .search-holder .icon-search.active .icon-lupa {
  display: none;
}
.header .header-mobile .search-holder .icon-search.active .icon-close {
  display: inline;
}
.header .header-mobile .search-holder .search-form-holder {
  position: absolute;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
.header .header-mobile .search-holder .search-form-holder.active {
  width: 100%;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  background-color: rgb(9, 36, 79);
  left: 0;
  z-index: 999;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-mobile .search-holder .search-form-holder .search-form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-mobile .search-holder .search-form-holder .search-form .search-field {
  border-radius: 20px;
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  height: 40px;
  padding: 10px 20px;
}
.header .header-mobile .search-holder .search-form-holder .search-form .search-field::-moz-placeholder {
  color: #fff;
}
.header .header-mobile .search-holder .search-form-holder .search-form .search-field::placeholder {
  color: #fff;
}
.header .header-mobile .search-holder .search-form-holder .search-form .search-submit {
  border: none;
  background-color: rgb(9, 36, 79);
}

footer {
  padding: 60px 0 160px 0;
  background-color: #282828;
}
@media only screen and (max-width: 991px) {
  footer {
    text-align: center;
  }
}
footer .logo {
  margin-bottom: 24px;
}
footer .social-holder {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  footer .social-holder {
    justify-content: center;
  }
}
footer .conteudo-footer {
  margin-top: 62px;
}
footer .conteudo-footer .menu-item-holder {
  margin-bottom: 40px;
}
footer .conteudo-footer .menu-item-holder h3 {
  color: #C5C5C5;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 140%;
  font-size: 1rem;
  margin-bottom: 28px;
}
footer .conteudo-footer .menu-item-holder ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .conteudo-footer .menu-item-holder ul .menu-item a {
  color: #fff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 140%;
}
footer .conteudo-footer .menu-item-holder ul .menu-item a:hover {
  text-decoration: underline;
  text-underline-offset: 10px;
}
footer .copyright {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 140%;
  font-size: 1rem;
  color: #fff;
  margin-top: 96px;
}

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

@media only screen and (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
}
h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: -1px;
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -1px;
}
@media only screen and (max-width: 991px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -1px;
}

h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -1px;
}

p {
  font-family: "Inter", sans-serif;
}

.botao-verde {
  background-color: #05D758;
  color: #09244F;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.botao-verde:hover {
  background-color: #05993B;
  color: #fff;
}

.mobile {
  display: none;
}

@media only screen and (max-width: 991px) {
  .desktop {
    display: none !important;
  }
  .mobile {
    display: flex;
  }
}
.post-holder {
  display: flex;
  align-items: center;
  gap: 45px;
}
@media only screen and (max-width: 991px) {
  .post-holder {
    flex-direction: column;
  }
}
.post-holder .img-holder {
  position: relative;
  width: 100%;
}
.post-holder .img-holder img {
  border-radius: 26px;
  width: 519px;
  height: 379px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 991px) {
  .post-holder .img-holder img {
    width: 100%;
    height: 250px;
  }
}
.post-holder .content-holder .cat-holder {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}
.post-holder .content-holder .cat-holder a {
  color: #05D758;
  background-color: rgba(180, 242, 216, 0.2);
  padding: 4px 8px;
  border-radius: 20px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 140%;
}
.post-holder .content-holder h2 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 120%;
  color: #fff;
  margin-bottom: 16px;
}
.post-holder .content-holder p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.post-holder .content-holder .continuar-lendo {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 100%;
  color: #fff;
  text-decoration: none;
}
.post-holder .content-holder .continuar-lendo svg {
  margin-left: 12px;
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.post-card .img-holder img {
  border-radius: 16px;
  height: 160px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-card .post-content .cat-holder {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}
.post-card .post-content .cat-holder a {
  color: #05993B;
  background-color: rgba(180, 242, 216, 0.2);
  padding: 4px 8px;
  border-radius: 20px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 140%;
}
.post-card .post-content h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 16px;
}
.post-card .post-content p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
  color: #282828;
  margin-bottom: 24px;
}
.post-card .post-content .continuar-lendo {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 100%;
  color: rgba(0, 0, 0, 0.9);
  text-decoration: none;
}
.post-card .post-content .continuar-lendo svg {
  margin-left: 12px;
}

.fundo-escuro .post-card .post-content h3 {
  color: #fff;
}
.fundo-escuro .post-card .post-content p {
  color: rgba(255, 255, 255, 0.7);
}
.fundo-escuro .post-card .post-content .continuar-lendo {
  color: #fff;
}

form input[type=text], form input[type=email], form input[type=tel], form select {
  background-color: #F2F4F4;
  border: solid 1px #DCDCDC;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
}
form .texto-legal p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 140%;
  font-size: 0.9rem;
  color: #999;
  margin: 32px 0;
}
form .botao-verde {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 100%;
  font-size: 1rem;
  color: #09244F;
}

.topo-blog {
  background-color: #071C3C;
  padding: 80px 0;
}
.topo-blog .row {
  position: relative;
}
.topo-blog .destaque-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.topo-blog .destaque-pagination .swiper-pagination-bullet {
  background-color: #d9d9d9;
  width: 12px;
  height: 12px;
}
.topo-blog .destaque-navigation-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
}

.ultimas-noticias {
  padding: 80px 0 96px 0;
}
.ultimas-noticias h2 {
  color: #282828;
  margin-bottom: 48px;
}
@media only screen and (max-width: 991px) {
  .ultimas-noticias .posts-holder {
    gap: 48px;
  }
}

.principais-assuntos {
  padding: 80px 0 96px 0;
  background-color: rgba(242, 244, 244, 0.4);
}
.principais-assuntos h2 {
  text-align: center;
  color: #282828;
  font-size: 3rem;
  margin-bottom: 48px;
}
.principais-assuntos .categorias-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.principais-assuntos .categorias-holder a {
  color: #05993B;
  background-color: rgba(180, 242, 216, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
  white-space: nowrap;
}

.mais-lidas {
  padding: 80px 0 96px 0;
}
.mais-lidas h2 {
  font-size: 3rem;
  margin-bottom: 48px;
}
@media only screen and (max-width: 991px) {
  .mais-lidas .posts-holder {
    gap: 48px;
  }
}

.post-section {
  padding: 80px 0 96px 0;
}
.post-section h2 {
  font-size: 3rem;
  margin-bottom: 48px;
}
@media only screen and (max-width: 991px) {
  .post-section .posts-holder {
    gap: 48px;
  }
}
.post-section.fundo-cinza {
  background-color: #fafafb;
}/*# sourceMappingURL=page-blog.css.map */