@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

header {
  border-bottom: 1px solid #0f2859;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 9999;
}
header .menu-mobile {
  padding: 5px 15px;
}
header .menu-mobile .search-form {
  width: 0;
  background: #fff;
  height: 40px;
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #0f2859;
}
header .menu-mobile .search-form button {
  background: none;
  border: none;
  padding: 0 5px;
  margin: 0;
  border: 0;
  cursor: pointer;
  outline: none;
}
header .menu-mobile .search-form button img {
  width: 25px;
}
header .menu-mobile .search-form .search-field {
  width: 100%;
  border: none;
  outline: none;
}
header .menu-mobile > ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  margin: 15px 0 0;
  list-style: none;
}
header .menu-mobile > ul li {
  margin: 5px 0;
  text-align: right;
}
header .menu-mobile > ul li:last-child {
  width: 100%;
}
header .menu-mobile > ul li a {
  font-size: 1.1rem;
  color: #0f2859;
  margin: 0;
  text-align: center;
  font-weight: 600;
  outline: none;
  padding: 8px 5px;
}
header .menu-mobile > ul li a.gestao {
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 16px;
  background: #0f2859;
  color: #fff !important;
  height: 40px;
  width: fit-content;
}
header .menu-mobile > ul li a:hover {
  text-decoration: none;
}
header .menu-mobile > ul li a:visited {
  color: currentColor;
}
header .menu-mobile > ul li a.categories {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .menu-mobile > ul li a.categories::after {
  content: "";
  width: 0;
  height: 0;
  background: none;
  margin-left: 5px;
  border: 5px transparent solid;
  border-left-color: #0f2859;
  border-right-width: 0;
  margin-top: 2px;
}
header .menu-mobile > ul li ul {
  background: #0f2859;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  border-radius: 8px;
  height: 0;
  padding: 0;
  overflow: hidden;
}
header .menu-mobile > ul li ul li {
  margin: 2px 0;
}
header .menu-mobile > ul li ul li a {
  display: flex;
  padding: 6px 0;
  color: #fff !important;
  font-size: 0.9rem;
  justify-content: flex-end;
}
header .menu-mobile > ul li.open .categories {
  background: #E7EFFF;
  border-radius: 8px;
  margin-bottom: 10px;
}
header .menu-mobile > ul li.open .categories::after {
  border-top-color: #0f2859;
  border-left-color: transparent;
  border-right-width: 5px;
  border-bottom-width: 0;
}
header .menu-mobile > ul li.open ul {
  height: unset;
  padding: 5px 10px;
}
header .categories-handle {
  background: none;
  border: none;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  outline: none;
}
header .categories-handle img {
  width: 28px;
}
@media (max-width: 992px) {
  header .categories-handle img {
    width: 34px;
  }
}
header .categories-handle span {
  color: #0f2859;
  font-size: 1rem;
  margin-left: 10px;
  display: flex;
  font-weight: 600;
}
header nav {
  display: flex;
  align-items: center;
}
header nav > a {
  font-size: 0.9rem;
  color: #0f2859;
  margin: 0 10px;
  text-align: center;
  font-weight: 600;
  outline: none;
}
header nav > a:visited {
  color: currentColor;
}
header nav > a.button {
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 16px;
  background: #0f2859;
  color: #fff;
  height: 40px;
}
header nav > a:hover {
  text-decoration: none;
}
header .header-right {
  display: flex;
  align-items: center;
  position: relative;
}
header .header-right .search-handle {
  background: none;
  border: none;
  padding: 0 5px;
  margin: 0;
  border: 0;
  cursor: pointer;
  outline: none;
}
header .header-right .search-handle img {
  width: 25px;
}
header .header-right .search-form {
  width: 0;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  right: 0;
  width: 0;
  transition: ease all 0.3s;
  border-bottom: 1px solid #0f2859;
}
header .header-right .search-form.active {
  width: 100%;
}
header .header-right .search-form button {
  background: none;
  border: none;
  padding: 0 5px;
  margin: 0;
  border: 0;
  cursor: pointer;
  outline: none;
}
header .header-right .search-form button img {
  width: 25px;
}
header .header-right .search-form .search-field {
  width: 100%;
  border: none;
  outline: none;
}

.categories-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: 9;
  overflow: hidden;
  z-index: 99999;
}
.categories-area .categories-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: ease all 0.5s;
}
.categories-area .categories-box {
  position: absolute;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: 300px;
  width: 100%;
  padding: 30px 35px;
  transform: translateX(-110%);
  transition: ease all 0.5s;
}
.categories-area .categories-box .close-category {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  outline: none;
}
.categories-area .categories-box .close-category img {
  width: 25px;
  margin-right: 5px;
}
.categories-area .categories-box .close-category span {
  display: flex;
  font-size: 1.3rem;
  color: #0f2859;
  font-weight: 700;
}
.categories-area .categories-box #menu-categorias,
.categories-area .categories-box ul.categories-list {
  list-style: none;
  margin: 0;
}
.categories-area .categories-box #menu-categorias li,
.categories-area .categories-box ul.categories-list li {
  margin: 30px 0;
}
.categories-area .categories-box #menu-categorias li a,
.categories-area .categories-box ul.categories-list li a {
  display: flex;
  color: #0f2859;
  font-size: 1.1rem;
}
.categories-area .categories-box #menu-categorias li a:hover,
.categories-area .categories-box ul.categories-list li a:hover {
  text-decoration: none;
}
.categories-area.active {
  width: 100%;
}
.categories-area.active .categories-overlay {
  opacity: 1;
}
.categories-area.active .categories-box {
  transform: translateX(0);
}

