.tsw-top-socials {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.tsw-social-link {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9999px;
  color: white;
  box-shadow: 0 5px 16px rgb(0 0 0 / .18);
  transition: filter .2s ease, transform .2s ease;
}

.tsw-social-link--instagram {
  background: linear-gradient(135deg, #833ab4, #e1306c 52%, #f77737);
}

.tsw-social-link--linkedin {
  background: #0a66c2;
}

.tsw-social-link:hover,
.tsw-social-link:focus-visible {
  color: white;
  filter: brightness(1.08);
  transform: translateY(-1px);
  outline: 2px solid white;
  outline-offset: 2px;
}

.tsw-social-link svg {
  display: block !important;
  width: 1rem !important;
  min-width: 1rem !important;
  max-width: 1rem !important;
  height: 1rem !important;
  min-height: 1rem !important;
  max-height: 1rem !important;
  flex: 0 0 1rem !important;
}

.tsw-lead-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgb(218 115 75 / .3), transparent 32%),
    linear-gradient(120deg, #152e2b, #0a1514);
  border-block: 1px solid rgb(255 255 255 / .08);
  color: white;
}

.tsw-lead-banner__inner {
  width: min(100% - 3rem, 80rem);
  margin-inline: auto;
  padding-block: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.tsw-lead-banner__eyebrow {
  margin: 0 0 .35rem;
  color: var(--color-primary);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.tsw-lead-banner h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.tsw-lead-banner p {
  margin: .55rem 0 0;
  color: rgb(255 255 255 / .7);
  font-size: .92rem;
}

.tsw-lead-banner__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 3rem;
  padding: .85rem 1.4rem;
  border-radius: 9999px;
  background: #25d366;
  color: #071b10;
  font-size: .875rem;
  font-weight: 800;
  box-shadow: 0 14px 35px rgb(37 211 102 / .18);
  transition: transform .2s ease, filter .2s ease;
}

.tsw-lead-banner__cta:hover,
.tsw-lead-banner__cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  outline: 2px solid white;
  outline-offset: 3px;
}

.tsw-lead-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgb(0 0 0 / .66);
  backdrop-filter: blur(3px);
}

.tsw-lead-popup {
  position: relative;
  width: min(36rem, calc(100vw - 2rem));
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / .13);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 100% 0%, rgb(42 140 127 / .3), transparent 42%),
    #0d1716;
  color: white;
  box-shadow: 0 24px 70px rgb(0 0 0 / .52);
  animation: tsw-popup-in .32s ease-out both;
}

.tsw-lead-popup__content {
  padding: 2rem;
  text-align: center;
}

.tsw-lead-popup__close {
  position: absolute;
  top: .7rem;
  right: .7rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / .12);
  border-radius: 9999px;
  color: rgb(255 255 255 / .72);
  font-size: 1.25rem;
  line-height: 1;
}

.tsw-lead-popup__close:hover,
.tsw-lead-popup__close:focus-visible {
  border-color: var(--color-primary);
  color: white;
  outline: none;
}

.tsw-lead-popup__eyebrow {
  margin: 0 2.25rem .45rem;
  color: var(--color-primary);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.tsw-lead-popup h2 {
  margin: 0 auto;
  max-width: 29rem;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.tsw-desktop-break {
  display: none;
}

@media (min-width: 769px) {
  .tsw-desktop-break {
    display: inline;
  }
}

.tsw-lead-popup p {
  margin: .65rem auto 0;
  max-width: 31rem;
  color: rgb(255 255 255 / .68);
  font-size: .83rem;
  line-height: 1.55;
}

.tsw-lead-popup__cta {
  display: flex;
  width: 100%;
  min-height: 3rem;
  margin-top: 1.05rem;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 9999px;
  background: #25d366;
  color: #071b10;
  font-size: .84rem;
  font-weight: 800;
  transition: transform .2s ease, filter .2s ease;
}

.tsw-lead-popup__cta:hover,
.tsw-lead-popup__cta:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-1px);
  outline: 2px solid white;
  outline-offset: 2px;
}

