.blog-page {
  background: var(--color-off-white);
}
.blog-hero {
  padding: 62px 0 66px;
}
.blog-hero:before {
  background-position: right -160px top -210px;
  background-size: 1360px auto;
}
.blog-hero h1 {
  max-width: 980px;
  font-size: clamp(2.65rem, 5vw, 3.25rem);
  letter-spacing: 0;
}
.blog-hero .section-kicker {
  color: var(--color-forest);
  font-size: 1rem;
  font-weight: 900;
}
.blog-hero .lead {
  display: none;
}
.blog-page .trilha-suporte,
.blog-post-page .trilha-suporte {
  background: var(--color-white);
  border-bottom: 1px solid rgba(1, 82, 88, 0.1);
}
.blog-page .conteudo-trilha-suporte,
.blog-post-page .conteudo-trilha-suporte {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  color: rgba(51, 49, 50, 0.68);
  font-size: 0.92rem;
  white-space: nowrap;
}
.blog-page .trilha-suporte a,
.blog-page .trilha-suporte span,
.blog-post-page .trilha-suporte a,
.blog-post-page .trilha-suporte span {
  display: inline-flex;
  align-items: center;
}
.blog-page .trilha-suporte a,
.blog-post-page .trilha-suporte a {
  color: var(--color-forest);
  font-weight: 800;
}
.blog-page .trilha-suporte a:first-child:before,
.blog-post-page .trilha-suporte a:first-child:before {
  width: 16px;
  height: 16px;
  margin-right: 7px;
  background: var(--color-spearmint);
  clip-path: polygon(
    50% 6%,
    94% 42%,
    82% 42%,
    82% 94%,
    58% 94%,
    58% 62%,
    42% 62%,
    42% 94%,
    18% 94%,
    18% 42%,
    6% 42%
  );
  content: "";
}
.blog-page .trilha-suporte a:after,
.blog-post-page .trilha-suporte a:after {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-top: 2px solid rgba(1, 82, 88, 0.28);
  border-right: 2px solid rgba(1, 82, 88, 0.28);
  content: "";
  transform: rotate(45deg);
}
.blog-tools {
  padding: 26px 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
}
.blog-tools-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 320px);
  gap: 16px;
  align-items: center;
}
.blog-search {
  display: flex;
  min-width: 0;
  border: 1px solid rgba(1, 82, 88, 0.22);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}
