@charset "UTF-8";
.hide-br-mobile br {
  display: none;
}
@media (min-width: 1024px) {
  .hide-br-mobile br {
    display: inline;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: relative;
  width: 100%;
  z-index: 50;
  font-family: "Poppins", sans-serif;
}

.header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: headerSlideDown 0.3s ease forwards;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.header.is-sticky .header__bar {
  background: #FFFFFF;
  backdrop-filter: saturate(180%) blur(8px);
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header__bar {
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 1024px) {
  .header__container {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
@media (min-width: 1280px) {
  .header__container {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.header__logo img {
  display: block;
  height: 27px;
  width: auto;
}

.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1280px) {
  .header__nav-list {
    gap: 21px;
  }
}

.header__nav-link {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #1D3C55;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: normal;
}
@media (min-width: 1280px) {
  .header__nav-link {
    font-size: 16px;
  }
}
.header__nav-link:hover .header__nav-indicator {
  opacity: 1;
  transform: scaleX(1);
}
.header__nav-link--active {
  font-weight: 500;
}
.header__nav-link--active .header__nav-indicator {
  opacity: 1;
  transform: scaleX(1);
}

.header__nav-indicator {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 21px;
  height: 4px;
  border-radius: 100px;
  background: linear-gradient(to right, #63F1BE, #5CF6DA, #46DBEF);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s, transform 0.3s;
}

.header__actions {
  display: none;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1024px) {
  .header__actions {
    display: flex;
  }
}
@media (min-width: 1280px) {
  .header__actions {
    gap: 16px;
  }
}

.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  text-decoration: none;
  height: 46px;
  padding: 0 22px;
  border-radius: 100px;
  white-space: nowrap;
}
@media (min-width: 1280px) {
  .header__btn {
    font-size: 16px;
    padding: 0 32px;
  }
}
.header__btn--outline {
  border: 1px solid #63F1BE;
  color: #1D3C55;
  font-weight: 400;
  background: transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.header__btn--outline:hover {
  background: #63F1BE;
  border-color: #63F1BE;
  color: #FFFFFF;
}

.header__lang {
  position: relative;
}

.header__lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
}
.header__lang-toggle img {
  width: 32px;
  height: 32px;
}

.header__lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 140px;
  z-index: 60;
}
.header__lang-dropdown.is-open {
  display: block;
}
.header__lang-dropdown li a {
  display: block;
  padding: 8px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1D3C55;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.header__lang-dropdown li a:hover {
  background: #F5F6FB;
  color: #2CB7C0;
}
.header__lang-dropdown li a.is-active {
  font-weight: 600;
  color: #2CB7C0;
}

.header__dropdown {
  position: relative;
}

.header__dropdown-toggle {
  cursor: pointer;
}

.header__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 220px;
  z-index: 60;
}
.header__dropdown-menu.is-open {
  display: block;
}
.header__dropdown-menu li a {
  display: block;
  padding: 8px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1D3C55;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.header__dropdown-menu li a:hover {
  background: #F5F6FB;
  color: #2CB7C0;
}

.header__mobile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1024px) {
  .header__mobile-actions {
    display: none;
  }
}

.header__lang--mobile {
  display: block;
}
@media (min-width: 1024px) {
  .header__lang--mobile {
    display: none;
  }
}

.header__mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 60;
}
@media (min-width: 1024px) {
  .header__mobile-toggle {
    display: none;
  }
}
.header__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1D3C55;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.header__mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header__mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  background: #FFFFFF;
  box-shadow: 0 53px 64px rgba(0, 0, 0, 0.07);
  z-index: 40;
}
.mega-menu.is-open {
  display: block;
}

.mega-menu__container {
  display: flex;
  min-height: 430px;
}

.mega-menu__sidebar {
  width: 270px;
  flex-shrink: 0;
  background: #F5F6FB;
  padding: 45px 35px;
}

.mega-menu__sidebar-tab {
  display: block;
  width: 100%;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #7296B4;
  background: none;
  border: none;
  text-transform: uppercase;
  line-height: 30px;
  padding: 12px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mega-menu__sidebar-tab:hover {
  color: #2CB7C0;
}
.mega-menu__sidebar-tab.is-active {
  font-size: 18px;
  font-weight: 700;
  color: #2CB7C0;
}

.mega-menu__sidebar-divider {
  border: none;
  border-top: 1px solid rgb(223.1428571429, 226.3285714286, 242.2571428571);
  margin: 12px 0;
  width: 200px;
}

.mega-menu__panel {
  display: none;
}
.mega-menu__panel.is-active {
  display: flex;
}

.mega-menu__content {
  flex: 1;
  padding: 45px 50px;
  flex-direction: column;
}

.mega-menu__header {
  margin-bottom: 30px;
}

.mega-menu__title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2CB7C0;
  line-height: 30px;
  margin: 0 0 8px;
}

.mega-menu__desc {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 30px;
  margin: 0;
}

.mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  flex: 1;
}
.mega-menu__columns--5 {
  grid-template-columns: repeat(5, 1fr);
}
.mega-menu__columns--3 {
  grid-template-columns: repeat(3, 1fr);
}
.mega-menu__columns--4-flat {
  display: flex;
  gap: 40px;
  flex: 0;
}

.mega-menu__column-title {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2CB7C0;
  text-transform: uppercase;
  line-height: 30px;
  margin: 0 0 4px;
}

.mega-menu__column-desc {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 20px;
  margin: 0;
}
.mega-menu__column-desc strong {
  font-weight: 600;
}

.mega-menu__column-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-menu__column-list li {
  line-height: 32px;
}
.mega-menu__column-list a {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #1D3C55;
  text-decoration: none;
  transition: color 0.2s;
}
.mega-menu__column-list a:hover {
  color: #2CB7C0;
}
.mega-menu__column-list a.font-medium {
  font-weight: 500;
}

.mega-menu__flat-link {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #1D3C55;
  text-decoration: none;
  line-height: 32px;
  transition: color 0.2s;
}
.mega-menu__flat-link:hover {
  color: #2CB7C0;
}
.mega-menu__flat-link--bold {
  font-weight: 500;
}

.mega-menu__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 30px;
}

.mega-menu__stats {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 30px;
  margin: 0;
}
.mega-menu__stats strong {
  font-weight: 700;
  color: #2CB7C0;
}

.mega-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
  background: #34CDD7;
  border: 2px solid #34CDD7;
  border-radius: 100px;
  padding: 14px 40px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.mega-menu__cta:hover {
  background: #2CB7C0;
  border-color: #2CB7C0;
}
.mega-menu__cta--dark {
  background: #1D3C55;
  border-color: #1D3C55;
}
.mega-menu__cta--dark:hover {
  background: #34CDD7;
  border-color: #34CDD7;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #FFFFFF;
  z-index: 45;
  padding: 100px 24px 40px;
  overflow-y: auto;
}
.mobile-menu.is-open {
  display: block;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu__link {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #1D3C55;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid #F5F6FB;
}

.mobile-menu__group {
  border-bottom: 1px solid #F5F6FB;
}
.mobile-menu__group summary {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #1D3C55;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
}
.mobile-menu__group summary::-webkit-details-marker {
  display: none;
}

.mobile-menu__logo {
  position: absolute;
  top: 1.5rem;
}

.mobile-menu__submenu {
  padding: 1rem 0 16px 0.6rem;
}

.mobile-menu__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2CB7C0;
  text-transform: uppercase;
  margin: 16px 0 4px;
}
.mobile-menu__subtitle:first-child {
  margin-top: 0;
}
.mobile-menu__subtitle a {
  color: inherit;
  text-decoration: none;
}

.mobile-menu__sublink {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #1D3C55;
  text-decoration: none;
  padding: 6px 0;
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.mobile-menu__actions .header__btn {
  width: 100%;
  text-align: center;
}

.cta-vendas {
  padding: 60px 24px 80px;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-vendas {
    padding: 80px 70px 100px;
  }
}

.cta-vendas__container {
  max-width: 1440px;
  margin: 0 auto;
}

.cta-vendas__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 16px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .cta-vendas__title {
    font-size: 40px;
  }
}

.cta-vendas__desc {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #7296B4;
  line-height: 28px;
  margin: 0 auto 32px;
  max-width: 600px;
}
@media (min-width: 768px) {
  .cta-vendas__desc {
    font-size: 18px;
  }
}

.cta-vendas__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1D3C55;
  text-decoration: none;
  background: linear-gradient(to right, #63F1BE, #5CF6DA, #46DBEF);
  border: none;
  border-radius: 100px;
  height: 56px;
  padding: 0 40px;
  transition: opacity 0.2s;
}
.cta-vendas__btn:hover {
  opacity: 0.85;
}

.footer {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  font-family: "Poppins", sans-serif;
}

.footer__inner {
  position: relative;
  z-index: 2;
  padding-top: 40px;
}
@media (min-width: 1024px) {
  .footer__inner {
    padding-top: 66px;
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 0;
}
@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 0 20px;
  }
}

@media (min-width: 1024px) {
  .footer__col:last-child {
    display: flex;
    flex-direction: column;
  }
}

.by2op {
  margin-top: auto;
  font-size: 13px;
  font-weight: 300;
}

.footer__col-title {
  font-size: 14px;
  font-weight: 600;
  color: #7296B4;
  line-height: 24px;
  margin: 0 0 12px;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__links li {
  line-height: 1.2;
  margin-bottom: 1rem;
}
.footer__links a {
  font-size: 13px;
  font-weight: 300;
  color: #1D3C55;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover {
  color: #2CB7C0;
}
.footer__links--teal a {
  font-weight: 600;
  color: #2CB7C0;
}
.footer__links--teal a:hover {
  color: #34CDD7;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 36px 0 42px;
}
@media (min-width: 1024px) {
  .footer__socials {
    padding: 40px 0 42px;
  }
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 100px;
  background: rgba(29, 60, 85, 0.06);
  transition: background 0.2s;
  flex-shrink: 0;
}
.footer__social:hover {
  background: #34CDD7;
}
.footer__social:hover img {
  filter: brightness(999);
}
.footer__social img {
  display: block;
}
.footer__social--accent {
  background: transparent;
  padding: 0;
  overflow: hidden;
  border-radius: 50%;
}
.footer__social--accent img {
  width: 42px;
  height: 42px;
}

.footer__watermark {
  position: relative;
  width: 100%;
  pointer-events: none;
}

.footer__watermark-glow,
.footer__watermark-glow-2 {
  position: absolute;
  top: -100px;
  left: -5%;
  right: -5%;
  height: 400px;
  filter: blur(128px);
  border-radius: 578px;
  opacity: 0.7;
  z-index: 0;
  background: var(--degrade-03, linear-gradient(180deg, #46DBEF 100%, rgba(99, 241, 190, 0) 90.84%));
}

.footer__watermark-glow-2 {
  top: 10rem;
  background: linear-gradient(180deg, #46DBEF 100%, rgba(99, 241, 190, 0) 91%);
}

.footer__watermark-img {
  display: block;
  width: 100vw;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

main {
  overflow-x: hidden;
}

.hero {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  padding-top: 32px;
}
@media (min-width: 1024px) {
  .hero {
    padding-top: 40px;
  }
}

.hero__container {
  position: relative;
}
@media (min-width: 1024px) {
  .hero__container {
    min-height: 540px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .hero__container {
    min-height: 629px;
  }
}

.hero__content {
  position: relative;
  z-index: 4;
}
@media (min-width: 1024px) {
  .hero__content {
    width: 50%;
    padding-right: 24px;
  }
}
@media (min-width: 1280px) {
  .hero__content {
    width: 55%;
    padding-right: 32px;
  }
}

.hero__label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .hero__label {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1280px) {
  .hero__label {
    font-size: 18px;
  }
}

.hero__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #285783;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0;
}
@media (min-width: 640px) {
  .hero__title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 42px;
    line-height: 1.2;
  }
}
@media (min-width: 1280px) {
  .hero__title {
    font-size: 56px;
    line-height: 1.2;
  }
}
.hero__title--highlight {
  display: block;
  font-weight: 700;
  color: #34CDD7;
}

.hero__shape {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .hero__shape {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0;
    width: 50%;
    height: 100%;
    justify-content: flex-end;
    align-items: flex-start;
  }
}
@media (min-width: 1280px) {
  .hero__shape {
    width: 50%;
  }
}
.hero__shape img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
}
@media (min-width: 1024px) {
  .hero__shape img {
    max-width: none;
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    object-position: right top;
  }
}
@media (min-width: 1280px) {
  .hero__shape img {
    max-height: 686px;
  }
}

.hero__description {
  margin-top: 32px;
  max-width: 509px;
}
@media (min-width: 1024px) {
  .hero__description {
    margin-top: 40px;
    max-width: 420px;
  }
}
@media (min-width: 1280px) {
  .hero__description {
    margin-top: 48px;
    max-width: 509px;
  }
}
.hero__description p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #285783;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 1280px) {
  .hero__description p {
    font-size: 16px;
  }
}
.hero__description p + p {
  margin-top: 16px;
}

.stats {
  position: relative;
  background: #FFFFFF;
  padding: 30px 0 0;
}
@media (min-width: 1024px) {
  .stats {
    padding: 80px 0 0;
  }
}

.stats__title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 48px;
  max-width: 1168px;
}
@media (min-width: 768px) {
  .stats__title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .stats__title {
    font-size: 44px;
    line-height: 1.4;
    margin-bottom: 60px;
  }
}
@media (min-width: 1280px) {
  .stats__title {
    font-size: 53.18px;
  }
}
.stats__title strong {
  font-weight: 700;
}

.stats__grid {
  display: grid;
  gap: 40px 20px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: 1fr 1fr;
    max-width: max-content;
    gap: 40px 40px;
  }
}
@media (min-width: 1024px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
  }
}

.stats__item {
  display: flex;
  align-items: flex-end;
  position: relative;
  gap: 0;
}

.stats__icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 50%;
  margin: auto;
}
.stats__icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .stats__icon img {
    max-height: 125px;
  }
}
@media (min-width: 1280px) {
  .stats__icon img {
    max-height: 180px;
  }
}

.stats__text {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  margin: auto;
}
@media (min-width: 1024px) {
  .stats__text {
    flex-grow: 0;
    flex-shrink: 0;
  }
}

.stats__number {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1D3C55;
  line-height: 30px;
}
@media (min-width: 1024px) {
  .stats__number {
    font-size: 40px;
  }
}

.stats__unit {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1D3C55;
  line-height: 30px;
}
@media (min-width: 1024px) {
  .stats__unit {
    font-size: 22px;
  }
}

.stats__desc {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 1.2;
}
@media (min-width: 1280px) {
  .stats__desc {
    font-size: 22px;
  }
}

.stats__divider {
  height: 2px;
  background: linear-gradient(to right, #63F1BE, #5CF6DA, #46DBEF);
  border: none;
  margin: 0;
}
.stats__divider--left {
  width: 50%;
  margin-left: 0;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .stats__divider--left {
    width: 640px;
  }
}
.stats__divider--right {
  width: 50%;
  margin-left: auto;
  margin-right: 0;
}
@media (min-width: 1024px) {
  .stats__divider--right {
    width: 640px;
  }
}

.stats__marquee {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}
.stats__marquee::before, .stats__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.stats__marquee::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF, transparent);
}
.stats__marquee::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF, transparent);
}

.stats__marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.stats__marquee-track img {
  flex-shrink: 0;
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}
@media (min-width: 1024px) {
  .stats__marquee-track img {
    height: 50px;
  }
}
.stats__marquee-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.tasy {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  padding: 40px 0 60px;
}
@media (min-width: 1024px) {
  .tasy {
    padding: 60px 0 60px;
  }
}

.tasy__container {
  position: relative;
}
@media (min-width: 1280px) {
  .tasy__container {
    min-height: 775px;
  }
}

.tasy__badge {
  display: inline-block;
  background: #F56516;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 100px;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .tasy__badge {
    font-size: 16px;
    padding: 12px 32px;
  }
}

.tasy__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.15;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .tasy__title {
    font-size: 44px;
    line-height: 60px;
  }
}
@media (min-width: 1280px) {
  .tasy__title {
    font-size: 53.18px;
  }
}
.tasy__title strong {
  font-weight: 700;
}

.tasy__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 1.5;
  margin: 0 0 32px;
  max-width: 469px;
}
@media (min-width: 1024px) {
  .tasy__subtitle {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.tasy__subtitle strong {
  font-weight: 700;
}

.tasy__media {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .tasy__media {
    position: absolute;
    top: 60px;
    right: 30px;
  }
}
@media (min-width: 1024px) {
  .tasy__media {
    top: 60px;
    right: 70px;
    margin-bottom: 0;
  }
}

.tasy__photo {
  position: relative;
  width: 70%;
  border-radius: 140px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .tasy__photo {
    width: 220px;
  }
}
@media (min-width: 1024px) {
  .tasy__photo {
    width: 331px;
    height: 158px;
  }
}
.tasy__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tasy__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #63F1BE, #5CF6DA, #46DBEF);
  mix-blend-mode: color;
  opacity: 0.4;
  border-radius: inherit;
}

.tasy__logo {
  overflow: hidden;
  flex-shrink: 0;
  width: 30%;
}
@media (min-width: 768px) {
  .tasy__logo {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 1024px) {
  .tasy__logo {
    width: 122px;
    height: 122px;
  }
}
.tasy__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tasy__bottom {
  position: relative;
}

.tasy__big-text {
  position: absolute;
  top: -40px;
  left: -10px;
  font-family: "Inter", "Poppins", sans-serif;
  font-size: 180px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 30px;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .tasy__big-text {
    font-size: 280px;
    letter-spacing: 50px;
  }
}
@media (min-width: 1024px) {
  .tasy__big-text {
    font-size: 380px;
    letter-spacing: 70px;
    top: -60px;
    left: -17px;
  }
}
@media (min-width: 1280px) {
  .tasy__big-text {
    font-size: 453px;
    letter-spacing: 90px;
  }
}

.tasy__gradient-box {
  position: relative;
  margin-top: 2rem;
  z-index: 2;
}
.tasy__gradient-box img {
  width: 100%;
}

.tasy__card {
  z-index: 3;
  width: 100%;
  padding: 24px 28px;
  background: rgba(99, 241, 190, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.7px solid rgba(255, 255, 255, 0.4);
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .tasy__card {
    width: calc(100% - 48px);
    max-width: 669px;
  }
}
@media (min-width: 1024px) {
  .tasy__card {
    left: 55%;
    padding: 32px 36px;
    top: 40%;
    left: 60%;
    position: absolute;
    transform: translate(-50%, -50%);
  }
}
.tasy__card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 1024px) {
  .tasy__card p {
    font-size: 25px;
    line-height: 35px;
  }
}

.tasy__card-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tasy__card-arrow img {
  width: 32px;
  height: 32px;
}
@media (min-width: 1024px) {
  .tasy__card-arrow img {
    width: 45px;
    height: 45px;
  }
}

.tasy__blob {
  position: absolute;
  width: 311px;
  height: 311px;
  border-radius: 50%;
  opacity: 0.21;
  background: var(--BIO-BLUE, #34CDD7);
  filter: blur(128px);
  right: 0;
  bottom: 60px;
  pointer-events: none;
}

.eco {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .eco {
    padding: 0;
  }
}

.eco__title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 48px;
  max-width: 1114px;
}
@media (min-width: 768px) {
  .eco__title {
    font-size: 38px;
  }
}
@media (min-width: 1024px) {
  .eco__title {
    font-size: 53.18px;
    line-height: 64px;
    margin-bottom: 60px;
  }
}
.eco__title strong {
  font-weight: 700;
}

.eco__table {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
}
@media (min-width: 1024px) {
  .eco__table {
    gap: 12px;
    overflow-x: visible;
    padding-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .eco__table {
    gap: 20px;
  }
}

.eco__col {
  flex-shrink: 0;
  border-radius: 28px;
}
@media (min-width: 1024px) {
  .eco__col {
    flex-shrink: 1;
    border-radius: 42px;
  }
}

.eco__col--segments {
  background: #F5F6FB;
  min-width: 240px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .eco__col--segments {
    min-width: 0;
    flex: 1.5;
    padding: 5rem 2rem 2rem;
  }
}
@media (min-width: 1280px) {
  .eco__col--segments {
    padding: 5rem 3rem 2rem;
  }
}

.d-ajuste-br {
  display: none;
}
@media (min-width: 1024px) {
  .d-ajuste-br {
    display: block;
  }
}

.eco__segment {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 52px;
  text-decoration: none;
  padding: 0 8px;
  border-radius: 0px;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(114, 150, 180, 0.15);
}
.eco__segment:last-child {
  border-bottom: none;
}
.eco__segment span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 200;
  color: #1D3C55;
  white-space: nowrap;
  transition: font-weight 0.2s;
}
@media (min-width: 1024px) {
  .eco__segment span {
    font-size: 20px;
  }
}
.eco__segment .eco__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: auto;
  opacity: 1;
}

.eco__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.6;
}

.eco__col--bionexo,
.eco__col--tasy,
.eco__col--clinica {
  min-width: 140px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .eco__col--bionexo,
  .eco__col--tasy,
  .eco__col--clinica {
    min-width: 0;
    flex: 1;
  }
}

.eco__col--bionexo {
  background: rgba(52, 205, 215, 0.25);
}

.eco__col--tasy {
  background: rgba(52, 205, 215, 0.15);
}

.eco__col--clinica {
  background: rgba(99, 242, 192, 0.15);
}

.eco__col-header {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .eco__col-header {
    font-size: 16px;
    padding: 0 24px;
    height: 5rem;
  }
}

.eco__checks {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .eco__checks {
    padding: 0 24px;
  }
}

.eco__check {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(114, 150, 180, 0.15);
}
.eco__check:last-child {
  border-bottom: none;
}
.eco__check img {
  width: 18px;
  height: 14px;
}

.eco__table-caption {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(29, 60, 85, 0.6);
  margin: 16px 0 0;
  padding: 0 4px;
}
@media (min-width: 1024px) {
  .eco__table-caption {
    display: none;
  }
}

.eco-diagram {
  display: none;
  position: relative;
  aspect-ratio: 1199/876;
  max-width: 1010px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .eco-diagram {
    display: block;
  }
}
.eco-diagram__bg {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.eco-diagram__hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: var(--h);
  transform: translate(-50%, -50%);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  outline: none;
}
.eco-diagram__hotspot--circle {
  border-radius: 50%;
}
.eco-diagram__hotspot--pill {
  border-radius: 999px;
}
.eco-diagram__hotspot:hover, .eco-diagram__hotspot:focus-visible {
  box-shadow: 0 0 28px 4px rgba(52, 205, 215, 0.55);
  transform: translate(-50%, -50%) scale(1.04);
}

@media (min-width: 1024px) {
  .eco__table {
    display: none;
  }
}
.solucoes {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .solucoes {
    padding: 80px 0;
  }
}

.solucoes__container {
  text-align: center;
}

.solucoes__eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #2CB7C0;
  line-height: 1.4;
  margin: 0 0 40px;
  position: relative;
  z-index: 9;
}
@media (min-width: 1024px) {
  .solucoes__eyebrow {
    font-size: 45px;
    line-height: 64px;
    margin-bottom: 0;
  }
}

.solucoes__hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}
@media (min-width: 1024px) {
  .solucoes__hero {
    padding: 0;
    min-height: 700px;
    justify-content: center;
  }
}

.solucoes__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50rem;
  height: 50rem;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
@media (min-width: 768px) {
  .solucoes__circle {
    width: 600px;
    height: 600px;
  }
}
@media (min-width: 1024px) {
  .solucoes__circle {
    width: 900px;
    height: 900px;
  }
}
@media (min-width: 1280px) {
  .solucoes__circle {
    width: 1127px;
    height: 1127px;
  }
}
.solucoes__circle img {
  width: 100%;
  height: 100%;
}

.solucoes__logo {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  width: 280px;
}
@media (min-width: 768px) {
  .solucoes__logo {
    width: 500px;
  }
}
@media (min-width: 1024px) {
  .solucoes__logo {
    width: 759px;
    margin-bottom: 24px;
  }
}
.solucoes__logo img {
  width: 100%;
  height: auto;
}

.solucoes__plan-text {
  position: relative;
  z-index: 1;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.3;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .solucoes__plan-text {
    font-size: 34px;
  }
}
@media (min-width: 1024px) {
  .solucoes__plan-text {
    font-size: 46px;
    line-height: 60px;
    margin-bottom: 32px;
  }
}

.solucoes__tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 1024px) {
  .solucoes__tags {
    gap: 16px;
    max-width: 900px;
  }
}

.solucoes__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1D3C55;
  background: #FFFFFF;
  border-radius: 100px;
  padding: 12px 24px;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.solucoes__tag:hover, .solucoes__tag:focus-visible {
  color: #1D3C55;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
@media (min-width: 1024px) {
  .solucoes__tag {
    font-size: 18px;
    padding: 14px 32px;
    height: 50px;
  }
}

.solucoes__title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  text-align: center;
  margin: 48px auto 40px;
  max-width: 1080px;
}
@media (min-width: 768px) {
  .solucoes__title {
    font-size: 38px;
  }
}
@media (min-width: 1024px) {
  .solucoes__title {
    font-size: 53.18px;
    line-height: 64px;
    margin: 60px auto 48px;
  }
}

.solucoes__stats {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .solucoes__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .solucoes__stats {
    gap: 40px;
  }
}

.solucoes__stat {
  text-align: center;
  line-height: 1.2;
}

.solucoes__stat-number {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #2CB7C0;
  line-height: 30px;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .solucoes__stat-number {
    font-size: 40px;
  }
}

.solucoes__stat-desc {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .solucoes__stat-desc {
    font-size: 22px;
    line-height: 30px;
  }
}

.beneficios {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  padding: 0px 0;
}
@media (min-width: 1024px) {
  .beneficios {
    padding: 80px 0;
  }
}

.beneficios__container {
  position: relative;
  z-index: 1;
}

.beneficios__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 25px;
  text-align: center;
  max-width: 604px;
  margin: 0 auto 40px;
}
@media (min-width: 1024px) {
  .beneficios__subtitle {
    font-size: 18px;
    margin-bottom: 60px;
  }
}

.beneficios__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .beneficios__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .beneficios__grid {
    grid-template-columns: 310fr 310fr 310fr 310fr;
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .beneficios__grid {
    grid-template-rows: 1fr 1fr;
  }
}

.beneficios__card {
  border-radius: 28px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .beneficios__card {
    border-radius: 42px;
    padding: 32px;
  }
}

