main{
	margin-top: 100px;
}
h2 {
  color: var(--primary-800);
}

.carousel__items {
  display: grid !important;
  grid-auto-flow: column;
}

.carousel__item {
  transition: all 0.2s ease-in-out !important;
}

.dropdown {
  position: relative;
  display: inline-block;
  width: min(100%, 256px);
}
.dropdown-button {
  background-color: var(--secondary-600);
  color: var(--secondary-200);
  padding: 12px 10px;
  font-size: 1rem;
  border: 2px solid var(--secondary-300);
  cursor: pointer;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  gap: 4px;
  align-items: center;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.dropdown-button svg {
  margin: 0;
  padding: 0;
  height: 8px;
  transition: all 0.3s ease-in-out;
}
.dropdown:has(.dropdown-menu.open) .dropdown-button {
  color: #fff;
  border-radius: 8px 8px 0 0;
}
.dropdown:has(.dropdown-menu.open) .dropdown-button svg {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  z-index: 1;
  background-color: var(--secondary-600);
  list-style: none;
  margin: 0;
  padding: 0 12px 8px 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--secondary-300);
  border-top: 0;
  top: calc(100% - 2px);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  width: 100%;
  max-height: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.dropdown-menu.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  max-height: 500px;
}
.dropdown-item {
  padding: 8px;
  cursor: pointer;
  color: var(--primary-100);
  font-size: 1rem;
  border-top: 1px solid var(--secondary-300);
}
.dropdown-item.selected {
  background-color: var(--secondary-800);
}
.dropdown-item:hover {
  background-color: var(--secondary-300);
  color: var(--secondary-600);
}

.pagination ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  list-style-type: none;
  gap: 4px;
  justify-content: center;
}
.pagination ul li {
  width: 40px;
  height: 40px;
}
.pagination ul li a {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: .3s ease;
  color: #1666db;
}
.pagination ul li a[aria-disabled] {
  color: var(--neutral-400);
  cursor: default;
}
/* .pagination ul li a.pagination__page {
  color: var(--secondary-800);
} */
.pagination ul li a.pagination__page:not(.pagination__page--active):hover,
.pagination ul li .pagination__link:not([aria-disabled]):hover {
  color: var(--secondary-800);
  text-decoration: underline;
  font-weight: 700;
}
/* .pagination ul li a.pagination__page--edge {
  text-decoration: underline;
  color: var(--secondary-500);
  text-underline-offset: 4px;
} */
.pagination ul li a.pagination__page--edge:hover {
/*   color: var(--secondary-600) !important; */
  text-decoration: none;
}
.pagination ul li a.pagination__page--active {
  font-weight: 700;
  color: var(--secondary-800) !important;
  text-decoration: none;
}

.hero-bg{
  width: 100%;
  height: 304px;
  position: absolute;
/*   background: #062360; */
  background: #fff;
}

/* .carousel__item:before {
  background: linear-gradient(269deg, #062360 45.13%, rgb(5 26 64 / 0%) 101.28%);
    content: "";
    height: 100%;
    position: absolute;
    right: 195px;
    top: 0;
    width: 16%;
    z-index: 1;
}
.carousel__item:after{
    background: linear-gradient(90deg, #062360 45.13%, rgba(5, 26, 64, 0) 101.28%);
    content: "";
    height: 100%;
    left: 188px;
    position: absolute;
    top: 0;
    width: 16%;
} */