.blog-search input {
  width: 100%;
  padding: 0 18px;
  color: var(--color-off-black);
  outline: 0;
}
.blog-search button,
.blog-search input,
.blog-select {
  min-height: 48px;
  border: 0;
  font: inherit;
}
.blog-search button {
  padding: 0 20px;
  color: #061f25;
  background: var(--color-spearmint);
  cursor: pointer;
  font-weight: 800;
}
.blog-select {
  width: 100%;
  padding: 0 18px;
  border: 1px solid rgba(1, 82, 88, 0.22);
  border-radius: 999px;
  color: var(--color-forest);
  background: #fff;
  cursor: pointer;
}
.blog-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.blog-tag-row a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 5px 11px;
  border: 1px solid rgba(1, 82, 88, 0.18);
  border-radius: 999px;
  color: var(--color-forest);
  background: var(--color-off-white);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: capitalize;
}
.blog-listing {
  padding: 70px 0 86px;
}
.blog-listing-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 30px;
}
.blog-listing-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--color-forest);
}
.blog-count {
  color: var(--color-muted);
  font-weight: 700;
  white-space: nowrap;
}
.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.blog-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(1, 82, 88, 0.14);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 16px 42px rgba(7, 38, 43, 0.08);
}
.blog-card-image {
  position: relative;
  display: block;
  aspect-ratio: 16/8.4;
  overflow: hidden;
  background: #dceeee;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.18s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.035);
}
.blog-card-image:after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 25, 30, 0.1), rgba(4, 25, 30, 0.82)),
    linear-gradient(90deg, rgba(4, 25, 30, 0.86), rgba(4, 25, 30, 0.36));
  content: "";
}
.blog-card-cover-content {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  display: grid;
  gap: 10px;
  padding: 22px 22px 14px;
  color: var(--color-white);
}
.blog-card-cover-content h3 {
  margin: 0;
  color: var(--color-white);
  font-size: 1.08rem;
  line-height: 1.34;
}
.blog-card-cover-content h3 a {
  color: inherit;
}
.blog-card-cover-content .blog-card-category {
  color: var(--color-spearmint);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 12px;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 700;
}
.blog-card-category {
  color: var(--color-forest);
}
.blog-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}
.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 16px;
}
.blog-card-tags a {
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--color-forest);
  background: #e9fbf8;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: capitalize;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
}
.blog-read-link {
  color: var(--color-forest);
  font-weight: 800;
  white-space: nowrap;
}
.blog-read-link:after {
  margin-left: 7px;
  color: var(--color-spearmint);
  content: ">";
}
.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 38px;
}
.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(1, 82, 88, 0.18);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-forest);
  font-weight: 800;
}
.blog-pagination .is-current {
  color: #061f25;
  border-color: var(--color-spearmint);
  background: var(--color-spearmint);
}
.blog-empty {
  padding: 34px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
}
@media (max-width: 900px) {
  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .blog-page,
  .blog-page * {
    min-width: 0;
  }
  .blog-hero {
    padding: 52px 0 56px;
  }
  .blog-card-grid,
  .blog-tools-grid {
    grid-template-columns: 1fr;
  }
  .blog-count,
  .blog-listing-heading {
    display: block;
  }
  .blog-count {
    margin-top: 10px;
    white-space: normal;
  }
  .blog-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-card-footer a,
  .blog-tools-grid button,
  .blog-tools-grid input,
  .blog-tools-grid select {
    width: 100%;
  }
}
.blog-post-page {
  background: var(--color-off-white);
}
.blog-post-hero {
  position: relative;
  isolation: isolate;
  padding: 62px 0 66px;
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(6, 223, 199, 0.16),
      transparent 32%
    ),
    radial-gradient(
      circle at 16% 54%,
      rgba(127, 169, 180, 0.18),
      transparent 36%
    ),
    linear-gradient(135deg, #03262d, #015258 58%, #07373e);
}
.blog-post-hero:before {
  background:
    linear-gradient(90deg, rgba(1, 82, 88, 0.86), rgba(1, 82, 88, 0.46)),
    var(--blog-post-image, none) center / cover no-repeat;
  opacity: 0.52;
}
.blog-post-hero:after,
.blog-post-hero:before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
}
.blog-post-hero:after {
  background: url(/assets/img/bgs/bg-pattern-secondary-light-2400.svg)
    right -160px top -210px/1360px auto repeat;
  opacity: 0.12;
  pointer-events: none;
}
.blog-post-hero .container {
  position: relative;
  z-index: 1;
}
.blog-post-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 18px;
  color: hsla(0, 0%, 100%, 0.74);
  font-weight: 800;
}
.blog-post-kicker a {
  color: var(--color-spearmint);
}
.blog-post-hero h1 {
  max-width: 980px;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: clamp(2.15rem, 4vw, 3.25rem);
}
.blog-post-hero .lead {
  max-width: 820px;
  margin-bottom: 24px;
  color: hsla(0, 0%, 100%, 0.84);
}
.blog-share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.blog-share span {
  margin-right: 4px;
  color: hsla(0, 0%, 100%, 0.74);
  font-weight: 800;
}
.blog-print-button,
.blog-share a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid hsla(0, 0%, 100%, 0.26);
  border-radius: 999px;
  color: var(--color-white);
  background: hsla(0, 0%, 100%, 0.08);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}