.beneficios__card-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 60px;
  margin: 0;
}
@media (min-width: 1280px) {
  .beneficios__card-title {
    font-size: 30px;
  }
}

.beneficios__card-desc {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 1280px) {
  .beneficios__card-desc {
    font-size: 16px;
  }
}

.beneficios__card--ceo {
  background: #F5F6FB;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .beneficios__card--ceo {
    grid-row: 1/3;
    grid-column: 1;
    display: flex;
    flex-direction: column;
  }
}
.beneficios__card--ceo .beneficios__card-desc {
  margin-top: 1rem;
}

.beneficios__card-top {
  position: relative;
  flex: 1;
  min-height: 20rem;
  overflow: hidden;
  margin: -24px -24px 16px;
  background-color: #eef0f9;
  border-radius: 42px;
}
@media (min-width: 1024px) {
  .beneficios__card-top {
    margin: -32px -32px 16px;
  }
}

.beneficios__card-top .beneficios__card-title {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
}
@media (min-width: 1024px) {
  .beneficios__card-top .beneficios__card-title {
    top: 32px;
    left: 32px;
  }
}

.beneficios__card-photo {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  z-index: 1;
}
@media (min-width: 1024px) {
  .beneficios__card-photo {
    width: 80%;
  }
}
.beneficios__card-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.beneficios__card--cfo {
  background: #285783;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .beneficios__card--cfo {
    grid-row: 1/3;
    grid-column: 2;
  }
}
.beneficios__card--cfo .beneficios__card-title,
.beneficios__card--cfo .beneficios__card-desc {
  color: #FFFFFF;
  margin-top: auto;
}

.beneficios__chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  flex: 1;
  min-height: 120px;
  margin-top: 4rem;
  padding-top: 20px;
}
@media (min-width: 1024px) {
  .beneficios__chart {
    min-height: 200px;
    margin-top: 2rem;
    gap: 5px;
  }
}
.beneficios__chart img {
  position: absolute;
  right: -0.5rem;
}

.beneficios__chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, #63F1BE, #46DBEF);
  opacity: 0.7;
  min-height: 8px;
}
.beneficios__chart-bar:nth-child(even) {
  background: linear-gradient(to top, #34CDD7, #5CF6DA);
  opacity: 0.5;
}

.beneficios__card--cio {
  background: #63F2C0;
}
@media (min-width: 1024px) {
  .beneficios__card--cio {
    grid-row: 1;
    grid-column: 3/5;
    display: flex;
    flex-direction: column;
  }
}
.beneficios__card--cio .beneficios__card-desc {
  margin-top: auto;
}

.beneficios__card-pill {
  width: 180px;
  height: 70px;
  border-radius: 50px 50px 50px 28px;
  overflow: hidden;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .beneficios__card-pill {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 280px;
    height: 100px;
    border-radius: 50px 28px 50px 50px;
    margin-bottom: 0;
  }
}
.beneficios__card-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beneficios__card--white {
  background: #FFFFFF;
  border: 1px solid rgba(29, 60, 85, 0.06);
}

.beneficios__cta {
  text-align: center;
  margin-top: 48px;
}
@media (min-width: 1024px) {
  .beneficios__cta {
    margin-top: 60px;
  }
}

.beneficios__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1D3C55;
  text-decoration: none;
  border: 1px solid #63F1BE;
  border-radius: 100px;
  padding: 16px 48px;
  height: 56px;
  transition: background 0.3s, color 0.3s;
}
.beneficios__cta-btn:hover {
  background: #63F1BE;
  color: #FFFFFF;
}

.beneficios__blob {
  position: absolute;
  width: 417px;
  height: 319px;
  border-radius: 426px;
  background: linear-gradient(to right, #63F1BE, #5CF6DA, #46DBEF);
  filter: blur(128px);
  top: 50%;
  right: 20%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.marketplace {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  padding: 3rem 0 1rem;
}
@media (min-width: 1024px) {
  .marketplace {
    padding: 80px 0;
  }
}

.marketplace__container {
  text-align: center;
}

.marketplace__eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #2CB7C0;
  line-height: 1.4;
  margin: 0 0 8px;
}
@media (min-width: 1024px) {
  .marketplace__eyebrow {
    font-size: 45px;
    line-height: 64px;
  }
}

.marketplace__title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 auto 32px;
  max-width: 990px;
}
@media (min-width: 768px) {
  .marketplace__title {
    font-size: 38px;
  }
}
@media (min-width: 1024px) {
  .marketplace__title {
    font-size: 53.18px;
    line-height: 64px;
    margin-bottom: 40px;
  }
}
.marketplace__title strong {
  font-weight: 500;
}

.marketplace__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 664px;
}
@media (min-width: 1024px) {
  .marketplace__subtitle {
    font-size: 18px;
  }
}
.marketplace__subtitle strong {
  font-weight: 700;
}

.marketplace__stats {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
  position: relative;
  z-index: 9;
}
@media (min-width: 768px) {
  .marketplace__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .marketplace__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 0;
  }
}

.marketplace__stat {
  position: relative;
  text-align: left;
  min-height: 120px;
}
@media (min-width: 1024px) {
  .marketplace__stat {
    min-height: 154px;
  }
}

.marketplace__stat-card {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: visible;
}

.marketplace__stat-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top left;
}
@media (min-width: 1024px) {
  .marketplace__stat-bg {
    width: 130%;
    height: 130%;
    margin-top: -10%;
    margin-left: -13%;
  }
}

.marketplace__stat-content {
  position: relative;
  z-index: 1;
  padding: 24px 20px;
  border-radius: 14.713px;
  border: 1.962px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14.2629442215px);
  height: 100%;
}
@media (min-width: 1024px) {
  .marketplace__stat-content {
    padding: 30px 60px;
    display: flex;
    flex-direction: column;
    height: stretch;
  }
}

.marketplace__stat-number {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1D3C55;
  line-height: 30px;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .marketplace__stat-number {
    font-size: 40px;
  }
}

.marketplace__stat-desc {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #7296B4;
  line-height: 30px;
}
@media (min-width: 1024px) {
  .marketplace__stat-desc {
    font-size: 22px;
  }
}

.marketplace__illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 40px;
  max-width: 800px;
}
@media (min-width: 1024px) {
  .marketplace__illustration {
    margin-bottom: 48px;
  }
}

.marketplace__ellipse {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
  top: -56rem;
  width: 150vw;
  height: 82rem;
}
@media (min-width: 768px) {
  .marketplace__ellipse {
    top: -29rem;
    height: 61rem;
  }
}
@media (min-width: 1024px) {
  .marketplace__ellipse {
    top: -35rem;
    height: 67rem;
    width: 150vw;
  }
}
@media (min-width: 1280px) {
  .marketplace__ellipse {
    top: -14rem;
    width: 100vw;
    height: 48rem;
  }
}
.marketplace__ellipse img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.marketplace__hospital {
  position: relative;
  z-index: 1;
  width: 80%;
  max-width: 731px;
  height: auto;
}

.marketplace__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .marketplace__ctas {
    flex-direction: row;
    justify-content: center;
  }
}

.marketplace__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-decoration: none;
  border-radius: 100px;
  height: 56px;
  padding: 0 40px;
  white-space: nowrap;
  transition: opacity 0.3s;
  background: #FFFFFF;
  z-index: 2;
}
.marketplace__btn--outline {
  background: #FFFFFF;
  color: #1D3C55;
  font-weight: 400;
  border: 1px solid #63F1BE;
  width: 100%;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .marketplace__btn--outline {
    width: auto;
    min-width: 378px;
  }
}
.marketplace__btn--outline:hover {
  background: #63F1BE;
}

.hospitais {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  padding: 30px 0;
}
@media (min-width: 768px) {
  .hospitais {
    padding: 60px 0;
  }
}
@media (min-width: 1024px) {
  .hospitais {
    padding: 80px 0;
  }
}

.hospitais__container {
  text-align: center;
}

.hospitais__eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #2CB7C0;
  line-height: 1.4;
  margin: 0 0 8px;
}
@media (min-width: 768px) {
  .hospitais__eyebrow {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .hospitais__eyebrow {
    font-size: 45px;
    line-height: 60px;
  }
}

.hospitais__title {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 auto 48px;
  max-width: 1079px;
}
@media (min-width: 768px) {
  .hospitais__title {
    font-size: 36px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  .hospitais__title {
    font-size: 53.18px;
    line-height: 60px;
    margin-bottom: 80px;
  }
}

.hospitais__product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 60px;
}
@media (min-width: 1024px) {
  .hospitais__product {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-bottom: 45px;
    text-align: left;
  }
}
@media (min-width: 1280px) {
  .hospitais__product {
    gap: 60px;
  }
}
@media (min-width: 1024px) {
  .hospitais__product--clinica {
    flex-direction: row-reverse;
  }
}

.hospitais__product-text {
  flex: 1;
  min-width: 0;
  text-align: start;
}
@media (min-width: 1024px) {
  .hospitais__product-text {
    flex: 0 0 42%;
    order: 1;
  }
}

.hospitais__product-name {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  .hospitais__product-name {
    font-size: 53px;
    line-height: 60px;
    margin-bottom: 24px;
  }
}

.hospitais__product-desc {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 24px;
  text-align: start;
}
@media (min-width: 1024px) {
  .hospitais__product-desc {
    font-size: 18px;
  }
}
.hospitais__product-desc p {
  font-size: 16px;
  margin: 0 0 16px;
}
.hospitais__product-desc p:last-child {
  margin-bottom: 0;
}
.hospitais__product-desc strong {
  font-weight: 700;
}
.hospitais__product-desc b {
  font-weight: 800 !important;
}
.hospitais__product--clinica .hospitais__product-desc {
  font-weight: 300;
}

.hospitais__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
@media (min-width: 1024px) {
  .hospitais__tags {
    margin-bottom: 32px;
  }
}

.hospitais__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2CB7C0;
  background: #F5F6FB;
  border-radius: 100px;
  padding: 6px 21px;
  white-space: nowrap;
  line-height: 25px;
}
@media (min-width: 1024px) {
  .hospitais__tag {
    font-size: 16px;
  }
}

.hospitais__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1D3C55;
  background: #34CDD7;
  border-radius: 100px;
  height: 56px;
  padding: 0 40px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s;
  position: relative;
  z-index: 2;
}
.hospitais__btn:hover {
  opacity: 0.85;
}

.hospitais__btn-wrapper {
  position: relative;
  display: inline-block;
}

@media (min-width: 768px) {
  .hospitais__btn-glow {
    position: absolute;
    z-index: 0;
    background: var(--gradient, linear-gradient(270deg, #34CDD7 31.25%, #00C851 100%));
    border-radius: 5rem;
    height: 5rem;
    top: -0.65rem;
    right: -0.75rem;
    opacity: 0.3;
    width: 63rem;
  }
}

.hospitais__product-visual {
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: 300px;
}
@media (min-width: 768px) {
  .hospitais__product-visual {
    min-height: 400px;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .hospitais__product-visual {
    flex: 0 0 55%;
    min-height: 500px;
    order: 2;
  }
}
@media (min-width: 1024px) {
  .hospitais__product-visual--tasy {
    min-height: 554px;
  }
}
@media (min-width: 1024px) {
  .hospitais__product-visual--clinica {
    min-height: 450px;
  }
}

.hospitais__blob {
  position: absolute;
  border-radius: 50%;
}
.hospitais__blob--gradient {
  width: 320px;
  height: 320px;
  background: linear-gradient(90deg, #63F1BE, #5CF6DA, #46DBEF);
  filter: blur(100px);
  top: 10%;
  left: 0;
  z-index: 0;
}
@media (min-width: 1024px) {
  .hospitais__blob--gradient {
    width: 455px;
    height: 455px;
    filter: blur(148px);
  }
}
.hospitais__blob--teal {
  width: 260px;
  height: 260px;
  background: #34CDD7;
  filter: blur(100px);
  top: 20%;
  left: 30%;
  z-index: 0;
}
@media (min-width: 1024px) {
  .hospitais__blob--teal {
    width: 377px;
    height: 377px;
    filter: blur(148px);
  }
}
.hospitais__blob--light {
  width: 300px;
  height: 160px;
  background: #F5F6FB;
  filter: blur(40px);
  bottom: 0;
  left: 20%;
  z-index: 0;
}
@media (min-width: 1024px) {
  .hospitais__blob--light {
    width: 425px;
    height: 229px;
    filter: blur(58px);
  }
}

.hospitais__dashboard {
  display: none;
}
@media (min-width: 1024px) {
  .hospitais__dashboard {
    position: absolute;
    height: auto;
    z-index: 1;
    display: block;
    bottom: -3rem;
    left: -9rem;
    max-width: 49rem;
  }
}
@media (min-width: 1280px) {
  .hospitais__dashboard {
    width: 62rem;
    max-width: none;
    left: -11rem;
    top: -15rem;
  }
}

@media (min-width: 1024px) {
  .hospitais__dashboard-mobile {
    display: none;
    left: -11rem;
    top: -15rem;
  }
}

.hospitais__photo {
  position: relative;
  z-index: 2;
}
.hospitais__photo--tasy {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-40%);
  width: 260px;
  height: auto;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hospitais__photo--tasy {
    width: 320px;
  }
}
@media (min-width: 1024px) {
  .hospitais__photo--tasy {
    width: 369px;
    left: 40%;
    transform: none;
  }
}
.hospitais__photo--clinica {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
}
@media (min-width: 768px) {
  .hospitais__photo--clinica {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    bottom: 0;
  }
}
@media (min-width: 1024px) {
  .hospitais__photo--clinica {
    width: auto;
    transform: none;
    right: 5rem;
    bottom: -12.95rem;
  }
}
@media (min-width: 1280px) {
  .hospitais__photo--clinica {
    bottom: -8.7rem;
  }
}

.hospitais__notifications {
  position: absolute;
  top: 35%;
  right: -5%;
  width: 180px;
  height: auto;
  z-index: 3;
}
@media (min-width: 1024px) {
  .hospitais__notifications {
    width: 267px;
    top: 38%;
    right: -5%;
  }
}

.hospitais__wave {
  position: absolute;
  z-index: 1;
}
.hospitais__wave--1 {
  bottom: 0;
  left: 0;
  width: 70%;
  max-width: 501px;
  height: auto;
}
@media (min-width: 1024px) {
  .hospitais__wave--1 {
    width: 501px;
  }
}
.hospitais__wave--2 {
  bottom: 10%;
  left: 0;
  width: 65%;
  max-width: 499px;
  height: auto;
}
@media (min-width: 1024px) {
  .hospitais__wave--2 {
    width: 499px;
  }
}

.cases {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 0 40px;
  overflow: clip;
}
@media (min-width: 1024px) {
  .cases {
    padding: 80px 0 60px;
  }
}
.cases .detalhe-bg-cases {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 30rem;
}
@media (min-width: 1024px) {
  .cases .detalhe-bg-cases {
    height: 40rem;
  }
}
.cases .detalhe-bg-cases .cases_bg {
  width: 100%;
  height: 100%;
}

.cases__title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 900px;
}
@media (min-width: 768px) {
  .cases__title {
    font-size: 38px;
    line-height: 50px;
  }
}
@media (min-width: 1024px) {
  .cases__title {
    font-size: 53.18px;
    line-height: 60px;
    margin-bottom: 50px;
  }
}

.cases__slider-wrapper {
  position: relative;
}
@media (min-width: 1024px) {
  .cases__slider-wrapper {
    margin-right: calc((100vw - 1000px) / 2 * -1);
  }
}
@media (min-width: 1280px) {
  .cases__slider-wrapper {
    margin-right: calc((100vw - 1250px) / 2 * -1);
  }
}

.cases__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-right: 24px;
  position: relative;
  z-index: 1;
  scrollbar-width: none;
}
.cases__track::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .cases__track {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .cases__track {
    gap: 20px;
    padding-right: 70px;
  }
}

.cases__card {
  position: relative;
  flex-shrink: 0;
  width: 80vw;
  max-width: 530px;
  border-radius: 24px;
  overflow: hidden;
  background: #FFFFFF;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px) {
  .cases__card {
    width: 70vw;
  }
}
@media (min-width: 768px) {
  .cases__card {
    width: 55vw;
    border-radius: 32px;
  }
}
@media (min-width: 1024px) {
  .cases__card {
    width: 530px;
    border-radius: 42px;
  }
}

.cases__card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}
.cases__card-link:focus-visible {
  outline: 2px solid #1D3C55;
  outline-offset: 2px;
}

.cases__card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 530/440;
  overflow: hidden;
}

.cases__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cases__card-frame {
  position: absolute;
  width: 100%;
  pointer-events: none;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
}

.cases__play {
  position: absolute;
  top: 8%;
  left: 10%;
  z-index: 2;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cases__play img {
  width: 20px;
  height: auto;
}
@media (min-width: 1024px) {
  .cases__play img {
    width: 28px;
  }
}
.cases__play:hover {
  background: rgba(29, 60, 85, 0.8);
}

.cases__card-body {
  padding: 20px 24px 28px;
}
@media (min-width: 768px) {
  .cases__card-body {
    padding: 24px 32px 32px;
  }
}
@media (min-width: 1024px) {
  .cases__card-body {
    padding: 2rem 56px 32px;
  }
}

.cases__card-logo {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  width: 16rem;
  max-width: 37%;
  left: 0.5rem;
  height: 4.5rem;
}
@media (min-width: 768px) {
  .cases__card-logo {
    height: 6rem;
  }
}
@media (min-width: 1024px) {
  .cases__card-logo {
    height: 7rem;
  }
}
@media (min-width: 1280px) {
  .cases__card-logo {
    left: 3.5rem;
    height: 7.5rem;
  }
}
.cases__card-logo img {
  max-width: 100%;
  max-height: 100%;
  padding: 0.7rem;
  object-fit: contain;
}

.cases__card-stat {
  margin-bottom: 8px;
}

.cases__card-number {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .cases__card-number {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .cases__card-number {
    font-size: 42px;
    line-height: 1;
  }
}
.cases__card-number strong {
  font-weight: 700;
}

.cases__card-desc {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 22px;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .cases__card-desc {
    font-size: 16px;
    line-height: 25px;
  }
}

.cases__card-tags {
  padding: 5px 24px 20px;
  margin-top: auto;
}
@media (min-width: 768px) {
  .cases__card-tags {
    padding: 10px 32px 20px;
  }
}
@media (min-width: 1024px) {
  .cases__card-tags {
    padding: 10px 56px 20px;
  }
}

.cases__card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #1D3C55;
  border: 2px solid #F5F6FB;
  border-radius: 100px;
  padding: 6px 24px;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .cases__card-tag {
    font-size: 16px;
    padding: 6px 32px;
  }
}

.cases__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .cases__nav {
    justify-content: flex-start;
    margin-top: 40px;
  }
}

.cases__nav-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #2CB7C0;
  padding: 8px;
  transition: opacity 0.3s;
}
.cases__nav-arrow:hover {
  opacity: 0.7;
}
.cases__nav-arrow svg {
  width: 20px;
  height: 14px;
}

.cases__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cases__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7296B4;
  opacity: 0.4;
  transition: all 0.3s;
  cursor: pointer;
}
.cases__dot.is-active {
  width: 24px;
  border-radius: 4px;
  background: #2CB7C0;
  opacity: 1;
}

.cta-banner {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .cta-banner {
    padding: 80px 0;
  }
}

.cta-banner__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: linear-gradient(90deg, #00c851 0%, #34CDD7 68.75%);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-banner__box {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 40px 40px;
    border-radius: 32px;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .cta-banner__box {
    padding: 48px 56px;
    border-radius: 42px;
    gap: 40px;
  }
}

.cta-banner__text {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.3;
  margin: 0;
}
@media (min-width: 768px) {
  .cta-banner__text {
    font-size: 26px;
    line-height: 34px;
    max-width: 600px;
  }
}
@media (min-width: 1024px) {
  .cta-banner__text {
    font-size: 32px;
    line-height: 37px;
    max-width: 702px;
  }
}
.cta-banner__text strong {
  font-weight: 600;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1D3C55;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  height: 48px;
  padding: 0 32px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.3s;
}
@media (min-width: 1024px) {
  .cta-banner__btn {
    height: 56px;
    min-width: 200px;
    padding: 0 40px;
  }
}
.cta-banner__btn:hover {
  opacity: 0.85;
}

.hero-interno {
  padding-top: 1rem;
}
@media (min-width: 1280px) {
  .hero-interno {
    padding-top: 2rem;
  }
}

.hero-interno__bg {
  border-radius: 24px;
  position: relative;
}
@media (min-width: 768px) {
  .hero-interno__bg {
    border-radius: 42px;
    padding: 15px 20px;
  }
}
.hero-interno__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #46DBEF, #5CF6DA, #63F1BE);
  border-radius: inherit;
  z-index: -1;
  opacity: 0.3;
}

.hero-interno__inner {
  padding: 40px 24px;
}
@media (min-width: 768px) {
  .hero-interno__inner {
    padding: 35px 50px;
  }
}
@media (min-width: 1024px) {
  .hero-interno__inner {
    background-image: url("../../src/assets/images/bg-hero-interno.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    padding: 35px 70px;
  }
}

@media (min-width: 1024px) {
  .hero-interno__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
}

.hero-interno__breadcrumb {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1D3C55;
  background: #63F2C0;
  border-radius: 100px;
  padding: 8px 24px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .hero-interno__breadcrumb {
    font-size: 16px;
  }
}

.hero-interno__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.3;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .hero-interno__title {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (min-width: 1024px) {
  .hero-interno__title {
    font-size: 45px;
  }
}

.hero-interno__desc {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 40px;
  max-width: 420px;
}

.hero-interno__image {
  position: relative;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .hero-interno__image {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.hero-interno__image-screenshot {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 530px;
  opacity: 0.9;
  display: block;
}

.hero-stats__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .hero-stats__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
  }
}

.hero-stats__container-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .hero-stats__container-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: center;
  }
}

.hero-stats__container-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .hero-stats__container-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
  }
}

.hero-stats__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-stats__item {
    gap: 12px;
  }
}

.hero-stats__number {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #2CB7C0;
  line-height: 30px;
  display: block;
}
@media (min-width: 1024px) {
  .hero-stats__number {
    white-space: nowrap;
    font-size: 47px;
  }
}

.hero-stats__text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 25px;
}
@media (min-width: 768px) {
  .hero-stats__text {
    font-size: 16px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .section-header {
    margin-bottom: 80px;
  }
}

.section-header__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #7296B4;
  line-height: 25px;
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .section-header__subtitle {
    font-size: 45px;
  }
}

.section-header__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 768px) {
  .section-header__title {
    font-size: 53.18px;
    line-height: 60px;
  }
}

.section-header__desc {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 25px;
  margin: 16px auto 0;
  max-width: 800px;
}
@media (min-width: 768px) {
  .section-header__desc {
    font-size: 18px;
  }
}

.features__container {
  overflow: hidden;
}

.features__glow {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, #63F1BE, #5CF6DA, #46DBEF);
  filter: blur(100px);
  width: 1381px;
  height: 1181px;
  border-radius: 690px 0 0 690px;
  transform: translate(48%, 48%);
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.features__card {
  background: #FFFFFF;
  border: 0.5px solid #63F1BE;
  border-radius: 14.7px;
  padding: 32px;
  backdrop-filter: blur(14px);
  min-height: 200px;
}

.features__card-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 30px;
  margin: 0 0 12px;
}

.features__card-desc {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}

.features__cta-wrapper {
  text-align: center;
  margin-top: 48px;
}

.impact__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .impact__stats {
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
  }
}

.impact__stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #2CB7C0;
  line-height: 30px;
  margin: 0 0 8px;
}
@media (min-width: 768px) {
  .impact__stat-number {
    font-size: 40px;
  }
}

.impact__stat-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 768px) {
  .impact__stat-text {
    font-size: 18px;
    line-height: 30px;
  }
}

.impact__table-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .impact__table-cards {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 16px;
  }
}

.impact__table-col {
  border-radius: 24px;
  padding: 24px;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 768px) {
  .impact__table-col {
    border-radius: 42px;
    padding: 32px;
  }
}
.impact__table-col--indicator {
  background: #F5F6FB;
}
.impact__table-col--without {
  background: rgba(245, 101, 22, 0.2);
}
.impact__table-col--with {
  background: #2CB7C0;
}

.impact__table-col-header {
  font-size: 18px;
  font-weight: 700;
  color: #1D3C55;
  line-height: 30px;
  margin: 0 0 16px;
}
.impact__table-col--with .impact__table-col-header {
  color: #FFFFFF;
}

.impact__table-col-row {
  font-size: 16px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 1.5;
  margin: 0 0 22px;
}
.impact__table-col--with .impact__table-col-row {
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .impact__table-col-row {
    font-size: 18px;
  }
}

.impact__disclaimer {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 25px;
  text-align: center;
  max-width: 720px;
  margin: 24px auto 0;
}

.case-sucesso {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
@media (min-width: 768px) {
  .case-sucesso {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.case-sucesso__layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .case-sucesso__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
}

.case-sucesso__layout .card-case-new {
  position: relative;
}
.case-sucesso__layout .card-case-new .cases__card {
  position: relative;
  margin: auto;
}
.case-sucesso__layout .card-case-new .ajuste-radial-card {
  position: absolute;
  border-radius: 425.837px;
  background: #34CDD7;
  filter: blur(100px);
  width: 100%;
  height: 20rem;
  bottom: 0;
  left: 0;
}

.case-sucesso__card {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .case-sucesso__card {
    width: 530px;
  }
}

.case-sucesso__card-glow {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 60%;
  background: #34CDD7;
  filter: blur(100px);
  border-radius: 426px;
  z-index: 0;
}

.case-sucesso__card-inner {
  position: relative;
  z-index: 1;
  border-radius: 42px;
  overflow: hidden;
  background: #F5F6FB;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .case-sucesso__card-inner {
    min-height: 715px;
  }
}

.case-sucesso__card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65%;
  object-fit: cover;
  z-index: 0;
}

.case-sucesso__card-body {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  padding: 32px 24px;
  margin-top: auto;
  border-radius: 42px 42px 0 0;
}
@media (min-width: 768px) {
  .case-sucesso__card-body {
    padding: 40px 56px;
  }
}

.case-sucesso__card-logo {
  display: block;
  width: 150px;
  height: auto;
  opacity: 0.88;
  margin-bottom: 24px;
}

