* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Source Sans 3", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #FFFFFF;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 19px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: #FFEFEB;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 62.4375rem;
  transition: 0.3s ease-out;
  border: none;
  text-transform: uppercase;
}
@media screen and (max-width: 33.75rem) {
  .button {
    font-size: 1.125rem;
  }
}

.button__small {
  padding: 9.5px 16px;
  font-weight: 600;
}

.mobile-content {
  display: none !important;
}
@media screen and (max-width: 33.75rem) {
  .mobile-content {
    display: inherit !important;
  }
}

.desktop-content {
  display: inherit;
}
@media screen and (max-width: 33.75rem) {
  .desktop-content {
    display: none !important;
  }
}

.main__blog {
  margin-top: 10rem;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
  position: relative;
}
.main__blog::after {
  content: "";
  width: 11.4375rem;
  height: 13.375rem;
  position: absolute;
  right: 0;
  top: 80%;
  z-index: -1;
  background-image: url("../../imgs/blogV2/destaque-main.svg");
  background-size: contain;
}
@media screen and (max-width: 48rem) {
  .main__blog::after {
    display: none;
  }
}
.main__blog .main__blog__container {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
@media screen and (max-width: 64rem) {
  .main__blog .main__blog__container {
    justify-content: center;
  }
}
.main__blog .main__blog__img1 {
  align-self: flex-start;
  position: relative;
}
.main__blog .main__blog__img1::before {
  content: "";
  width: 5rem;
  height: 5rem;
  position: absolute;
  left: -0.375rem;
  bottom: 0;
  z-index: -1;
  background-image: url("../../imgs/blogV2/destaque-img1.svg");
  background-position: contain;
}
@media screen and (max-width: 64rem) {
  .main__blog .main__blog__img1 {
    display: none;
  }
}
.main__blog .main__blog__img2 {
  align-self: flex-end;
  position: relative;
}
.main__blog .main__blog__img2::before {
  content: "";
  width: 5.77375rem;
  height: 5rem;
  position: absolute;
  left: -0.5rem;
  top: -1.25rem;
  z-index: -1;
  background-image: url("../../imgs/blogV2/destaque-img2.svg");
  background-position: contain;
}
@media screen and (max-width: 64rem) {
  .main__blog .main__blog__img2 {
    display: none;
  }
}
.main__blog .main__blog__article {
  overflow: hidden;
}
.main__blog .main__blog__article .main__blog__article__info {
  margin-bottom: 1.5rem;
}
.main__blog .main__blog__article .main__blog__article__info h1 {
  margin-bottom: 0.5rem;
  color: #181F32;
  text-align: center;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 2.90625rem;
  text-transform: uppercase;
}
.main__blog .main__blog__article .main__blog__article__info p {
  max-width: 20.5rem;
  margin: 0 auto;
  color: #181F32;
  text-align: center;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 2.4375rem;
}
.main__blog .main__blog__article .main__blog__article__nav ul {
  padding: 0.5rem;
  display: flex;
  background-color: #FFF;
  border-radius: 62.4375rem;
  border: 1px solid #E5F2FF;
}
@media screen and (max-width: 48rem) {
  .main__blog .main__blog__article .main__blog__article__nav ul {
    width: 100%;
    overflow-y: hidden;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }
}
.main__blog .main__blog__article .main__blog__article__nav ul li {
  flex-shrink: 0;
}
.main__blog .main__blog__article .main__blog__article__nav ul a {
  padding: 0.62rem 1rem;
  display: block;
  color: #181F32;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6875rem;
  border-radius: 62.4375rem;
  transition: 0.3s;
}
@media screen and (max-width: 48rem) {
  .main__blog .main__blog__article .main__blog__article__nav ul a {
    scroll-snap-align: center;
  }
}
.main__blog .main__blog__article .main__blog__article__nav ul a:hover {
  background-color: rgba(0, 184, 248, 0.4);
}
.main__blog .main__blog__article .main__blog__article__nav ul .active {
  background-color: rgba(0, 184, 248, 0.4);
  pointer-events: none;
}

.section__blog {
  margin-bottom: 1.5rem;
  padding: 0 1.5rem;
}
.section__blog .section__blog__container {
  max-width: 81.5rem;
  margin: 0 auto;
}
.section__blog .section__blog__container > h1 {
  margin-bottom: 1rem;
  color: #181F32;
  font-size: 1.625rem;
  font-weight: 600;
}
@media screen and (max-width: 48rem) {
  .section__blog .section__blog__container > h1 {
    text-align: center;
  }
}
.section__blog .section__blog__flex {
  display: flex;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 48rem) {
  .section__blog .section__blog__flex {
    justify-content: center;
  }
}

.section__pagination {
  width: 100%;
  margin-top: 0.875rem;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.section__pagination a {
  padding: 0.5rem;
  display: block;
  color: #181F32;
  font-size: 1rem;
  font-weight: 400;
}
.section__pagination .current {
  padding: 0.5rem 1rem;
  background-color: #99E3FC;
  border-radius: 0.5rem;
  font-weight: 600;
}
.section__pagination .prev, .section__pagination .next {
  padding: 0.4rem 0.54rem !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent !important;
}

.card-blog {
  flex: 1 1 18rem;
  max-width: 18.875rem;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
  display: block;
  background-color: #FFF;
  border-radius: 1rem;
  border: 1px solid #E5F2FF;
  transition: 0.3s;
}
.card-blog:hover {
  border: 1px solid #cde6ff;
}
.card-blog:hover .card-blog__img img {
  transform: scale(1.1);
}
.card-blog .card-blog__img {
  max-width: 17.875rem;
  max-height: 10.5625rem;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid #E5F2FF;
}
.card-blog .card-blog__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 16/9;
  transition: 0.3s;
}
.card-blog .card-blog__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  height: calc(100% - 10.380625rem);
  margin: 0.5rem 1rem 0 1rem;
}
@media screen and (max-width: 33.75rem) {
    .card-blog .card-blog__info {
      height: auto;
    }
}
.card-blog .card-blog__info > h2 {
  color: #181F32;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.card-blog .card-blog__info .card-blog__info__detalhes {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.card-blog .card-blog__info .card-blog__info__detalhes p {
  color: #181F32;
  font-size: 0.8125rem;
  font-weight: 400;
}
.card-blog .card-blog__info .card-blog__info__detalhes .card-blog__info__detalhes__min {
  position: relative;
  display: flex;
  gap: 0.375rem;
  align-items: center;
}
.card-blog .card-blog__info .card-blog__info__detalhes .card-blog__info__detalhes__min::before, .card-blog .card-blog__info .card-blog__info__detalhes .card-blog__info__detalhes__min::after {
  content: "";
  width: 0.125rem;
  height: 0.125rem;
  background-color: #181F32;
  border-radius: 50%;
}
.card-blog .card-blog__info .card-blog__info__detalhes .card-blog__info__detalhes__autor {
  font-weight: 700;
}
.card-blog .card-blog__info .card-blog__categoria {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.card-blog .card-blog__info .card-blog__categoria p {
  padding: 0.16rem 1rem;
  background-color: rgba(215, 190, 255, 0.4);
  color: #000;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.6875rem;
  border-radius: 62.4375rem;
}
.paginacao{
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    flex-shrink: 0;
}
.paginacao .nav-previous a, 
.paginacao .nav-next a {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #FF6138;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.875rem;
}

.paginacao .nav-previous svg
.paginacao .nav-next svg{
    flex-shrink: 0;
}
@media screen and (max-width: 33.75rem) {
    .paginacao{
        justify-content: center;
        gap: 28px;
    }
    .paginacao .nav-previous a, 
    .paginacao .nav-next a {
        font-size: 1.125rem;
        gap: 10px;
    }
    .paginacao .nav-previous svg,
    .paginacao .nav-next svg{
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }
}
.newsletterIframe iframe{
height:160px!important;
}
@media screen and (max-width:68.75rem){
.newsletterIframe iframe{height:220px!important}
}
@media screen and (max-width:48rem){
.newsletterIframe iframe{height:300px!important}
}
.footer {
  padding: 40px 48px 0px 48px;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 64rem) {
  .footer {
    padding: 40px 24px 0px 24px;
  }
}
@media screen and (max-width: 48rem) {
  .footer {
    background-size: contain;
    background-position: bottom;
  }
}
.footer .footer__container {
  max-width: 1290px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 64rem) {
  .footer .footer__container {
    gap: 30px;
  }
}
@media screen and (max-width: 48rem) {
  .footer .footer__container {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 33.75rem) {
  .footer .footer__container {
    flex-direction: column;
  }
}
.footer .footer__redessociais {
  flex-shrink: 0;
}
.footer .footer__redessociais p {
  margin-top: 16px;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5625rem;
}
.footer .footer__redessociais small {
  margin: 16px 0;
  display: block;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
}
.footer .footer__redessociais .footer__redessociais__lista {
  display: flex;
  gap: 16px;
}
.footer .footer__redessociais .footer__redessociais__lista a {
  display: block;
}
.footer .footer__navlinks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 80rem) {
  .footer .footer__navlinks {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 64rem) {
  .footer .footer__navlinks {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 48rem) {
  .footer .footer__navlinks {
    order: 3;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 33.75rem) {
  .footer .footer__navlinks {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer .footer__navlinks .footer__navlinks__items p {
  margin-bottom: 8px;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.875rem;
}
.footer .footer__navlinks .footer__navlinks__items a {
  color: #FFFFFF;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.875rem;
}
@media screen and (max-width: 33.75rem) {
  .footer .footer__map {
    order: 3 !important;
  }
}
.footer .footer__map .footer__map__items {
  margin-bottom: 24px;
}
.footer .footer__map .footer__map__items p {
  margin-bottom: 4px;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.875rem;
}
.footer .footer__map .footer__map__items small {
  color: #FFFFFF;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.footer .footer__map .footer__map__container {
  width: 100%;
  height: 237px;
  background-color: #FFFFFF;
}
.footer .footer__copy {
  margin: 45px 0 23px 0;
}
.footer .footer__copy .footer__copy__lista {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer .footer__copy .footer__copy__info {
  margin-top: 16px;
  text-align: center;
  color: #FFFFFF;
}
.footer .footer__copy .footer__copy__info a {
  color: #FFFFFF;
  text-decoration: underline;
}
.footer--laranja {
  background-color: #FF6138;
  background-image: url("../../imgs/home/footer-hero-banner.png");
}