.hero-carousel .carousel {
  position: relative;
}
.hero-carousel .carousel__item {
  width: 100%;
	max-width: 100% !important;
  opacity: 0;
  transition: all 0.6s ease-in-out !important;
}
.hero-carousel .carousel__item.visible {
  opacity: 1;
}
.hero-carousel .carousel__item > a {
  display: block;
  width: 100%;
  text-decoration: none;
}
.hero-carousel .carousel__item > a img {
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  object-position: top;
}
.hero-carousel .carousel__item .carousel__snippet {
  display: flex;
}
.hero-carousel .carousel__item .carousel__snippet:not(.visible) {
  display: none;
}
.hero-carousel .carousel__controls {
  display: none !important;
}
.hero-carousel .carousel__timer {
  width: 100%;
  height: 5px;
  position: absolute;
  background-color: var(--primary-100);
  overflow: hidden;
  top:180px;
/*   top: 110px; */
  left: 0;
}
.hero-carousel .carousel__timer .carousel__timer--counter {
  width: 100%;
  max-width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, var(--gradient-full));
  border-radius: 0 4px 4px 0;
  animation: none;
  transition: 0.1s all ease-in-out;
}
.hero-carousel .carousel__timer .carousel__timer--counter.running {
  animation-name: timer;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transition: 0.1s all ease-in-out;
}
.hero-carousel .carousel .carousel__snippets {
  display: none;
  text-decoration: none;
}
.hero-carousel .carousel .carousel__snippets a {
  text-decoration: none;
  color: var(--secondary-600);
}
.hero-carousel .carousel .carousel__snippets a.link {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
}
.hero-carousel .carousel__snippet {
  flex-direction: column;
  gap: 0.3rem;
  padding: 22px 28px;
  cursor: default;
  justify-content: space-between;
}
.hero-carousel .carousel__snippet .snippet__category {
  color: var(--secondary-600);
  cursor:pointer;
}
.hero-carousel .carousel__snippet .title a {
  font-weight: 400;
  color: var(--neutral-800);
  transition: all 0.3s ease-in-out;
	text-decoration: none;
}

.hero-carousel .carousel__snippet.visible .title a {
  color: var(--primary-1000);
  font-weight: 700;
}
.hero-carousel .carousel__snippet:hover .title a {
  color: var(--secondary-800);
}
/* @media (max-width: 80em) {
  .hero-carousel .container {
    padding: 0;
  }
} */
@media (min-width: 80em) {
  .hero-carousel .carousel__timer {
   top:300px;
  }
  .hero-carousel .carousel__snippet .title{
    height: 72px;
    max-height: 84px;
  }
  .hero-carousel .carousel {
    position: relative;
  }
  .hero-carousel .carousel__item a img {
    height: 300px;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
     -o-object-fit: cover;
     object-fit: cover;
    }
  @keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

  .hero-carousel .carousel__item .carousel__snippet {
    display: none !important;
  }
  .hero-carousel .carousel__snippets {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 1rem;
    padding: 28px 28px;
  }
  .hero-carousel .carousel__snippets .carousel__snippet {
    display: flex;
    padding: 0;
  }
  .hero-carousel .carousel__snippets .carousel__snippet .link {
    padding-top: 0.5rem;
  }
  .hero-carousel .carousel__snippet:not(.visible) {
    display: flex;
    padding: 0;
  }
  .hero-carousel .carousel__timer {
    position: relative;
    top: 0;
    margin-top: -5px;
  }
}
@media (min-width: 1400px){
	.hero-carousel .carousel__item a img {
    height: 300px;
  }
}

@keyframes timer {
  0% {
    max-width: 0;
    border-radius: 0 4px 4px 0;
  }
  100% {
    max-width: 100%;
    border-radius: 0;
  }
}