.blog-print-button:hover,
.blog-share a:hover {
  color: #061f25;
  background: var(--color-spearmint);
}
.blog-post-section {
  padding: 68px 0 86px;
}
.blog-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 52px;
  align-items: start;
}
.blog-post-main,
.blog-post-sidebar-card {
  border: 1px solid rgba(1, 82, 88, 0.14);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 16px 42px rgba(7, 38, 43, 0.08);
}
.blog-post-main {
  min-width: 0;
  padding: clamp(24px, 4vw, 46px);
}
.blog-post-content {
  color: #333132;
  font-size: 1.06rem;
  line-height: 1.72;
}
.blog-post-content > :first-child {
  margin-top: 0;
}
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
  margin: 34px 0 14px;
  color: var(--color-forest);
  line-height: 1.16;
}
.blog-post-content h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
}
.blog-post-content h3 {
  font-size: 1.45rem;
}
.blog-post-content li,
.blog-post-content p {
  color: #4b5358;
}
.blog-post-content a {
  color: var(--color-forest);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.blog-post-content ol,
.blog-post-content ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding-left: 1.45rem;
}
.blog-post-content ul {
  list-style: disc outside;
}
.blog-post-content ol {
  list-style: decimal outside;
}
.blog-post-content ul ul {
  list-style-type: circle;
}
.blog-post-content ol ol,
.blog-post-content ul ol {
  list-style-type: lower-alpha;
}
.blog-post-content li::marker {
  color: var(--color-forest);
  font-weight: 900;
}
.blog-post-content img {
  max-width: 100%;
  height: auto;
  margin: 10px 0 22px;
  border-radius: 8px;
}
.blog-post-content .img-estilo-1 {
  float: right;
  width: min(356px, 44%);
  margin: 2px 0 22px 28px;
}
.blog-post-content img[src*="Learn-More"],
.blog-post-content img[title="Você Sabia?"] {
  display: inline-block;
  float: none;
  width: 54px;
  height: 54px;
  margin: 0 12px 0 0;
  -o-object-fit: contain;
  object-fit: contain;
  vertical-align: middle;
}
.blog-post-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}
.blog-post-content td,
.blog-post-content th {
  padding: 12px 14px;
  border: 1px solid rgba(1, 82, 88, 0.16);
  vertical-align: top;
}
.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--color-line);
}
.blog-post-tags a,
.blog-topic-link {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--color-forest);
  background: #e9fbf8;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: capitalize;
}
.blog-post-sidebar {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 18px;
}
.blog-post-sidebar-card {
  padding: 24px;
}
.blog-post-sidebar-card h2,
.blog-post-sidebar-card h3 {
  margin-bottom: 12px;
  color: var(--color-forest);
  font-size: 1.3rem;
}
.blog-sidebar-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-sidebar-list a {
  color: var(--color-off-black);
  font-weight: 700;
  line-height: 1.35;
}
.blog-sidebar-list a:hover {
  color: var(--color-forest);
}
.blog-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 940px) {
  .blog-post-layout {
    grid-template-columns: 1fr;
  }
  .blog-post-sidebar {
    position: static;
  }
}
@media (max-width: 640px) {
  .blog-post-page,
  .blog-post-page * {
    min-width: 0;
  }
  .blog-post-hero {
    padding: 52px 0 58px;
  }
  .blog-post-section {
    padding: 42px 0 64px;
  }
  .blog-post-content .img-estilo-1 {
    float: none;
    width: 100%;
    margin-left: 0;
  }
  .blog-share {
    align-items: stretch;
  }
  .blog-share span {
    flex: 1 1 100%;
  }
  .blog-print-button,
  .blog-share a {
    flex: 1 1 calc(50% - 8px);
  }
}
@media print {
  .blog-post-sidebar,
  .blog-share,
  .rodape-site,
  .cabecalho-site,
  .trilha-suporte {
    display: none !important;
  }
  .blog-post-main,
  .blog-post-page {
    background: #fff;
    box-shadow: none;
    border: 0;
  }
}