.spapcer {
  height: 73px;
}

.banner-highlight-area {
  margin: 40px 0;
  max-height: 480px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .banner-highlight-area {
    max-height: unset;
    padding: 25px 0;
    margin: 0;
  }
}
.banner-highlight-area .banners-highlight .banner-out .banner-highlight {
  display: flex;
  height: 480px;
  border-radius: 18px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .banner-highlight-area .banners-highlight .banner-out .banner-highlight {
    height: unset;
    flex-direction: column-reverse;
  }
}
.banner-highlight-area .banners-highlight .banner-out .banner-highlight .banner-content {
  position: relative;
  display: flex;
  align-items: center;
  background: #0f2859;
  width: 45%;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .banner-highlight-area .banners-highlight .banner-out .banner-highlight .banner-content {
    aspect-ratio: 6/4;
    width: 100%;
    padding: 0 20px;
  }
}
.banner-highlight-area .banners-highlight .banner-out .banner-highlight .banner-content .category {
  position: absolute;
  top: 30px;
  left: 30px;
  background: #90c5f4;
  padding: 4px 20px;
  border-radius: 6px;
}
.banner-highlight-area .banners-highlight .banner-out .banner-highlight .banner-content .category span {
  color: #0f2859;
  font-size: 0.8rem;
}
@media (max-width: 992px) {
  .banner-highlight-area .banners-highlight .banner-out .banner-highlight .banner-content .category {
    padding: 2px 15px;
    top: 15px;
    left: 20px;
  }
}
.banner-highlight-area .banners-highlight .banner-out .banner-highlight .banner-content .banner-content-text {
  color: #fff;
}
.banner-highlight-area .banners-highlight .banner-out .banner-highlight .banner-content .banner-content-text h2 {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.4;
  font-style: normal;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .banner-highlight-area .banners-highlight .banner-out .banner-highlight .banner-content .banner-content-text h2 {
    font-size: 1.1rem;
    line-height: 1.2;
  }
}
.banner-highlight-area .banners-highlight .banner-out .banner-highlight .banner-content .banner-content-text p {
  margin: 0;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 992px) {
  .banner-highlight-area .banners-highlight .banner-out .banner-highlight .banner-content .banner-content-text p {
    font-size: 0.9rem;
    line-height: 1.2;
  }
}
.banner-highlight-area .banners-highlight .banner-out .banner-highlight .banner-image {
  width: 55%;
  position: relative;
}
@media (max-width: 992px) {
  .banner-highlight-area .banners-highlight .banner-out .banner-highlight .banner-image {
    width: 100%;
    aspect-ratio: 3/2;
  }
}
.banner-highlight-area .banners-highlight .banner-out .banner-highlight .banner-image img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.category-title {
  display: flex;
  border-bottom: 3px solid #eeeeee;
  margin: 25px 0;
  padding-bottom: 0;
}
.category-title h1,
.category-title h2 {
  color: #0f2859;
  border-bottom: 3px solid currentColor;
  padding-bottom: 10px;
  padding-right: 25px;
  margin: 0 0 -2px;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 992px) {
  .category-title h1,
  .category-title h2 {
    font-size: 1.4rem;
  }
}