.most-read {
  overflow: hidden;
}
.most-read .container {
	padding: 0;
}
.most-read__wrapper {
  position: relative;
  padding: 1rem;
  margin-bottom: 2rem;
}
.most-read__wrapper--bg {
  display: none;
}
.most-read .carousel {
  position: relative;
}
.most-read .carousel__items {
  display: grid !important;
  grid-auto-flow: column;
}
.most-read .carousel__controls {
  position: absolute;
  top: unset !important;
  bottom: -4rem;
  width: 100%;
}
.most-read__content {
  padding: 1rem;
  gap: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  border: 2px solid var(--secondary-500);
  border-radius: 12px;
}
.most-read__content a {
  text-decoration: none;
}
.most-read__content .title {
  color: var(--secondary-500);
}
.most-read__post {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.most-read__post > a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
.most-read__post > a:hover {
  color: var(--secondary-500);
}
.most-read__post > a:hover .most-read__post--title,
.most-read__post > a:hover .most-read__post--blurb {
  color: var(--secondary-500);
}
.most-read__post--title, .most-read__post--blurb {
  transition: all 0.3s ease-in-out;
}
.most-read__post--title {
  font-size: 1rem;
	color: var(--primary-100);
}
.most-read__post--blurb {
  color: var(--neutral-0);
  font-size: 0.875rem;
}
.most-read__post--info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 6px;
  color: var(--secondary-300);
  width: 100%;
  position: relative;
  align-items: center;
}
.most-read__post--info:before {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  border: 2px;
  background-color: var(--secondary-600);
  order: 2;
}
.most-read__post--author {
  display: flex;
  gap: 4px;
  font-size: 0.75rem;
  align-items: center;
  color: var(--secondary-300) !important;
  text-decoration: none;
  order: 1;
}
.most-read__post--author img {
  width: 20px;
  height: 20px;
  border-radius: 20px;
}
.most-read__post--link {
  color: var(--neutral-0) !important;
  font-weight: 700;
  order: 4;
}
.most-read__post--link:hover {
  color: var(--secondary-500) !important;
}
.most-read__post--reading-time {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  flex-grow: 1;
  order: 3;
}
.most-read__post--reading-time svg {
  width: 16px;
  height: 16px;
  margin: 0;
}
.most-read__image {
  display: none;
  position: relative;
}
.most-read__image img {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 0.3s ease-out;
}
.most-read__image--arrow {
  top: unset !important;
  bottom: 0;
  right: 0;
  left: unset !important;
}
.most-read__image--arrow:last-of-type {
  z-index: 2;
  right: 62px;
}
@media (min-width: 80em) {
  .hero-carousel .carousel__snippets {
    padding: 28px 0px;
  }
	.most-read .container {
		padding: 0 72px;
	}
  .most-read__wrapper {
    display: grid;
    grid-template-columns: 380px auto;
    gap: 2rem;
    padding: 0;
    margin-bottom: 0;
  }
  .most-read__wrapper--bg {
    display: block;
    position: absolute;
    top: 0;
    left: -164px;
    width: 500px;
    height: 100%;
    z-index: 0;
    -webkit-mask-image: url("//3299491.fs1.hubspotusercontent-na1.net/hubfs/3299491/raw_assets/public/Rebranding-23/2-blog/blog-b2b/modules/mais-lidos/v1-0523/assets/most-read-bg-mask.svg");
            mask-image: url("//3299491.fs1.hubspotusercontent-na1.net/hubfs/3299491/raw_assets/public/Rebranding-23/2-blog/blog-b2b/modules/mais-lidos/v1-0523/assets/most-read-bg-mask.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
    mix-blend-mode: screen;
    filter: blur(6px);
  }
  .most-read__content {
    border: none;
    padding: 4rem 0;
  }
  .most-read .carousel__items {
    max-width: 720px;
    gap: 0 32px !important;
  }
  .most-read .carousel__controls {
    display: none !important;
  }
  .most-read__image {
    display: block;
  }
  .most-read__post {
    min-width: 342px;
    padding-bottom: 20px;
  }
  .most-read__post:first-of-type {
    grid-column: 1/2;
    grid-row: 2/4;
		height: fit-content;
  }
  .most-read__post:first-of-type .most-read__post--title {
    font-size: 24px;
  }
  .most-read__post:nth-of-type(2) {
    grid-column: 2/3;
    grid-row: 2/3;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-500);
  }
  .most-read__post:nth-of-type(3) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}

.blog-nl {
  position: relative;
}
.blog-nl__bg {
  position: absolute;
  z-index: 0;
  width: min(50%, 600px);
  height: 100%;
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left -150px;
     object-position: left -150px;
  mix-blend-mode: hard-light;
  opacity: 0.3;
}
.blog-nl .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.blog-nl__titles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog-nl__titles p {
  color: var(--text-color-secondary);
}
@media (min-width: 80em) {
  .blog-nl__bg {
    -o-object-position: left -360px;
       object-position: left -360px;
  }
  .blog-nl .container {
    grid-template-rows: auto;
    grid-template-columns: 390px auto;
  }
  .blog-nl form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
/*     gap: 0.5rem 1rem; */
    gap: 0 1rem;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .blog-nl form .hs_submit {
    grid-row: 1/2;
    grid-column: 3/4;
  }
  .blog-nl form .hs_submit input {
    margin-top: 0 !important;
  }
  .blog-nl form .inputs-list {
    margin-top: 0;
  }
}