.case-sucesso__card-number {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1D3C55;
  line-height: 60px;
  margin: 0 0 8px;
}
@media (min-width: 768px) {
  .case-sucesso__card-number {
    font-size: 46px;
  }
}

.case-sucesso__card-desc {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 24px;
}

.case-sucesso__card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #1D3C55;
  border: 2px solid #63F1BE;
  border-radius: 100px;
  padding: 6px 24px;
  height: 38px;
}

.case-sucesso__content {
  flex: 1;
}
@media (min-width: 1024px) {
  .case-sucesso__content {
    padding-top: 80px;
    padding-left: 60px;
    padding-right: 80px;
  }
}

.case-sucesso__content-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 35px;
  margin: 0 0 32px;
}
@media (min-width: 768px) {
  .case-sucesso__content-title {
    font-size: 35px;
  }
}

.case-sucesso__content-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 16px;
}

.case-sucesso__content-quote {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: #1D3C55;
  line-height: 25px;
  margin: 16px 0;
}

.case-sucesso__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1D3C55;
  text-decoration: none;
  background: #FFFFFF;
  border: 1px solid #63F1BE;
  border-radius: 100px;
  height: 56px;
  padding: 0 40px;
  margin-top: 32px;
  transition: background 0.2s;
}
.case-sucesso__btn:hover {
  background: rgba(99, 241, 190, 0.1);
}

.fipe-index {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
@media (min-width: 768px) {
  .fipe-index {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.fipe-index__layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .fipe-index__layout {
    flex-direction: row;
    gap: 60px;
  }
}

.fipe-index__content {
  flex: 1;
}
@media (min-width: 1024px) {
  .fipe-index__content {
    flex: 0 0 38%;
  }
}

.fipe-index__pill {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1D3C55;
  background: #63F2C0;
  border-radius: 100px;
  padding: 8px 24px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .fipe-index__pill {
    margin-bottom: 50px;
  }
}

.fipe-index__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .fipe-index__title {
    font-size: 53.18px;
    line-height: 60px;
  }
}

.fipe-index__text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 16px;
}

.fipe-index__features {
  width: 100%;
}
@media (min-width: 1024px) {
  .fipe-index__features {
    flex: 1;
  }
}

.fipe-index__feature-card {
  background: #285783;
  border-radius: 42px;
  padding: 30px 20px;
  color: #FFFFFF;
  min-height: 400px;
}
@media (min-width: 768px) {
  .fipe-index__feature-card {
    padding: 40px;
  }
}

.fipe-index__feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #63F2C0;
  margin-bottom: 24px;
}
.fipe-index__feature-badge img {
  width: 32px;
  height: 32px;
}

.fipe-index__feature-item {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.fipe-index__feature-item:first-child {
  border-top: none;
}
.fipe-index__feature-item:last-child {
  border-bottom: none;
}

.fipe-index__feature-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #F5F6FB;
  line-height: 22px;
  padding: 20px 0 0;
  margin: 0;
}
@media (min-width: 768px) {
  .fipe-index__feature-title {
    font-size: 22px;
  }
}

.fipe-index__feature-desc {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #F5F6FB;
  line-height: 25px;
  padding: 12px 0 20px;
  margin: 0;
}
@media (min-width: 768px) {
  .fipe-index__feature-desc {
    font-size: 18px;
  }
}

.explore-solucoes {
  padding-top: 20px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .explore-solucoes {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}

.explore-solucoes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .explore-solucoes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .explore-solucoes__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.explore-solucoes__card {
  display: block;
  border-radius: 14.7px;
  padding: 32px;
  min-height: 300px;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease;
  background: #F5F6FB;
}
.explore-solucoes__card:hover {
  background: #34CDD7;
}
.explore-solucoes__card:hover .explore-solucoes__card-pill {
  background: #FFFFFF;
}
.explore-solucoes__card:hover .explore-solucoes__card-link {
  color: #fff;
}

.explore-solucoes__card-pill {
  display: block;
  width: fit-content;
  margin-left: auto;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1D3C55;
  background: #63F2C0;
  border-radius: 100px;
  padding: 8px 24px;
  margin-bottom: 24px;
}
.explore-solucoes__card--accent .explore-solucoes__card-pill {
  background: #FFFFFF;
}

.explore-solucoes__card-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #1D3C55;
  line-height: normal;
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .explore-solucoes__card-title {
    font-size: 22px;
  }
}

.explore-solucoes__card-desc {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 768px) {
  .explore-solucoes__card-desc {
    font-size: 18px;
  }
}

.explore-solucoes__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #2CB7C0;
  text-decoration: none;
  margin-top: 24px;
}
.explore-solucoes__card-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.explore-solucoes__card-link:hover::after {
  transform: translateX(4px);
}

.faq {
  padding-top: 20px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .faq {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq__item {
  border-bottom: 1px solid rgba(44, 183, 192, 0.4);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1D3C55;
  line-height: normal;
  text-align: left;
}
@media (min-width: 768px) {
  .faq__question {
    font-size: 22px;
  }
}

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 16px;
  color: #7296B4;
  transition: transform 0.3s;
}
.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq__item.is-open .faq__answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq__answer-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 768px) {
  .faq__answer-text {
    font-size: 18px;
  }
}

.cta-conversao {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .cta-conversao {
    padding-bottom: 40px;
  }
}

.cta-conversao__box {
  background: linear-gradient(to right, #00C851 0%, #34CDD7 69%);
  border-radius: 42px;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-conversao__box {
    padding: 40px 60px;
  }
}
@media (min-width: 1024px) {
  .cta-conversao__box {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 40px 80px;
  }
}

.cta-conversao__text {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 37px;
  margin: 0;
  max-width: 671px;
}
@media (min-width: 768px) {
  .cta-conversao__text {
    font-size: 32px;
  }
}
.cta-conversao__text strong {
  font-weight: 600;
}

.cta-conversao__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1D3C55;
  text-decoration: none;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  height: 56px;
  padding: 0 20px;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.cta-conversao__btn:hover {
  background: #fefefe;
}
@media (min-width: 768px) {
  .cta-conversao__btn {
    font-size: 16px;
    padding: 0 40px;
  }
}

.case-sucesso__metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .case-sucesso__metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-sucesso__metric {
  text-align: center;
  padding: 20px 16px;
  background: rgba(44, 183, 192, 0.06);
  border-radius: 16px;
}

.case-sucesso__metric-number {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #2CB7C0;
  line-height: 1.1;
}

.case-sucesso__metric-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #1D3C55;
  margin-top: 6px;
  line-height: 1.4;
}

.vendas-tabs {
  background: #F5F6FB;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .vendas-tabs {
    padding-bottom: 7rem;
  }
}

.vendas-tabs__container {
  position: relative;
}

.vendas-tabs__bar {
  display: flex;
  gap: 8px;
  margin: 0 auto 40px;
  padding: 4px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.vendas-tabs__bar::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .vendas-tabs__bar {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

.vendas-tabs__btn {
  flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #7296B4;
  background: #fff;
  border: 2px solid rgba(114, 150, 180, 0.18);
  border-radius: 100px;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.vendas-tabs__btn:hover {
  border-color: #2CB7C0;
  color: #2CB7C0;
}
.vendas-tabs__btn.is-active {
  background: #2CB7C0;
  border-color: #2CB7C0;
  color: #fff;
}
@media (min-width: 768px) {
  .vendas-tabs__btn {
    font-size: 14px;
    padding: 12px 26px;
  }
}

.vendas-tabs__panel {
  display: none;
  animation: vendasTabsFade 0.3s ease;
}
.vendas-tabs__panel.is-active {
  display: block;
}
.vendas-tabs__panel .features__grid {
  padding: 0;
}

@keyframes vendasTabsFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.b360-hero {
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .b360-hero {
    padding: 80px 0;
  }
}
.b360-hero__box {
  background: var(--NEW-GRADIENT, linear-gradient(270deg, #63F1BE 0%, #5CF6DA 50%, #46DBEF 100%));
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
@media (min-width: 1024px) {
  .b360-hero__box {
    border-radius: 42px;
    padding: 48px 56px;
    min-height: 503px;
  }
  .b360-hero__box::after {
    content: "";
    border-radius: 50%;
    background-color: #fff;
    filter: blur(7.5rem);
    height: 34rem;
    width: 35rem;
    position: absolute;
    z-index: 1;
    bottom: -3rem;
    right: 13rem;
  }
}
.b360-hero__text {
  max-width: 554px;
  position: relative;
  z-index: 2;
}
.b360-hero__label {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
}
@media (min-width: 1024px) {
  .b360-hero__label {
    font-size: 36px;
  }
}
.b360-hero__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .b360-hero__title {
    font-size: 46px;
    line-height: 60px;
  }
}
.b360-hero__subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .b360-hero__subtitle {
    font-size: 16px;
  }
}
.b360-hero__visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  z-index: 3;
  display: none;
}
@media (min-width: 768px) {
  .b360-hero__visual {
    display: block;
  }
}
.b360-hero__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.b360-problema {
  padding: 0 0 60px 0;
}
.b360-problema__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  text-align: center;
  max-width: 1028px;
  margin: 0 auto 30px;
}
@media (min-width: 1024px) {
  .b360-problema__title {
    font-size: 53.18px;
    line-height: 60px;
  }
}
.b360-problema__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #1D3C55;
  text-align: center;
  line-height: 25px;
}
@media (min-width: 1024px) {
  .b360-problema__subtitle {
    font-size: 18px;
  }
}

.b360-painpoints {
  padding: 40px 0;
}
@media (min-width: 1024px) {
  .b360-painpoints {
    padding: 60px 0;
  }
}
.b360-painpoints__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .b360-painpoints__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .b360-painpoints__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 11px;
  }
}
.b360-painpoints__item {
  text-align: left;
  padding-right: 2rem;
}
.b360-painpoints__icon {
  width: 48px;
  height: auto;
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  .b360-painpoints__icon {
    width: 58px;
  }
}
.b360-painpoints__label {
  font-size: 18px;
  font-weight: 700;
  color: #1D3C55;
  line-height: 1.3;
  margin: 0;
}
@media (min-width: 1024px) {
  .b360-painpoints__label {
    font-size: 22px;
  }
}

.b360-software {
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .b360-software {
    padding: 80px 0;
  }
}
.b360-software__container {
  overflow: hidden;
}
.b360-software__title {
  font-size: 28px;
  font-weight: 300;
  color: #2CB7C0;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .b360-software__title {
    font-size: 53.18px;
    line-height: 60px;
  }
}
.b360-software__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #1D3C55;
  text-align: center;
  margin: 0 0 40px;
}
@media (min-width: 1024px) {
  .b360-software__subtitle {
    font-size: 18px;
  }
}
.b360-software__tabs {
  display: flex;
  gap: 0;
  border: 0.5px solid #7296B4;
  border-radius: 100px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 40px;
}
@media (min-width: 1280px) {
  .b360-software__tabs {
    width: 70rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.b360-software__tabs::-webkit-scrollbar {
  display: none;
}
.b360-software__tab {
  font-size: 14px;
  font-weight: 400;
  color: #7296B4;
  background: transparent;
  border: 6px solid #fff;
  padding: 16px 20px;
  white-space: nowrap;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .b360-software__tab {
    font-size: 18px;
    padding: 20px 30px;
  }
}
.b360-software__tab.is-active {
  color: #1D3C55;
  border: 6px solid #63F1BE;
  border-radius: 100px;
}
.b360-software__visual {
  position: relative;
  margin-top: 3rem;
}
.b360-software__visual .detalhe-b360 {
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 1rem;
  left: 0rem;
}
@media (min-width: 1024px) {
  .b360-software__visual .detalhe-b360 {
    width: 62rem;
    top: -9rem;
    left: -9rem;
  }
}
@media (min-width: 1280px) {
  .b360-software__visual .detalhe-b360 {
    width: 72rem;
    top: -10rem;
    left: -1rem;
  }
}
.b360-software__panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (min-width: 1024px) {
  .b360-software__panel {
    grid-template-columns: 3fr 1fr;
    gap: 40px;
  }
}
.b360-software__panel.is-active {
  display: grid;
  opacity: 1;
}
.b360-software__dashboard {
  position: relative;
  overflow: hidden;
}
.b360-software__screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.b360-software__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) {
  .b360-software__info {
    max-width: 232px;
  }
}
.b360-software__desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .b360-software__desc {
    font-size: 16px;
  }
}
.b360-software__ai {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  margin-top: 1rem;
}
@media (min-width: 1024px) {
  .b360-software__ai {
    font-size: 16px;
    margin-top: 3px;
  }
}

.b360-ciclo__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .b360-ciclo__content {
    flex-direction: row;
    gap: 60px;
  }
}
.b360-ciclo__text {
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .b360-ciclo__text {
    max-width: 505px;
  }
}
.b360-ciclo__title {
  font-size: 28px;
  font-weight: 500;
  color: #7296B4;
  line-height: 1.2;
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .b360-ciclo__title {
    font-size: 36px;
    line-height: 36px;
  }
}
.b360-ciclo__list {
  font-size: 16px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 24px;
  padding-left: 24px;
  list-style: disc;
}
@media (min-width: 1024px) {
  .b360-ciclo__list {
    font-size: 18px;
  }
}
.b360-ciclo__warning {
  font-size: 16px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .b360-ciclo__warning {
    font-size: 18px;
  }
}
.b360-ciclo__highlight {
  font-size: 14px;
  font-weight: 700;
  color: #1D3C55;
  line-height: 1.4;
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .b360-ciclo__highlight {
    font-size: 16px;
  }
}
.b360-ciclo__visual {
  flex: 1;
  position: relative;
  min-height: 300px;
}
@media (min-width: 1024px) {
  .b360-ciclo__visual {
    min-height: 500px;
  }
}
.b360-ciclo__img {
  width: 100%;
  height: auto;
  display: none;
}
@media (min-width: 1024px) {
  .b360-ciclo__img {
    display: block;
  }
}
.b360-ciclo__img-mobile {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 1024px) {
  .b360-ciclo__img-mobile {
    display: none;
  }
}

.b360-eco__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 32px;
}
@media (min-width: 1024px) {
  .b360-eco__title {
    font-size: 53.18px;
    line-height: 60px;
    margin: 0 0 5rem;
  }
}
.b360-eco__tabs {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 32px;
  padding-bottom: 4px;
}
.b360-eco__tabs::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .b360-eco__tabs {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.b360-eco__tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #F5F6FB;
  border: none;
  border-radius: 42px;
  padding: 20px 24px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1D3C55;
  cursor: pointer;
  min-width: 200px;
  flex-shrink: 0;
  height: 70px;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .b360-eco__tab {
    padding: 23px 30px;
    font-size: 18px;
    min-width: 310px;
    height: 88px;
  }
}
.b360-eco__tab.is-active {
  background: #285783;
  color: #FFFFFF;
}
.b360-eco__tab img {
  width: 32px;
  height: auto;
}
.b360-eco__grid {
  display: none;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 1024px) {
  .b360-eco__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
.b360-eco__grid.is-active {
  display: grid;
}
.b360-eco__card {
  background: #F5F6FB;
  border-radius: 14px;
  padding: 28px 22px;
}
.b360-eco__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1D3C55;
  line-height: 42px;
  margin: 0 0 8px;
}
@media (min-width: 1024px) {
  .b360-eco__card-title {
    font-size: 18px;
  }
}
.b360-eco__card-desc {
  font-size: 14px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  .b360-eco__card-desc {
    font-size: 16px;
  }
}
.b360-eco__card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: #1D3C55;
  border: 2px solid #63F1BE;
  border-radius: 100px;
  padding: 6px 32px;
  height: 38px;
  text-decoration: none;
  transition: 0.3s;
}
.b360-eco__card-link:hover {
  background: #63F1BE;
  color: #FFFFFF;
}

.b360-compare {
  padding: 60px 0 0;
}
@media (min-width: 1024px) {
  .b360-compare {
    padding: 80px 0 0;
  }
}
.b360-compare__table {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 40px;
  padding-bottom: 4rem;
}
.b360-compare__table::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .b360-compare__table {
    gap: 20px;
  }
}
.b360-compare__col {
  flex-shrink: 0;
  width: 280px;
  border-radius: 24px;
  padding: 30px 20px;
}
@media (min-width: 1024px) {
  .b360-compare__col {
    flex: 1;
    width: auto;
    flex-shrink: 1;
    border-radius: 42px;
    padding: 30px 28px;
  }
}
.b360-compare__col--indicator {
  background: #F5F6FB;
}
.b360-compare__col--without {
  background: rgba(245, 101, 22, 0.2);
}
.b360-compare__col--with {
  background: #2CB7C0;
  color: #FFFFFF;
}
.b360-compare__col-header {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
  .b360-compare__col-header {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 2rem;
  }
}
.b360-compare__col-body p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  min-height: 3rem;
}
@media (min-width: 1024px) {
  .b360-compare__col-body p {
    font-size: 18px;
    white-space: nowrap;
  }
}

.nfe-flow__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .nfe-flow__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .nfe-flow__steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}

.nfe-flow__step {
  text-align: center;
  position: relative;
  padding: 32px 20px;
  background: #FFFFFF;
  border: 0.5px solid #63F1BE;
  border-radius: 14.7px;
}
@media (min-width: 1024px) {
  .nfe-flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-top: 2px solid #2CB7C0;
    border-right: 2px solid #2CB7C0;
    transform: translateY(-50%) rotate(45deg);
  }
}

.nfe-flow__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: linear-gradient(to right, #63F1BE, #5CF6DA, #46DBEF);
  color: #1D3C55;
  border-radius: 50%;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.nfe-flow__step-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1D3C55;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .nfe-flow__step-title {
    font-size: 18px;
  }
}

.nfe-flow__step-desc {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .nfe-flow__step-desc {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .features__grid--2col {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (min-width: 1024px) {
  .features__grid--2col {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.features__card-tag {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #2CB7C0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.nfe-advantages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .nfe-advantages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nfe-advantages__card {
  background: #FFFFFF;
  border: 0.5px solid #63F1BE;
  border-radius: 14.7px;
  padding: 40px 32px;
  text-align: center;
}

.nfe-advantages__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(99, 241, 190, 0.15), rgba(70, 219, 239, 0.08));
  border-radius: 50%;
}
.nfe-advantages__card-icon svg {
  width: 28px;
  height: 28px;
  color: #2CB7C0;
}

.nfe-advantages__card-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #1D3C55;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .nfe-advantages__card-title {
    font-size: 22px;
  }
}

.nfe-advantages__card-desc {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.65;
}

.impact__stat-source {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #7296B4;
  line-height: 20px;
  margin: 4px 0 0;
  font-style: italic;
}

.rastreab-dores {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .rastreab-dores {
    padding: 0 0 80px;
  }
}
.rastreab-dores__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 1024px) {
  .rastreab-dores__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.rastreab-dores__text-title {
  font-size: 24px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 1.3;
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  .rastreab-dores__text-title {
    font-size: 32px;
    line-height: 1.3;
  }
}
.rastreab-dores__text-desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .rastreab-dores__text-desc {
    font-size: 16px;
  }
}
.rastreab-dores__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rastreab-dores__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #F5F6FB;
  border-radius: 16px;
  padding: 18px 20px;
}
.rastreab-dores__dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: #2CB7C0;
  margin-top: 7px;
}
.rastreab-dores__item-text {
  font-size: 14px;
  color: #1D3C55;
  line-height: 24px;
  margin: 0;
}
@media (min-width: 1024px) {
  .rastreab-dores__item-text {
    font-size: 15px;
  }
}

.rastreab-how {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .rastreab-how {
    padding: 0 0 80px;
  }
}
.rastreab-how__header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .rastreab-how__header {
    margin-bottom: 56px;
  }
}
.rastreab-how__suptitle {
  font-size: 14px;
  font-weight: 700;
  color: #2CB7C0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 12px;
}
.rastreab-how__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .rastreab-how__title {
    font-size: 40px;
    line-height: 50px;
  }
}
.rastreab-how__desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .rastreab-how__desc {
    font-size: 16px;
  }
}
.rastreab-how__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .rastreab-how__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
.rastreab-how__block-title {
  font-size: 20px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #2CB7C0;
}
.rastreab-how__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rastreab-how__card {
  background: #FFFFFF;
  border: 1px solid rgba(114, 150, 180, 0.15);
  border-radius: 16px;
  padding: 22px 24px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.rastreab-how__card:hover {
  border-color: #2CB7C0;
  box-shadow: 0 8px 24px rgba(29, 60, 85, 0.08);
  transform: translateY(-2px);
}
.rastreab-how__card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 6px;
}
@media (min-width: 1024px) {
  .rastreab-how__card-title {
    font-size: 16px;
  }
}
.rastreab-how__card-desc {
  font-size: 13.5px;
  color: #1D3C55;
  line-height: 22px;
  margin: 0;
}
@media (min-width: 1024px) {
  .rastreab-how__card-desc {
    font-size: 14px;
  }
}

.rastreab-apps {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .rastreab-apps {
    padding: 0 0 80px;
  }
}
.rastreab-apps__header {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .rastreab-apps__header {
    margin-bottom: 56px;
  }
}
.rastreab-apps__suptitle {
  font-size: 14px;
  font-weight: 700;
  color: #2CB7C0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 12px;
}
.rastreab-apps__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 1024px) {
  .rastreab-apps__title {
    font-size: 40px;
    line-height: 50px;
  }
}
.rastreab-apps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .rastreab-apps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .rastreab-apps__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.rastreab-apps__card {
  background: #F5F6FB;
  border-radius: 20px;
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.rastreab-apps__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(29, 60, 85, 0.08);
}
.rastreab-apps__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 12px;
}
.rastreab-apps__card-desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 24px;
  margin: 0;
}

.rastreab-integracao-wrapper {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .rastreab-integracao-wrapper {
    padding: 0 0 80px;
  }
}

.rastreab-integracao {
  background-color: #285783;
  border-radius: 24px;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .rastreab-integracao {
    border-radius: 42px;
    padding: 72px 0;
  }
}
.rastreab-integracao::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 205, 215, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.rastreab-integracao__container {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .rastreab-integracao__container {
    padding: 0 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
}
.rastreab-integracao__text {
  margin-bottom: 28px;
}
@media (min-width: 1024px) {
  .rastreab-integracao__text {
    margin-bottom: 0;
  }
}
.rastreab-integracao__title {
  font-size: 26px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0 0 18px;
}
@media (min-width: 1024px) {
  .rastreab-integracao__title {
    font-size: 34px;
    line-height: 42px;
  }
}
.rastreab-integracao__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 26px;
  margin: 0;
}
@media (min-width: 1024px) {
  .rastreab-integracao__desc {
    font-size: 16px;
  }
}
.rastreab-integracao__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rastreab-integracao__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
}
.rastreab-integracao__card-title {
  font-size: 15px;
  font-weight: 700;
  color: #34CDD7;
  margin: 0 0 6px;
}
.rastreab-integracao__card-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 22px;
  margin: 0;
}

.rastreab-clientes {
  padding: 0 0 60px;
  text-align: center;
}
@media (min-width: 1024px) {
  .rastreab-clientes {
    padding: 0 0 80px;
  }
}
.rastreab-clientes__title {
  font-size: 13px;
  font-weight: 700;
  color: #7296B4;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 32px;
}
.rastreab-clientes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .rastreab-clientes__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.rastreab-clientes__col {
  background: #F5F6FB;
  border-radius: 20px;
  padding: 28px 24px;
}
.rastreab-clientes__col-title {
  font-size: 13px;
  font-weight: 700;
  color: #2CB7C0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px;
}
.rastreab-clientes__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rastreab-clientes__name {
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
}

.analytics-audience {
  background-color: rgba(44, 183, 192, 0.6);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  margin-top: 6rem;
}
@media (min-width: 1024px) {
  .analytics-audience {
    padding: 96px 0;
  }
}
.analytics-audience .section-header__subtitle {
  color: #1D3C55;
}
.analytics-audience .section-header__title {
  color: #1D3C55;
}
.analytics-audience .section-header__desc {
  color: #1D3C55;
  max-width: 550px;
}
.analytics-audience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .analytics-audience__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .analytics-audience__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.analytics-audience__card {
  border-radius: 14.7px;
  padding: 28px 20px;
}
@media (min-width: 768px) {
  .analytics-audience__card {
    padding: 32px 24px;
  }
}
.analytics-audience__role {
  font-size: 11px;
  font-weight: 700;
  color: #1D3C55;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.analytics-audience__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.analytics-audience__pain {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.analytics-audience__solution {
  font-size: 13.5px;
  line-height: 1.6;
}
.analytics-audience__solution strong {
  color: #1D3C55;
}

.analytics-diff {
  padding: 60px 0;
  background: #F5F6FB;
}
@media (min-width: 1024px) {
  .analytics-diff {
    padding: 96px 0;
  }
}
.analytics-diff__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .analytics-diff__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
}
@media (min-width: 1024px) {
  .analytics-diff__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.analytics-diff__card {
  padding: 28px 20px;
  background: #FFFFFF;
  border: 0.5px solid #63F1BE;
  border-radius: 14.7px;
  text-align: center;
}
@media (min-width: 768px) {
  .analytics-diff__card {
    padding: 32px 24px;
  }
}
.analytics-diff__num {
  font-size: 32px;
  font-weight: 700;
  color: #2CB7C0;
  margin-bottom: 12px;
}
.analytics-diff__title {
  font-size: 15px;
  font-weight: 600;
  color: #1D3C55;
  margin-bottom: 8px;
}
.analytics-diff__desc {
  font-size: 14px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.6;
}

.analytics-eco {
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .analytics-eco {
    padding: 96px 0;
  }
}
.analytics-eco__layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .analytics-eco__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
}
.analytics-eco__content h3 {
  font-size: 20px;
  font-weight: 500;
  color: #1D3C55;
  margin-bottom: 16px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .analytics-eco__content h3 {
    font-size: 22px;
  }
}
.analytics-eco__content p {
  font-size: 16px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.7;
  margin-bottom: 16px;
}
.analytics-eco__content a {
  color: #2CB7C0;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}
.analytics-eco__content a:hover {
  text-decoration: underline;
}
.analytics-eco__badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.analytics-eco__badge {
  padding: 18px 20px;
  background: #F5F6FB;
  border: 0.5px solid #63F1BE;
  border-radius: 14.7px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .analytics-eco__badge {
    padding: 20px 24px;
  }
}
.analytics-eco__badge-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(44, 183, 192, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.analytics-eco__badge-icon svg {
  width: 20px;
  height: 20px;
  stroke: #2CB7C0;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.analytics-eco__badge-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1D3C55;
  margin-bottom: 2px;
}
.analytics-eco__badge-content p {
  font-size: 13px;
  font-weight: 300;
  color: #7296B4;
  line-height: 1.4;
  margin-bottom: 0;
}

.cnv-hero {
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .cnv-hero {
    padding: 80px 0;
  }
}
.cnv-hero__box {
  background: rgba(99, 242, 192, 0.3);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
@media (min-width: 1024px) {
  .cnv-hero__box {
    border-radius: 42px;
    padding: 48px 56px;
    min-height: 503px;
  }
}
.cnv-hero__text {
  max-width: 662px;
  position: relative;
  z-index: 2;
}
.cnv-hero__label {
  font-size: 24px;
  font-weight: 700;
  color: #7296B4;
  margin: 0 0 8px;
}
@media (min-width: 1024px) {
  .cnv-hero__label {
    font-size: 36px;
  }
}
.cnv-hero__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .cnv-hero__title {
    font-size: 46px;
    line-height: 60px;
  }
}
.cnv-hero__subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 25px;
}
@media (min-width: 1024px) {
  .cnv-hero__subtitle {
    font-size: 16px;
    padding-right: 17rem;
  }
}
.cnv-hero__visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
  display: none;
}
@media (min-width: 768px) {
  .cnv-hero__visual {
    display: block;
  }
}
.cnv-hero__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.cnv-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 1024px) {
  .cnv-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}