.card-link-out:hover {
  text-decoration: none;
}
.card-link-out:hover .card-link {
  text-decoration: underline;
}
.card-link-out .card-post {
  margin-bottom: 25px;
}
.card-link-out .card-post-image {
  position: relative;
  width: 100%;
  aspect-ratio: 43/24;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
}
.card-link-out .card-post-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-link-out .card-post .card-category-bar {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.card-link-out .card-post .card-category-bar .category {
  display: flex;
  width: fit-content;
  background: #E7EFFF;
  padding: 4px 12px;
  font-weight: bold;
  border-radius: 6px;
  color: #0f2859;
  font-size: 0.8rem;
  margin-right: 12px;
}
.card-link-out .card-post .card-category-bar .author {
  font-size: 0.8rem;
  color: #0f2859;
}
.card-link-out .card-post h2 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 600;
  color: #212121;
}
.card-link-out .card-post p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #616161;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.card-link-out .card-post .card-link {
  display: flex;
  align-items: center;
  color: #004CE8;
  font-weight: bold;
  font-size: 0.8rem;
  width: fit-content;
}
.card-link-out .card-post .card-link svg {
  width: 20px;
  margin-top: 1px;
}
.card-link-out .card-post .card-link svg path {
  stroke: #004CE8;
  fill: #004CE8;
}
.card-link-out .card-post .card-link:hover {
  text-decoration: underline;
}

.default-page-content {
  padding: 15px 175px;
  line-height: 2.1;
  font-size: 1rem;
}
@media (max-width: 992px) {
  .default-page-content {
    padding: 0 15px;
  }
}

.social-share-box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.social-share-box h3 {
  font-size: 1.1rem;
  color: #212121;
  font-weight: 700;
  margin: 10px 5px;
}
.social-share-box .social-share-list {
  display: flex;
}
.social-share-box .social-share-list a {
  display: flex;
  margin: 0 4px;
}
.social-share-box .social-share-list a img {
  width: 35px;
  height: 35px;
  transition: ease all 0.5s;
}
.social-share-box .social-share-list a:hover img {
  transform: scale(1.2);
}

.sindicato-area {
  margin: 50px 0;
}
.sindicato-area .sindicato-banner {
  background: #d50e25;
  border-radius: 30px;
  overflow: hidden;
}
.sindicato-area .sindicato-banner .sindicato-content {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
}
@media (max-width: 768px) {
  .sindicato-area .sindicato-banner .sindicato-content {
    text-align: center;
  }
}
.sindicato-area .sindicato-banner .sindicato-content h2 {
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.3;
}
.sindicato-area .sindicato-banner .sindicato-content .sindicato-links {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.sindicato-area .sindicato-banner .sindicato-content .sindicato-links a {
  background: #9F0416;
  color: #fff;
  height: 50px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  border-radius: 15px;
  text-align: center;
}
.sindicato-area .sindicato-banner .sindicato-content .sindicato-links a:hover {
  text-decoration: none;
}
.sindicato-area .sindicato-banner .sindicato-content .sindicato-links img {
  width: 250px;
}
@media (max-width: 768px) {
  .sindicato-area .sindicato-banner .sindicato-content .sindicato-links img {
    margin: auto;
  }
}
@media (max-width: 768px) {
  .sindicato-area .sindicato-banner .sindicato-content .sindicato-links {
    flex-direction: column;
    align-items: unset;
  }
  .sindicato-area .sindicato-banner .sindicato-content .sindicato-links a {
    margin: 20px 0;
  }
}
.sindicato-area .sindicato-banner .sindicato-banner-image {
  height: 100%;
  position: relative;
}
.sindicato-area .sindicato-banner .sindicato-banner-image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: left;
  height: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .sindicato-area .sindicato-banner .sindicato-banner-image {
    display: none;
  }
}