.contents {
  overflow-x: hidden;
  position: relative;
}
.contents:before {
  bottom: 50px;
  content: "";
  height: 190px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 0;
  background-image: url(https://3299491.fs1.hubspotusercontent-na1.net/hubfs/3299491/raw_assets/public/Rebranding-23/0-base/files/images/bg-dot.png);
  background-repeat: repeat;
  opacity: 0.5;
}
.contents .container {
  position: relative;
  z-index: 1;
}
.contents__titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.contents.posts-by-category .content-card__tag {
  margin-top: -2rem !important;
}
.contents.posts-by-category .content-card__text {
  padding: 1rem;
}
.contents.posts-by-category .reading-time__clock,
.contents.posts-by-category .link__arrow {
  display: block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s all ease-in-out;
}
.contents.posts-by-category .reading-time__clock {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxMyAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuODYxNTcgMTEuMjc3OEM0LjEwNjU3IDExLjI3NzggMS44NjE1NyA5LjAzMjgzIDEuODYxNTcgNi4yNzc4M0MxLjg2MTU3IDMuNTIyODMgNC4xMDY1NyAxLjI3NzgzIDYuODYxNTcgMS4yNzc4M0M5LjYxNjU3IDEuMjc3ODMgMTEuODYxNiAzLjUyMjgzIDExLjg2MTYgNi4yNzc4M0MxMS44NjE2IDkuMDMyODMgOS42MTY1NyAxMS4yNzc4IDYuODYxNTcgMTEuMjc3OFpNNi44NjE1NyAyLjI3NzgzQzQuNjU2NTcgMi4yNzc4MyAyLjg2MTU3IDQuMDcyODMgMi44NjE1NyA2LjI3NzgzQzIuODYxNTcgOC40ODI4MyA0LjY1NjU3IDEwLjI3NzggNi44NjE1NyAxMC4yNzc4QzkuMDY2NTcgMTAuMjc3OCAxMC44NjE2IDguNDgyODMgMTAuODYxNiA2LjI3NzgzQzEwLjg2MTYgNC4wNzI4MyA5LjA2NjU3IDIuMjc3ODMgNi44NjE1NyAyLjI3NzgzWiIgZmlsbD0iIzYzNkI2RSIvPgo8cGF0aCBkPSJNOC4zNjE0NSA4Ljc3NzgzQzguMjExNDUgOC43Nzc4MyA4LjA2MTQ1IDguNzA3ODMgNy45NjE0NSA4LjU3NzgzTDYuNDYxNDUgNi41Nzc4M0M2LjM5NjQ1IDYuNDkyODMgNi4zNjE0NSA2LjM4NzgzIDYuMzYxNDUgNi4yNzc4M1YzLjI3NzgzQzYuMzYxNDUgMy4wMDI4MyA2LjU4NjQ1IDIuNzc3ODMgNi44NjE0NSAyLjc3NzgzQzcuMTM2NDUgMi43Nzc4MyA3LjM2MTQ1IDMuMDAyODMgNy4zNjE0NSAzLjI3NzgzVjYuMTEyODNMOC43NjE0NSA3Ljk3NzgzQzguOTI2NDUgOC4xOTc4MyA4Ljg4MTQ1IDguNTEyODMgOC42NjE0NSA4LjY3NzgzQzguNTcxNDUgOC43NDc4MyA4LjQ2NjQ1IDguNzc3ODMgOC4zNjE0NSA4Ljc3NzgzWiIgZmlsbD0iIzYzNkI2RSIvPgo8L3N2Zz4K);
}
.contents.posts-by-category .link__arrow {
  height: 13px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDkgMTUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xLjM2MTU3IDEuNzc3ODNMNy4zNjE1NyA3Ljc3NzgzTDEuMzYxNTcgMTMuNzc3OCIgc3Ryb2tlPSIjMTY2NkRCIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K);
}
.contents.posts-by-category a:hover .link__arrow {
  transform: translateX(4px);
}
.contents.latest-posts:before {
  content: unset;
}
.contents.latest-posts .contents__titles {
  flex-direction: row;
  margin-bottom: 2rem;
  justify-content: space-between;
}
.contents.latest-posts .contents__titles h3 {
  display: none;
  color: var(--primary-800);
	text-align: center;
}
.contents.latest-posts .contents__titles a {
  display: inline-flex;
  align-items: center;
  color: var(--secondary-600);
  font-size: 0.875rem;
  justify-self: flex-end;
  gap: 0.25rem;
}
.contents.latest-posts .contents__titles a svg {
  margin: 0;
  padding: 0;
  height: 14px;
  width: 14px;
}
.contents .content-card {
  display: grid;
  grid-template-rows: 133px auto;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--secondary-300);
}
.contents .content-card:hover .content-card__text {
  background: var(--secondary-100);
}
.contents .content-card:hover span.link--animated svg,
.contents .content-card:hover span.link--animated img {
  transform: translateX(4px);
}
.contents .content-card:hover span.link--animated:before {
  width: 100%;
}
.contents .content-card img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: 1px solid var(--secondary-300);
}
.contents .content-card__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--neutral-0);
  color: var(--neutral-800);
  padding: 0 1rem 1rem 1rem;
  transition: all ease-in-out 0.6s;
}
.contents .content-card__text h3 {
  color: var(--primary-1000);
}
.contents .content-card__text p {
  color: var(--neutral-800);
  flex-grow: 1;
  font-size: 0.875rem;
}
.contents .content-card__text span.link {
  color: var(--secondary-600);
}
.contents .content-card__text span.link svg {
  height: 16px;
}
.contents .content-card__tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px 16px !important;
  gap: 10px;
  font-size: 12px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -1rem;
  text-align: center;
  background-color: var(--secondary-600);
  border-radius: 2rem;
  color: var(--neutral-0);
  text-decoration: none;
  transition: .3s ease;
}
.contents .content-card__tag:hover, .contents .content-card__tag:focus-visible {
  background-color: var(--secondary-800);
}
.contents .content-card__info {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  position: relative;
  align-items: center;
}
.contents .content-card__info:before {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  border: 2px;
  background-color: var(--secondary-600);
  order: 2;
}
.contents .content-card__info .reading-time {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  flex-grow: 1;
  order: 3;
}
.contents .content-card__info .reading-time svg {
  width: 15px;
  height: 15px;
  margin: 0;
}
.contents .content-card__author {
  display: flex;
  gap: 4px;
  align-items: center;
  color: var(--secondary-300) !important;
  text-decoration: none;
  order: 1;
}
.contents .content-card__author:hover {
  color: var(--secondary-600) !important;
}
.contents .content-card__author .author-name {
  font-size: 0.75rem !important;
}
.contents .content-card__author img {
  width: 20px;
  height: 20px;
  border-radius: 20px;
}
.contents .carousel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.contents .carousel__container {
  overflow: visible;
}
.contents .carousel__controls {
  grid-row: 2/3;
  max-width: 48em;
}
.contents .carousel__controls button svg {
  color: var(--secondary-600);
  filter: unset;
}
.contents .carousel__controls button:hover svg, .contents .carousel__controls button:focus-visible svg {
  color: var(--secondary-800);
}
.contents .carousel__controls button:active svg {
  color: var(--secondary-300);
}
.contents .carousel__items {
  flex-wrap: nowrap;
  transition: all ease-in-out 0.6s;
}
.contents .carousel__item {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  transition: 0.3s ease-in-out;
}
.contents .carousel__item:not(.visible) {
  opacity: 0;
}
.contents .carousel__item.visible + .carousel__item {
  opacity: 1;
}
.contents .carousel__bullets input:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--primary-1000);
  top: 0;
  left: 0;
  border-radius: 50%;
  transition: all ease-in-out 0.6s;
}
.contents .carousel__bullets input:checked:before {
  background-color: var(--secondary-600);
}
.contents__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 40em) {
  .contents .carousel__controls {
    max-width: unset;
  }
  .contents .carousel__item {
    justify-content: center;
    width: 100%;
  }
}
@media (min-width: 80em) {
  .contents__wrapper {
    display: grid;
		grid-template-areas:
        "n n n sf"
        "n n n sl"
        "n n n empty"
        "n n n empty";
    }
    gap: 1rem;
    width: 100%;
  }
	.contents__wrapper::after {
    content: "";
    grid-area: empty;
}
  .contents .content-card--selected .content-card__text {
    background: var(--primary-800);
    color: var(--neutral-0);
  }
  .contents .content-card--selected .content-card__text h3,
  .contents .content-card--selected .content-card__text p,
  .contents .content-card--selected .content-card__text .link {
    color: var(--neutral-0);
  }
  .contents .content-card--selected .content-card__text h3 svg,
  .contents .content-card--selected .content-card__text p svg{
    color: var(--secondary-600);
  }
	.contents .content-card--selected .content-card__text .link,
	.contents .content-card--selected .content-card__text .link svg {
    color: var(--neutal-0);
  }
  .contents .content-card--selected:hover .content-card__text {
    background: var(--secondary-800);
  }
  .contents .content-card--selected:nth-last-of-type(2) {
    grid-area: sf;
  }
  .contents .content-card--selected:last-of-type {
    grid-area: sl;
  }
  .contents__titles {
    flex-direction: row;
    justify-content: space-between;
  }
  .contents.latest-posts .contents__titles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .contents.latest-posts .contents__titles h2 {
    grid-column: 1/3;
  }
  .contents.latest-posts .contents__titles h3 {
    display: block;
  }
  .contents .carousel {
    flex-direction: column;
    gap: 1rem;
  }
  .contents .carousel__container {
    overflow: hidden;
  }
  .contents .carousel__controls {
    max-width: unset;
    height: 2rem;
  }
}