.cnv-stats__item {
  text-align: left;
}
.cnv-stats__number {
  font-size: 28px;
  font-weight: 500;
  color: #2CB7C0;
  display: block;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .cnv-stats__number {
    font-size: 47px;
  }
}
.cnv-stats__label {
  font-size: 14px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 25px;
}
@media (min-width: 1024px) {
  .cnv-stats__label {
    font-size: 16px;
  }
}

.cnv-pay {
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .cnv-pay {
    padding: 80px 0;
  }
}
.cnv-pay__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .cnv-pay__content {
    flex-direction: row;
    gap: 60px;
  }
}
.cnv-pay__text {
  flex: 1;
}
.cnv-pay__badge {
  display: inline-block;
  background: linear-gradient(90deg, rgba(99, 241, 190, 0.2), rgba(92, 246, 218, 0.2), rgba(70, 219, 239, 0.2));
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .cnv-pay__badge {
    font-size: 16px;
  }
}
.cnv-pay__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 0 2rem;
}
@media (min-width: 1024px) {
  .cnv-pay__title {
    font-size: 46px;
  }
}
.cnv-pay__desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .cnv-pay__desc {
    font-size: 16px;
  }
}
.cnv-pay__steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cnv-pay__panel {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.cnv-pay__panel.is-active {
  display: flex;
}
.cnv-pay__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}
.cnv-pay__tab {
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #1D3C55;
  background: #F5F6FB;
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  border-radius: 100px;
  transition: 0.3s;
  margin-right: 1rem;
}
.cnv-pay__tab.is-active {
  background: #63F1BE;
  color: #1D3C55;
}
.cnv-pay__step {
  background: #F5F6FB;
  border-radius: 42px;
  padding: 20px 24px;
  background-color: rgba(99, 242, 192, 0.2);
}
.cnv-pay__step-num {
  font-size: 18px;
  font-weight: 700;
}
.cnv-pay__step p {
  font-size: 14px;
  color: #1D3C55;
  margin: 0;
}
@media (min-width: 1024px) {
  .cnv-pay__step p {
    font-size: 16px;
  }
}

.cnv-features__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 1088px;
}
@media (min-width: 1024px) {
  .cnv-features__title {
    font-size: 53.18px;
    line-height: 60px;
  }
}
.cnv-features__subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  text-align: center;
  margin: 0 0 32px;
  line-height: 25px;
}
@media (min-width: 1024px) {
  .cnv-features__subtitle {
    font-size: 18px;
    margin: 0 0 5rem;
  }
}
.cnv-features__tabs {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .cnv-features__tabs {
    margin-bottom: 40px;
  }
}
.cnv-features__tab {
  font-size: 16px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #1D3C55;
  background: #F5F6FB;
  border: none;
  border-radius: 42px;
  padding: 8px 30px;
  min-width: 200px;
  height: 3rem;
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.3s;
  text-align: start;
}
@media (min-width: 1024px) {
  .cnv-features__tab {
    font-size: 18px;
    min-width: 310px;
    min-height: 4rem;
  }
}
.cnv-features__tab.is-active {
  background: #63F2C0;
}
.cnv-features__grid {
  display: none;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 1024px) {
  .cnv-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cnv-features__grid.is-active {
  display: grid;
}
.cnv-features__card {
  background: #F5F6FB;
  border-radius: 14px;
  padding: 28px 22px;
}
.cnv-features__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 8px;
}
@media (min-width: 1024px) {
  .cnv-features__card-title {
    font-size: 18px;
  }
}
.cnv-features__card-desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .cnv-features__card-desc {
    font-size: 16px;
  }
}

.cnv-tasy {
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .cnv-tasy {
    padding: 80px 0;
  }
}
.cnv-tasy__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .cnv-tasy__content {
    flex-direction: row;
    gap: 60px;
  }
}
.cnv-tasy__text {
  flex: 1;
}
.cnv-tasy__badge {
  display: inline-block;
  background: linear-gradient(90deg, rgba(99, 241, 190, 0.2), rgba(92, 246, 218, 0.2), rgba(70, 219, 239, 0.2));
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .cnv-tasy__badge {
    font-size: 16px;
  }
}
.cnv-tasy__title {
  font-size: 28px;
  font-weight: 500;
  color: #2CB7C0;
  line-height: 1.2;
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .cnv-tasy__title {
    font-size: 36px;
  }
}
.cnv-tasy__desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .cnv-tasy__desc {
    font-size: 16px;
  }
}
.cnv-tasy__visual {
  flex: 1;
  position: relative;
  min-height: 300px;
  display: none;
}
@media (min-width: 1024px) {
  .cnv-tasy__visual {
    display: block;
    min-height: 500px;
  }
}
.cnv-tasy__visual .cnv-integracao-nativa {
  position: relative;
  z-index: 4;
}
.cnv-tasy__blob {
  position: absolute;
  border-radius: 50%;
}
.cnv-tasy__blob--1 {
  width: 14rem;
  height: 17rem;
  background: linear-gradient(180deg, #63F1BE, #46DBEF);
  filter: blur(100px);
  top: -4rem;
  right: 0;
}
.cnv-tasy__blob--2 {
  width: 14rem;
  height: 14rem;
  background: #7296B4;
  filter: blur(100px);
  left: -2rem;
  bottom: -1rem;
}

.cnv-tasy-cards {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .cnv-tasy-cards {
    padding: 0 0 80px;
  }
}
.cnv-tasy-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 5rem;
  position: relative;
}
@media (min-width: 1024px) {
  .cnv-tasy-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cnv-tasy-cards__grid__blob {
  position: absolute;
  border-radius: 50%;
}
.cnv-tasy-cards__grid__blob--1 {
  width: 18rem;
  height: 9rem;
  background: linear-gradient(180deg, #63F1BE, #46DBEF);
  filter: blur(100px);
  z-index: -1;
  top: 4rem;
  right: 0;
}
@media (min-width: 1024px) {
  .cnv-tasy-cards__grid__blob--1 {
    top: -4rem;
    left: 17rem;
    right: initial;
    width: 16rem;
    height: 19rem;
  }
}
.cnv-tasy-cards__grid__blob--2 {
  width: 18rem;
  height: 18rem;
  background: #7296B4;
  filter: blur(100px);
  right: 6rem;
  bottom: -5rem;
  z-index: -1;
}
.cnv-tasy-cards__card {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 28px 22px;
}
@media (min-width: 1024px) {
  .cnv-tasy-cards__card {
    border-radius: 42px;
    padding: 33px 30px;
  }
}
.cnv-tasy-cards__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 8px;
}
@media (min-width: 1024px) {
  .cnv-tasy-cards__card-title {
    font-size: 18px;
  }
}
.cnv-tasy-cards__card-desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .cnv-tasy-cards__card-desc {
    font-size: 16px;
  }
}
.cnv-tasy-cards__cta {
  text-align: center;
}
.cnv-tasy-cards__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #34CDD7;
  color: #1D3C55;
  font-weight: 600;
  font-size: 16px;
  border-radius: 100px;
  height: 56px;
  padding: 0 40px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.cnv-tasy-cards__btn:hover {
  background-color: #63F2C0;
}

.cnv-escola {
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .cnv-escola {
    padding: 80px 0;
  }
}
.cnv-escola__box {
  background-color: rgba(99, 242, 192, 0.3);
  flex-direction: column;
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  gap: 32px;
}
@media (min-width: 1024px) {
  .cnv-escola__box {
    border-radius: 42px;
    padding: 48px 56px;
    flex-direction: row;
    gap: 60px;
  }
}
.cnv-escola__text {
  flex: 1;
}
.cnv-escola__badge {
  display: inline-block;
  background-color: #FFFFFF;
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .cnv-escola__badge {
    font-size: 16px;
  }
}
.cnv-escola__title {
  font-size: 24px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .cnv-escola__title {
    font-size: 36px;
    line-height: 48px;
  }
}
.cnv-escola__desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .cnv-escola__desc {
    font-size: 16px;
  }
}
.cnv-escola__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .cnv-escola__features {
    gap: 32px;
  }
}
.cnv-escola__feature {
  padding-bottom: 24px;
}
.cnv-escola__feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cnv-escola__feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 4px;
}
@media (min-width: 1024px) {
  .cnv-escola__feature-title {
    font-size: 18px;
  }
}
.cnv-escola__feature-desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .cnv-escola__feature-desc {
    font-size: 16px;
  }
}

.cnv-pricing {
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .cnv-pricing {
    padding: 80px 0;
  }
}
.cnv-pricing__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 1063px;
}
@media (min-width: 1024px) {
  .cnv-pricing__title {
    font-size: 53.18px;
    line-height: 60px;
    margin: 0 auto 60px;
  }
}
.cnv-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 1024px) {
  .cnv-pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cnv-pricing__card {
  background: #FFFFFF;
  border: 2px solid #63F2C0;
  border-radius: 24px;
  padding: 40px 24px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .cnv-pricing__card {
    border-radius: 42px;
    padding: 48px 38px 40px;
  }
}
.cnv-pricing__card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #63F2C0;
  border-radius: 100px;
  padding: 8px 40px;
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  white-space: nowrap;
}
.cnv-pricing__card-header {
  margin-bottom: 16px;
}
.cnv-pricing__card-name {
  font-size: 20px;
  font-weight: 500;
  color: #7296B4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}
@media (min-width: 1024px) {
  .cnv-pricing__card-name {
    font-size: 25px;
  }
}
.cnv-pricing__card-price {
  font-size: 32px;
  color: #1D3C55;
  margin: 0;
}
@media (min-width: 1024px) {
  .cnv-pricing__card-price {
    font-size: 45px;
  }
}
.cnv-pricing__card-desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .cnv-pricing__card-desc {
    font-size: 16px;
  }
}
.cnv-pricing__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}
.cnv-pricing__card-list li {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  padding: 12px 0 12px 30px;
  position: relative;
}
@media (min-width: 1024px) {
  .cnv-pricing__card-list li {
    font-size: 16px;
  }
}
.cnv-pricing__card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M13.3 4.3L6 11.6L2.7 8.3' stroke='%232CB7C0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.cnv-pricing__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  height: 56px;
  width: 227px;
  text-decoration: none;
  transition: 0.3s;
  background: transparent;
  border: 1px solid #63F1BE;
  color: #1D3C55;
}
.cnv-pricing__card-btn:hover {
  opacity: 0.85;
}

.btn-gradiente-com-degrade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 100px;
  background: linear-gradient(90deg, #63F1BE, #5CF6DA, #46DBEF);
  background-size: 200% 100%;
  background-position: 100% 50%;
  color: #1D3C55;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-position 0.4s ease;
  min-height: 46px;
  text-align: center;
}
.btn-gradiente-com-degrade:hover {
  background-position: 0% 50%;
}

.tasy-subnav {
  padding: 32px 0 0;
}
@media (min-width: 1024px) {
  .tasy-subnav {
    padding: 40px 0 0;
  }
}
.tasy-subnav__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F5F6FB;
  border-radius: 42px;
  padding: 12px 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tasy-subnav__bar::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .tasy-subnav__bar {
    justify-content: center;
    gap: 40px;
    padding: 12px 48px;
  }
}
.tasy-subnav__link {
  font-size: 14px;
  font-weight: 400;
  color: #1D3C55;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .tasy-subnav__link {
    font-size: 16px;
  }
}
.tasy-subnav__link:hover {
  color: #2CB7C0;
}
.tasy-subnav__link--active {
  font-weight: 700;
  background: #FFFFFF;
  border: 1px solid #63F1BE;
  border-radius: 100px;
  padding: 8px 24px;
}
@media (min-width: 1024px) {
  .tasy-subnav__link--active {
    padding: 12px 32px;
  }
}

.onco-hero {
  padding: 24px 0 60px;
}
@media (min-width: 1024px) {
  .onco-hero {
    padding: 32px 0 80px;
  }
}
.onco-hero__box {
  background: linear-gradient(90deg, #63F1BE, #5CF6DA, #46DBEF);
  border-radius: 24px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .onco-hero__box {
    border-radius: 42px;
    padding: 67px 112px;
  }
}
.onco-hero__text {
  max-width: 930px;
  position: relative;
  z-index: 2;
}
.onco-hero__label {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
}
@media (min-width: 1024px) {
  .onco-hero__label {
    font-size: 36px;
  }
}
.onco-hero__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .onco-hero__title {
    font-size: 46px;
    line-height: 60px;
  }
}
.onco-hero__subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .onco-hero__subtitle {
    font-size: 16px;
  }
}

.onco-fluxo {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .onco-fluxo {
    padding: 0 0 80px;
  }
}
.onco-fluxo__header {
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .onco-fluxo__header {
    margin-bottom: 64px;
  }
}
.onco-fluxo__suptitle {
  font-size: 28px;
  font-weight: 500;
  color: #7296B4;
  line-height: 25px;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .onco-fluxo__suptitle {
    font-size: 45px;
    line-height: 50px;
  }
}
.onco-fluxo__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 1024px) {
  .onco-fluxo__title {
    font-size: 53.18px;
    line-height: 60px;
  }
}
.onco-fluxo__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .onco-fluxo__content {
    flex-direction: row;
    gap: 60px;
  }
}
.onco-fluxo__text {
  flex: 1;
}
.onco-fluxo__text-title {
  font-size: 24px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .onco-fluxo__text-title {
    font-size: 35px;
    line-height: 35px;
  }
}
.onco-fluxo__text-desc {
  font-size: 14px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .onco-fluxo__text-desc {
    font-size: 16px;
  }
}
.onco-fluxo__steps {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.onco-fluxo__step {
  background: rgba(52, 205, 215, 0.2);
  border-radius: 24px;
  padding: 20px 24px;
}
@media (min-width: 1024px) {
  .onco-fluxo__step {
    border-radius: 42px;
    padding: 25px 55px;
  }
}
.onco-fluxo__step p {
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .onco-fluxo__step p {
    font-size: 18px;
    line-height: normal;
  }
}
.onco-fluxo__step-num {
  font-weight: 700;
}

.onco-features {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .onco-features {
    padding: 0 0 80px;
  }
}
.onco-features__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 1088px;
}
@media (min-width: 1024px) {
  .onco-features__title {
    font-size: 53.18px;
    line-height: 60px;
    margin: 0 auto 75px;
  }
}
.onco-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .onco-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .onco-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
  }
}
.onco-features__card {
  background: #F5F6FB;
  border-radius: 14px;
  padding: 28px 22px;
  backdrop-filter: blur(12px);
}
.onco-features__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 16px;
  line-height: 42px;
}
@media (min-width: 1024px) {
  .onco-features__card-title {
    font-size: 18px;
  }
}
.onco-features__card-desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .onco-features__card-desc {
    font-size: 16px;
  }
}

.onco-integracao {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .onco-integracao {
    padding: 0 0 80px;
  }
}
.onco-integracao__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .onco-integracao__content {
    flex-direction: row;
    gap: 60px;
  }
}
.onco-integracao__text {
  flex: 1;
}
@media (min-width: 1024px) {
  .onco-integracao__text {
    order: 1;
  }
}
.onco-integracao__title {
  font-size: 24px;
  font-weight: 500;
  color: #2CB7C0;
  line-height: 1.2;
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .onco-integracao__title {
    font-size: 36px;
    line-height: 36px;
  }
}
.onco-integracao__desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 32px;
}
@media (min-width: 1024px) {
  .onco-integracao__desc {
    font-size: 18px;
  }
}
.onco-integracao__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #63F1BE, #5CF6DA, #46DBEF);
  color: #1D3C55;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 100px;
  height: 56px;
  padding: 0 40px;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (min-width: 1024px) {
  .onco-integracao__btn {
    font-size: 16px;
  }
}
.onco-integracao__btn:hover {
  opacity: 0.85;
}
.onco-integracao__visual {
  flex: 1;
  position: relative;
  min-height: 280px;
}
@media (min-width: 1024px) {
  .onco-integracao__visual {
    order: 2;
    min-height: 476px;
  }
}
.onco-integracao__img {
  position: relative;
  z-index: 4;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.onco-integracao__blob {
  position: absolute;
  border-radius: 50%;
}
.onco-integracao__blob--1 {
  width: 14rem;
  height: 14rem;
  background: #7296B4;
  filter: blur(100px);
  bottom: -2rem;
  left: 0;
}
.onco-integracao__blob--2 {
  width: 10rem;
  height: 10rem;
  background: #34CDD7;
  filter: blur(100px);
  top: -2rem;
  right: -2rem;
}

.onco-cards {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .onco-cards {
    padding: 0 0 80px;
  }
}
.onco-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}
@media (min-width: 1024px) {
  .onco-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.onco-cards__blob {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}
.onco-cards__blob--1 {
  width: 16rem;
  height: 19rem;
  background: #34CDD7;
  filter: blur(100px);
  top: -4rem;
  right: 0;
}
@media (min-width: 1024px) {
  .onco-cards__blob--1 {
    left: 17rem;
    right: initial;
  }
}
.onco-cards__blob--2 {
  width: 18rem;
  height: 17rem;
  background: #7296B4;
  filter: blur(100px);
  right: 6rem;
  bottom: 1rem;
}
@media (min-width: 1024px) {
  .onco-cards__blob--2 {
    height: 18rem;
    bottom: -5rem;
  }
}
.onco-cards__card {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 28px 22px;
}
@media (min-width: 1024px) {
  .onco-cards__card {
    border-radius: 27px;
    padding: 36px 30px;
  }
}
.onco-cards__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 16px;
  line-height: 25px;
}
@media (min-width: 1024px) {
  .onco-cards__card-title {
    font-size: 18px;
  }
}
.onco-cards__card-desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .onco-cards__card-desc {
    font-size: 16px;
  }
}

.onco-hero__quote {
  font-size: 14px;
  font-style: italic;
  color: rgba(29, 60, 85, 0.8);
  line-height: 25px;
  margin: 16px 0 0;
  max-width: 720px;
}
@media (min-width: 1024px) {
  .onco-hero__quote {
    font-size: 16px;
  }
}

.cloud-ben {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .cloud-ben {
    padding: 0 0 80px;
  }
}
.cloud-ben__header {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .cloud-ben__header {
    margin-bottom: 56px;
  }
}
.cloud-ben__suptitle {
  font-size: 14px;
  font-weight: 700;
  color: #2CB7C0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 12px;
}
.cloud-ben__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .cloud-ben__title {
    font-size: 45px;
    line-height: 50px;
  }
}
.cloud-ben__desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .cloud-ben__desc {
    font-size: 16px;
  }
}
.cloud-ben__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .cloud-ben__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .cloud-ben__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .cloud-ben__grid--five {
    grid-template-columns: repeat(5, 1fr);
  }
}
.cloud-ben__card {
  background: #F5F6FB;
  border: 1px solid rgba(52, 205, 215, 0.2);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.cloud-ben__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 60, 85, 0.08);
  border-color: #2CB7C0;
}
.cloud-ben__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: rgba(44, 183, 192, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2CB7C0;
}
.cloud-ben__icon svg {
  width: 24px;
  height: 24px;
}
.cloud-ben__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 8px;
}
@media (min-width: 1024px) {
  .cloud-ben__card-title {
    font-size: 17px;
  }
}
.cloud-ben__card-desc {
  font-size: 13px;
  color: #7296B4;
  line-height: 21px;
  margin: 0;
}
@media (min-width: 1024px) {
  .cloud-ben__card-desc {
    font-size: 14px;
  }
}

.cloud-saas {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .cloud-saas {
    padding: 0 0 80px;
  }
}
.cloud-saas__content {
  background: #F5F6FB;
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .cloud-saas__content {
    border-radius: 42px;
    padding: 60px 72px;
    flex-direction: row;
    gap: 64px;
    align-items: start;
  }
}
.cloud-saas__text {
  flex: 1;
}
.cloud-saas__title {
  font-size: 24px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 1.3;
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  .cloud-saas__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.cloud-saas__desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .cloud-saas__desc {
    font-size: 16px;
  }
}
.cloud-saas__desc:last-child {
  margin-bottom: 0;
}
.cloud-saas__list {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cloud-saas__item {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cloud-saas__item p {
  font-size: 14px;
  color: #1D3C55;
  line-height: 22px;
  margin: 0;
}
@media (min-width: 1024px) {
  .cloud-saas__item p {
    font-size: 15px;
  }
}
.cloud-saas__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #63F1BE, #46DBEF);
  color: #1D3C55;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloud-sec {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .cloud-sec {
    padding: 0 0 80px;
  }
}
.cloud-sec__content {
  background-color: #285783;
  border-radius: 24px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .cloud-sec__content {
    border-radius: 42px;
    padding: 72px 80px;
    flex-direction: row;
    gap: 64px;
    align-items: center;
  }
}
.cloud-sec__content::before {
  content: "";
  position: absolute;
  top: -6rem;
  right: -4rem;
  width: 20rem;
  height: 20rem;
  background: #34CDD7;
  opacity: 0.15;
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}
.cloud-sec__text {
  flex: 1;
  position: relative;
  z-index: 2;
}
.cloud-sec__title {
  font-size: 26px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  .cloud-sec__title {
    font-size: 36px;
    line-height: 44px;
  }
}
.cloud-sec__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 25px;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .cloud-sec__desc {
    font-size: 16px;
  }
}
.cloud-sec__cards {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .cloud-sec__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .cloud-sec__cards--single {
    grid-template-columns: 1fr;
  }
}
.cloud-sec__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 22px;
  backdrop-filter: blur(8px);
}
.cloud-sec__card-title {
  font-size: 15px;
  font-weight: 700;
  color: #34CDD7;
  margin: 0 0 6px;
}
@media (min-width: 1024px) {
  .cloud-sec__card-title {
    font-size: 16px;
  }
}
.cloud-sec__card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 21px;
  margin: 0;
}
@media (min-width: 1024px) {
  .cloud-sec__card-desc {
    font-size: 14px;
  }
}

.onco-hero__highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(29, 60, 85, 0.08);
  padding: 10px 18px;
  border-radius: 100px;
  margin-top: 20px;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .onco-hero__highlight {
    padding: 12px 22px;
  }
}
.onco-hero__highlight p {
  font-size: 13px;
  color: #1D3C55;
  line-height: 20px;
  margin: 0;
}
@media (min-width: 1024px) {
  .onco-hero__highlight p {
    font-size: 14px;
  }
}
.onco-hero__highlight strong {
  font-weight: 700;
}

.onco-hero__highlight-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #63F1BE, #46DBEF);
  box-shadow: 0 0 0 3px rgba(44, 183, 192, 0.15);
}

.op-pillars {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .op-pillars {
    padding: 0 0 80px;
  }
}
.op-pillars__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .op-pillars__tabs {
    gap: 12px;
    margin-bottom: 56px;
  }
}
.op-pillars__tab {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1D3C55;
  background: #F5F6FB;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .op-pillars__tab {
    font-size: 14px;
    padding: 12px 28px;
  }
}
.op-pillars__tab:hover {
  border-color: #2CB7C0;
  color: #2CB7C0;
}
.op-pillars__tab.is-active {
  background: #2CB7C0;
  color: #FFFFFF;
  border-color: #2CB7C0;
}
.op-pillars__panel {
  display: none;
}
.op-pillars__panel.is-active {
  display: block;
  animation: opPillarsFade 0.3s ease;
}
.op-pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .op-pillars__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@keyframes opPillarsFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ap-levels {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ap-level {
  background: #FFFFFF;
  border-radius: 16px;
  border-left: 4px solid #2CB7C0;
  padding: 18px 22px;
}
.ap-level__title {
  font-size: 15px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 6px;
}
@media (min-width: 1024px) {
  .ap-level__title {
    font-size: 16px;
  }
}
.ap-level__desc {
  font-size: 13px;
  color: #7296B4;
  line-height: 21px;
  margin: 0;
}
@media (min-width: 1024px) {
  .ap-level__desc {
    font-size: 14px;
    line-height: 22px;
  }
}
.ap-level--terciaria {
  border-left-color: #EF4444;
}
.ap-level--secundaria {
  border-left-color: #F59E0B;
}
.ap-level--primaria {
  border-left-color: #2CB7C0;
}

.ap-journey {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .ap-journey {
    padding: 0 0 80px;
  }
}
.ap-journey__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.ap-journey__timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(44, 183, 192, 0.25);
}
@media (min-width: 768px) {
  .ap-journey__timeline::before {
    left: 7px;
  }
}
.ap-journey__step {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  position: relative;
}
@media (min-width: 768px) {
  .ap-journey__step {
    gap: 28px;
  }
}
.ap-journey__dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  background: linear-gradient(135deg, #63F1BE, #46DBEF);
  border-radius: 50%;
  margin-top: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(44, 183, 192, 0.12);
}
@media (min-width: 768px) {
  .ap-journey__dot {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }
}
.ap-journey__content {
  flex: 1;
  background: #F5F6FB;
  border-radius: 16px;
  padding: 18px 22px;
}
@media (min-width: 1024px) {
  .ap-journey__content {
    padding: 22px 28px;
  }
}
.ap-journey__label {
  font-size: 11px;
  font-weight: 700;
  color: #2CB7C0;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 6px;
}
.ap-journey__title {
  font-size: 16px;
  font-weight: 700;
  color: #1D3C55;
  line-height: 1.3;
  margin: 0 0 8px;
}
@media (min-width: 1024px) {
  .ap-journey__title {
    font-size: 18px;
  }
}
.ap-journey__desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 22px;
  margin: 0;
}
@media (min-width: 1024px) {
  .ap-journey__desc {
    font-size: 15px;
    line-height: 24px;
  }
}