.tsw-lead-popup svg,
.tsw-lead-popup__cta svg {
  display: block !important;
  width: 1.1rem !important;
  min-width: 1.1rem !important;
  max-width: 1.1rem !important;
  height: 1.1rem !important;
  min-height: 1.1rem !important;
  max-height: 1.1rem !important;
  flex: 0 0 1.1rem !important;
}

@keyframes tsw-popup-in {
  from {
    opacity: 0;
    transform: translateY(1rem) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tsw-article-date {
  margin-top: .75rem;
  color: rgb(255 255 255 / .48);
  font-size: .8rem;
}

.tsw-new-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: .65rem;
  padding: .28rem .6rem;
  border: 1px solid rgb(42 140 127 / .65);
  border-radius: 9999px;
  background: rgb(42 140 127 / .16);
  color: #67d8c9;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1;
}

.tsw-article-body h2 {
  margin-top: 2rem;
  margin-bottom: .7rem;
  color: white;
  font-size: 1.35rem;
  font-weight: 800;
}

.tsw-article-body h3 {
  margin-top: 1.35rem;
  margin-bottom: .45rem;
  color: white;
  font-size: 1.05rem;
  font-weight: 750;
}

.tsw-article-body p,
.tsw-article-body li {
  line-height: 1.6;
}

.tsw-article-body p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.tsw-article-body p + p {
  margin-top: 1rem;
}

.tsw-article-body ul,
.tsw-article-body ol {
  margin: .8rem 0 1.15rem 1.2rem;
  display: grid;
  gap: .55rem;
}

.tsw-article-body ul {
  list-style: disc;
}

.tsw-article-body ol {
  list-style: decimal;
}

.tsw-article-body a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tsw-source-note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / .1);
  color: rgb(255 255 255 / .55);
  font-size: .78rem;
  text-align: left !important;
}

main article > h1 {
  text-transform: none !important;
}

.tsw-article-body h2,
.tsw-article-body h3 {
  text-align: left;
  text-transform: none;
}

.tsw-blog-new {
  position: relative;
  border-color: rgb(218 115 75 / .55) !important;
}

.tsw-blog-new::before {
  content: "Novo";
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .28rem .6rem;
  border-radius: 9999px;
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.tsw-privacy-note {
  margin-top: .8rem;
  color: rgb(255 255 255 / .48);
  font-size: .7rem;
  line-height: 1.55;
}

.tsw-privacy-note a {
  color: rgb(255 255 255 / .75);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .tsw-top-socials--desktop {
    display: none;
  }

  .tsw-top-socials--mobile {
    margin-left: auto;
    margin-right: .35rem;
  }

  .tsw-social-link {
    width: 2rem;
    height: 2rem;
  }

  .tsw-lead-banner__inner {
    width: min(100% - 2rem, 80rem);
    padding-block: 1.65rem;
    align-items: stretch;
    flex-direction: column;
  }

  .tsw-lead-banner__cta {
    width: 100%;
  }

  .tsw-lead-popup-backdrop {
    display: flex;
    align-items: flex-end;
    padding: .75rem;
    background: rgb(0 0 0 / .58);
  }

  .tsw-lead-popup {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-height: min(26rem, calc(100dvh - 1.5rem));
    border-radius: 1.25rem;
  }

  .tsw-lead-popup__content {
    padding: 1.15rem;
  }

  .tsw-lead-popup h2 {
    padding-right: 1.5rem;
    font-size: 1.08rem;
  }

  .tsw-lead-popup p {
    font-size: .78rem;
  }

  .tsw-article-body p {
    text-align: left;
    hyphens: none;
  }
}

@media (min-width: 768px) {
  .tsw-top-socials--mobile {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tsw-social-link,
  .tsw-lead-banner__cta,
  .tsw-lead-popup,
  .tsw-lead-popup__cta {
    transition: none;
    animation: none;
  }
}