.banner-bullets {
  padding-top: 20px;
  overflow-y: hidden;
}
.banner-bullets__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
}
.banner-bullets__img {
  width: 100%;
  height: 160px;
  position: relative;
}
.banner-bullets__img img {
  position: absolute;
}
.banner-bullets__img .img__person {
  height: calc(100% + 20px);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.banner-bullets__img .img__arrow {
  width: 120%;
  left: -30%;
  top: 50%;
  transform: translateY(-50%);
}
.banner-bullets__img .img__bg1 {
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.banner-bullets__img .img__bg2 {
  display: none;
}
.banner-bullets__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 1rem;
}
.banner-bullets__content h2 {
  color: var(--primary-100);
}
.banner-bullets__content p {
  font-size: 0.875rem;
}
.banner-bullets__content h2,
.banner-bullets__content p {
  text-align: center;
}
.banner-bullets__content a.btn {
  width: 100%;
}
.banner-bullets__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 0;
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.banner-bullets__list li {
  padding-left: 20px;
  position: relative;
  font-size: 0.875rem;
}
.banner-bullets__list li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxOCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuNDk5NTggMTMuNzQ2OEM2LjI1NzkxIDEzLjc0NjggNi4wMjQ1OCAxMy42Mzc5IDUuODY2MjUgMTMuNDUzN0wwLjg2NjI0OCA3LjU5MjM1QzAuNTY2MjQ4IDcuMjQwNjYgMC42MDc5MTUgNi43MTMxMyAwLjk1NzkxNSA2LjQxMTY5QzEuMzA3OTEgNi4xMTAyNSAxLjgzMjkyIDYuMTUyMTMgMi4xMzI5MiA2LjUwMzgxTDYuNDk5NTggMTEuNjE5OUwxNS44NjYyIDAuNjQyNDMyQzE2LjE2NjIgMC4yOTA3NDkgMTYuNjkxMiAwLjI0ODg2OSAxNy4wNDEyIDAuNTUwMzEyQzE3LjM5MTIgMC44NTE3NTQgMTcuNDMyOSAxLjM3OTI4IDE3LjEzMjkgMS43MzA5Nkw3LjEzMjkyIDEzLjQ1MzdDNi45NzQ1OCAxMy42Mzc5IDYuNzQxMjUgMTMuNzQ2OCA2LjQ5OTU4IDEzLjc0NjhaIiBmaWxsPSIjNUM5RUZGIi8+Cjwvc3ZnPgo=);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 42em) {
  .banner-bullets .container {
    padding: 0;
  }
}
@media (min-width: 80em) {
  .banner-bullets__wrapper {
    display: grid;
    grid-template-columns: 400px auto;
  }
  .banner-bullets__img {
    position: relative;
    height: 100%;
  }
  .banner-bullets__img .img__arrow {
    width: 170%;
    right: -20px;
    left: unset;
  }
  .banner-bullets__img .img__bg1 {
    height: 80%;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .banner-bullets__img .img__bg2 {
    display: block;
    height: 80%;
    width: 100%;
    left: -100%;
    top: 50%;
    transform: translateY(-50%);
  }
  .banner-bullets__content {
    padding: 2rem;
    align-items: flex-start;
  }
  .banner-bullets__content h2,
  .banner-bullets__content p {
    text-align: left;
  }
  .banner-bullets__content a.btn {
    max-width: 256px;
  }
}

/* .cta-products-card {
  background: linear-gradient(180deg, var(--neutral-0) 100px, var(--primary-1000) 100px);
  padding-top: 2rem;
  position: relative;
	overflow: hidden;
}
.cta-products-card:before {
  content: "";
  width: 50%;
  height: 6px;
  background: var(--secondary-500);
  position: absolute;
  left: 0;
  top: 97px;
  z-index: 1;
}
.cta-products-card .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 3;
  position: relative;
}
.cta-products-card .container:before {
  content: "";
  width: 100%;
  height: 6px;
  background: var(--secondary-500);
  position: absolute;
  left: 0;
  top: 65px;
  z-index: -1;
}
.cta-products-card .container:after {
  content: "";
  width: 21px;
  height: 31px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAyMSAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuNTE2IDMxLjU4MjRMMC45MDY0OTQgMjYuOTcyOEwxMS43ODAxIDE2LjA5OTNMMC45MDY0OTQgNS4yMjQ3NEw1LjUxNiAwLjYxNTIzNEwyMS4wMDAxIDE2LjA5OTNMNS41MTYgMzEuNTgyNFoiIGZpbGw9IiM1QzlFRkYiLz4KPC9zdmc+Cg==);
  position: absolute;
  right: -7px;
  top: 52px;
}
.cta-products-card__card {
  border-radius: 12px;
  background-color: var(--primary-100);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cta-products-card__card a {
  color: var(--secondary-600);
}
.cta-products-card__products-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.cta-products-card__product {
  position: relative;
  list-style-type: none;
  width: 120px;
  justify-self: center;
}
.cta-products-card__product img {
  width: 100%;
  transition: 0.3s all ease-in-out;
  transform-origin: top center;
  -o-object-fit: contain;
     object-fit: contain;
}
.cta-products-card__product a {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-products-card__product a .product__face img {
  transform: scale(1.3);
}
.cta-products-card__product.product--rs {
  --product-bg: var(--energia-700);
}
.cta-products-card__product.product--adm {
  --product-bg: var(--papaia-700);
}
.cta-products-card__product.product--edcorp {
  --product-bg: var(--bandeira-700);
}
.cta-products-card__product.product--ce {
  --product-bg: var(--magenta-700);
}
.cta-products-card__product .product__wrapper {
  position: relative;
}
.cta-products-card__product .product__face {
  position: relative;
  z-index: 2;
  border-radius: 0 0 60px 60px;
  height: 139px;
  overflow: hidden;
}
.cta-products-card__product .product__face img {
  height: 100%;
}
.cta-products-card__product .product__bg {
  position: absolute;
  border-radius: 50%;
  background-color: var(--product-bg);
  z-index: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.cta-products-card__product .product__bg:before {
  content: "";
  width: 100%;
  height: 50%;
  background: url(https://3299491.fs1.hubspotusercontent-na1.net/hubfs/3299491/raw_assets/public/Rebranding-23/0-base/files/images/bg-dot.png);
  filter: invert(1) contrast(10);
  background-position: top left;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (min-width: 80em) {
  .cta-products-card {
    padding-top: 4rem;
    background: linear-gradient(180deg, var(--neutral-0) 200px, var(--primary-1000) 200px);
  }
  .cta-products-card:before {
    top: 197px;
  }
  .cta-products-card .container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
    position: relative;
  }
  .cta-products-card .container:before {
    top: 133px;
  }
  .cta-products-card .container:after {
    right: -7px;
    top: 120px;
  }
  .cta-products-card__card {
    width: 390px;
    padding: 2rem;
    gap: 20px;
  }
  .cta-products-card__products-list {
    display: flex;
    gap: 1rem;
  }
  .cta-products-card__product {
    width: 154px;
  }
  .cta-products-card__product a .product__face img {
    transform: scale(1);
  }
  .cta-products-card__product a:hover .product__face img {
    transform: scale(1.3);
  }
  .cta-products-card__product .product__face {
    border-radius: 0 0 77px 77px;
    height: 174px;
  }
  .cta-products-card__product .product__face img {
    height: 100%;
  }
} */


@media (min-width: 80em){
	.footer-form__canvas {
		left: -40px;
		top: -3px;
	}
}

/*  LISTAGENS */

.hero-listing .container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
}
.hero-listing__imgs {
  position: relative;
  width: 100%;
  height: 160px;
}
.hero-listing__imgs img,
.hero-listing__imgs canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-listing__imgs .hero-listing__person {
  -o-object-position: bottom;
     object-position: bottom;
}
.hero-listing__imgs .hero-listing__bg {
  display: none;
}
.hero-listing__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 0 0 0;
	z-index: 1;
}
.hero-listing__content p {
  flex-grow: 1;
}
.hero-listing__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
	align-items: center;
}
.hero-listing__buttons svg {
  margin: 0;
}
.hero-listing__buttons .btn--secondary {
  background: var(--secondary-100);
  color: var(--secondary-800);
  border: 0;
}
.hero-listing__buttons .btn--secondary:hover {
  background: var(--secondary-200);
}
@media (min-width: 80em) {
  .hero-listing .container {
    display: grid;
    grid-template-columns: 450px 1fr;
  }
  .hero-listing__imgs {
    height: 100%;
  }
  .hero-listing__imgs .hero-listing__bg {
    display: block;
    mix-blend-mode: color-dodge;
    width: 130%;
    left: unset;
    right: -20%;
  }
  .hero-listing__content {
    align-items: unset;
    text-align: left;
    padding: 4rem 0;
  }
  .hero-listing__buttons {
    margin-top: 28px;
    flex-direction: row;
    gap: 20px;
  }
}