.hosp-provas {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .hosp-provas {
    padding: 0 0 80px;
  }
}
.hosp-provas__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .hosp-provas__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .hosp-provas__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.hosp-provas__card {
  background: #F5F6FB;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
@media (min-width: 1024px) {
  .hosp-provas__card {
    padding: 36px 24px;
  }
}
.hosp-provas__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(29, 60, 85, 0.08);
}
.hosp-provas__value {
  font-size: 32px;
  font-weight: 700;
  color: #2CB7C0;
  line-height: 1.1;
  margin: 0 0 10px;
}
@media (min-width: 1024px) {
  .hosp-provas__value {
    font-size: 38px;
  }
}
.hosp-provas__desc {
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 1.5;
  margin: 0 0 8px;
}
.hosp-provas__inst {
  display: block;
  font-size: 12px;
  font-style: italic;
  color: #7296B4;
}

.hosp-portfolio {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .hosp-portfolio {
    padding: 0 0 80px;
  }
}
.hosp-portfolio__header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .hosp-portfolio__header {
    margin-bottom: 56px;
  }
}
.hosp-portfolio__suptitle {
  font-size: 14px;
  font-weight: 700;
  color: #2CB7C0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 12px;
}
.hosp-portfolio__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .hosp-portfolio__title {
    font-size: 40px;
    line-height: 50px;
  }
}
.hosp-portfolio__desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .hosp-portfolio__desc {
    font-size: 16px;
  }
}
.hosp-portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .hosp-portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .hosp-portfolio__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.hosp-portfolio__card {
  background: #FFFFFF;
  border: 1px solid rgba(114, 150, 180, 0.15);
  border-radius: 20px;
  padding: 28px 22px;
  transition: all 0.25s;
}
.hosp-portfolio__card:hover {
  border-color: #2CB7C0;
  box-shadow: 0 10px 30px rgba(29, 60, 85, 0.08);
  transform: translateY(-4px);
}
.hosp-portfolio__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #63F1BE, #46DBEF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #1D3C55;
}
.hosp-portfolio__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 12px;
}
.hosp-portfolio__card-desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 24px;
  margin: 0;
}

.hosp-beneficios {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .hosp-beneficios {
    padding: 0 0 80px;
  }
}
.hosp-beneficios__header {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .hosp-beneficios__header {
    margin-bottom: 56px;
  }
}
.hosp-beneficios__suptitle {
  font-size: 14px;
  font-weight: 700;
  color: #2CB7C0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 12px;
}
.hosp-beneficios__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 1024px) {
  .hosp-beneficios__title {
    font-size: 40px;
    line-height: 50px;
  }
}
.hosp-beneficios__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .hosp-beneficios__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
.hosp-beneficios__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #F5F6FB;
  border-radius: 16px;
  padding: 20px 22px;
}
.hosp-beneficios__dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: #2CB7C0;
  margin-top: 8px;
}
.hosp-beneficios__text {
  font-size: 14px;
  color: #1D3C55;
  line-height: 24px;
  margin: 0;
}
@media (min-width: 1024px) {
  .hosp-beneficios__text {
    font-size: 15px;
  }
}

.hosp-cases {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .hosp-cases {
    padding: 0 0 80px;
  }
}
.hosp-cases__header {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .hosp-cases__header {
    margin-bottom: 56px;
  }
}
.hosp-cases__suptitle {
  font-size: 14px;
  font-weight: 700;
  color: #2CB7C0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 12px;
}
.hosp-cases__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 1024px) {
  .hosp-cases__title {
    font-size: 40px;
    line-height: 50px;
  }
}
.hosp-cases__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .hosp-cases__tabs {
    gap: 12px;
  }
}
.hosp-cases__tab {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1D3C55;
  background: #F5F6FB;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .hosp-cases__tab {
    font-size: 14px;
    padding: 12px 28px;
  }
}
.hosp-cases__tab:hover {
  border-color: #2CB7C0;
  color: #2CB7C0;
}
.hosp-cases__tab.is-active {
  background: #2CB7C0;
  color: #FFFFFF;
  border-color: #2CB7C0;
}
.hosp-cases__panel {
  display: none;
}
.hosp-cases__panel.is-active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  animation: hospCasesFade 0.3s ease;
}
@media (min-width: 1024px) {
  .hosp-cases__panel.is-active {
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
  }
}
.hosp-cases__story-title {
  font-size: 22px;
  font-weight: 700;
  color: #1D3C55;
  line-height: 1.3;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .hosp-cases__story-title {
    font-size: 26px;
  }
}
.hosp-cases__story-desc {
  font-size: 15px;
  color: #1D3C55;
  line-height: 26px;
  margin: 0 0 24px;
}
.hosp-cases__story-quote {
  font-size: 15px;
  color: #1D3C55;
  line-height: 26px;
  font-style: italic;
  border-left: 3px solid #2CB7C0;
  padding-left: 18px;
  margin: 0 0 16px;
}
.hosp-cases__story-auth {
  font-size: 13px;
  color: #7296B4;
}
.hosp-cases__story-auth strong {
  color: #1D3C55;
}
.hosp-cases__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hosp-cases__stat {
  background: rgba(52, 205, 215, 0.18);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}
.hosp-cases__stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #2CB7C0;
  line-height: 1;
}
@media (min-width: 1024px) {
  .hosp-cases__stat-value {
    font-size: 32px;
  }
}
.hosp-cases__stat-label {
  font-size: 13px;
  color: #7296B4;
  margin-top: 6px;
}

@keyframes hospCasesFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hosp-ecosystem {
  padding: 60px 0;
  margin-bottom: 60px;
  background-color: #285783;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hosp-ecosystem {
    padding: 80px 0;
    margin-bottom: 80px;
    border-radius: 42px;
  }
}
.hosp-ecosystem::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 205, 215, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hosp-ecosystem__container {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .hosp-ecosystem__container {
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
}
.hosp-ecosystem__text {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .hosp-ecosystem__text {
    margin-bottom: 0;
  }
}
.hosp-ecosystem__title {
  font-size: 28px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  .hosp-ecosystem__title {
    font-size: 36px;
    line-height: 44px;
  }
}
.hosp-ecosystem__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 26px;
  margin: 0;
}
@media (min-width: 1024px) {
  .hosp-ecosystem__desc {
    font-size: 16px;
  }
}
.hosp-ecosystem__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hosp-ecosystem__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
}
.hosp-ecosystem__card-title {
  font-size: 15px;
  font-weight: 700;
  color: #34CDD7;
  margin: 0 0 6px;
}
.hosp-ecosystem__card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 22px;
  margin: 0;
}

.hosp-clientes {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .hosp-clientes {
    padding: 0 0 80px;
  }
}
.hosp-clientes__header {
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .hosp-clientes__header {
    margin-bottom: 48px;
  }
}
.hosp-clientes__suptitle {
  font-size: 14px;
  font-weight: 700;
  color: #2CB7C0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 12px;
}
.hosp-clientes__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 1024px) {
  .hosp-clientes__title {
    font-size: 40px;
    line-height: 50px;
  }
}

.tasy-hero {
  padding: 24px 0 60px;
}
@media (min-width: 1024px) {
  .tasy-hero {
    padding: 32px 0 80px;
  }
}
.tasy-hero__box {
  background: linear-gradient(90deg, #63F1BE, #5CF6DA, #46DBEF);
  border-radius: 24px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
@media (min-width: 1024px) {
  .tasy-hero__box {
    border-radius: 42px;
    padding: 67px 112px;
    min-height: 622px;
  }
}
.tasy-hero__text {
  max-width: 554px;
  position: relative;
  z-index: 2;
}
.tasy-hero__label {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
}
@media (min-width: 1024px) {
  .tasy-hero__label {
    font-size: 36px;
  }
}
.tasy-hero__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .tasy-hero__title {
    font-size: 46px;
    line-height: 60px;
  }
}
.tasy-hero__subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 25px;
  max-width: 435px;
}
.tasy-hero__subtitle p {
  margin: 0 0 1em;
}
.tasy-hero__subtitle p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .tasy-hero__subtitle {
    font-size: 16px;
  }
}
.tasy-hero__visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
  display: none;
}
@media (min-width: 768px) {
  .tasy-hero__visual {
    display: block;
  }
}
.tasy-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 42px 42px 0;
}

.tasy-stats {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .tasy-stats {
    padding: 0 0 80px;
  }
}
.tasy-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 1024px) {
  .tasy-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}
.tasy-stats__item {
  text-align: center;
}
.tasy-stats__number {
  font-size: 28px;
  font-weight: 500;
  color: #2CB7C0;
  display: block;
  margin-bottom: 16px;
  line-height: 30px;
}
@media (min-width: 1024px) {
  .tasy-stats__number {
    font-size: 47px;
  }
}
.tasy-stats__label {
  font-size: 14px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .tasy-stats__label {
    font-size: 16px;
  }
}

.tasy-solucoes {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .tasy-solucoes {
    padding: 0 0 80px;
  }
}
.tasy-solucoes__header {
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .tasy-solucoes__header {
    margin-bottom: 64px;
  }
}
.tasy-solucoes__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 auto 24px;
  max-width: 835px;
}
@media (min-width: 1024px) {
  .tasy-solucoes__title {
    font-size: 53.18px;
    line-height: 60px;
  }
}
.tasy-solucoes__desc {
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 auto;
  max-width: 864px;
}
@media (min-width: 1024px) {
  .tasy-solucoes__desc {
    font-size: 18px;
  }
}
.tasy-solucoes__desc p {
  margin-bottom: 1.5rem;
}
.tasy-solucoes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .tasy-solucoes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .tasy-solucoes__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
  }
}
.tasy-solucoes__card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: rgba(52, 205, 215, 0.2);
  border-radius: 14px;
  padding: 28px 22px;
  backdrop-filter: blur(12px);
  min-height: 280px;
  transition: background 0.4s ease, color 0.4s ease;
}
@media (min-width: 1024px) {
  .tasy-solucoes__card {
    min-height: 340px;
  }
}
.tasy-solucoes__card:hover, .tasy-solucoes__card--dark {
  background: #1D3C55;
}
.tasy-solucoes__card:hover .tasy-solucoes__card-title, .tasy-solucoes__card--dark .tasy-solucoes__card-title {
  color: #34CDD7;
}
.tasy-solucoes__card:hover .tasy-solucoes__card-desc, .tasy-solucoes__card--dark .tasy-solucoes__card-desc {
  color: #FFFFFF;
}
.tasy-solucoes__card-title, .tasy-solucoes__card-desc {
  transition: color 0.4s ease;
}
.tasy-solucoes__card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
}
.tasy-solucoes__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 16px;
  line-height: 25px;
}
@media (min-width: 1024px) {
  .tasy-solucoes__card-title {
    font-size: 22px;
  }
}
.tasy-solucoes__card-desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .tasy-solucoes__card-desc {
    font-size: 18px;
  }
}

.tasy-impacto {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .tasy-impacto {
    padding: 0 0 80px;
  }
}
.tasy-impacto__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
  text-align: center;
}
@media (min-width: 1024px) {
  .tasy-impacto__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}
.tasy-impacto__item {
  text-align: center;
}
.tasy-impacto__number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #2CB7C0;
  line-height: 30px;
  margin: 0 0 12px;
}
@media (min-width: 1024px) {
  .tasy-impacto__number {
    font-size: 40px;
  }
}
.tasy-impacto__number--text {
  font-size: 22px;
}
@media (min-width: 1024px) {
  .tasy-impacto__number--text {
    font-size: 32px;
  }
}
.tasy-impacto__label {
  font-size: 13px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 1024px) {
  .tasy-impacto__label {
    font-size: 18px;
    line-height: 30px;
  }
}

.tasy-ecossistema {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .tasy-ecossistema {
    padding: 0 0 80px;
  }
}
.tasy-ecossistema__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 32px;
  max-width: 880px;
}
@media (min-width: 1024px) {
  .tasy-ecossistema__title {
    font-size: 53.18px;
    line-height: 60px;
    margin: 0 auto 48px;
  }
}
.tasy-ecossistema__personas {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tasy-ecossistema__personas::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .tasy-ecossistema__personas {
    gap: 20px;
    margin: 0 0 48px;
    overflow-x: visible;
    flex-wrap: wrap;
  }
}
.tasy-ecossistema__persona {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 64px;
  min-width: 200px;
  padding: 0 24px;
  border-radius: 42px;
  background: #F5F6FB;
  color: #1D3C55;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
@media (min-width: 1024px) {
  .tasy-ecossistema__persona {
    height: 88px;
    min-width: 310px;
    padding: 0 30px;
    font-size: 18px;
    flex: 1;
  }
}
.tasy-ecossistema__persona.is-active {
  background: #285783;
  color: #FFFFFF;
}
.tasy-ecossistema__persona.is-active .tasy-ecossistema__persona-icon {
  filter: brightness(0) invert(1);
}
.tasy-ecossistema__persona-label {
  pointer-events: none;
}
.tasy-ecossistema__persona-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .tasy-ecossistema__persona-icon {
    width: 32px;
    height: 32px;
  }
}
.tasy-ecossistema__panel {
  display: none;
}
.tasy-ecossistema__panel.is-active {
  display: block;
}
.tasy-ecossistema__panel-title {
  font-size: 18px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 16px;
  line-height: 1.4;
}
.tasy-ecossistema__panel-desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 32px;
}
@media (min-width: 1024px) {
  .tasy-ecossistema__panel-desc {
    font-size: 16px;
    margin: 0 0 40px;
  }
}
.tasy-ecossistema__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .tasy-ecossistema__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tasy-ecossistema__card {
  background: rgba(52, 205, 215, 0.2);
  border-radius: 14px;
  padding: 24px 22px;
  backdrop-filter: blur(12px);
}
.tasy-ecossistema__card-num {
  font-size: 28px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 8px;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .tasy-ecossistema__card-num {
    font-size: 35px;
  }
}
.tasy-ecossistema__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 12px;
  line-height: 25px;
}
@media (min-width: 1024px) {
  .tasy-ecossistema__card-title {
    font-size: 18px;
  }
}
.tasy-ecossistema__card-desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .tasy-ecossistema__card-desc {
    font-size: 16px;
  }
}

.tasy-parte-eco {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .tasy-parte-eco {
    padding: 0 0 80px;
  }
}
.tasy-parte-eco__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 auto 24px;
  text-align: center;
}
@media (min-width: 1024px) {
  .tasy-parte-eco__title {
    font-size: 53.18px;
    line-height: 60px;
  }
}
.tasy-parte-eco__desc {
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 25px;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 949px;
}
@media (min-width: 1024px) {
  .tasy-parte-eco__desc {
    font-size: 18px;
    margin: 0 auto 56px;
  }
}
.tasy-parte-eco__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .tasy-parte-eco__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tasy-parte-eco__card {
  border-radius: 15px;
  padding: 32px 24px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: start;
  position: relative;
}
@media (min-width: 1024px) {
  .tasy-parte-eco__card {
    padding: 48px 32px;
    min-height: 391px;
  }
}
.tasy-parte-eco__card--360 {
  background: #F5F6FB;
}
.tasy-parte-eco__card--cnv {
  background: #34CDD7;
}
.tasy-parte-eco__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  margin: 0 0 24px;
  white-space: nowrap;
  position: absolute;
  right: 1rem;
  top: 1rem;
}
@media (min-width: 1024px) {
  .tasy-parte-eco__badge {
    font-size: 16px;
    margin: 0 0 32px;
  }
}
.tasy-parte-eco__badge--green {
  background: #63F2C0;
}
.tasy-parte-eco__badge--white {
  background: #FFFFFF;
}
.tasy-parte-eco__card-lead {
  font-size: 16px;
  color: #1D3C55;
  line-height: 1.4;
  margin-top: 4rem;
  margin-bottom: 1rem;
  align-self: flex-start;
}
@media (min-width: 1024px) {
  .tasy-parte-eco__card-lead {
    font-size: 18px;
  }
}
.tasy-parte-eco__card-lead strong {
  font-weight: 700;
}
.tasy-parte-eco__card-text {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .tasy-parte-eco__card-text {
    font-size: 16px;
  }
}

.tasy-problema {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .tasy-problema {
    padding: 0 0 80px;
  }
}
.tasy-problema__header {
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .tasy-problema__header {
    margin-bottom: 6rem;
  }
}
.tasy-problema__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 auto 24px;
  max-width: 1088px;
}
@media (min-width: 1024px) {
  .tasy-problema__title {
    font-size: 53.18px;
    line-height: 60px;
  }
}
.tasy-problema__subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 auto;
  max-width: 885px;
}
@media (min-width: 1024px) {
  .tasy-problema__subtitle {
    font-size: 18px;
  }
}
.tasy-problema__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .tasy-problema__content {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }
}
.tasy-problema__text {
  flex: 1;
}
@media (min-width: 1024px) {
  .tasy-problema__text {
    order: 1;
  }
}
.tasy-problema__text-title {
  font-size: 24px;
  font-weight: 500;
  color: #2CB7C0;
  line-height: 1.2;
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .tasy-problema__text-title {
    font-size: 36px;
    line-height: 36px;
  }
}
.tasy-problema__list {
  list-style: disc;
  padding-left: 27px;
  margin: 0 0 24px;
}
.tasy-problema__list li {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .tasy-problema__list li {
    font-size: 18px;
  }
}
.tasy-problema__conclusion {
  font-size: 14px;
  color: #1D3C55;
  margin: 0;
}
@media (min-width: 1024px) {
  .tasy-problema__conclusion {
    font-size: 16px;
  }
}
.tasy-problema__conclusion strong {
  font-weight: 700;
}
.tasy-problema__visual {
  flex: 1;
  position: relative;
  min-height: 280px;
}
@media (min-width: 1024px) {
  .tasy-problema__visual {
    min-height: 464px;
    order: 2;
  }
}
.tasy-problema__img {
  position: relative;
  z-index: 4;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.tasy-problema__blob {
  position: absolute;
  border-radius: 50%;
}
.tasy-problema__blob--1 {
  width: 14rem;
  height: 14rem;
  background: #7296B4;
  filter: blur(100px);
  bottom: -2rem;
  left: 0;
}
.tasy-problema__blob--2 {
  width: 10rem;
  height: 10rem;
  background: #34CDD7;
  filter: blur(100px);
  top: -2rem;
  right: -2rem;
}

.tasy-plataforma {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .tasy-plataforma {
    padding: 0 0 80px;
  }
}
.tasy-plataforma__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@media (min-width: 1024px) {
  .tasy-plataforma__content {
    flex-direction: row;
  }
}
.tasy-plataforma__blob {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}
.tasy-plataforma__blob--1 {
  width: 14rem;
  height: 14rem;
  background: #7296B4;
  filter: blur(100px);
  bottom: 0;
  right: 40%;
}
.tasy-plataforma__blob--2 {
  width: 10rem;
  height: 10rem;
  background: #34CDD7;
  filter: blur(100px);
  top: -2rem;
  right: 0;
}
.tasy-plataforma__card {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .tasy-plataforma__card {
    border-radius: 27px;
  }
}
.tasy-plataforma__card--img {
  min-height: 250px;
}
@media (min-width: 1024px) {
  .tasy-plataforma__card--img {
    min-height: 379px;
  }
}
.tasy-plataforma__card--text {
  background: rgba(255, 255, 255, 0.6);
  padding: 32px 24px;
}
@media (min-width: 1024px) {
  .tasy-plataforma__card--text {
    padding: 54px 47px;
  }
}
.tasy-plataforma__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
@media (min-width: 1024px) {
  .tasy-plataforma__img {
    border-radius: 27px;
  }
}
.tasy-plataforma__title {
  font-size: 24px;
  font-weight: 500;
  color: #2CB7C0;
  line-height: 1.2;
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .tasy-plataforma__title {
    font-size: 36px;
    line-height: 36px;
  }
}
.tasy-plataforma__desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .tasy-plataforma__desc {
    font-size: 18px;
  }
}
.tasy-plataforma__desc:last-child {
  margin-bottom: 0;
}
.tasy-plataforma__cta {
  text-align: center;
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .tasy-plataforma__cta {
    margin-top: 5rem;
  }
}
.tasy-plataforma__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #63F1BE, #5CF6DA, #46DBEF);
  color: #1D3C55;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 100px;
  height: 56px;
  padding: 0 40px;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (min-width: 1024px) {
  .tasy-plataforma__btn {
    font-size: 16px;
  }
}
.tasy-plataforma__btn:hover {
  opacity: 0.85;
}

.tasy-tech {
  padding: 0 0 60px;
}
@media (min-width: 1024px) {
  .tasy-tech {
    padding: 0 0 80px;
  }
}
.tasy-tech__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 48px;
  max-width: 1028px;
}
@media (min-width: 1024px) {
  .tasy-tech__title {
    font-size: 53.18px;
    line-height: 60px;
    margin: 0 auto 75px;
  }
}
.tasy-tech__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .tasy-tech__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .tasy-tech__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 21px;
  }
}
.tasy-tech__item {
  text-align: left;
}
.tasy-tech__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .tasy-tech__icon {
    width: 58px;
    height: 58px;
  }
}
.tasy-tech__label {
  font-size: 16px;
  font-weight: 500;
  color: #1D3C55;
  line-height: normal;
  margin: 0;
}
@media (min-width: 1024px) {
  .tasy-tech__label {
    font-size: 20px;
  }
}

.tasy-modulos {
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .tasy-modulos {
    padding: 80px 0;
  }
}
.tasy-modulos__container {
  overflow: hidden;
}
.tasy-modulos__panels {
  padding-top: 2rem;
}
.tasy-modulos__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 40px;
}
@media (min-width: 1024px) {
  .tasy-modulos__title {
    font-size: 53.18px;
    line-height: 60px;
    margin: 0 0 48px;
  }
}
.tasy-modulos__tabs {
  display: flex;
  gap: 0;
  border: 0.5px solid #7296B4;
  border-radius: 100px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 40px;
}
@media (min-width: 1280px) {
  .tasy-modulos__tabs {
    width: 70rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.tasy-modulos__tabs::-webkit-scrollbar {
  display: none;
}
.tasy-modulos__tab {
  font-size: 14px;
  font-weight: 400;
  color: #7296B4;
  background: transparent;
  border: 6px solid #fff;
  padding: 16px 20px;
  white-space: nowrap;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
  flex: 1 0 auto;
}
@media (min-width: 1024px) {
  .tasy-modulos__tab {
    font-size: 18px;
    padding: 20px 30px;
  }
}
.tasy-modulos__tab.is-active {
  color: #1D3C55;
  font-weight: 700;
  border: 6px solid #63F1BE;
  border-radius: 100px;
}
.tasy-modulos__panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (min-width: 1024px) {
  .tasy-modulos__panel {
    grid-template-columns: 485px 1fr;
    gap: 64px;
    align-items: start;
  }
}
.tasy-modulos__panel.is-active {
  display: grid;
  opacity: 1;
}
.tasy-modulos__media {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tasy-modulos__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .tasy-modulos__image {
    border-radius: 42px;
    max-height: 302px;
  }
}
.tasy-modulos__desc {
  font-size: 14px;
  line-height: 25px;
  color: #1D3C55;
  margin: 0;
}
@media (min-width: 1024px) {
  .tasy-modulos__desc {
    font-size: 16px;
  }
}
.tasy-modulos__desc + .tasy-modulos__desc {
  margin-top: 16px;
}
.tasy-modulos__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tasy-modulos__feature {
  background: rgba(99, 242, 192, 0.2);
  border-radius: 24px;
  padding: 18px 24px;
  color: #1D3C55;
}
@media (min-width: 1024px) {
  .tasy-modulos__feature {
    border-radius: 42px;
    padding: 24px 55px;
    min-height: 121px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.tasy-modulos__feature h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
  margin: 0 0 4px;
}
@media (min-width: 1024px) {
  .tasy-modulos__feature h3 {
    font-size: 18px;
  }
}
.tasy-modulos__feature p {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .tasy-modulos__feature p {
    font-size: 18px;
  }
}

.bri-hero {
  padding: 32px 0 48px;
}
@media (min-width: 1024px) {
  .bri-hero {
    padding: 40px 0 80px;
  }
}
.bri-hero__container {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .bri-hero__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.bri-hero__box {
  position: relative;
  background: rgba(44, 183, 192, 0.3);
  border-radius: 24px;
  padding: 32px 24px;
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .bri-hero__box {
    padding: 48px 40px;
  }
}
@media (min-width: 1024px) {
  .bri-hero__box {
    gap: 40px;
    border-radius: 42px;
    padding: 72px 108px;
    min-height: 503px;
    grid-template-columns: 6fr 4fr;
  }
}
@media (min-width: 1280px) {
  .bri-hero__box {
    padding: 72px 60px 72px 108px;
  }
}
.bri-hero__text {
  position: relative;
  z-index: 2;
}
.bri-hero__eyebrow {
  font-size: 22px;
  font-weight: 700;
  color: #7296B4;
  margin: 0 0 12px;
}
@media (min-width: 1024px) {
  .bri-hero__eyebrow {
    font-size: 36px;
    margin-bottom: 0;
    line-height: 1.2;
  }
}
.bri-hero__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .bri-hero__title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .bri-hero__title {
    font-size: 46px;
    line-height: 60px;
    margin-bottom: 24px;
  }
}
.bri-hero .titulo-com-badge {
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .bri-hero .titulo-com-badge {
    display: flex;
    margin-bottom: 1rem;
  }
}
.bri-hero__badge {
  display: inline-block;
  background: rgba(52, 205, 215, 0.5);
  border-radius: 100px;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 500;
  color: #1D3C55;
  text-align: center;
}
@media (min-width: 1024px) {
  .bri-hero__badge {
    font-size: 16px;
    padding: 0rem 1rem;
    display: flex;
    align-items: center;
    margin-left: 1rem;
    width: fit-content;
  }
}
.bri-hero__desc {
  font-size: 15px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.5;
  margin: 0;
  max-width: 532px;
}
@media (min-width: 1024px) {
  .bri-hero__desc {
    font-size: 18px;
  }
}
.bri-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .bri-hero__visual::before {
    content: "";
    position: absolute;
    width: 356px;
    height: 356px;
    background: linear-gradient(90deg, #63F1BE, #5CF6DA, #46DBEF);
    filter: blur(112px);
    border-radius: 50%;
    z-index: -1;
  }
}
.bri-hero__img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 1280px) {
  .bri-hero__img {
    position: absolute;
    width: 37rem;
    left: 0;
  }
}

.bri-stats {
  padding: 0 0 1rem;
}
@media (min-width: 1024px) {
  .bri-stats {
    padding: 0 0 40px;
  }
}
.bri-stats__container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .bri-stats__container {
    flex-direction: row;
    justify-content: space-around;
    gap: 32px;
    flex-wrap: wrap;
  }
}
@media (min-width: 1024px) {
  .bri-stats__container {
    gap: 197px;
    justify-content: center;
  }
}
.bri-stats__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bri-stats__number {
  font-size: 32px;
  font-weight: 500;
  color: #2CB7C0;
  line-height: 1;
}
@media (min-width: 1024px) {
  .bri-stats__number {
    font-size: 47px;
  }
}
.bri-stats__desc {
  font-size: 14px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 25px;
}
@media (min-width: 1024px) {
  .bri-stats__desc {
    font-size: 16px;
  }
}

.bri-intro {
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .bri-intro {
    padding: 80px 0;
  }
}
.bri-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .bri-intro__grid {
    grid-template-columns: minmax(0, 471px) minmax(0, 750px);
    gap: 40px;
    align-items: start;
  }
}
.bri-intro__title {
  font-size: 24px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  .bri-intro__title {
    font-size: 36px;
    margin-bottom: 28px;
  }
}
.bri-intro__desc {
  font-size: 15px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .bri-intro__desc {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.bri-intro__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .bri-intro__right {
    gap: 25px;
  }
}
.bri-intro__pill {
  border-radius: 24px;
  padding: 24px;
}
@media (min-width: 1024px) {
  .bri-intro__pill {
    border-radius: 42px;
    padding: 25px 55px;
  }
}
.bri-intro__pill--green {
  background: rgba(99, 242, 192, 0.2);
}
.bri-intro__pill--outline {
  background: transparent;
  border: 1px solid rgba(114, 150, 180, 0.3);
}
.bri-intro__pill-title {
  font-size: 16px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 10px;
}
@media (min-width: 1024px) {
  .bri-intro__pill-title {
    font-size: 18px;
  }
}
.bri-intro__pill-desc {
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 1024px) {
  .bri-intro__pill-desc {
    font-size: 18px;
  }
}

.bri-features {
  padding: 40px 0;
  position: relative;
}
.bri-features .section-header {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .bri-features .section-header {
    margin-bottom: 60px;
  }
}
.bri-features__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .bri-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .bri-features__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.bri-features__blob {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(100px);
}
@media (min-width: 1024px) {
  .bri-features__blob {
    display: block;
  }
}
.bri-features__blob--1 {
  background: #34CDD7;
  width: 21rem;
  height: 21rem;
  top: 5rem;
  left: 0;
}
@media (min-width: 1024px) {
  .bri-features__blob--1 {
    top: 1rem;
    left: 18rem;
  }
}
.bri-features__blob--2 {
  background: #7296B4;
  bottom: 2rem;
  width: 20rem;
  right: 0;
  height: 46rem;
}
@media (min-width: 1024px) {
  .bri-features__blob--2 {
    height: 20rem;
    right: 9rem;
  }
}
.bri-features__card {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 24px 22px;
}
@media (min-width: 1024px) {
  .bri-features__card {
    border-radius: 27px;
    padding: 33px 30px;
    min-height: 212px;
  }
}
.bri-features__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 12px;
}
@media (min-width: 1024px) {
  .bri-features__card-title {
    font-size: 18px;
  }
}
.bri-features__card-desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .bri-features__card-desc {
    font-size: 16px;
  }
}