.card-link-out:hover {
  text-decoration: none;
}
.card-link-out:hover .card-link {
  text-decoration: underline;
}
.card-link-out .card-recomendado {
  position: relative;
  width: 100%;
  aspect-ratio: 60/45;
  overflow: hidden;
  border-radius: 16px;
}
.card-link-out .card-recomendado > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-link-out .card-recomendado .card-recomendado-content {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
}
.card-link-out .card-recomendado .card-recomendado-content .card-category-bar {
  margin-bottom: 10px;
}
.card-link-out .card-recomendado .card-recomendado-content .card-category-bar .category {
  background: #90c5f4;
  padding: 7px 20px;
  border-radius: 6px;
  margin-right: 10px;
  color: #0f2859;
  font-size: 0.8rem;
}
@media (max-width: 992px) {
  .card-link-out .card-recomendado .card-recomendado-content .card-category-bar .category {
    padding: 5px 10px;
  }
}
.card-link-out .card-recomendado .card-recomendado-content .card-category-bar .author {
  color: #fff;
  font-size: 0.8rem;
}
.card-link-out .card-recomendado .card-recomendado-content h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}
@media (max-width: 992px) {
  .card-link-out .card-recomendado .card-recomendado-content h3 {
    font-size: 1.2rem;
  }
}
.card-link-out .card-recomendado .card-recomendado-content .card-link {
  display: flex;
  align-items: center;
  color: #90c5f4;
  font-weight: normal;
  font-size: 0.8rem;
}
.card-link-out .card-recomendado .card-recomendado-content .card-link svg {
  width: 20px;
  margin-top: 1px;
}
.card-link-out .card-recomendado .card-recomendado-content .card-link svg path {
  stroke: #90c5f4;
  fill: #90c5f4;
}
.card-link-out .card-recomendado .card-recomendado-content::before {
  content: "";
  background-image: linear-gradient(transparent, #212121);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}

.newsletter-area {
  position: relative;
  overflow: hidden;
  margin: 40px 0 80px;
  border-radius: 15px;
}
@media (max-width: 992px) {
  .newsletter-area {
    background: linear-gradient(152.06deg, #0F2859 1.43%, #011336 110.3%);
    overflow: unset;
    padding: 30px 15px;
    margin: 60px 15px 100px;
  }
}
.newsletter-area .newsletter-image {
  max-width: unset;
  height: 420px;
}
.newsletter-area .newsletter-image-mobile {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 30px;
}
.newsletter-area .container {
  position: relative;
}
.newsletter-area .container::before {
  background: linear-gradient(152.06deg, #0F2859 1.43%, #011336 110.3%);
  height: 100%;
  width: 1000px;
  position: absolute;
  top: 11px;
  left: calc(100% - 15px);
}
.newsletter-area .container .newsletter-content {
  height: 350px;
  width: 52%;
  max-width: 100%;
  margin: auto;
  position: absolute;
  top: calc(50% - 5px);
  transform: translateY(-50%);
  right: 15px;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .newsletter-area .container .newsletter-content {
    position: unset;
    width: 100%;
    transform: unset;
    height: unset;
  }
}
.newsletter-area .container .newsletter-content form > h2 {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.4;
}
.newsletter-area .container .newsletter-content form > p {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .newsletter-area .container .newsletter-content form h2 {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.2;
  }
  .newsletter-area .container .newsletter-content form p {
    text-align: center;
  }
}
.newsletter-area .container .newsletter-content form .newsletter-form p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: -20px;
}
@media (max-width: 992px) {
  .newsletter-area .container .newsletter-content form .newsletter-form p {
    grid-template-columns: 1fr;
  }
}
.newsletter-area .container .newsletter-content form .newsletter-form p input {
  width: 100%;
  background: none;
  border: 1px solid #90c5f4;
  color: #fff;
  height: 50px;
  border-radius: 8px;
  padding: 0 15px;
}
.newsletter-area .container .newsletter-content form .newsletter-form p input::placeholder {
  color: #fff;
}
.newsletter-area .container .newsletter-content form .newsletter-form p input[type=submit] {
  background: #90c5f4;
  color: #0f2859;
  cursor: pointer;
}
.newsletter-area .container .newsletter-content form .wpcf7-spinner {
  margin: 0;
  background-color: #90c5f4;
}
.newsletter-area .container .newsletter-content form .wpcf7-spinner:before {
  background-color: #0f2859;
}
.newsletter-area .container .newsletter-content form .wpcf7-not-valid-tip {
  font-size: 0.7rem;
}
.newsletter-area .container .newsletter-content form .wpcf7-response-output {
  color: #fff;
  border: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  display: none;
}

.mais-lidos-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 99px);
}
.mais-lidos-list .card-link-out:hover {
  text-decoration: none;
}
.mais-lidos-list .card-link-out:hover .card-link {
  text-decoration: underline;
}
.mais-lidos-list .card-link-out .card-mais-lidos {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .mais-lidos-list .card-link-out .card-mais-lidos {
    flex-direction: column;
  }
}
.mais-lidos-list .card-link-out .card-mais-lidos:last-child {
  margin-bottom: 0;
}
.mais-lidos-list .card-link-out .card-mais-lidos .card-mais-lidos-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 40%;
  aspect-ratio: 28/15;
}
@media (max-width: 992px) {
  .mais-lidos-list .card-link-out .card-mais-lidos .card-mais-lidos-img {
    width: 100%;
  }
}
.mais-lidos-list .card-link-out .card-mais-lidos .card-mais-lidos-img img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.mais-lidos-list .card-link-out .card-mais-lidos .card-recomendado-content {
  width: 60%;
  padding: 0 15px;
}
@media (max-width: 992px) {
  .mais-lidos-list .card-link-out .card-mais-lidos .card-recomendado-content {
    width: 100%;
    padding: 15px 0;
  }
}
.mais-lidos-list .card-link-out .card-mais-lidos .card-recomendado-content span.category {
  background: #E7EFFF;
  padding: 5px 15px;
  border-radius: 6px;
  display: flex;
  width: fit-content;
  color: #0f2859;
  font-size: 0.9rem;
  font-weight: 600;
}
.mais-lidos-list .card-link-out .card-mais-lidos .card-recomendado-content h3 {
  font-size: 1rem;
  color: #212121;
  line-height: 1.1;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 10px 0;
}
.mais-lidos-list .card-link-out .card-mais-lidos .card-recomendado-content .card-link {
  display: flex;
  align-items: center;
  color: #004CE8;
  font-weight: bold;
  font-size: 0.8rem;
}
.mais-lidos-list .card-link-out .card-mais-lidos .card-recomendado-content .card-link svg {
  width: 20px;
  margin-top: 1px;
}
.mais-lidos-list .card-link-out .card-mais-lidos .card-recomendado-content .card-link svg path {
  stroke: #004CE8;
  fill: #004CE8;
}