.hottest-tag {
  overflow: hidden;
}
.hottest-tag__wrapper {
  position: relative;
  padding: 1rem;
  margin-bottom: 2rem;
}
.hottest-tag__wrapper--bg {
  display: none;
}
.hottest-tag .carousel {
  position: relative;
}
.hottest-tag .carousel__items {
  display: grid !important;
  grid-auto-flow: column;
}
.hottest-tag .carousel__controls {
  position: absolute;
  top: unset !important;
  bottom: -4rem;
  width: 100%;
}
.hottest-tag__content {
  padding: 1rem;
  gap: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  border: 2px solid var(--secondary-500);
  border-radius: 12px;
}
.hottest-tag__content a {
  text-decoration: none;
}
.hottest-tag__content .title {
  color: var(--secondary-500);
}
.hottest-tag__post {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hottest-tag__post > a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
.hottest-tag__post > a:hover {
  color: var(--secondary-500);
}
.hottest-tag__post > a:hover .hottest-tag__post--title,
.hottest-tag__post > a:hover .hottest-tag__post--blurb {
  color: var(--secondary-500);
}
.hottest-tag__post--title, .hottest-tag__post--blurb {
  transition: all 0.3s ease-in-out;
}
.hottest-tag__post--title{
  color: var(--primary-100);
}
.hottest-tag__post--blurb {
  color: var(--neutral-0);
  font-size: 0.875rem;
}
.hottest-tag__post--info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 6px;
  color: var(--secondary-300);
  width: 100%;
  position: relative;
  align-items: center;
}
.hottest-tag__post--author {
  display: flex;
  gap: 4px;
  font-size: 0.75rem;
  align-items: center;
  color: var(--secondary-300) !important;
  text-decoration: none;
  order: 1;
}
.hottest-tag__post--author img {
  width: 20px;
  height: 20px;
  border-radius: 20px;
}
.hottest-tag__post--link {
  color: var(--neutral-0) !important;
  font-weight: 700;
  order: 4;
}
.hottest-tag__post--link:hover {
  color: var(--secondary-500) !important;
}
.hottest-tag__post--reading-time {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  flex-grow: 1;
  order: 3;
}
.hottest-tag__post--reading-time svg {
  width: 16px;
  height: 16px;
  margin: 0;
}
.hottest-tag__image {
  display: none;
  position: relative;
}
.hottest-tag__image img {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 0.3s ease-out;
}
.hottest-tag__image--arrow {
  top: unset !important;
  bottom: 0;
  right: 0;
  left: unset !important;
}
.hottest-tag__image--arrow:last-of-type {
  z-index: 2;
  right: 62px;
}
@media (min-width: 80em) {
  .hottest-tag__wrapper {
    display: grid;
    grid-template-columns: auto 380px;
    gap: 2rem;
    padding: 0;
    margin-bottom: 0;
  }
  .hottest-tag__wrapper--bg {
    display: block;
    position: absolute;
    top: 0;
    left: -164px;
    width: 500px;
    height: 100%;
    z-index: 0;
    -webkit-mask-image: url("../img/hottest-tag-bg-mask.svg");
            mask-image: url("../img/hottest-tag-bg-mask.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
    mix-blend-mode: screen;
    filter: blur(6px);
  }
  .hottest-tag__content {
    border: none;
    padding: 2rem 0;
  }
  .hottest-tag .carousel__items {
    max-width: 720px;
    gap: 0 32px !important;
  }
  .hottest-tag .carousel__controls {
    display: none !important;
  }
  .hottest-tag__image {
    display: block;
  }
  .hottest-tag__post {
    min-width: 342px;
    padding-bottom: 20px;
  }
}