.bri-use-cases {
  padding: 48px 0 0;
}
@media (min-width: 1024px) {
  .bri-use-cases {
    padding: 80px 0 0;
  }
}
.bri-use-cases .section-header {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .bri-use-cases .section-header {
    margin-bottom: 60px;
  }
}
.bri-use-cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .bri-use-cases__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .bri-use-cases__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
  }
}
.bri-use-cases__card {
  background: #F5F6FB;
  backdrop-filter: blur(12.346px);
  border-radius: 14px;
  padding: 28px 22px;
}
@media (min-width: 1024px) {
  .bri-use-cases__card {
    padding: 28px 22px;
    min-height: 210px;
  }
}
.bri-use-cases__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1D3C55;
  line-height: 1.3;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .bri-use-cases__card-title {
    font-size: 18px;
  }
}
.bri-use-cases__card-desc {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .bri-use-cases__card-desc {
    font-size: 16px;
  }
}

.bri-pricing {
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .bri-pricing {
    padding: 80px 0;
  }
}
.bri-pricing .section-header {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .bri-pricing .section-header {
    margin-bottom: 60px;
  }
}
.bri-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .bri-pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .bri-pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.bri-pricing__card {
  position: relative;
  border: 2px solid #63F2C0;
  border-radius: 24px;
  padding: 48px 32px 32px;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
}
@media (min-width: 1024px) {
  .bri-pricing__card {
    border-radius: 42px;
    padding: 81px 42px 40px;
    min-height: 535px;
  }
}
.bri-pricing__card--recommended {
  padding-top: 72px;
}
@media (min-width: 1024px) {
  .bri-pricing__card--recommended {
    padding-top: 100px;
  }
}
.bri-pricing__card-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #63F2C0;
  border-radius: 100px;
  padding: 8px 40px;
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .bri-pricing__card-badge {
    top: 20px;
    right: 38px;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 16px;
  }
}
.bri-pricing__card-header {
  margin-bottom: 20px;
}
.bri-pricing__card-name {
  font-size: 18px;
  font-weight: 500;
  color: #7296B4;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
}
@media (min-width: 1024px) {
  .bri-pricing__card-name {
    font-size: 25px;
  }
}
.bri-pricing__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0;
}
@media (min-width: 1024px) {
  .bri-pricing__card-title {
    font-size: 25px;
  }
}
.bri-pricing__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.bri-pricing__card-list li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-size: 15px;
  color: #1D3C55;
  line-height: 30px;
}
@media (min-width: 1024px) {
  .bri-pricing__card-list li {
    font-size: 18px;
    line-height: 45px;
    padding: 0 0 0 30px;
  }
}
.bri-pricing__card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M14.5 5.5L7.5 12.5L3.5 8.5' stroke='%232CB7C0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 1024px) {
  .bri-pricing__card-list li::before {
    top: 17px;
  }
}
.bri-pricing__card-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  min-width: 164px;
  padding: 0 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  color: #1D3C55;
  text-decoration: none;
}

.bri-timeline {
  background: rgba(44, 183, 192, 0.3);
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .bri-timeline {
    padding: 80px 0;
  }
}
.bri-timeline__container {
  text-align: center;
}
.bri-timeline__title {
  font-size: 28px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.2;
  margin: 0 auto 24px;
  max-width: 1063px;
}
@media (min-width: 1024px) {
  .bri-timeline__title {
    font-size: 53.18px;
    line-height: 60px;
  }
}
.bri-timeline__text {
  font-size: 14px;
  color: #1D3C55;
  line-height: 25px;
  max-width: 1006px;
  margin: 0 auto 40px;
}
.bri-timeline__text p {
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .bri-timeline__text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 60px;
  }
}
.bri-timeline__marks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
@media (min-width: 1024px) {
  .bri-timeline__marks {
    gap: 150px;
    flex-wrap: nowrap;
  }
}
.bri-timeline__mark {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
@media (min-width: 1024px) {
  .bri-timeline__mark {
    flex: 0 0 auto;
  }
}
.bri-timeline__year {
  font-size: 28px;
  font-weight: 700;
  color: #1D3C55;
  line-height: 30px;
}
@media (min-width: 1024px) {
  .bri-timeline__year {
    font-size: 40px;
  }
}
.bri-timeline__label {
  font-size: 14px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .bri-timeline__label {
    font-size: 18px;
    line-height: 30px;
  }
}

.lia-agents {
  padding-top: 60px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .lia-agents {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.lia-agents__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .lia-agents__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lia-agents__card {
  gap: 20px;
  background: #F5F6FB;
  border: 0.5px solid #63F1BE;
  border-radius: 14.7px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lia-agents__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(29, 60, 85, 0.12);
}
@media (min-width: 1024px) {
  .lia-agents__card {
    display: flex;
  }
}

.lia-agents__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, rgba(99, 241, 190, 0.15) 0%, rgba(44, 183, 192, 0.06) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.lia-agents__icon svg {
  width: 24px;
  height: 24px;
  stroke: #2CB7C0;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lia-agents__content {
  flex: 1;
}

.lia-agents__area {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #2CB7C0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.lia-agents__title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 1.3;
  margin: 0 0 8px;
}

.lia-agents__desc {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}

.lia-agents__metric {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #2CB7C0;
  background: rgba(44, 183, 192, 0.08);
  padding: 4px 10px;
  border-radius: 50px;
}

.lia-agents__cta-wrapper {
  text-align: center;
  margin-top: 48px;
}

.lia-social-proof__grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .lia-social-proof__grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .lia-social-proof__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lia-social-proof__number {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #2CB7C0;
  line-height: 30px;
  margin: 0 0 8px;
}
@media (min-width: 768px) {
  .lia-social-proof__number {
    font-size: 40px;
  }
}

.lia-social-proof__text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 768px) {
  .lia-social-proof__text {
    font-size: 18px;
    line-height: 30px;
  }
}

.lia-timeline {
  background-color: rgba(44, 183, 192, 0.6);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .lia-timeline {
    padding: 96px 0;
    margin-top: 6rem;
  }
}

.lia-timeline__inner {
  position: relative;
  z-index: 2;
}

.lia-timeline .section-header__subtitle {
  color: #1D3C55;
}

.lia-timeline__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .lia-timeline__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .lia-timeline__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lia-timeline__step {
  background: rgba(44, 183, 192, 0.1);
  border: 1px solid rgba(44, 183, 192, 0.5);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
}

.lia-timeline__step--current {
  border-color: #1D3C55;
  background: rgba(44, 183, 192, 0.1);
}
.lia-timeline__step--current::before {
  content: "AGORA";
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 800;
  background: #1D3C55;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
  color: #fff;
}

.lia-timeline__era {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #1D3C55;
  margin-bottom: 12px;
}

.lia-timeline__step-title {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}

.lia-timeline__step-desc {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.sobre-hero {
  padding: 0 16px;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .sobre-hero {
    padding: 0 70px;
    margin-top: 32px;
  }
}

.sobre-hero__box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-color: rgba(52, 205, 215, 0.15);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .sobre-hero__box {
    padding: 48px 48px;
    border-radius: 42px;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .sobre-hero__box {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 75px 110px;
    min-height: 571px;
  }
}

.sobre-hero__content {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
}
@media (min-width: 1024px) {
  .sobre-hero__content {
    max-width: 300px;
  }
}
@media (min-width: 1280px) {
  .sobre-hero__content {
    max-width: 423px;
  }
}

.sobre-hero__logo {
  display: block;
  width: 166px;
  height: auto;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .sobre-hero__logo {
    width: 196px;
    margin-bottom: 24px;
  }
}

.sobre-hero__title {
  font-size: 28px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .sobre-hero__title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .sobre-hero__title {
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 24px;
  }
}

.sobre-hero__subtitle {
  font-size: 16px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .sobre-hero__subtitle {
    font-size: 18px;
  }
}

.sobre-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .sobre-hero__stats {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    margin-top: 70px;
  }
}

.sobre-hero__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  border: 1.962px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.71);
  backdrop-filter: blur(14.2629442215px);
  padding: 1rem 1rem;
}

.sobre-hero__stat-value {
  font-size: 32px;
  font-weight: 500;
  color: #285783;
  line-height: 30px;
  display: block;
}
@media (min-width: 1024px) {
  .sobre-hero__stat-value {
    font-size: 47px;
  }
}

.sobre-hero__stat-text {
  font-size: 14px;
  font-weight: 500;
  color: #285783;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .sobre-hero__stat-text {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (min-width: 1280px) {
  .sobre-hero__stat-text {
    font-size: 16px;
    line-height: 25px;
    width: 8rem;
  }
}

.sobre-hero__visual {
  z-index: 2;
  flex: 0 0 auto;
  align-self: center;
  width: 100%;
  max-width: 480px;
}
@media (min-width: 1024px) {
  .sobre-hero__visual {
    width: 600px;
    max-width: none;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.sobre-hero__photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: -3rem;
}
@media (min-width: 768px) {
  .sobre-hero__photo {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .sobre-hero__photo {
    width: 40rem;
    max-width: none;
    aspect-ratio: 770/545;
    height: auto;
    object-fit: cover;
    object-position: top;
    position: absolute;
    bottom: 0;
    right: -5rem;
    margin-bottom: -1rem;
  }
}
@media (min-width: 1440px) {
  .sobre-hero__photo {
    width: 51rem;
  }
}

.sobre-nos {
  position: relative;
  padding: 40px 16px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .sobre-nos {
    padding: 60px 70px;
  }
}

.sobre-nos__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .sobre-nos__container {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }
}

.sobre-nos__text {
  flex: 0 0 auto;
  max-width: 500px;
}
@media (min-width: 1024px) {
  .sobre-nos__text {
    max-width: 499px;
  }
}

.sobre-nos__title {
  font-size: 28px;
  font-weight: 500;
  color: #34CDD7;
  line-height: normal;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .sobre-nos__title {
    font-size: 36px;
  }
}

.sobre-nos__desc {
  font-size: 16px;
  font-weight: 500;
  color: #1D3C55;
  line-height: normal;
}
@media (min-width: 1024px) {
  .sobre-nos__desc {
    font-size: 18px;
  }
}
.sobre-nos__desc p {
  margin: 0 0 1em;
}
.sobre-nos__desc p:last-child {
  margin-bottom: 0;
}

.sobre-nos__visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-height: 400px;
}
@media (min-width: 1024px) {
  .sobre-nos__visual {
    max-width: 671px;
    max-height: 547px;
  }
}

.sobre-nos__img {
  width: 100%;
  max-width: 400px;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .sobre-nos__img {
    max-width: 671px;
    max-height: 547px;
  }
}

.sobre-nos__blob--1,
.sobre-nos__blob--2 {
  position: absolute;
  width: 475px;
  height: 472px;
  border-radius: 50%;
  background: linear-gradient(135deg, #63F1BE, #5CF6DA, #46DBEF);
  filter: blur(150px);
  opacity: 0.3;
  z-index: -1;
  display: none;
}
@media (min-width: 1024px) {
  .sobre-nos__blob--1,
  .sobre-nos__blob--2 {
    display: block;
  }
}

.sobre-nos__blob--1 {
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
}

.sobre-nos__blob--2 {
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
}

.sobre-lideres {
  padding: 40px 16px 60px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .sobre-lideres {
    padding: 60px 70px 80px;
  }
}

.sobre-lideres__title {
  font-size: 32px;
  font-weight: 300;
  color: #1D3C55;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .sobre-lideres__title {
    font-size: 42px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  .sobre-lideres__title {
    font-size: 53px;
  }
}

.sobre-lideres__blob {
  position: absolute;
  width: 574px;
  height: 574px;
  border-radius: 50%;
  background: linear-gradient(135deg, #63F1BE, #5CF6DA, #46DBEF);
  filter: blur(93px);
  opacity: 0.63;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
@media (min-width: 1024px) {
  .sobre-lideres__blob {
    display: block;
  }
}

.sobre-lideres__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .sobre-lideres__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
  }
}
@media (min-width: 1024px) {
  .sobre-lideres__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 33px 18px;
  }
}

.sobre-lideres__card {
  background: #FFFFFF;
  border-radius: 42px;
  overflow: hidden;
  width: 100%;
  max-width: 311px;
}

.sobre-lideres__photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top;
  display: block;
  background-color: #F5F6FB;
  border-radius: 2rem;
}
@media (min-width: 768px) {
  .sobre-lideres__photo {
    height: 295px;
  }
}

.sobre-lideres__info {
  padding: 24px 32px 32px;
}
@media (min-width: 768px) {
  .sobre-lideres__info {
    padding: 28px 46px 40px;
  }
}

.sobre-lideres__name {
  font-size: 16px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 25px;
  margin-bottom: 8px;
}

.sobre-lideres__role {
  font-size: 16px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 25px;
}

.sobre-missao {
  padding: 0 16px 40px;
}
@media (min-width: 1024px) {
  .sobre-missao {
    padding: 25px 70px 40px;
  }
}

.sobre-missao__title {
  font-size: 32px;
  font-weight: 300;
  color: #1D3C55;
  text-align: center;
  margin-bottom: 40px;
  line-height: 60px;
}
@media (min-width: 768px) {
  .sobre-missao__title {
    font-size: 42px;
  }
}
@media (min-width: 1024px) {
  .sobre-missao__title {
    font-size: 53px;
  }
}

.sobre-missao__container {
  max-width: 1080px;
  margin: 0 auto;
}

.sobre-missao__box {
  background: #285783;
  border-radius: 42px;
  padding: 32px;
}
@media (min-width: 768px) {
  .sobre-missao__box {
    padding: 40px 50px;
  }
}

.sobre-missao__text {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 768px) {
  .sobre-missao__text {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .sobre-missao__text {
    font-size: 20px;
  }
}

.sobre-valores {
  padding: 0 16px 60px;
}
@media (min-width: 1024px) {
  .sobre-valores {
    padding: 25px 70px 80px;
  }
}

.sobre-valores__title {
  font-size: 32px;
  font-weight: 300;
  color: #1D3C55;
  text-align: center;
  margin-bottom: 40px;
  line-height: 60px;
}
@media (min-width: 768px) {
  .sobre-valores__title {
    font-size: 42px;
  }
}
@media (min-width: 1024px) {
  .sobre-valores__title {
    font-size: 53px;
  }
}

.sobre-valores__container {
  max-width: 1080px;
  margin: 0 auto;
}

.sobre-valores .faq__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sobre-valores .faq__item {
  border-bottom: none;
  border-radius: 42px;
  background: rgba(52, 205, 215, 0.2);
  transition: background 0.3s ease, border-radius 0.3s ease;
  overflow: hidden;
}

.sobre-valores .faq__item.is-open {
  background: #285783;
  border-radius: 42px;
}

.sobre-valores .faq__question {
  padding: 24px 32px;
  font-size: 17px;
  font-weight: 300;
  color: #1D3C55;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .sobre-valores .faq__question {
    padding: 24px 50px;
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .sobre-valores .faq__question {
    font-size: 30px;
  }
}
@media (min-width: 1280px) {
  .sobre-valores .faq__question {
    font-size: 36px;
  }
}

.sobre-valores .faq__item.is-open .faq__question {
  color: #FFFFFF;
  padding-bottom: 12px;
}

.sobre-valores .faq__icon {
  display: none;
}

.sobre-valores .faq__valor-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  transition: width 0.3s, height 0.3s;
}
.faq__item.is-open .sobre-valores .faq__valor-icon {
  width: 80px;
  height: 80px;
}
@media (min-width: 1024px) {
  .faq__item.is-open .sobre-valores .faq__valor-icon {
    width: 100px;
    height: 100px;
  }
}

.sobre-valores .faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 32px;
}
@media (min-width: 768px) {
  .sobre-valores .faq__answer {
    padding: 0 50px;
  }
}

.sobre-valores .faq__item.is-open .faq__answer {
  max-height: 500px;
  padding: 0 32px 32px;
}
@media (min-width: 768px) {
  .sobre-valores .faq__item.is-open .faq__answer {
    padding: 0 50px 40px;
  }
}

.sobre-valores .faq__answer-text {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
}
@media (min-width: 768px) {
  .sobre-valores .faq__answer-text {
    font-size: 16px;
  }
}

.sobre-historia {
  background: #F5F6FB;
  padding: 60px 16px;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .sobre-historia {
    margin-bottom: 1rem;
    padding: 80px 70px;
  }
}

.sobre-historia__title {
  font-size: 32px;
  font-weight: 300;
  color: #1D3C55;
  text-align: center;
  margin-bottom: 40px;
  line-height: 60px;
}
@media (min-width: 768px) {
  .sobre-historia__title {
    font-size: 42px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  .sobre-historia__title {
    font-size: 53px;
  }
}

.sobre-historia__container {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  display: flex;
  gap: 20px;
}
@media (min-width: 1024px) {
  .sobre-historia__container {
    gap: 40px;
  }
}

.sobre-historia__bar {
  display: none;
}
@media (min-width: 768px) {
  .sobre-historia__bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
}

.sobre-historia__bar-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.sobre-historia__bar-line {
  width: 29px;
  flex: 1;
  border-radius: 100px;
  background: linear-gradient(to bottom, #46DBEF 42%, rgba(99, 241, 190, 0) 91%);
}

.sobre-historia__entries {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}
@media (min-width: 1024px) {
  .sobre-historia__entries {
    gap: 48px;
  }
}

.sobre-historia__entry {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .sobre-historia__entry {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .sobre-historia__entry {
    gap: 60px;
  }
}

.sobre-historia__year {
  font-size: 36px;
  font-weight: 200;
  color: #34CDD7;
  line-height: normal;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .sobre-historia__year {
    font-size: 42px;
    min-width: 120px;
  }
}
@media (min-width: 1024px) {
  .sobre-historia__year {
    font-size: 51px;
  }
}

.sobre-historia__desc {
  font-size: 14px;
  font-weight: 300;
  color: #1D3C55;
  line-height: normal;
  padding-top: 4px;
}
@media (min-width: 768px) {
  .sobre-historia__desc {
    font-size: 16px;
    padding-top: 14px;
  }
}
.sobre-historia__desc strong {
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sc-hero {
  padding: 24px 0 0;
}
@media (min-width: 1024px) {
  .sc-hero {
    padding: 34px 0 0;
  }
}

.sc-hero__box {
  position: relative;
  border-radius: 24px;
  padding: 48px 28px;
  background: linear-gradient(271deg, #63F1BE 0%, #5CF6DA 50%, #46DBEF 100%);
  overflow: hidden;
}
@media (min-width: 768px) {
  .sc-hero__box {
    padding: 64px 48px;
    border-radius: 32px;
  }
}
@media (min-width: 1024px) {
  .sc-hero__box {
    padding: 88px 78px;
    border-radius: 42px;
    min-height: 295px;
  }
}

.sc-hero__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .sc-hero__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}

.sc-hero__text {
  flex: 1;
  max-width: 752px;
}

.sc-hero__logos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .sc-hero__logos {
    align-items: flex-end;
    gap: 20px;
  }
}

.sc-hero__logo-cnv {
  height: 24px;
  width: auto;
}
@media (min-width: 768px) {
  .sc-hero__logo-cnv {
    height: 28px;
  }
}
@media (min-width: 1024px) {
  .sc-hero__logo-cnv {
    height: 32px;
  }
}

.sc-hero__logo-360 {
  height: auto;
  max-width: max-content;
}

.sc-hero__label {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .sc-hero__label {
    font-size: 26px;
    margin-bottom: 12px;
  }
}
@media (min-width: 1024px) {
  .sc-hero__label {
    font-size: 36px;
    line-height: 60px;
    margin-bottom: 0;
  }
}

.sc-hero__title {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.25;
  color: #1D3C55;
}
@media (min-width: 768px) {
  .sc-hero__title {
    font-size: 34px;
  }
}
@media (min-width: 1024px) {
  .sc-hero__title {
    font-size: 46px;
    line-height: 60px;
  }
}

.sc-intro {
  padding: 32px 0 40px;
}
@media (min-width: 1024px) {
  .sc-intro {
    padding: 60px 0 40px;
  }
}

.sc-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}
.sc-intro__grid::after {
  content: "";
  border-radius: 425.837px;
  background-color: #7296B4;
  position: absolute;
  filter: blur(100px);
  top: 0rem;
  z-index: -1;
  height: 19rem;
  width: 20rem;
}
@media (min-width: 1024px) {
  .sc-intro__grid::after {
    height: 30rem;
    width: 30rem;
    left: 25%;
  }
}
@media (min-width: 768px) {
  .sc-intro__grid {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .sc-intro__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.sc-intro__card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(114, 150, 180, 0.08);
}
@media (min-width: 768px) {
  .sc-intro__card {
    border-radius: 24px;
  }
}
@media (min-width: 1024px) {
  .sc-intro__card {
    border-radius: 27px;
  }
}

.sc-intro__card--media {
  padding: 0;
  height: 14rem;
}
@media (min-width: 768px) {
  .sc-intro__card--media {
    height: 23rem;
  }
}
@media (min-width: 1024px) {
  .sc-intro__card--media {
    height: 28rem;
  }
}
@media (min-width: 1280px) {
  .sc-intro__card--media {
    height: 27rem;
  }
}

.sc-clinica__titulo {
  padding-bottom: 2rem;
}
.sc-clinica__titulo h2 {
  font-size: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .sc-clinica__titulo h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1280px) {
  .sc-clinica__titulo h2 {
    font-size: 3rem;
  }
}

.sc-intro__img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.sc-intro__card--text {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  color: #1D3C55;
}
@media (min-width: 768px) {
  .sc-intro__card--text {
    padding: 40px 48px;
    gap: 18px;
  }
}
@media (min-width: 1024px) {
  .sc-intro__card--text {
    padding: 63px 62px;
    gap: 24px;
  }
}
.sc-intro__card--text p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .sc-intro__card--text p {
    font-size: 18px;
  }
}

.sc-benefits__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1D3C55;
}
@media (min-width: 768px) {
  .sc-benefits__title {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .sc-benefits__title {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 28px;
  }
}

.sc-benefits__list {
  list-style: disc;
  padding-left: 22px;
  color: #1D3C55;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .sc-benefits__list {
    gap: 12px;
    margin-bottom: 48px;
  }
}
.sc-benefits__list li {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .sc-benefits__list li {
    font-size: 18px;
    line-height: 25px;
  }
}

.sc-benefits__footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .sc-benefits__footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }
}

.sc-benefits__note {
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  color: #1D3C55;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .sc-benefits__note {
    font-size: 18px;
    line-height: 25px;
    max-width: 607px;
  }
}

