.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-horizontal {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .post-horizontal {
    flex-direction: column;
  }
}
.post-horizontal .img-holder {
  display: flex;
  width: 270px;
}
@media only screen and (max-width: 991px) {
  .post-horizontal .img-holder {
    width: 100%;
  }
}
.post-horizontal .img-holder a {
  width: inherit;
}
.post-horizontal .img-holder img {
  border-radius: 16px;
  height: 171px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-horizontal .post-card-content a {
  text-decoration: none;
}
.post-horizontal .post-card-content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 120%;
  color: #1E1E1E;
  margin-bottom: 8px;
}
.post-horizontal .post-card-content .excerpt {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
  color: #999999;
}
.post-horizontal .post-card-content .date {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 140%;
  color: #282828;
}

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-arquivo {
  background-color: #F2F4F4;
  padding: 32px 0 96px 0;
}
@media only screen and (max-width: 991px) {
  .topo-arquivo {
    padding: 32px 0;
  }
}
.topo-arquivo .back a {
  margin-bottom: 45px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #282828;
  text-decoration: none;
}
@media only screen and (max-width: 991px) {
  .topo-arquivo .back a {
    margin-bottom: 32px;
  }
}
.topo-arquivo h1 {
  color: #282828;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .topo-arquivo h1 {
    font-size: 2.5rem;
  }
}
.topo-arquivo .post-count {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 140%;
  color: #999;
}
.topo-arquivo .perfil-holder {
  background-color: #fff;
  padding: 16px;
  border-radius: 16px;
  margin-top: 32px;
}
.topo-arquivo .perfil-holder .name-holder {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 991px) {
  .topo-arquivo .perfil-holder .name-holder {
    margin-bottom: 24px;
  }
}
.topo-arquivo .perfil-holder .name-holder img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.topo-arquivo .perfil-holder .name-holder p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 140%;
  margin-bottom: 0;
  color: #282828;
}
.topo-arquivo .perfil-holder .author-description {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 130%;
  margin-bottom: 0;
  color: #999;
}

.lista-de-post {
  padding: 90px 0;
}
.lista-de-post .posts-holder {
  display: flex;
  flex-direction: column;
  gap: 24px;
}/*# sourceMappingURL=archive.css.map */