.abridor-banner-area .abridor-banner {
  background-image: url(../img/bg-banner-abridor.png);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-position: center;
  background-size: cover;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .abridor-banner-area .abridor-banner {
    flex-direction: column;
    align-items: flex-end;
  }
}
.abridor-banner-area .abridor-banner .abridor-banner-content {
  width: 60%;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .abridor-banner-area .abridor-banner .abridor-banner-content {
    align-items: center;
    width: 100%;
    align-items: center;
    padding: 25px 15px;
  }
}
.abridor-banner-area .abridor-banner .abridor-banner-content h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 992px) {
  .abridor-banner-area .abridor-banner .abridor-banner-content h3 {
    text-align: center;
  }
}
.abridor-banner-area .abridor-banner .abridor-banner-content a {
  background: #EE354F;
  color: #fff;
  border-radius: 14px;
  height: 40px;
  display: flex;
  width: fit-content;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  margin-top: 15px;
}
.abridor-banner-area .abridor-banner .abridor-banner-img {
  margin: 15px 0;
  width: 40%;
}
@media (max-width: 992px) {
  .abridor-banner-area .abridor-banner .abridor-banner-img {
    width: 90%;
  }
}

.about-page {
  position: relative;
}
.about-page h1 {
  text-align: center;
  margin: 50px 0 30px;
  font-size: 2rem;
  font-weight: 700;
  color: #0f2859;
}
@media (max-width: 992px) {
  .about-page h1 {
    margin: 25px 0 15px;
  }
}
.about-page .about-content {
  line-height: 2.1;
  font-size: 1rem;
  padding: 10px 0 25px;
}
.about-page::before {
  content: "";
  position: absolute;
  width: 100%;
  background: #E7EFFF;
  top: 350px;
  bottom: 0;
  left: 0;
  border-radius: 130px 0 0 0;
}
@media (max-width: 992px) {
  .about-page::before {
    border-radius: 0;
    top: 175px;
  }
}
.about-page::after {
  content: "";
  position: absolute;
  background: #0f2859;
  width: 200px;
  height: 30%;
  bottom: 0;
  right: 0;
  border-radius: 100px 0 0 0;
}
@media (max-width: 992px) {
  .about-page::after {
    display: none;
  }
}