.sc-benefits__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 28px;
  border-radius: 100px;
  background: linear-gradient(90deg, #63F1BE 0%, #5CF6DA 50%, #46DBEF 100%);
  font-size: 15px;
  font-weight: 500;
  color: #1D3C55;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .sc-benefits__cta {
    font-size: 16px;
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .sc-benefits__cta {
    width: auto;
    min-width: 316px;
  }
}
.sc-benefits__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(70, 219, 239, 0.35);
}

.sc-clinica {
  padding: 32px 0 40px;
}
@media (min-width: 1024px) {
  .sc-clinica {
    padding: 80px 0 80px;
  }
}

.sc-clinica__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .sc-clinica__header {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 56px;
    margin-bottom: 64px;
  }
}

.sc-clinica__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1D3C55;
  text-decoration: none;
  margin-bottom: 22px;
}
@media (min-width: 1024px) {
  .sc-clinica__logo {
    margin-bottom: 30px;
  }
}

.sc-clinica__logo-icon {
  width: 44px;
  height: 32px;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .sc-clinica__logo-icon {
    width: 56px;
    height: 40px;
  }
}

.sc-clinica__logo-text {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #1D3C55;
}
@media (min-width: 768px) {
  .sc-clinica__logo-text {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .sc-clinica__logo-text {
    font-size: 44px;
  }
}

.sc-clinica__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #1D3C55;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .sc-clinica__title {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 1024px) {
  .sc-clinica__title {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 24px;
    max-width: 521px;
  }
}

.sc-clinica__desc {
  font-size: 15px;
  line-height: 24px;
  color: #1D3C55;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .sc-clinica__desc {
    font-size: 18px;
    line-height: 25px;
    max-width: 454px;
  }
}

.sc-clinica__visual {
  order: -1;
  margin: 0 -1rem;
}
@media (min-width: 768px) {
  .sc-clinica__visual {
    order: 0;
    margin: 0;
  }
}
.sc-clinica__visual img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 1280px) {
  .ajuste-padding-solucoes {
    padding: 0 5rem;
  }
}

.sc-clinica__benefits {
  background: #FFFFFF;
}

.sc-360 {
  background: #F5F6FB;
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .sc-360 {
    padding: 96px 0;
  }
}

.sc-360__logo-title {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 1024px) {
  .sc-360__logo-title {
    grid-template-columns: 6fr 4fr;
    gap: 4rem;
    margin-bottom: 3rem;
  }
}

.sc-360__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .sc-360__header {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 56px;
    margin-bottom: 72px;
  }
}

.sc-360__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
@media (min-width: 1024px) {
  .sc-360__logo {
    gap: 20px;
    margin-bottom: 30px;
  }
}

.sc-360__logo-sep {
  display: inline-block;
  width: 1px;
  height: 42px;
  background: rgba(29, 60, 85, 0.25);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .sc-360__logo-sep {
    height: 52px;
  }
}
@media (min-width: 1024px) {
  .sc-360__logo-sep {
    height: 68px;
  }
}

.sc-360__logo-360 {
  position: relative;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: #2CB7C0;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .sc-360__logo-360 {
    font-size: 58px;
  }
}
@media (min-width: 1024px) {
  .sc-360__logo-360 {
    font-size: 76px;
  }
}

.sc-360__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: #1D3C55;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .sc-360__title {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .sc-360__title {
    font-size: 25px;
    margin-bottom: 24px;
    max-width: 311px;
  }
}

.sc-360__desc {
  font-size: 15px;
  line-height: 24px;
  color: #1D3C55;
  margin-bottom: 14px;
}
.sc-360__desc:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .sc-360__desc {
    font-size: 18px;
    line-height: 25px;
    max-width: 422px;
    margin-bottom: 18px;
  }
}

.sc-360__visual {
  order: -1;
  margin: 0 -1rem;
}
@media (min-width: 768px) {
  .sc-360__visual {
    order: 0;
    margin: 0;
  }
}
.sc-360__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.sc-360__benefits {
  padding-top: 16px;
}

@media (min-width: 1024px) {
  .sc-360__benefits .sc-benefits__cta {
    min-width: 422px;
  }
}

.carreiras-hero__bg {
  background: rgba(99, 241, 190, 0.3);
  border-radius: 24px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .carreiras-hero__bg {
    border-radius: 42px;
    padding: 50px 40px;
  }
}
@media (min-width: 1024px) {
  .carreiras-hero__bg {
    padding: 75px 110px;
  }
}

.carreiras-hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .carreiras-hero__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.carreiras-hero__text {
  flex: 1;
}

.carreiras-hero__label {
  font-size: 20px;
  font-weight: 700;
  color: #34CDD7;
  margin-bottom: 8px;
  line-height: 60px;
}
@media (min-width: 1024px) {
  .carreiras-hero__label {
    font-size: 36px;
  }
}

.carreiras-hero__title {
  font-size: 26px;
  font-weight: 500;
  color: #1D3C55;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .carreiras-hero__title {
    font-size: 34px;
    line-height: 50px;
  }
}
@media (min-width: 1024px) {
  .carreiras-hero__title {
    font-size: 46px;
    line-height: 60px;
  }
}

.carreiras-hero__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1280px) {
  .carreiras-hero__row {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
}

.carreiras-hero__desc {
  font-size: 16px;
  font-weight: 300;
  color: #1D3C55;
  line-height: normal;
  max-width: 474px;
}
@media (min-width: 1024px) {
  .carreiras-hero__desc {
    font-size: 18px;
  }
}

.carreiras-hero__illustration {
  flex-shrink: 0;
  text-align: center;
  display: none;
}
@media (min-width: 1024px) {
  .carreiras-hero__illustration {
    display: block;
  }
}
.carreiras-hero__illustration img {
  max-width: 200px;
  height: auto;
}
@media (min-width: 768px) {
  .carreiras-hero__illustration img {
    max-width: 240px;
  }
}
@media (min-width: 1024px) {
  .carreiras-hero__illustration img {
    max-width: 283px;
  }
}

.carreiras-stats {
  padding: 40px 0;
}

.carreiras-stats__container {
  max-width: 1300px;
  margin: 0 auto;
}

.carreiras-stats__row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .carreiras-stats__row {
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
  }
}

.carreiras-stats__card-teal {
  background: #34CDD7;
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .carreiras-stats__card-teal {
    border-radius: 42px;
    padding: 40px;
    width: calc(50% - 10px);
  }
}
@media (min-width: 1024px) {
  .carreiras-stats__card-teal {
    padding: 40px 40px 40px 60px;
  }
}
@media (min-width: 1280px) {
  .carreiras-stats__card-teal {
    padding: 60px 50px 60px 108px;
  }
}

.carreiras-stats__big-number {
  display: block;
  font-size: 80px;
  font-weight: 200;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .carreiras-stats__big-number {
    font-size: 100px;
  }
}
@media (min-width: 1024px) {
  .carreiras-stats__big-number {
    font-size: 136px;
    margin-bottom: 24px;
  }
}

.carreiras-stats__card-text {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .carreiras-stats__card-text {
    font-size: 25px;
    line-height: 1.5;
  }
}

.carreiras-stats__photo {
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .carreiras-stats__photo {
    border-radius: 42px;
    min-height: 401px;
    width: calc(50% - 10px);
  }
}
.carreiras-stats__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carreiras-stats__info {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  gap: 32px;
}
@media (min-width: 1024px) {
  .carreiras-stats__info {
    flex-direction: row;
    align-items: flex-start;
    gap: 70px;
  }
}
@media (min-width: 1280px) {
  .carreiras-stats__info {
    gap: 80px;
    padding: 0 5rem;
    margin-top: 5rem;
  }
}

@media (min-width: 1024px) {
  .carreiras-stats__desc {
    flex: 0 1 389px;
  }
}
.carreiras-stats__desc p {
  font-size: 16px;
  font-weight: 300;
  color: #1D3C55;
  line-height: normal;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .carreiras-stats__desc p {
    font-size: 18px;
  }
}
.carreiras-stats__desc p:last-child {
  margin-bottom: 0;
}

.carreiras-stats__numbers {
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .carreiras-stats__numbers {
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .carreiras-stats__numbers {
    justify-content: flex-start;
  }
}

.carreiras-stats__legend {
  flex-shrink: 0;
}
.carreiras-stats__legend img {
  width: 180px;
  height: auto;
}
@media (min-width: 1024px) {
  .carreiras-stats__legend img {
    width: 272px;
    height: 327px;
  }
}

.carreiras-stats__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.carreiras-stats__highlight-number {
  display: block;
  font-size: 80px;
  font-weight: 200;
  color: #2CB7C0;
  line-height: 1;
}
@media (min-width: 1024px) {
  .carreiras-stats__highlight-number {
    font-size: 136px;
  }
}

.carreiras-stats__highlight-text {
  font-size: 18px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .carreiras-stats__highlight-text {
    font-size: 25px;
  }
}
.carreiras-stats__highlight-text strong {
  font-weight: 700;
}

.carreiras-biolover {
  background: #F5F6FB;
  padding: 60px 16px;
}
@media (min-width: 768px) {
  .carreiras-biolover {
    padding: 60px 40px;
  }
}
@media (min-width: 1024px) {
  .carreiras-biolover {
    padding: 50px 0 0;
  }
}

.carreiras-biolover__container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .carreiras-biolover__container {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

.carreiras-biolover__image {
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .carreiras-biolover__image {
    width: 50%;
    max-width: 774px;
    margin-top: auto;
  }
}
.carreiras-biolover__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}
@media (min-width: 1024px) {
  .carreiras-biolover__image img {
    border-radius: 0;
  }
}

@media (min-width: 1024px) {
  .carreiras-biolover__content {
    flex: 1;
    padding: 40px 70px;
  }
}

.carreiras-biolover__title {
  font-size: 32px;
  font-weight: 300;
  color: #1D3C55;
  margin-bottom: 24px;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .carreiras-biolover__title {
    font-size: 42px;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .carreiras-biolover__title {
    font-size: 53.18px;
  }
}
.carreiras-biolover__title span {
  color: #34CDD7;
}

.carreiras-biolover__text p {
  font-size: 16px;
  font-weight: 400;
  color: #1D3C55;
  line-height: normal;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .carreiras-biolover__text p {
    font-size: 20px;
  }
}
.carreiras-biolover__text p:last-child {
  margin-bottom: 0;
}

.carreiras-biolover__highlight {
  font-weight: 700 !important;
  font-size: 18px !important;
}
@media (min-width: 1024px) {
  .carreiras-biolover__highlight {
    font-size: 22px !important;
  }
}

.carreiras-trabalhar {
  padding: 60px 16px;
}
@media (min-width: 768px) {
  .carreiras-trabalhar {
    padding: 60px 40px;
  }
}
@media (min-width: 1024px) {
  .carreiras-trabalhar {
    padding: 80px 70px;
  }
}

.carreiras-trabalhar__container {
  max-width: 1080px;
  margin: 0 auto;
}

.carreiras-trabalhar__title {
  font-size: 32px;
  font-weight: 300;
  color: #1D3C55;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .carreiras-trabalhar__title {
    font-size: 42px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  .carreiras-trabalhar__title {
    font-size: 53.18px;
    margin-bottom: 60px;
  }
}

.carreiras-trabalhar__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .carreiras-trabalhar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 20px;
  }
}

.carreiras-trabalhar__blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  filter: blur(100px);
}
.carreiras-trabalhar__blob--1 {
  background: #34CDD7;
  width: 340px;
  height: 340px;
  top: 0rem;
  left: 15%;
}
.carreiras-trabalhar__blob--2 {
  background: #7296B4;
  width: 424px;
  height: 424px;
  bottom: 2rem;
  right: 15%;
}
.carreiras-trabalhar__blob--3 {
  background: #7296B4;
  width: 316px;
  height: 316px;
  bottom: 4rem;
  right: 15%;
}

.carreiras-trabalhar__card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .carreiras-trabalhar__card {
    border-radius: 27px;
    padding: 44px 30px;
    min-height: 237px;
  }
}

.carreiras-trabalhar__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1D3C55;
  line-height: 25px;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .carreiras-trabalhar__card-title {
    font-size: 18px;
  }
}

.carreiras-trabalhar__card-desc {
  font-size: 14px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 25px;
  margin: 0;
}
@media (min-width: 1024px) {
  .carreiras-trabalhar__card-desc {
    font-size: 16px;
  }
}

.carreiras-valores {
  padding: 0 16px 60px;
}
@media (min-width: 1024px) {
  .carreiras-valores {
    padding: 25px 70px 80px;
  }
}

.carreiras-cta {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .carreiras-cta {
    min-height: 700px;
  }
}
@media (min-width: 1024px) {
  .carreiras-cta {
    min-height: 1006px;
  }
}

.carreiras-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.carreiras-cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carreiras-cta__container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 16px;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .carreiras-cta__container {
    padding: 60px 40px;
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) {
  .carreiras-cta__container {
    padding: 195px 70px;
  }
}

.carreiras-cta__card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 40px 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .carreiras-cta__card {
    border-radius: 42px;
    padding: 3rem 4rem;
  }
}
.carreiras-cta__card .vagas-icone-carreira {
  display: none;
}
@media (min-width: 1024px) {
  .carreiras-cta__card .vagas-icone-carreira {
    display: block;
    position: absolute;
    right: -3.5rem;
    top: -3.5rem;
  }
}

.carreiras-cta__title {
  font-size: 24px;
  font-weight: 300;
  color: #1D3C55;
  line-height: 1.15;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .carreiras-cta__title {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (min-width: 1024px) {
  .carreiras-cta__title {
    font-size: 36px;
    line-height: 40px;
  }
}

.carreiras-cta__desc {
  font-size: 16px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 25px;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .carreiras-cta__desc {
    font-size: 18px;
  }
}

.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 1024px) {
  .social-proof__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}
.social-proof__item {
  text-align: left;
}
.social-proof__number {
  font-size: 28px;
  font-weight: 500;
  color: #2CB7C0;
  display: block;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .social-proof__number {
    font-size: 47px;
  }
}
.social-proof__label {
  font-size: 14px;
  font-weight: 400;
  color: #1D3C55;
  line-height: 25px;
}
@media (min-width: 1024px) {
  .social-proof__label {
    font-size: 16px;
  }
}
.social-proof__source {
  font-size: 11px;
  color: #7296B4;
  margin-top: 4px;
  font-style: italic;
  display: block;
}

.cycle {
  padding: 0 24px 55px;
  background: #FFFFFF;
}
@media (min-width: 1024px) {
  .cycle {
    padding: 30px 48px 45px;
  }
}

.cycle__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cycle__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .cycle__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .cycle__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cycle__card {
  padding: 24px 20px;
  background: #F5F6FB;
  border: 1px solid #E8EDF2;
  border-radius: 16px;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .cycle__card {
    padding: 28px 22px;
  }
}
.cycle__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(29, 60, 85, 0.12);
  border-color: #2CB7C0;
}

.cycle__card-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #2CB7C0;
  color: #FFFFFF;
  border-radius: 50%;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.cycle__card-phase {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: block;
  color: #2CB7C0;
}

.cycle__card-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 8px;
}

.cycle__card-desc {
  font-size: 13.5px;
  color: #7296B4;
  line-height: 1.6;
  margin: 0;
}

.cycle__card-result {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #2CB7C0;
  background: rgba(44, 183, 192, 0.08);
  padding: 4px 10px;
  border-radius: 50px;
}

.cases-receita {
  padding: 64px 24px;
  background: #1D3C55;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .cases-receita {
    padding: 96px 48px;
  }
}
.cases-receita::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(44, 183, 192, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cases-receita .section-header {
  position: relative;
  z-index: 2;
}
.cases-receita .section-header__subtitle {
  color: #34CDD7;
}
.cases-receita .section-header__title {
  color: #FFFFFF;
}

.cases-receita__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cases-receita__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .cases-receita__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cases-receita__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .cases-receita__card {
    padding: 32px 24px;
  }
}

.cases-receita__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(44, 183, 192, 0.15);
  border: 1px solid rgba(44, 183, 192, 0.3);
  color: #34CDD7;
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.cases-receita__card-title {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 12px;
  line-height: 1.3;
}

.cases-receita__card-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.cases-receita__metric {
  text-align: center;
  padding: 12px 6px;
  background: rgba(44, 183, 192, 0.06);
  border-radius: 8px;
}

.cases-receita__metric-val {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #34CDD7;
  line-height: 1.1;
  display: block;
}
@media (min-width: 768px) {
  .cases-receita__metric-val {
    font-size: 18px;
  }
}

.cases-receita__metric-label {
  font-size: 10px;
  color: #7296B4;
  margin-top: 3px;
  line-height: 1.3;
  display: block;
}

.cases-receita__card-quote {
  font-size: 13.5px;
  color: #C8D6E0;
  line-height: 1.65;
  font-style: italic;
  border-left: 3px solid #2CB7C0;
  padding-left: 14px;
  margin: 0 0 14px;
  flex: 1;
}

.cases-receita__card-author {
  font-size: 12px;
  color: #7296B4;
}
.cases-receita__card-author strong {
  color: #FFFFFF;
}

.integrations-flow {
  padding: 64px 24px;
  background: #FFFFFF;
}
@media (min-width: 1024px) {
  .integrations-flow {
    padding: 96px 48px;
  }
}

.integrations-flow__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.integrations-flow__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 48px;
}
@media (min-width: 1024px) {
  .integrations-flow__steps {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.integrations-flow__step {
  padding: 20px;
  background: #F5F6FB;
  border: 1px solid #D8DFE5;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #1D3C55;
  text-align: center;
  min-width: 120px;
}
.integrations-flow__step--active {
  background: #1D3C55;
  color: #34CDD7;
  border-color: #2CB7C0;
  box-shadow: 0 4px 20px rgba(44, 183, 192, 0.2);
}
.integrations-flow__step small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: #7296B4;
  margin-top: 3px;
}
.integrations-flow__step--active small {
  color: #7296B4;
}

.integrations-flow__arrow {
  width: 28px;
  text-align: center;
  color: #D8DFE5;
  font-size: 16px;
  flex-shrink: 0;
  transform: rotate(90deg);
  padding: 8px 0;
}
@media (min-width: 1024px) {
  .integrations-flow__arrow {
    transform: rotate(0deg);
    padding: 0;
  }
}

.integrations-flow__footer {
  text-align: center;
  margin-top: 40px;
}
.integrations-flow__footer p {
  font-size: 15px;
  color: #7296B4;
  margin: 0 0 16px;
}
.integrations-flow__footer a {
  color: #2CB7C0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.integrations-flow__footer a:hover {
  text-decoration: underline;
}

.cta-final {
  padding: 64px 24px;
  background: linear-gradient(165deg, #0A1E2B 0%, #1D3C55 100%);
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .cta-final {
    padding: 96px 48px;
  }
}
.cta-final::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 183, 192, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-final__title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .cta-final__title {
    font-size: 36px;
  }
}

.cta-final__desc {
  font-size: 15px;
  color: #7296B4;
  margin: 0 0 36px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .cta-final__desc {
    font-size: 17px;
  }
}

.cta-final__btn {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  border: none;
  background: #2CB7C0;
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(44, 183, 192, 0.35);
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.cta-final__btn:hover {
  background: #34CDD7;
  transform: translateY(-2px);
  color: #1D3C55;
}

.cta-final__trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  font-size: 13px;
  color: #7296B4;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .cta-final__trust {
    gap: 32px;
  }
}

.sl-hero__logos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 1024px) {
  .sl-hero__logos {
    gap: 24px;
  }
}

.sl-hero__logo-tasy {
  height: auto;
  width: max-content;
}

.sl-hero__logo-360-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1024px) {
  .sl-hero__logo-360-group {
    gap: 14px;
  }
}

.sl-hero__logo-360-marca {
  height: auto;
  width: max-content;
}

.sl-hero__logo-360-sep {
  display: inline-block;
  width: 1px;
  height: 28px;
  background: rgba(29, 60, 85, 0.25);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .sl-hero__logo-360-sep {
    height: 36px;
  }
}
@media (min-width: 1024px) {
  .sl-hero__logo-360-sep {
    height: 44px;
  }
}

.sl-hero__logo-360-number {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #1D3C55;
  position: relative;
}
@media (min-width: 768px) {
  .sl-hero__logo-360-number {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .sl-hero__logo-360-number {
    font-size: 44px;
  }
}

.sl-hero__logo-360-degree {
  font-size: 0.5em;
  position: relative;
  top: -0.5em;
}

.st-hero__text {
  max-width: 100%;
  flex: 1;
}

.st-hero__title {
  font-weight: 400;
}
@media (min-width: 1024px) {
  .st-hero__title {
    font-size: 38px;
    line-height: 50px;
  }
}

.st-hero__note {
  margin-top: 12px;
  font-size: 18px;
  color: #1D3C55;
}
@media (min-width: 1024px) {
  .st-hero__note {
    font-size: 22px;
  }
}

.st-actions {
  padding: 24px 0 16px;
}
@media (min-width: 1024px) {
  .st-actions {
    padding: 32px 0 24px;
  }
}

.st-actions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .st-actions__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.st-actions__btn {
  padding: 28px 24px;
  border-radius: 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #1D3C55;
  text-decoration: none;
  min-height: 96px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 1024px) {
  .st-actions__btn {
    font-size: 20px;
    padding: 32px 24px;
    min-height: 108px;
    border-radius: 28px;
  }
}
.st-actions__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(44, 183, 192, 0.18);
}
.st-actions__btn {
  position: relative;
}
.st-actions__btn .mapa {
  height: 100%;
  position: absolute;
  right: 1vw;
  top: 0;
  padding: 0.5rem;
}
.st-actions__btn .mapa img {
  height: 100% !important;
  height: auto;
}
.st-actions__btn--brasil {
  background-color: rgba(99, 242, 192, 0.5);
}
.st-actions__btn--latam {
  background-color: rgba(52, 205, 215, 0.5);
}

.st-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .st-contact {
    gap: 56px;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.st-contact img {
  width: 3rem;
}
@media (min-width: 1024px) {
  .st-contact img {
    width: auto;
  }
}
@media (min-width: 1024px) {
  .st-contact .item-1 {
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) {
  .st-contact .fonte-maior {
    font-size: 1.5rem;
  }
}

.st-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 300;
  color: #1D3C55;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .st-contact__item {
    font-size: 22px;
  }
}
.st-contact__item:hover {
  color: #2CB7C0;
}

.st-contact__icon {
  flex-shrink: 0;
}

.st-offices {
  padding: 48px 0 32px;
}
@media (min-width: 1024px) {
  .st-offices {
    padding: 80px 0 64px;
  }
}

.st-offices__title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #1D3C55;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .st-offices__title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .st-offices__title {
    font-size: 48px;
    margin-bottom: 48px;
  }
}

.st-offices__wrapper {
  position: relative;
}
@media (min-width: 1024px) {
  .st-offices__wrapper {
    padding: 7rem 0;
  }
}

.st-offices__map {
  display: none;
}
@media (min-width: 1024px) {
  .st-offices__map {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }
  .st-offices__map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}

.st-offices__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .st-offices__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .st-offices__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
}
@media (min-width: 1024px) {
  .st-offices__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.st-office-card {
  border-radius: 14.713px;
  border: 1.962px solid rgba(255, 255, 255, 0.4);
  background: rgba(194, 194, 194, 0.1);
  backdrop-filter: blur(14.2629442215px);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.st-office-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.st-office-card__head h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2CB7C0;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .st-office-card__head h3 {
    font-size: 36px;
  }
}

.st-office-card__flag {
  font-size: 24px;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .st-office-card__flag {
    width: 4rem;
    height: 4rem;
  }
}

.st-office-card__greet {
  font-size: 20px;
  font-weight: 600;
  color: #1D3C55;
  margin-top: 4px;
}

.st-office-card__phone {
  font-size: 20px;
  color: #1D3C55;
  line-height: 1.4;
}

.st-office-card__email {
  text-decoration: none;
  word-break: break-word;
}
.st-office-card__email:hover {
  text-decoration: underline;
}
.st-office-card__email {
  font-size: 14px;
}
@media (min-width: 1024px) {
  .st-office-card__email {
    font-size: 20px;
  }
}

.ri-section-title {
  text-align: center;
  font-weight: 300;
  color: #1D3C55;
  font-size: clamp(28px, 5vw, 53px);
  line-height: 1.2;
  margin: 0 auto 48px;
  max-width: 900px;
}
@media (min-width: 768px) {
  .ri-section-title {
    margin-bottom: 64px;
  }
}

.sc-hero__box-2 {
  position: relative;
  border-radius: 24px;
  padding: 48px 28px;
  background-color: #285783;
  overflow: hidden;
}
@media (min-width: 768px) {
  .sc-hero__box-2 {
    padding: 64px 48px;
    border-radius: 32px;
  }
}
@media (min-width: 1024px) {
  .sc-hero__box-2 {
    padding: 88px 78px;
    border-radius: 42px;
    min-height: 295px;
  }
}
.sc-hero__box-2 .sc-hero__title {
  color: #34CDD7;
}

.ri-docs-featured {
  padding: 60px 0 35px;
}
@media (min-width: 768px) {
  .ri-docs-featured {
    padding: 100px 0 50px;
  }
}

.ri-docs-featured__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .ri-docs-featured__grid {
    grid-template-columns: 1.35fr 1fr 1fr;
  }
}

.ri-doc-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 32px;
  min-height: 180px;
  border-radius: 42px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: rgba(52, 205, 215, 0.2);
  color: #1D3C55;
}
@media (min-width: 768px) {
  .ri-doc-card {
    min-height: 217px;
    padding: 26px 40px;
  }
}
.ri-doc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(29, 60, 85, 0.08);
  background: #2CB7C0;
  color: #fff;
}
.ri-doc-card:hover img {
  filter: brightness(100);
}
.ri-doc-card__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  max-width: 240px;
  align-self: flex-end;
}
@media (min-width: 768px) {
  .ri-doc-card__title {
    font-size: 22px;
    line-height: 30px;
  }
}
.ri-doc-card__icon {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

.ri-accordion {
  padding: 20px 0 60px;
}
@media (min-width: 768px) {
  .ri-accordion {
    padding: 20px 0 100px;
  }
}

.ri-accordion__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 21px;
  max-width: 1080px;
  margin-inline: auto;
}

.ri-accordion__item {
  border-radius: 42px;
  overflow: hidden;
  background: rgba(52, 205, 215, 0.2);
  transition: background 0.25s ease;
}
.ri-accordion__item--dark, .ri-accordion__item--dark.is-open {
  background: #285783;
  color: #fff;
}