.mission-area {
  margin: 80px 0 30px;
}
.mission-area .about-card {
  background: #FFFFFF;
  box-shadow: 0px 7px 20px rgba(187, 192, 205, 0.4);
  border-radius: 48px;
  padding: 100px 50px 50px;
  position: relative;
}
@media (max-width: 992px) {
  .mission-area .about-card {
    margin-bottom: 75px;
    padding-top: 75px;
  }
}
.mission-area .about-card .about-card-icon {
  background: #90c5f4;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -50px;
}
.mission-area .about-card .about-card-icon img {
  width: 50px;
}
.mission-area .about-card h3 {
  color: #0f2859;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.mission-area .about-card p {
  margin: 0;
  color: #0f2859;
  font-size: 1rem;
  line-height: 1.8;
}

.editores-area .editores-controllers button {
  background: none;
  border: none;
  padding: 0;
  margin: 0 2px;
  cursor: pointer;
  outline: none;
}
.editores-area .editores-controllers button img {
  width: 30px;
}
.editores-area .editores-list {
  padding: 25px 0;
}
.editores-area .editores-list .editor-out {
  padding: 5px;
}
.editores-area .editores-list .editor-out .editor-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  border-radius: 16px;
  padding: 30px 0;
}
.editores-area .editores-list .editor-out .editor-card:hover {
  box-shadow: 0px 7px 20px rgba(187, 192, 205, 0.4);
}
@media (max-width: 992px) {
  .editores-area .editores-list .editor-out .editor-card {
    box-shadow: 0px 7px 20px rgba(187, 192, 205, 0.4);
  }
}
.editores-area .editores-list .editor-out .editor-card .editor-image {
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  width: 150px;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 20px;
}
.editores-area .editores-list .editor-out .editor-card .editor-image img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.editores-area .editores-list .editor-out .editor-card h3 {
  font-size: 1.2rem;
  color: #0f2859;
  font-weight: 600;
}
.editores-area .editores-list .editor-out .editor-card p {
  font-size: 1rem;
  color: #0f2859;
  font-weight: 400;
  margin-bottom: 15px;
}
.editores-area .editores-list .editor-out .editor-card .editor-redes {
  display: flex;
  justify-content: center;
  align-items: center;
}
.editores-area .editores-list .editor-out .editor-card .editor-redes a {
  text-decoration: none;
  margin: 0 5px;
}
.editores-area .editores-list .editor-out .editor-card .editor-redes a img {
  width: 25px;
  transition: ease all 0.4s;
}
.editores-area .editores-list .editor-out .editor-card .editor-redes a:hover img {
  transform: scale(1.15);
}