.ri-accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 30px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  color: inherit;
}
@media (min-width: 768px) {
  .ri-accordion__header {
    padding: 30px 50px;
    font-size: 22px;
  }
}
.ri-accordion__header span:first-child {
  flex: 1;
}

.ri-accordion__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  transition: transform 0.25s ease;
}
@media (min-width: 768px) {
  .ri-accordion__icon {
    width: 32px;
    height: 32px;
  }
}
.ri-accordion__icon::before, .ri-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.ri-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ri-accordion__item.is-open .ri-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.ri-accordion__panel {
  padding: 0 30px 30px;
}
@media (min-width: 768px) {
  .ri-accordion__panel {
    padding: 0 50px 50px;
  }
}

.ri-policies {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ri-policies li {
  display: flex;
}
.ri-policies a {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  transition: color 0.2s ease;
}
@media (min-width: 768px) {
  .ri-policies a {
    font-size: 16px;
  }
}
.ri-policies a:hover {
  color: #63F2C0;
}
.ri-policies a.is-highlight {
  color: #63F2C0;
  font-weight: 400;
}

.ri-policies__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: center/contain no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1534_2615)'%3E%3Cpath opacity='0.2' d='M14.8438 3.125V8.59375H20.3125L14.8438 3.125Z' fill='url(%23paint0_linear_1534_2615)'/%3E%3Cpath d='M4.6875 10.9375V3.90625C4.6875 3.69905 4.76981 3.50034 4.91632 3.35382C5.06284 3.20731 5.26155 3.125 5.46875 3.125H14.8438L20.3125 8.59375V10.9375' stroke='url(%23paint1_linear_1534_2615)' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.8438 3.125V8.59375H20.3125' stroke='url(%23paint2_linear_1534_2615)' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.0938 14.8438H17.9688V20.3125' stroke='url(%23paint3_linear_1534_2615)' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20.3125 17.9688H17.9688' stroke='url(%23paint4_linear_1534_2615)' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.6875 18.75H6.25C6.768 18.75 7.26479 18.5442 7.63107 18.1779C7.99735 17.8117 8.20312 17.3149 8.20312 16.7969C8.20312 16.2789 7.99735 15.7821 7.63107 15.4158C7.26479 15.0495 6.768 14.8438 6.25 14.8438H4.6875V20.3125' stroke='url(%23paint5_linear_1534_2615)' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.9375 14.8438V20.3125H12.5C13.2252 20.3125 13.9207 20.0244 14.4335 19.5116C14.9463 18.9988 15.2344 18.3033 15.2344 17.5781C15.2344 16.8529 14.9463 16.1574 14.4335 15.6446C13.9207 15.1318 13.2252 14.8438 12.5 14.8438H10.9375Z' stroke='url(%23paint6_linear_1534_2615)' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1534_2615' x1='14.8438' y1='5.85938' x2='20.3125' y2='5.85938' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.3125' stop-color='%2334CDD7'/%3E%3Cstop offset='1' stop-color='%2300C851'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_1534_2615' x1='4.6875' y1='7.03125' x2='20.3125' y2='7.03125' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.3125' stop-color='%2334CDD7'/%3E%3Cstop offset='1' stop-color='%2300C851'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_1534_2615' x1='14.8438' y1='5.85938' x2='20.3125' y2='5.85938' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.3125' stop-color='%2334CDD7'/%3E%3Cstop offset='1' stop-color='%2300C851'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear_1534_2615' x1='17.9688' y1='17.5781' x2='21.0938' y2='17.5781' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.3125' stop-color='%2334CDD7'/%3E%3Cstop offset='1' stop-color='%2300C851'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint4_linear_1534_2615' x1='17.9688' y1='18.4688' x2='20.3125' y2='18.4688' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.3125' stop-color='%2334CDD7'/%3E%3Cstop offset='1' stop-color='%2300C851'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint5_linear_1534_2615' x1='4.6875' y1='17.5781' x2='8.20312' y2='17.5781' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.3125' stop-color='%2334CDD7'/%3E%3Cstop offset='1' stop-color='%2300C851'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint6_linear_1534_2615' x1='10.9375' y1='17.5781' x2='15.2344' y2='17.5781' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.3125' stop-color='%2334CDD7'/%3E%3Cstop offset='1' stop-color='%2300C851'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_1534_2615'%3E%3Crect width='25' height='25' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.ri-docs-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ri-docs-list__year {
  font-weight: 700;
  font-size: 16px;
  color: #1D3C55;
  margin: 0 0 4px;
}
.ri-docs-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ri-docs-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1D3C55;
  text-decoration: none;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .ri-docs-list a {
    font-size: 16px;
  }
}
.ri-docs-list a:hover {
  color: #2CB7C0;
}

.ri-docs-list__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: center/contain no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1534_2615)'%3E%3Cpath opacity='0.2' d='M14.8438 3.125V8.59375H20.3125L14.8438 3.125Z' fill='url(%23paint0_linear_1534_2615)'/%3E%3Cpath d='M4.6875 10.9375V3.90625C4.6875 3.69905 4.76981 3.50034 4.91632 3.35382C5.06284 3.20731 5.26155 3.125 5.46875 3.125H14.8438L20.3125 8.59375V10.9375' stroke='url(%23paint1_linear_1534_2615)' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.8438 3.125V8.59375H20.3125' stroke='url(%23paint2_linear_1534_2615)' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.0938 14.8438H17.9688V20.3125' stroke='url(%23paint3_linear_1534_2615)' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20.3125 17.9688H17.9688' stroke='url(%23paint4_linear_1534_2615)' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.6875 18.75H6.25C6.768 18.75 7.26479 18.5442 7.63107 18.1779C7.99735 17.8117 8.20312 17.3149 8.20312 16.7969C8.20312 16.2789 7.99735 15.7821 7.63107 15.4158C7.26479 15.0495 6.768 14.8438 6.25 14.8438H4.6875V20.3125' stroke='url(%23paint5_linear_1534_2615)' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.9375 14.8438V20.3125H12.5C13.2252 20.3125 13.9207 20.0244 14.4335 19.5116C14.9463 18.9988 15.2344 18.3033 15.2344 17.5781C15.2344 16.8529 14.9463 16.1574 14.4335 15.6446C13.9207 15.1318 13.2252 14.8438 12.5 14.8438H10.9375Z' stroke='url(%23paint6_linear_1534_2615)' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1534_2615' x1='14.8438' y1='5.85938' x2='20.3125' y2='5.85938' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.3125' stop-color='%2334CDD7'/%3E%3Cstop offset='1' stop-color='%2300C851'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_1534_2615' x1='4.6875' y1='7.03125' x2='20.3125' y2='7.03125' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.3125' stop-color='%2334CDD7'/%3E%3Cstop offset='1' stop-color='%2300C851'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_1534_2615' x1='14.8438' y1='5.85938' x2='20.3125' y2='5.85938' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.3125' stop-color='%2334CDD7'/%3E%3Cstop offset='1' stop-color='%2300C851'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear_1534_2615' x1='17.9688' y1='17.5781' x2='21.0938' y2='17.5781' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.3125' stop-color='%2334CDD7'/%3E%3Cstop offset='1' stop-color='%2300C851'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint4_linear_1534_2615' x1='17.9688' y1='18.4688' x2='20.3125' y2='18.4688' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.3125' stop-color='%2334CDD7'/%3E%3Cstop offset='1' stop-color='%2300C851'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint5_linear_1534_2615' x1='4.6875' y1='17.5781' x2='8.20312' y2='17.5781' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.3125' stop-color='%2334CDD7'/%3E%3Cstop offset='1' stop-color='%2300C851'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint6_linear_1534_2615' x1='10.9375' y1='17.5781' x2='15.2344' y2='17.5781' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.3125' stop-color='%2334CDD7'/%3E%3Cstop offset='1' stop-color='%2300C851'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_1534_2615'%3E%3Crect width='25' height='25' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.ri-docs-inline {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ri-docs-inline a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1D3C55;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
}
.ri-docs-inline a:hover {
  color: #2CB7C0;
}

.ri-accordion__text {
  margin: 0;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: #1D3C55;
  max-width: 820px;
}
@media (min-width: 768px) {
  .ri-accordion__text {
    font-size: 16px;
  }
}

.ri-shareholders {
  padding: 0 0 40px;
}
@media (min-width: 768px) {
  .ri-shareholders {
    padding: 0 0 50px;
  }
}

.ri-shareholders__chart {
  max-width: 1200px;
  margin-inline: auto;
}

.ri-shareholders__row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .ri-shareholders__row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .ri-shareholders__row {
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .ri-shareholders__row {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .ri-shareholders__row--top > .ri-shareholders__card {
    flex: 0 1 180px;
  }
}

@media (min-width: 640px) {
  .ri-shareholders__row--bottom {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .ri-shareholders__row--bottom > .ri-shareholders__card {
    flex: 0 1 200px;
  }
}

.ri-shareholders__card {
  background: #F5F6FB;
  border-radius: 14px;
  padding: 20px 12px;
  text-align: center;
  color: #1D3C55;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media (min-width: 768px) {
  .ri-shareholders__card {
    min-height: 141px;
    padding: 22px 14px;
  }
}

.ri-shareholders__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .ri-shareholders__name {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .ri-shareholders__name {
    font-size: 22px;
  }
}

.ri-shareholders__share {
  display: block;
  color: #2CB7C0;
  font-weight: 500;
  font-size: 18px;
}
@media (min-width: 768px) {
  .ri-shareholders__share {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .ri-shareholders__share {
    font-size: 25px;
  }
}

.ri-shareholders__center {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}
@media (min-width: 1024px) {
  .ri-shareholders__center {
    padding: 0;
  }
}

.ri-shareholders__pill {
  background: #34CDD7;
  border-radius: 14px;
  width: 200px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ri-shareholders__pill img {
  width: 114px;
  height: auto;
}

.ri-shareholders__lines {
  display: none;
  width: 84%;
  height: 83px;
  margin: auto;
}
@media (min-width: 1024px) {
  .ri-shareholders__lines {
    display: block;
  }
}

.ri-shareholders__lines--bottom {
  display: none;
  width: 55%;
  height: 83px;
  margin: auto;
}
@media (min-width: 1024px) {
  .ri-shareholders__lines--bottom {
    display: block;
  }
}

.ri-shareholders__divider {
  display: flex;
  justify-content: center;
}
.ri-shareholders__divider::before {
  content: "";
  display: block;
  width: 2px;
  height: 28px;
  background: #2CB7C0;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .ri-shareholders__divider::before {
    height: 36px;
  }
}
@media (min-width: 1024px) {
  .ri-shareholders__divider {
    display: none;
  }
}

.ri-list-section {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .ri-list-section {
    padding: 60px 0;
  }
}

.ri-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 860px;
  color: #1D3C55;
}

.ri-list__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(29, 60, 85, 0.2);
  font-size: 15px;
}
@media (min-width: 768px) {
  .ri-list__row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
    font-size: 16px;
  }
}

.ri-list__left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (min-width: 768px) {
  .ri-list__left {
    flex-direction: row;
    gap: 12px;
    align-items: baseline;
  }
}

.ri-list__role {
  font-weight: 700;
}

.ri-list__name {
  font-weight: 400;
}

.ri-list__left-name {
  font-weight: 700;
}

.ri-list__right {
  font-weight: 700;
  text-align: right;
}
@media (min-width: 768px) {
  .ri-list__right {
    margin-left: auto;
  }
}

.ri-list--simple .ri-list__row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ri-contacts {
  padding: 40px 0 40px;
}
@media (min-width: 768px) {
  .ri-contacts {
    padding: 60px 0 60px;
  }
}

.ri-contacts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1080px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .ri-contacts__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
  }
}

.ri-contacts__title {
  font-weight: 300;
  font-size: clamp(24px, 4vw, 35px);
  color: #1D3C55;
  margin: 0 0 24px;
}

.ri-contacts__card {
  border-radius: 42px;
  padding: 40px 40px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .ri-contacts__card {
    padding: 50px 50px;
    min-height: 20rem;
  }
}
@media (min-width: 1280px) {
  .ri-contacts__card {
    font-size: 22px;
  }
}
.ri-contacts__card p {
  margin: 0;
}
.ri-contacts__card a {
  color: inherit;
  text-decoration: none;
  word-break: break-word;
}
.ri-contacts__card a:hover {
  text-decoration: underline;
}
.ri-contacts__card--teal {
  background: #34CDD7;
  color: #fff;
}
.ri-contacts__card--mint {
  background: rgba(52, 205, 215, 0.3);
  color: #1D3C55;
}

.page-texto-legal {
  background: #FFFFFF;
  color: #1D3C55;
}

.page-texto-legal__container {
  padding-top: 48px;
  padding-bottom: 80px;
}
@media (min-width: 1024px) {
  .page-texto-legal__container {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}

.page-texto-legal__title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  color: #1D3C55;
  margin: 0 0 32px;
}
@media (min-width: 1024px) {
  .page-texto-legal__title {
    font-size: 52px;
    margin-bottom: 48px;
  }
}

.page-texto-legal__content {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1D3C55;
}
@media (min-width: 1024px) {
  .page-texto-legal__content {
    font-size: 17px;
  }
}
.page-texto-legal__content h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  color: #1D3C55;
  margin: 48px 0 16px;
}
@media (min-width: 1024px) {
  .page-texto-legal__content h2 {
    font-size: 30px;
  }
}
.page-texto-legal__content h2:first-child {
  margin-top: 0;
}
.page-texto-legal__content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: #1D3C55;
  margin: 36px 0 12px;
}
@media (min-width: 1024px) {
  .page-texto-legal__content h3 {
    font-size: 22px;
  }
}
.page-texto-legal__content h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #1D3C55;
  margin: 28px 0 10px;
}
.page-texto-legal__content p {
  margin: 0 0 18px;
}
.page-texto-legal__content strong {
  font-weight: 600;
  color: #1D3C55;
}
.page-texto-legal__content a {
  color: #2CB7C0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.page-texto-legal__content a:hover {
  color: #1D3C55;
}
.page-texto-legal__content ul,
.page-texto-legal__content ol {
  margin: 0 0 22px;
  padding-left: 24px;
}
.page-texto-legal__content ul li,
.page-texto-legal__content ol li {
  margin-bottom: 8px;
}
.page-texto-legal__content ul li {
  list-style: disc;
}
.page-texto-legal__content ol li {
  list-style: decimal;
}
.page-texto-legal__content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 14px;
  border: 1px solid rgba(114, 150, 180, 0.25);
  border-radius: 8px;
}
@media (min-width: 1024px) {
  .page-texto-legal__content table {
    display: table;
    font-size: 15px;
  }
}
.page-texto-legal__content table thead {
  background: #F5F6FB;
}
.page-texto-legal__content table th,
.page-texto-legal__content table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(114, 150, 180, 0.2);
  border-right: 1px solid rgba(114, 150, 180, 0.15);
}
.page-texto-legal__content table th:last-child,
.page-texto-legal__content table td:last-child {
  border-right: none;
}
.page-texto-legal__content table th {
  font-weight: 600;
  color: #1D3C55;
  border-bottom: 2px solid rgba(114, 150, 180, 0.3);
}
.page-texto-legal__content table tbody tr:last-child td {
  border-bottom: none;
}
.page-texto-legal__content table tbody tr:hover {
  background: rgba(245, 246, 251, 0.5);
}

/* =========================================================
   BLOG — listagem, single, sidebar, busca, paginação
   Portado de template-blog/scss/component/_blog.scss e
   adaptado aos tokens do tema bionexo (#2CB7C0, #1D3C55, etc.)
   ========================================================= */
.bnx-blog {
  font-family: "Poppins", sans-serif;
  color: #1D3C55;
  padding: 0 0 80px;
}

.bnx-blog__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 48px;
}

/* Hero banner (listagem) */
.bnx-blog-hero-banner {
  padding: 24px 0 40px;
}

@media (min-width: 1024px) {
  .bnx-blog-hero-banner {
    padding: 34px 0 60px;
  }
}
.bnx-blog-hero-banner__box {
  position: relative;
  border-radius: 24px;
  padding: 40px 24px;
  background: linear-gradient(271deg, #63F1BE 0%, #5CF6DA 50%, #46DBEF 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .bnx-blog-hero-banner__box {
    padding: 56px 44px;
    border-radius: 32px;
  }
}
@media (min-width: 1024px) {
  .bnx-blog-hero-banner__box {
    padding: 72px 64px;
    border-radius: 42px;
    min-height: 260px;
  }
}
.bnx-blog-hero-banner__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 1024px) {
  .bnx-blog-hero-banner__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}
.bnx-blog-hero-banner__text {
  flex: 1;
  max-width: 720px;
}

.bnx-blog-hero-banner__eyebrow {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 8px;
}

@media (min-width: 768px) {
  .bnx-blog-hero-banner__eyebrow {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1024px) {
  .bnx-blog-hero-banner__eyebrow {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
.bnx-blog-hero-banner__title {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3;
  color: #1D3C55;
  margin: 0;
}

@media (min-width: 768px) {
  .bnx-blog-hero-banner__title {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  .bnx-blog-hero-banner__title {
    font-size: 36px;
    line-height: 1.25;
  }
}
.bnx-blog-hero-banner__desc {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #1D3C55;
  max-width: 680px;
}

@media (min-width: 1024px) {
  .bnx-blog-hero-banner__desc {
    font-size: 16px;
  }
}
.bnx-blog-hero-banner__search {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .bnx-blog-hero-banner__search {
    width: 420px;
  }
}
.bnx-blog-hero-banner__search .bnx-blog-search {
  max-width: none;
}

.bnx-blog-hero-banner__search .bnx-blog-search__input {
  border-color: rgba(255, 255, 255, 0.6);
  background: #FFFFFF;
}

.bnx-blog-hero-banner__search .bnx-blog-search__input:focus {
  border-color: #1D3C55;
}

.bnx-blog-hero-banner__search .bnx-blog-search__submit {
  background: #1D3C55;
}

.bnx-blog-hero-banner__search .bnx-blog-search__submit:hover {
  background: #0F2A3E;
}

.bnx-blog__eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: #7296B4;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin: 0;
}

.bnx-blog__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin: 0;
  color: #1D3C55;
}

.bnx-blog__cat-desc {
  max-width: 720px;
  color: #7296B4;
  font-size: 16px;
  line-height: 1.6;
}

.bnx-blog__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid */
.bnx-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 30px;
}

@media (min-width: 768px) {
  .bnx-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .bnx-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.bnx-blog-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bnx-blog-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Card */
.bnx-blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #FFFFFF;
}

.bnx-blog-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #F5F6FB;
}

.bnx-blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bnx-blog-card__thumb:hover img {
  transform: scale(1.06);
}

.bnx-blog-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: #2CB7C0;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 2;
}

.bnx-blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bnx-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: #7296B4;
}

.bnx-blog-card__meta > * {
  position: relative;
}

.bnx-blog-card__meta > *:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  background: #E5E9EE;
}

.bnx-blog-card__title {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  margin: 0;
}

.bnx-blog-card__title a {
  color: #1D3C55;
  text-decoration: none;
  transition: color 0.2s;
}

.bnx-blog-card__title a:hover {
  color: #2CB7C0;
}

.bnx-blog-card__excerpt {
  font-size: 15px;
  color: #7296B4;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bnx-blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2CB7C0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}

.bnx-blog-card__more:hover {
  gap: 12px;
}

/* Hero (single) */
.bnx-blog-hero {
  width: 100%;
  max-height: 560px;
  overflow: hidden;
  background: #F5F6FB;
}

.bnx-blog-hero__img {
  width: 100%;
  height: auto;
  min-height: 320px;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

/* Single layout */
.bnx-blog-post {
  padding-bottom: 80px;
  font-family: "Poppins", sans-serif;
  color: #1D3C55;
}

.bnx-blog-post__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px 0;
}

@media (min-width: 1024px) {
  .bnx-blog-post__container {
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    gap: 60px;
  }
}
.bnx-blog-post__main {
  min-width: 0;
}

.bnx-blog-post__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.bnx-blog-post__tag {
  align-self: flex-start;
  padding: 6px 12px;
  background: #2CB7C0;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
}

.bnx-blog-post__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.bnx-blog-post__meta {
  display: flex;
  gap: 26px;
  color: #7296B4;
  font-size: 14px;
}

.bnx-blog-post__meta > * {
  position: relative;
}

.bnx-blog-post__meta > *:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  background: #E5E9EE;
}

.bnx-blog-post__content {
  font-size: 16px;
  line-height: 1.75;
  color: #1D3C55;
}

.bnx-blog-post__content > * + * {
  margin-top: 1.2em;
}

.bnx-blog-post__content h2,
.bnx-blog-post__content h3 {
  margin-top: 2em;
  margin-bottom: 0.6em;
  font-weight: 700;
  line-height: 1.3;
  color: #1D3C55;
}

.bnx-blog-post__content h2 {
  font-size: 28px;
}

.bnx-blog-post__content h3 {
  font-size: 22px;
}

.bnx-blog-post__content a {
  color: #2CB7C0;
  text-decoration: underline;
}

.bnx-blog-post__content blockquote {
  padding: 24px 28px;
  margin: 28px 0;
  border-left: 4px solid #2CB7C0;
  background: #F5F6FB;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #1D3C55;
}

.bnx-blog-post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
}

.bnx-blog-post__content ul,
.bnx-blog-post__content ol {
  padding-left: 24px;
}

.bnx-blog-post__content li + li {
  margin-top: 8px;
}

/* Share */
.bnx-blog-share {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.bnx-blog-share__label {
  font-weight: 600;
  color: #1D3C55;
  margin-right: 6px;
}

.bnx-blog-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5F6FB;
  color: #1D3C55;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.bnx-blog-share__btn:hover {
  background: #2CB7C0;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.bnx-blog-share__btn.is-copied {
  background: #63F1BE;
  color: #1D3C55;
}

/* Prev/Next */
.bnx-blog-prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid #E5E9EE;
  border-bottom: 1px solid #E5E9EE;
  position: relative;
  margin-bottom: 60px;
}

.bnx-blog-prevnext::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 70%;
  background: #E5E9EE;
}

.bnx-blog-prevnext__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bnx-blog-prevnext__item--next {
  text-align: right;
}

.bnx-blog-prevnext__label {
  font-size: 13px;
  color: #7296B4;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.bnx-blog-prevnext__title {
  font-size: 16px;
  font-weight: 600;
  color: #1D3C55;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s;
}

.bnx-blog-prevnext__title:hover {
  color: #2CB7C0;
}

/* Related posts */
.bnx-blog-related {
  margin-top: 60px;
}

.bnx-blog-related__title {
  font-size: 24px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 24px;
}

/* Sidebar */
.bnx-blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

@media (min-width: 1024px) {
  .bnx-blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}
.bnx-blog-sidebar__item {
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #E5E9EE;
  border-radius: 16px;
}

.bnx-blog-sidebar__title {
  font-size: 18px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 16px;
}

.bnx-blog-sidebar__cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bnx-blog-sidebar__cats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #F5F6FB;
}

.bnx-blog-sidebar__cats li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bnx-blog-sidebar__cats a {
  color: #1D3C55;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.bnx-blog-sidebar__cats a:hover {
  color: #2CB7C0;
}

.bnx-blog-sidebar__cats .children {
  list-style: none;
  margin: 12px 0 0 16px;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

/* Recent posts */
.bnx-blog-sidebar__recent {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bnx-blog-recent {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.bnx-blog-recent__thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #F5F6FB;
  display: block;
}

.bnx-blog-recent__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bnx-blog-recent__body {
  flex: 1;
  min-width: 0;
}

.bnx-blog-recent__meta {
  font-size: 12px;
  color: #7296B4;
  margin-bottom: 4px;
}

.bnx-blog-recent__title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.bnx-blog-recent__title a {
  color: #1D3C55;
  text-decoration: none;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bnx-blog-recent__title a:hover {
  color: #2CB7C0;
}

/* Newsletter (placeholder) */
.bnx-blog-newsletter__desc {
  font-size: 14px;
  color: #7296B4;
  margin: 0 0 16px;
  line-height: 1.5;
}

.bnx-blog-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bnx-blog-newsletter__form input[type=email] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #E5E9EE;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: #1D3C55;
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.2s;
}

.bnx-blog-newsletter__form input[type=email]:focus {
  border-color: #2CB7C0;
}

.bnx-blog-newsletter__submit {
  background: linear-gradient(to right, #63F1BE, #5CF6DA, #46DBEF);
  color: #1D3C55;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.bnx-blog-newsletter__submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Search form */
.bnx-blog-search {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: 520px;
}

.bnx-blog-search__input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #E5E9EE;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: #1D3C55;
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.2s;
}

.bnx-blog-search__input:focus {
  border-color: #2CB7C0;
}

.bnx-blog-search__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: #2CB7C0;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.bnx-blog-search__submit:hover {
  background: #1D3C55;
  transform: translateY(-1px);
}

/* Pagination (the_posts_pagination) */
.bnx-blog-pagination {
  margin-top: 56px;
}

.bnx-blog-pagination .nav-links,
.bnx-blog-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bnx-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #E5E9EE;
  border-radius: 8px;
  color: #1D3C55;
  font-weight: 500;
  text-decoration: none;
  background: #FFFFFF;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.bnx-blog-pagination .page-numbers:hover {
  background: #F5F6FB;
  border-color: #2CB7C0;
  color: #2CB7C0;
}

.bnx-blog-pagination .page-numbers.current {
  background: #2CB7C0;
  border-color: #2CB7C0;
  color: #FFFFFF;
}

.bnx-blog-pagination .page-numbers.dots {
  border: none;
  background: transparent;
}

.bnx-blog-pagination .screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Empty state */
.bnx-blog-empty {
  text-align: center;
  padding: 80px 20px;
  max-width: 520px;
  margin: 0 auto;
}

.bnx-blog-empty__title {
  font-size: 24px;
  font-weight: 700;
  color: #1D3C55;
  margin: 0 0 12px;
}

.bnx-blog-empty__message {
  color: #7296B4;
  font-size: 16px;
  margin: 0 0 24px;
}

.bnx-blog-empty__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #2CB7C0;
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.bnx-blog-empty__back:hover {
  background: #1D3C55;
  transform: translateY(-1px);
}

/* Responsive tweaks single */
@media (max-width: 767px) {
  .bnx-blog-prevnext {
    grid-template-columns: 1fr;
  }
  .bnx-blog-prevnext::after {
    display: none;
  }
  .bnx-blog-prevnext__item--next {
    text-align: left;
  }
}