footer {
  background: #011336;
  color: #fff;
  padding-top: 70px;
  margin-top: 120px;
}
footer h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
footer .button-footer {
  background: #90c5f4;
  color: #0f2859;
  width: fit-content;
  padding: 12px 20px;
  margin-top: 25px;
  border-radius: 12px;
}
footer .button-footer:visited {
  color: #0f2859;
}
footer .contato-footer ul {
  list-style: none;
  margin: 25px 0;
  padding: 0;
}
footer .contato-footer ul li {
  color: #fff;
  margin: 8px 0;
}
footer .contato-footer ul li img {
  height: 20px;
  margin-right: 10px;
}
footer .endereco-footer .end-content {
  margin: 25px 0;
  line-height: 2;
  font-size: 1rem;
}
footer .social-footer .social-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 25px 0;
}
footer .social-footer .social-list a {
  display: flex;
  background: #0f2859;
  width: 45px;
  height: 45px;
  margin-right: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
footer .social-footer .social-list a img {
  width: 25px;
}
footer .bottom-bar {
  padding: 20px 0;
  border-top: 1px solid #011A4A;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
footer .bottom-bar > * {
  text-decoration: none;
  color: #fff;
  margin: 0 5px;
  font-size: 0.8rem;
}
@media (max-width: 992px) {
  footer .bottom-bar > * {
    font-size: 0.6rem;
  }
}
footer .bottom-bar a {
  text-decoration: underline;
}
footer .bottom-bar a:hover {
  color: currentColor;
}
footer .bottom-bar a:visited {
  color: currentColor;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 9;
  bottom: 25px;
  left: 25px;
}
.slick-dots li {
  margin: 0 5px;
}
.slick-dots li button {
  padding: 0;
  background-color: #011A4A;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  font-size: 0;
  border: none;
  box-shadow: 1px 1px 2px #333;
  outline: none;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background: #90c5f4;
}

.pb-180 {
  padding-bottom: 180px !important;
}

.page-container .container {
  padding: 0 100px;
}
@media (max-width: 992px) {
  .page-container .container {
    padding: 0 15px;
  }
}

.page-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 1200/450;
  border-radius: 32px;
  overflow: hidden;
  margin: 30px 0;
}
@media (max-width: 992px) {
  .page-thumbnail {
    aspect-ratio: 12/7;
  }
}
.page-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.default-page h1 {
  text-align: center;
  margin: 40px 0 25px;
  font-size: 2rem;
  font-weight: 700;
  color: #212121;
}
@media (max-width: 992px) {
  .default-page h1 {
    margin: 25px 0 15px;
  }
}

.pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.pagination ul li {
  margin: 0 4px;
}
.pagination ul li > * {
  border-radius: 4px;
  display: flex;
  width: 25px;
  height: 30px;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.pagination ul li a {
  color: #616161;
  cursor: pointer;
}
.pagination ul li a:hover {
  background: #eeeeee;
  text-decoration: none;
}
.pagination ul li a.prev .arrow-left {
  background: none;
  width: 10px;
  height: 10px;
  border-top: 3px solid #616161;
  border-left: 3px solid #616161;
  transform: rotate(-45deg);
  margin-left: 5px;
}
.pagination ul li a.next .arrow-right {
  background: none;
  width: 10px;
  height: 10px;
  border-top: 3px solid #616161;
  border-right: 3px solid #616161;
  transform: rotate(45deg);
  margin-left: 5px;
}
.pagination ul li span {
  background: #0f2859;
  color: #fff;
}

html {
  display: block;
  max-width: 2000px;
  margin: auto;
}

body.menu-open::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
}

/*# sourceMappingURL=styles.css.map */
