/* =========================
   ANIMAÇÕES MODERNAS
========================= */

/* Variáveis para facilitar manutenção */
:root {
  --anime-duration: 0.8s;
  --anime-ease: cubic-bezier(0.22, 1, 0.36, 1); /* easing mais moderno */
  --anime-distance: 60px;
}

/* Estado inicial */
html.txt-animations-ready [data-anime] {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(0.98);
  transition:
    transform var(--anime-duration) var(--anime-ease);
  will-change: transform;
}

/* Direções */
html.txt-animations-ready [data-anime="left"] {
  transform: translate3d(calc(-1 * var(--anime-distance)), 0, 0) scale(0.98);
}

html.txt-animations-ready [data-anime="right"] {
  transform: translate3d(var(--anime-distance), 0, 0) scale(0.98);
}

html.txt-animations-ready [data-anime="top"] {
  transform: translate3d(0, calc(-1 * var(--anime-distance)), 0) scale(0.98);
}

html.txt-animations-ready [data-anime="down"] {
  transform: translate3d(0, var(--anime-distance), 0) scale(0.98);
}

/* Estado ativo */
[data-anime].animate {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* =========================
   MELHORIAS VISUAIS OPCIONAIS
========================= */

/* Fade com leve blur (efeito moderno) */
[data-anime].animate {
  filter: blur(0);
}

html.txt-animations-ready [data-anime] {
  filter: none;
  transition:
    transform var(--anime-duration) var(--anime-ease),
    filter var(--anime-duration) var(--anime-ease);
}

/* =========================
   MOBILE (mais fluido)
========================= */

@media (max-width: 480px) {
  .container {
    overflow-x: hidden;
  }

  /* Reduz intensidade ao invés de remover */
  :root {
    --anime-distance: 20px;
  }

  html.txt-animations-ready [data-anime] {
    filter: none; /* remove blur para performance */
  }
}

/* =========================
   ACESSIBILIDADE
========================= */

/* Usuários que preferem menos animação */
@media (prefers-reduced-motion: reduce) {
  [data-anime] {
    transition: none;
    transform: none;
    opacity: 1;
    filter: none;
  }
}

/* =========================
   TXT LOG - Portabilidade
========================= */
:root {
  --txt-primary: #0d3f63;
  --txt-primary-dark: #092f4a;
  --txt-accent: #f4b331;
  --txt-grey: #6f7478;
  --txt-dark: #101820;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--txt-dark);
}

.txt-info-menu-label {
  display: none;
}

.topbar,
.bg-principal,
.btn-orca,
.btn-banner,
.txt-band,
.txt-cta {
  background: var(--txt-primary) !important;
}

.color-principal,
.titulo-principal span,
.txt-title span,
.txt-section-kicker {
  color: var(--txt-primary) !important;
}

.navbar .logo,
.logo-footer {
  max-height: 70px;
  object-fit: contain;
}

.navbar .nav-link {
  color: var(--txt-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--txt-primary);
}

.sub-menu-info {
  max-height: 420px;
  overflow-y: auto;
}

.sub-menu-info a {
  color: var(--txt-dark);
  text-decoration: none;
  font-size: 14px;
}

.txt-hero {
  min-height: 640px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6, 32, 50, .82), rgba(6, 32, 50, .58), rgba(6, 32, 50, .28)),
    url("../image/txtlog/uploads/6/banner/2024/11/banner-a-txt-log-e-a-empresa-certa-25cd7012f6.webp") center/cover no-repeat;
  color: #fff !important;
}

.min-vh-75 {
  min-height: 75vh;
}

.txt-eyebrow,
.txt-section-kicker {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.txt-hero h1 {
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
  font-weight: 800;
}

.txt-hero p {
  max-width: 680px;
  font-size: 1.2rem;
  margin: 24px 0 30px;
}

.txt-stats {
  margin-top: -58px;
  position: relative;
  z-index: 3;
}

.txt-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 16px 34px rgba(16, 24, 32, .12);
}

.txt-stat img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.txt-stat strong {
  display: block;
  color: var(--txt-primary);
  font-size: 1.8rem;
  line-height: 1;
}

.txt-stat span {
  display: block;
  font-weight: 700;
}

.txt-title,
.txt-heading {
  font-weight: 800;
  text-transform: uppercase;
}

.txt-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.txt-band,
.txt-cta {
  color: #fff;
  padding: 46px 0;
}

.txt-band h2,
.txt-cta h2 {
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}

.txt-band p,
.txt-cta p {
  margin: 8px 0 0;
}

.txt-service-card,
.txt-feature-card,
.txt-link-box,
.txt-info-box,
.txt-license {
  display: block;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  color: var(--txt-dark);
  box-shadow: 0 10px 24px rgba(16, 24, 32, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.txt-service-card:hover,
.txt-feature-card:hover,
.txt-link-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(16, 24, 32, .14);
  color: var(--txt-primary);
}

.txt-service-card {
  padding: 32px;
}

.txt-service-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 18px;
}

.txt-service-card h3,
.txt-feature-card h3,
.txt-info-box h2 {
  font-size: 1.2rem;
  font-weight: 800;
}

.txt-service-card p,
.txt-info-box p {
  color: var(--txt-grey);
  margin-bottom: 0;
}

.txt-license {
  padding: 24px;
  text-align: center;
}

.txt-license img {
  width: 100%;
  max-height: 98px;
  object-fit: contain;
  margin-bottom: 15px;
}

.txt-license p {
  font-weight: 700;
  margin: 0;
  font-size: .95rem;
}

.txt-feature-card {
  overflow: hidden;
}

.txt-feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.txt-feature-card h3 {
  padding: 18px;
  margin: 0;
}

.txt-link-box {
  padding: 14px 16px;
  font-weight: 700;
  border-left: 4px solid var(--txt-primary);
}

.txt-info-box {
  padding: 28px;
}

.txt-contact-list p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.txt-contact-list a {
  color: var(--txt-dark);
  text-decoration: none;
}

footer .footer-top,
#assinatura {
  background: var(--txt-primary-dark);
}

footer,
footer a,
footer p,
footer h2,
#assinatura {
  color: #fff;
}

@media (max-width: 991px) {
  .txt-hero {
    min-height: 560px;
    text-align: center;
  }

  .txt-hero p,
  .txt-hero h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .txt-hero .d-flex {
    justify-content: center;
  }

  .txt-stats {
    margin-top: 0;
  }
}

@media (max-width: 1399px) {
  .navbar .btn-orca {
    display: none !important;
  }
}

/* =========================
   TXT LOG - Fidelidade visual v2
========================= */
:root {
  --txt-blue: #024b77;
  --txt-blue-dark: #003554;
  --txt-grey: #6f7478;
  --txt-black: #111;
  --txt-light: #fff;
  --txt-wrapper: 1320px;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--txt-black);
  background: #fff;
}

.txt-wrapper {
  width: min(calc(100% - 70px), var(--txt-wrapper));
  margin-inline: auto;
}

.txt-header {
  position: relative;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.txt-header-home {
  position: absolute;
  background: transparent;
  box-shadow: none;
}

.txt-header-inner .txt-nav .nav-link {
  color: #111 !important;
  text-shadow: none;
}

.txt-header-inner .txt-social {
  color: var(--txt-blue);
  border-color: rgba(2, 75, 119, .22);
}

.txt-header-row {
  min-height: 155px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.txt-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.txt-logo img,
.navbar .logo {
  width: 240px;
  max-height: 92px;
  object-fit: contain;
  filter: none;
}

.txt-nav {
  flex: 1 1 auto;
  justify-content: center;
}

@media (min-width: 992px) {
  .txt-nav.collapse {
    display: flex !important;
  }
}

.txt-nav .navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
}

.txt-nav .nav-link {
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 18px 10px !important;
  letter-spacing: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .22);
}

.txt-nav .nav-link:hover,
.txt-nav .nav-link:focus {
  color: #d9d9d9 !important;
}

.txt-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.txt-track {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--txt-blue);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.txt-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  text-decoration: none;
}

.txt-social:hover,
.txt-track:hover {
  color: #fff;
  background: var(--txt-blue-dark);
}

.txt-menu-toggle {
  display: none;
  background: #fff;
}

.txt-info-menu-mobile {
  display: none;
}

.txt-hero {
  min-height: 659px;
  display: flex;
  align-items: center;
  padding: 155px 0 72px;
  color: #fff;
  background:
    linear-gradient(rgba(0, 0, 0, .50), rgba(0, 0, 0, .50)),
    url("../image/txtlog/uploads/6/banner/2024/11/banner-a-txt-log-e-a-empresa-certa-25cd7012f6.webp") center/cover no-repeat;
}

.txt-hero-content {
  width: min(752px, 100%);
  margin-inline: auto;
  padding-top: 4px;
  text-align: center;
  transform: translateY(-40px);
}

.txt-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 52px;
  line-height: 1.18;
  font-weight: 700;
  text-transform: none;
}

.txt-hero h1 span {
  font-weight: 400;
}

.txt-hero p {
  width: min(696px, 100%);
  margin: 14px auto 32px;
  color: #fff;
  font-size: 22px;
  line-height: 1.5;
}

.txt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.txt-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  border-radius: 0;
  transition: .2s ease;
}

.txt-btn-border {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.txt-btn-border:hover {
  color: var(--txt-blue);
  background: #fff;
}

.txt-btn-primary {
  color: #fff;
  background: var(--txt-blue);
  border-color: var(--txt-blue);
}

.txt-btn-primary:hover {
  color: #fff;
  background: var(--txt-blue-dark);
  border-color: var(--txt-blue-dark);
}

.txt-stats {
  position: relative;
  z-index: 4;
  margin-top: -56px;
  padding: 0 0 70px;
}

.txt-stats-box {
  width: min(986px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 24px 42px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.txt-stat {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 120px;
  padding: 4px 28px;
}

.txt-stat + .txt-stat {
  border-left: 1px solid #d9d9d9;
}

.txt-stat img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  justify-self: end;
}

.txt-stat strong {
  display: block;
  margin: 0;
  color: #333;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
}

.txt-stat small {
  color: var(--txt-grey);
  font-size: 16px;
  font-weight: 700;
}

.txt-stat span {
  display: block;
  margin-top: 8px;
  color: #111;
  font-size: 19px;
  font-weight: 700;
}

.txt-about {
  padding: 10px 0 90px;
  background: #fff;
}

.txt-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  align-items: center;
  gap: 56px;
}

.txt-about-copy {
  text-align: center;
}

.txt-about-copy span,
.txt-section-title span {
  display: block;
  margin: 0 0 3px;
  color: var(--txt-grey);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.txt-about-copy h2 {
  margin: 0 0 24px;
  color: #009d00;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}

.txt-about-copy h2 em {
  color: var(--txt-grey);
  font-style: normal;
  font-weight: 700;
}

.txt-about-copy p {
  margin: 0 0 16px;
  color: #111;
  font-size: 16px;
  line-height: 1.75;
}

.txt-about-image img {
  display: block;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

.txt-band {
  padding: 46px 0;
  color: #fff;
  background: var(--txt-blue) !important;
}

.txt-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  text-transform: uppercase;
}

.txt-band p {
  margin: 4px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.txt-services,
.txt-licenses,
.txt-featured {
  padding: 78px 0;
}

.txt-services,
.txt-featured {
  background: #f6f6f6;
}

.txt-section-title {
  margin-bottom: 46px;
}

.txt-section-title h2 {
  margin: 0;
  color: #111;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 600;
}

.txt-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.txt-service-card {
  min-height: 382px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 42px 34px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 0;
  background:
    linear-gradient(rgba(0, 0, 0, .34), rgba(0, 0, 0, .48)),
    var(--card-bg) center/cover no-repeat;
  box-shadow: none;
}

.txt-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .06);
  transition: .25s ease;
}

.txt-service-card > * {
  position: relative;
  z-index: 1;
}

.txt-service-card:hover::after {
  background: rgba(2, 75, 119, .44);
}

.txt-service-card span {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.txt-service-card span img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.txt-service-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
}

.txt-service-card p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
}

.txt-license-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.txt-license {
  padding: 20px 14px;
  text-align: center;
  background: #fff;
  border-radius: 0;
  box-shadow: 8px 8px 20px rgba(0,0,0,.08), -8px -8px 20px rgba(255,255,255,.9);
}

.txt-license img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  margin-bottom: 15px;
}

.txt-license p {
  margin: 0;
  color: #111;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.txt-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.txt-feature-card {
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #111;
  border-radius: 0;
  box-shadow: none;
}

.txt-feature-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  opacity: .9;
  transition: transform .25s ease, opacity .25s ease;
}

.txt-feature-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px;
  background: linear-gradient(transparent, rgba(0,0,0,.86));
}

.txt-feature-card h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.txt-feature-card span {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--txt-blue);
  color: #fff;
}

.txt-feature-card:hover img {
  transform: scale(1.06);
  opacity: .72;
}

.txt-cta {
  padding: 54px 0;
  color: #fff;
  background: var(--txt-blue) !important;
}

footer .footer-top,
#assinatura,
footer {
  background: var(--txt-blue-dark) !important;
}

footer .footer-top {
  padding: 58px 0 38px;
}

footer h2,
footer h3,
footer p,
footer a,
#assinatura {
  color: #fff !important;
}

.logo-footer {
  width: 180px;
  max-height: 92px;
  object-fit: contain;
  margin-bottom: 18px;
}

@media (max-width: 1199px) {
  .txt-header-actions {
    display: none;
  }

  .txt-nav .nav-link {
    padding-inline: 7px !important;
    font-size: 12px;
  }

  .txt-service-grid,
  .txt-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .txt-license-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .txt-header {
    position: absolute;
    padding: 12px 0;
  }

  .txt-header-row {
    min-height: 74px;
  }

  .txt-menu-toggle {
    display: inline-flex;
  }

  .txt-nav {
    position: absolute;
    top: calc(100% - 8px);
    left: 16px;
    right: 16px;
    flex-basis: auto;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.16);
  }

  .txt-nav .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0;
  }

  .txt-nav .nav-link {
    color: #111 !important;
    text-shadow: none;
    padding: 12px 18px !important;
  }

  .txt-hero {
    min-height: 650px;
    padding-top: 120px;
    text-align: center;
  }

  .txt-hero-content {
    margin-inline: auto;
  }

  .txt-hero-actions {
    justify-content: center;
  }

  .txt-stats {
    margin-top: -44px;
  }

  .txt-stats-box {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .txt-stat {
    grid-template-columns: 80px 1fr;
    padding: 18px;
  }

  .txt-stat + .txt-stat {
    border-left: 0;
    border-top: 1px solid #d9d9d9;
  }

  .txt-about-grid {
    grid-template-columns: 1fr;
  }

  .txt-about-image {
    order: -1;
  }
}

@media (max-width: 767px) {
  .txt-wrapper {
    width: min(calc(100% - 32px), var(--txt-wrapper));
  }

  .txt-logo img,
  .navbar .logo {
    width: 126px;
  }

  .txt-hero {
    min-height: 620px;
  }

  .txt-hero h1 {
    font-size: 2.35rem;
  }

  .txt-hero-content {
    transform: none;
  }

  .txt-hero p {
    font-size: 17px;
  }

  .txt-service-grid,
  .txt-feature-grid,
  .txt-license-grid {
    grid-template-columns: 1fr;
  }

  .txt-service-card {
    min-height: 330px;
  }
}

/* =========================
   TXT LOG - Home fiel
========================= */
:root {
  --txt-original-primary: #009D00;
  --txt-original-secondary: #000;
  --txt-original-dark: #343a40;
  --txt-original-grey: #6f7478;
  --txt-original-light: #fafafa;
}

.txt-home,
.txt-home p,
.txt-home a,
.txt-home h1,
.txt-home h2,
.txt-home h3,
.txt-home h4,
.txt-home h5,
.txt-home h6 {
  letter-spacing: 0;
}

.txt-home * {
  box-sizing: border-box;
}

.txt-home .txt-wrapper {
  width: min(calc(100% - 70px), 1288px);
}

.txt-home .txt-header {
  position: absolute;
  background: transparent;
  box-shadow: none;
}

.txt-home .txt-header-row {
  min-height: 155px;
}

.txt-home .txt-logo img {
  width: 240px;
  max-height: 75px;
  filter: brightness(0) invert(1);
}

.txt-home .txt-nav .nav-link {
  color: #fff !important;
  font-size: 12.5px;
  font-weight: 700;
  padding: 18px 8px !important;
  text-shadow: none;
}

.txt-home .txt-nav .nav-link:hover,
.txt-home .txt-nav .nav-link:focus {
  color: var(--txt-original-primary) !important;
}

.txt-home .txt-track {
  min-height: 42px;
  padding: 0 19px;
  background: var(--txt-original-primary);
  color: #fff;
}

.txt-home .txt-social {
  width: 38px;
  height: 38px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
}

.txt-home .txt-track:hover,
.txt-home .txt-social:hover {
  background: var(--txt-original-secondary);
  color: #fff;
}

.txt-home .txt-hero {
  min-height: 659px;
  padding: 155px 0 72px;
  background:
    linear-gradient(rgba(0, 0, 0, .48), rgba(0, 0, 0, .48)),
    url("../image/txtlog/uploads/6/banner/2024/11/banner-a-txt-log-e-a-empresa-certa-25cd7012f6.webp") center/cover no-repeat;
}

.txt-home .txt-hero-content {
  width: min(760px, 100%);
  margin-inline: auto;
  padding-top: 0;
  transform: translateY(-38px);
  text-align: center;
}

.txt-home .txt-hero h1 {
  color: #fff;
  font-size: 52px;
  line-height: 1.23;
  font-weight: 700;
}

.txt-home .txt-hero h1 span {
  font-weight: 400;
}

.txt-home .txt-hero p {
  width: min(700px, 100%);
  max-width: 696px;
  margin: 11px auto 26px;
  color: #fff;
  font-size: 22.72px;
  line-height: 1.5;
  font-weight: 400;
}

.txt-home .txt-hero-actions {
  gap: 30px;
}

.txt-home .txt-btn {
  min-height: 54px;
  padding: 14px 23px;
  font-size: 14px;
  font-weight: 700;
}

.txt-home .txt-btn-primary {
  background: var(--txt-original-primary);
  border-color: var(--txt-original-primary);
}

.txt-home .txt-btn-primary:hover,
.txt-home .txt-btn-border:hover {
  color: #fff;
  background: var(--txt-original-secondary);
  border-color: var(--txt-original-secondary);
}

.txt-home .txt-stats {
  margin-top: -56px;
  padding-bottom: 70px;
}

.txt-home .txt-stats-box {
  width: min(986px, 100%);
  padding: 3rem;
  border-radius: 20px !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
}

.txt-home .txt-stat {
  grid-template-columns: 32% 1fr;
  gap: 18px;
  min-height: 110px;
  padding: 0 20px;
}

.txt-home .txt-stat + .txt-stat {
  position: relative;
  border-left: 0;
}

.txt-home .txt-stat + .txt-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 3px;
  background: var(--txt-original-primary);
  border-radius: 2px;
}

.txt-home .txt-stat img {
  width: 54px;
  height: 54px;
  justify-self: center;
}

.txt-home .txt-stat div {
  text-align: center;
}

.txt-home .txt-stat strong {
  color: #333;
  font-size: 30px;
}

.txt-home .txt-stat small {
  color: var(--txt-original-grey);
  font-size: 18px;
}

.txt-home .txt-stat span {
  color: #111;
  margin-top: 5px;
  font-size: 20px;
}

.txt-home .txt-about {
  padding: 10px 0 90px;
}

.txt-home .txt-about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  gap: 56px;
}

.txt-home .txt-about-copy {
  text-align: center;
}

.txt-home .txt-about-copy span,
.txt-home .txt-section-title span {
  color: var(--txt-original-grey);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.txt-home .txt-about-copy h2 {
  color: var(--txt-original-primary);
  font-size: 38px;
  font-weight: 700;
}

.txt-home .txt-about-copy h2 em {
  color: var(--txt-original-grey);
}

.txt-home .txt-band,
.txt-home .txt-index-cta {
  background: var(--txt-original-primary) !important;
  color: #fff;
}

.txt-home .txt-band {
  padding: 46px 0;
}

.txt-home .txt-band h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
}

.txt-home .txt-band p {
  color: #fff;
  font-size: 18px;
}

.txt-home .txt-services,
.txt-home .txt-clients,
.txt-home .txt-licenses,
.txt-home .txt-featured {
  padding: 78px 0;
  background: #fff;
}

.txt-home .txt-section-title {
  margin-bottom: 46px;
}

.txt-home .txt-section-title.text-center {
  text-align: center;
}

.txt-home .txt-section-title h2 {
  color: #000;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 600;
}

.txt-home .txt-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.txt-home .txt-service-card {
  min-height: 418px;
  padding: 42px 30px;
  background:
    linear-gradient(rgba(0, 0, 0, .32), rgba(0, 0, 0, .48)),
    var(--card-bg) center/cover no-repeat;
}

.txt-home .txt-service-card:hover::after {
  background: rgba(0, 157, 0, .34);
}

.txt-home .txt-service-card h3 {
  font-size: 22px;
}

.txt-home .txt-service-card p {
  font-size: 14.5px;
  line-height: 1.6;
}

.txt-index-cta {
  padding: 46px 0;
}

.txt-index-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 42px;
  text-align: center;
}

.txt-index-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}

.txt-index-cta strong {
  display: block;
  color: #fff;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
}

.txt-index-cta p {
  margin: 0 0 22px;
  color: #fff;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
}

.txt-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  background: #fff;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.txt-cta-white:hover {
  background: #000;
  color: #fff;
}

.txt-home .txt-clients .txt-section-title {
  text-align: left;
}

.txt-client-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(230px, 1fr));
  gap: 26px;
  overflow-x: auto;
  padding: 6px 0 14px;
  scrollbar-width: thin;
}

.txt-client-item {
  min-width: 230px;
}

.txt-client-text {
  min-height: 190px;
  padding: 32px;
  background: var(--txt-original-light);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.txt-client-text p {
  margin: 0;
  color: #000;
  font-size: 15px;
  line-height: 1.55;
}

.txt-client-item h3 {
  margin: 18px 0 0 18px;
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

.txt-home .txt-license-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(110px, 1fr));
  gap: 16px;
  padding-top: 42px;
}

.txt-home .txt-license {
  min-height: 220px;
  padding: 22px 10px;
  background: #fff;
  box-shadow: 8px 8px 20px rgba(0,0,0,.08), -8px -8px 20px rgba(255,255,255,.92);
}

.txt-home .txt-license img {
  height: 86px;
  width: 75%;
}

.txt-home .txt-featured .txt-section-title {
  text-align: center;
}

.txt-home .txt-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.txt-home .txt-feature-card {
  background: #fff;
}

.txt-home .txt-feature-card img {
  height: 245px;
  opacity: 1;
}

.txt-home .txt-feature-card div {
  padding: 16px;
  background: rgba(0,0,0,.76);
}

.txt-home .txt-feature-card span {
  background: var(--txt-original-primary);
}

.txt-home footer .footer-top,
.txt-home #assinatura,
.txt-home footer {
  background: var(--txt-original-secondary) !important;
}

.txt-home .txt-cta-footer,
.txt-cta-footer {
  padding: 46px 0;
  color: #fff;
  background: var(--txt-original-primary) !important;
}

.txt-cta-footer h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}

.txt-cta-footer strong {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
}

.txt-cta-footer p {
  margin: 0 0 22px;
  color: #fff;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
}

.txt-cta-footer .txt-cta-white {
  border-radius: 10px !important;
}

.txt-home .logo-footer,
.logo-footer {
  filter: brightness(0) invert(1);
}

@media (max-width: 1199px) {
  .txt-home .txt-service-grid,
  .txt-home .txt-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .txt-home .txt-license-grid {
    grid-template-columns: repeat(8, minmax(90px, 1fr));
    gap: 12px;
  }

  .txt-home .txt-license {
    padding-inline: 8px;
  }

  .txt-home .txt-license p {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .txt-home .txt-logo img {
    width: 170px;
    filter: brightness(0) invert(1);
  }

  .txt-home .txt-header-row {
    min-height: 92px;
  }

  .txt-home .txt-nav .nav-link {
    color: #111 !important;
    text-shadow: none;
  }

  .txt-home .txt-hero-content {
    transform: none;
  }

  .txt-home .txt-stats {
    margin-top: -52px;
  }

  .txt-home .txt-stats-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 2rem 1.25rem;
  }

  .txt-home .txt-stat {
    grid-template-columns: 34% 1fr;
    min-height: 105px;
    padding: 0 10px;
  }

  .txt-home .txt-stat + .txt-stat {
    border-top: 0;
  }

  .txt-home .txt-stat + .txt-stat::before {
    display: block;
  }

  .txt-home .txt-about-grid,
  .txt-index-cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .txt-home .txt-wrapper {
    width: min(calc(100% - 32px), 1288px);
  }

  .txt-home .txt-hero h1 {
    font-size: 38px;
  }

  .txt-home .txt-hero p {
    font-size: 18px;
  }

  .txt-home .txt-stats-box {
    padding: 1.5rem .75rem;
  }

  .txt-home .txt-stat {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 8px;
    text-align: center;
  }

  .txt-home .txt-stat img {
    width: 44px;
    height: 44px;
  }

  .txt-home .txt-stat strong {
    font-size: 24px;
  }

  .txt-home .txt-stat small {
    display: block;
    margin-top: 2px;
    font-size: 13px;
  }

  .txt-home .txt-stat span {
    font-size: 15px;
    line-height: 1.25;
  }

  .txt-home .txt-band h2,
  .txt-index-cta strong {
    font-size: 32px;
  }

  .txt-home .txt-service-grid,
  .txt-home .txt-feature-grid,
  .txt-home .txt-license-grid {
    grid-template-columns: 1fr;
  }

  .txt-client-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   TXT LOG - Home fiel v3
========================= */
.txt-home * {
  border-radius: revert-layer;
}

.txt-home .txt-header-row {
  gap: 20px;
  position: relative;
}

.txt-home .txt-nav {
  min-width: 0;
  padding-right: 92px;
}

.txt-home .txt-nav .navbar-nav {
  gap: 4px;
  justify-content: flex-start;
}

.txt-home .txt-nav .nav-item {
  position: relative;
  flex: 0 0 auto;
}

.txt-home .txt-nav .nav-link {
  display: block;
  padding: .75rem 8px !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: none;
  transition: .3s ease-out;
  white-space: nowrap;
}

.txt-home .txt-nav .nav-link:hover,
.txt-home .txt-nav .nav-link:focus {
  color: var(--txt-original-primary) !important;
}

.txt-home .txt-nav .tracking-menu {
  background: var(--txt-original-primary);
  color: #fff !important;
}

.txt-home .txt-nav .tracking-menu:hover,
.txt-home .txt-nav .tracking-menu:focus {
  color: #fff !important;
  background: var(--txt-original-secondary);
}

.txt-home .txt-nav .dropdown-toggle::after {
  display: none;
}

.txt-home .txt-nav .sub-menu-info {
  display: none;
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  width: 230px;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #fff;
  border: 0;
  border-radius: 0 !important;
  box-shadow: 0 13px 42px 11px rgba(0, 0, 0, .05);
}

.txt-home .txt-nav .dropdown:hover .sub-menu-info,
.txt-home .txt-nav .dropdown:focus-within .sub-menu-info {
  display: block;
}

.txt-home .txt-nav .sub-menu-info li,
.txt-home .txt-nav .sub-menu-info .dropdown-item {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
}

.txt-home .txt-nav .sub-menu-info a {
  display: block;
  width: 100%;
  padding: 10px;
  color: var(--txt-original-grey);
  font-size: 12px;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  transition: .3s ease-out;
}

.txt-home .txt-nav .sub-menu-info a:hover {
  color: var(--txt-original-primary);
  padding-left: 1rem;
}

.txt-home .txt-header-actions {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  gap: 10px;
}

.txt-home .txt-social {
  border-radius: 0 !important;
}

.txt-home .txt-btn,
.txt-home .txt-cta-white {
  border-radius: 10px !important;
}

.txt-home .txt-stats-box {
  border-radius: 20px !important;
}

.txt-home .txt-service-grid {
  align-items: stretch;
}

.txt-home .txt-service-card {
  z-index: 1;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 300px;
  height: 100%;
  padding: 2.5rem;
  overflow: hidden;
  background: #fff;
  color: var(--txt-original-dark);
  text-align: left;
  border-radius: .25rem !important;
  box-shadow: none;
  transition: .3s ease-out;
}

.txt-home .txt-service-card::after {
  z-index: -1;
  background-image: linear-gradient(#0009, #0009), var(--card-bg);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: .3s ease-out;
}

.txt-home .txt-service-card:hover {
  color: #fff;
}

.txt-home .txt-service-card:hover::after {
  opacity: 1;
  background-color: transparent;
}

.txt-home .txt-service-card span {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  margin: 0 0 1rem;
  padding: 20px;
  border: 1px solid currentColor;
  border-radius: 99px !important;
  background: #fff;
  transition: .3s ease-out;
}

.txt-home .txt-service-card:hover span {
  border-color: var(--txt-original-primary);
  background: var(--txt-original-primary);
}

.txt-home .txt-service-card span img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.txt-home .txt-service-card h3 {
  min-height: calc((1.25rem * 2) * 1.3);
  display: flex;
  align-items: center;
  margin: 0;
  color: inherit;
  font-size: 1.25rem;
  line-height: normal;
  text-transform: uppercase;
}

.txt-home .txt-service-card p {
  margin: 0;
  color: inherit;
  font-size: 1rem;
  line-height: normal;
}

.txt-home .txt-index-cta {
  padding: 46px 0;
  background: var(--txt-original-primary) !important;
}

.txt-home .txt-cta-white {
  background: var(--txt-original-light);
  color: #000;
  transition: .3s ease-out;
}

.txt-home .txt-cta-white:hover {
  background: var(--txt-original-dark);
  color: var(--txt-original-light);
}

.txt-client-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-bottom: 35px;
}

.txt-client-track {
  display: flex;
  transition: transform .45s ease-out;
  will-change: transform;
}

.txt-client-slide {
  flex: 0 0 33.3333%;
  padding: 0 4px;
}

.txt-client-text {
  min-height: 220px;
  margin: 45px 4px 5px;
  padding: 3rem;
  background: var(--txt-original-light);
  border-radius: 20px !important;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.25);
}

.txt-client-text p {
  position: relative;
  margin: 0;
  color: #000;
  font-size: 15px;
  line-height: 1.55;
}

.txt-client-text p::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 10%;
  bottom: 10%;
  width: 2px;
  background-color: var(--txt-original-primary);
  border-radius: 2px !important;
}

.txt-client-slide h3 {
  margin: 0 0 0 1rem;
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

.txt-client-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.txt-client-dots button {
  position: relative;
  width: 20px;
  height: 20px;
  padding: 5px;
  border: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
}

.txt-client-dots button::before {
  content: "\f111";
  position: absolute;
  inset: 0;
  color: #000;
  font: 12px / 20px FontAwesome;
  opacity: .25;
  text-align: center;
  transition: .3s ease-out;
}

.txt-client-dots button.is-active::before,
.txt-client-dots button:hover::before {
  color: var(--txt-original-primary);
  opacity: .75;
  transform: scale(1.3);
}

.txt-home .txt-license {
  border-radius: 0 !important;
}

.txt-home .txt-feature-card {
  position: relative;
  min-height: 245px;
  background-color: var(--txt-original-primary);
  border-radius: .5rem !important;
  overflow: hidden;
  transition: .3s ease-out;
}

.txt-home .txt-feature-card:hover {
  background-color: var(--txt-original-dark);
  box-shadow: 0 0 0 2px var(--txt-original-dark);
}

.txt-home .txt-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  filter: grayscale(1);
  mix-blend-mode: multiply;
  opacity: 1;
  transition: .3s ease-out;
}

.txt-home .txt-feature-card div {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  background: transparent;
}

.txt-home .txt-feature-card h3 {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.3;
  text-shadow: 0 0 .25rem var(--txt-original-dark);
}

.txt-home .txt-feature-card span {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid transparent;
  border-radius: 999px !important;
  background: #fff;
  color: var(--txt-original-primary);
  transition: .3s ease-out;
}

.txt-home .txt-feature-card:hover span {
  background: var(--txt-original-primary);
  color: #fff;
  border-color: currentColor;
}

@media (max-width: 1320px) {
  .txt-home .txt-nav .nav-link {
    padding-inline: 7px !important;
    font-size: 12.5px;
  }
}

@media (max-width: 991px) {
  .txt-home .txt-nav .navbar-nav {
    gap: 0;
  }

  .txt-home .txt-nav .nav-link {
    border-radius: 0 !important;
  }

  .txt-home .txt-nav .sub-menu-info {
    position: static;
    width: 100%;
    box-shadow: none;
  }
}

@media (max-width: 576px) {
  .txt-client-slide {
    flex-basis: 100%;
  }
}

/* =========================
   TXT LOG - Ajustes finais da index
========================= */
.txt-home .txt-about-copy {
  text-align: left;
}

.txt-home .txt-about-copy span,
.txt-home .txt-about-copy h2,
.txt-home .txt-about-copy p {
  text-align: left;
}

.txt-home .txt-about-copy .txt-btn {
  margin-top: 8px;
}

.txt-home .txt-stats-box {
  background: #fff !important;
  overflow: hidden;
}

.txt-home .txt-stat,
.txt-home .txt-stat div,
.txt-home .txt-stat strong,
.txt-home .txt-stat small,
.txt-home .txt-stat span {
  background: transparent !important;
}

.txt-home .txt-stat {
  box-shadow: none !important;
}

.txt-home .txt-stat + .txt-stat::before {
  z-index: 1;
}

.txt-home .txt-service-card:is(:hover, :focus-within),
.txt-home .txt-service-card:is(:hover, :focus-within) h3,
.txt-home .txt-service-card:is(:hover, :focus-within) p {
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .42);
}

.txt-home .txt-service-card:is(:hover, :focus-within)::after {
  opacity: 1;
  background-image: linear-gradient(rgba(0, 0, 0, .68), rgba(0, 0, 0, .68)), var(--card-bg);
}

.txt-home .txt-service-card:is(:hover, :focus-within) span {
  color: #fff;
}

.txt-home footer,
.txt-home footer .footer-top,
.txt-home #assinatura {
  background: #050505 !important;
}

.txt-home footer .footer-top {
  padding: 58px 0 42px;
}

.txt-home footer h2,
.txt-home footer h3 {
  color: #fff !important;
}

.txt-home footer p,
.txt-home footer li,
.txt-home footer a,
.txt-home #assinatura,
.txt-home #assinatura a,
.txt-home #assinatura div {
  color: rgba(255, 255, 255, .86) !important;
}

.txt-home footer a:hover {
  color: var(--txt-original-primary) !important;
}

.txt-home footer i,
.txt-home footer strong,
.txt-home #assinatura strong,
.txt-home #assinatura span {
  color: var(--txt-original-primary) !important;
}

.txt-home #assinatura {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.txt-home .footer-contact {
  color: rgba(255, 255, 255, .86);
}

.txt-home .logo-footer {
  filter: brightness(0) invert(1);
  opacity: .96;
}

/* =========================
   TXT LOG - Estrutura interna
========================= */
.txt-inner {
  background: #fff;
  color: #111;
}

.txt-inner .txt-header {
  position: absolute;
  background: transparent;
  box-shadow: none;
}

.txt-inner .txt-header-row {
  min-height: 155px;
  gap: 26px;
  position: relative;
}

.txt-inner .txt-logo img {
  width: 240px;
  max-height: 75px;
  filter: brightness(0) invert(1);
}

.txt-inner .txt-nav {
  min-width: 0;
  padding-right: 0;
}

.txt-inner .txt-nav .navbar-nav {
  gap: 4px;
  justify-content: flex-start;
}

.txt-inner .txt-nav .nav-item {
  position: relative;
  flex: 0 0 auto;
}

.txt-inner .txt-nav .nav-link {
  display: block;
  padding: 18px 8px !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: none;
  white-space: nowrap;
  text-shadow: none;
  transition: .3s ease-out;
	height: 40px;
}

.txt-inner .txt-nav .nav-link:hover,
.txt-inner .txt-nav .nav-link:focus {
  color: var(--txt-original-primary) !important;
}

.txt-inner .txt-nav .tracking-menu {
  background: var(--txt-original-primary);
  color: #fff !important;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding-inline: 18px !important;
}

.txt-inner .txt-nav .tracking-menu:hover,
.txt-inner .txt-nav .tracking-menu:focus {
  background: #000;
  color: #fff !important;
}

.txt-inner .txt-nav .dropdown-toggle::after {
  display: none;
}

.txt-inner .txt-nav .sub-menu-info {
  display: none;
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  width: 250px;
  max-height: 410px;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #fff;
  border: 0;
  border-radius: 0 !important;
  box-shadow: 0 13px 42px 11px rgba(0, 0, 0, .08);
}

.txt-inner .txt-nav .dropdown:hover .sub-menu-info,
.txt-inner .txt-nav .dropdown:focus-within .sub-menu-info {
  display: block;
}

.txt-inner .txt-nav .sub-menu-info li,
.txt-inner .txt-nav .sub-menu-info .dropdown-item {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
}

.txt-inner .txt-nav .sub-menu-info a {
  display: block;
  width: 100%;
  padding: 10px;
  color: var(--txt-original-grey);
  font-size: 12px;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  transition: .3s ease-out;
}

.txt-inner .txt-nav .sub-menu-info a:hover {
  color: var(--txt-original-primary);
  padding-left: 1rem;
}

.txt-inner .txt-header-actions {
  display: none;
}

.txt-inner .txt-social {
  width: 38px;
  height: 38px;
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
  border-radius: 0 !important;
}

.txt-inner .txt-social:hover {
  color: #fff;
  background: var(--txt-original-primary);
}

.txt-inner #caminho {
  min-height: 398px;
  padding: 220px 0 60px !important;
  background:
    linear-gradient(rgba(0, 0, 0, .34), rgba(0, 0, 0, .34)),
    url("../image/txtlog/bread.webp") center center / cover no-repeat;
  border: 0 !important;
}

.txt-inner #caminho a {
  color: #fff;
  font-weight: 700;
}

.txt-inner #caminho .breadcrumb-item.active {
  color: #fff !important;
}

.txt-inner #caminho .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
  font-weight: 800;
}

.txt-inner #caminho .breadcrumb {
  gap: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.txt-inner #caminho h1 {
  margin: 28px 0 0;
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: none;
}

.txt-inner #paginas-seo,
.txt-inner section.py-5 {
  background: #fff;
}

.txt-inner #paginas-seo .container,
.txt-inner section.py-5 .container {
  max-width: 1240px;
}

.txt-inner #paginas-seo .row {
  align-items: flex-start;
  --bs-gutter-x: 3rem;
}

.txt-inner #paginas-seo h1,
.txt-inner section.py-5 h1 {
  display: none;
}

.txt-inner #paginas-seo h1::after,
.txt-inner section.py-5 h1::after {
  display: none;
}

.txt-inner #paginas-seo h2,
.txt-inner section.py-5 h2 {
  margin: 32px 0 16px;
  color: #111;
  font-size: 1.55rem;
  line-height: 1.25;
  font-weight: 700;
}

.txt-inner #paginas-seo p,
.txt-inner section.py-5 p,
.txt-inner #paginas-seo li {
  color: #343a40;
  font-size: 16px;
  line-height: 1.75;
}

.txt-inner #paginas-seo p {
  margin-bottom: 20px;
  text-align: left;
}

.txt-inner #paginas-seo strong,
.txt-inner section.py-5 strong,
.txt-inner .linkagen a {
  color: var(--txt-original-primary);
}

.txt-inner #paginas-seo ul {
  padding-left: 0;
  list-style: none;
}

.txt-inner #paginas-seo ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.txt-inner #paginas-seo ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 9px;
  background: var(--txt-original-primary);
  border-radius: 999px;
}

.txt-inner #paginas-seo .col-lg-8 {
  position: relative;
}

.txt-inner #paginas-seo .col-lg-8::after {
  content: "";
  display: block;
  clear: both;
}

.txt-inner .txt-seo-media {
  float: left;
  width: min(46%, 470px);
  margin: 0 36px 26px 0;
}

.txt-inner .img-cta {
  float: none;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.14);
}

.txt-inner .img-seo,
.txt-inner section.py-5 img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px !important;
}

.txt-inner .img-cta .img-seo {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.txt-inner .cta-bottom {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  width: auto !important;
  max-width: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 12px 18px;
  background: var(--txt-original-primary);
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0;
  transform: none;
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
}

.txt-inner .cta-bottom:hover {
  background: #000;
}

.txt-inner .txt-seo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.txt-inner .txt-seo-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.1);
}

.txt-inner #menu-lateral.txt-side,
.txt-inner .txt-side {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
}

.txt-inner .txt-side-quote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 16px 18px;
  color: #fff !important;
  background: #111;
  border-radius: 8px !important;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
  transition: .2s ease;
}

.txt-inner .txt-side-quote span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.txt-inner .txt-side-quote:hover {
  color: #fff !important;
  background: var(--txt-original-primary);
}

.txt-inner .txt-side-whatsapp {
  background: var(--txt-original-primary);
}

.txt-inner .txt-side-whatsapp:hover {
  background: #111;
}

.txt-inner .txt-side-card,
.txt-inner .txt-side-contact {
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px !important;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.txt-inner .txt-side-head {
  padding: 22px 22px 16px;
  border-bottom: 3px solid var(--txt-original-primary);
}

.txt-inner .txt-side-head h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.txt-inner .txt-side-head h2 a {
  color: #111;
  text-decoration: none;
  transition: .2s ease;
}

.txt-inner .txt-side-head h2 a:hover {
  color: var(--txt-original-primary);
}

.txt-inner .txt-side-head span {
  display: block;
  margin-top: 6px;
  color: #6b7074;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.txt-inner .txt-side-nav nav {
  max-height: 430px;
  overflow: auto;
  padding: 12px 16px 16px;
}

.txt-inner .txt-side-nav nav::-webkit-scrollbar {
  width: 6px;
}

.txt-inner .txt-side-nav nav::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 999px;
}

.txt-inner .txt-side-nav nav::-webkit-scrollbar-thumb {
  background: var(--txt-original-primary);
  border-radius: 999px;
}

.txt-inner .txt-side-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.txt-inner .txt-side-nav li {
  margin: 0;
  padding: 0;
}

.txt-inner .txt-side-nav a {
  display: block;
  margin: 3px 0;
  padding: 9px 10px 9px 14px;
  color: #4a4f53;
  border-left: 2px solid rgba(0,0,0,.18);
  border-radius: 0 8px 8px 0 !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: .2s ease;
}

.txt-inner .txt-side-nav a:hover,
.txt-inner .txt-side-nav a.active-menu-aside {
  color: var(--txt-original-primary);
  border-left-color: var(--txt-original-primary);
  background: #f7f8f8;
}

.txt-inner .txt-side-nav a.active-menu-aside {
  font-weight: 800;
}

.txt-inner .txt-side-contact {
  padding: 22px;
  color: #fff;
  background: var(--txt-original-primary);
  border-color: var(--txt-original-primary);
}

.txt-inner .txt-side-contact h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.2;
}

.txt-inner .txt-side-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: #fff !important;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: .2s ease;
}

.txt-inner .txt-side-contact a:hover {
  color: #111 !important;
}

.txt-inner .txt-side-contact i {
  width: 18px;
  flex: 0 0 18px;
  text-align: center;
}

.txt-inner .compartilhe {
  margin-top: 34px;
  padding-left: 0;
  padding-right: 0;
}

.txt-inner .title-veja {
  margin: 34px 0 18px;
  color: #111;
  font-size: 1.45rem;
  font-weight: 700;
}

.txt-inner .title-veja span,
.txt-inner .destaqueThumbs {
  color: var(--txt-original-primary);
}

.txt-inner .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.txt-inner .social-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--txt-original-primary);
  border-radius: 999px;
  text-decoration: none;
  transition: .2s ease;
}

.txt-inner .social-btn:hover {
  background: #000;
  color: #fff;
}

.txt-inner .card-artigo {
  height: 100%;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 8px !important;
  background: #fff !important;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.txt-inner #paginas-seo .card.card-artigo {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.txt-inner .card-artigo > a {
  display: block;
  overflow: hidden;
  background: #f7f8f8;
}

.txt-inner #paginas-seo .card-artigo img,
.txt-inner .card-artigo img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform .35s ease;
}

.txt-inner .card-artigo .card-body {
  min-height: 104px;
  display: flex;
  align-items: center;
  padding: 20px !important;
  background: #fff !important;
  border-top: 4px solid var(--txt-original-primary);
}

.txt-inner .card-artigo .card-title {
  margin: 0;
  width: 100%;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 800;
}

.txt-inner .card-artigo .card-title a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #111 !important;
  text-decoration: none;
}

.txt-inner .card-artigo .card-title a::after {
  content: "\f061";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--txt-original-primary);
  border-radius: 999px;
  font-family: "Font Awesome 6 Free";
  font-size: 13px;
  font-weight: 900;
  transition: .25s ease;
}

.txt-inner .card-artigo:hover {
  border-color: rgba(0, 157, 0, .34);
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,.12);
}

.txt-inner #paginas-seo .card.card-artigo:hover {
  transform: translateY(-6px);
}

.txt-inner .card-artigo:hover img {
  transform: scale(1.05);
}

.txt-inner .card-artigo:hover .card-title a {
  color: var(--txt-original-primary) !important;
}

.txt-inner .card-artigo:hover .card-title a::after {
  background: #111;
}

.txt-inner .txt-services {
  background: #f7f8f8;
}

.txt-inner .txt-services .txt-service-grid {
  align-items: stretch;
}

.txt-inner .txt-services .txt-service-card {
  z-index: 1;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 300px;
  height: 100%;
  padding: 2.5rem;
  overflow: hidden;
  background: #fff;
  color: var(--txt-original-dark);
  text-align: left;
  border-radius: 4px !important;
  box-shadow: none;
  transition: .3s ease-out;
}

.txt-inner .txt-services .txt-service-card::after {
  z-index: -1;
  background-image: linear-gradient(rgba(0, 0, 0, .68), rgba(0, 0, 0, .68)), var(--card-bg);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: .3s ease-out;
}

.txt-inner .txt-services .txt-service-card:is(:hover, :focus-within),
.txt-inner .txt-services .txt-service-card:is(:hover, :focus-within) h3,
.txt-inner .txt-services .txt-service-card:is(:hover, :focus-within) p {
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .42);
}

.txt-inner .txt-services .txt-service-card:is(:hover, :focus-within)::after {
  opacity: 1;
}

.txt-inner .txt-services .txt-service-card span {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  margin: 0 0 1rem;
  padding: 20px;
  color: var(--txt-original-dark);
  border: 1px solid currentColor;
  border-radius: 99px !important;
  background: #fff;
  transition: .3s ease-out;
}

.txt-inner .txt-services .txt-service-card:is(:hover, :focus-within) span {
  color: #fff;
  border-color: var(--txt-original-primary);
  background: var(--txt-original-primary);
}

.txt-inner .txt-services .txt-service-card span img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.txt-inner .txt-services .txt-service-card h3 {
  min-height: calc((1.25rem * 2) * 1.3);
  display: flex;
  align-items: center;
  margin: 0;
  color: inherit;
  font-size: 1.25rem;
  line-height: 1.3;
}

.txt-inner .txt-services .txt-service-card p {
  margin: 1rem 0 0;
  color: #6f7478;
  font-size: 15px;
  line-height: 1.7;
}

.txt-page-section .txt-eyebrow,
.txt-inner .txt-section-title span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--txt-original-primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.txt-page-section .txt-section-title p {
  max-width: 780px;
  margin: 14px auto 0;
  color: #5f6468;
  font-size: 16px;
  line-height: 1.75;
}

.txt-about-page h2,
.txt-contact-page h2,
.txt-area-page h2,
.txt-differentials-page h2 {
  color: #111;
}

.txt-values-grid,
.txt-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.txt-value-card,
.txt-diff-card,
.txt-area-intro,
.txt-area-panel,
.txt-contact-form-card,
.txt-contact-info-card,
.txt-tracking-card {
  border-radius: 8px !important;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.txt-value-card {
  padding: 32px;
  border-top: 4px solid var(--txt-original-primary);
}

.txt-value-card img {
  width: 58px !important;
  height: 58px !important;
  object-fit: contain;
  margin-bottom: 18px;
}

.txt-value-card h2,
.txt-diff-card h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.txt-value-card p,
.txt-diff-card p {
  margin: 0;
}

.txt-differentials-page {
  background: #f7f8f8;
}

.txt-diff-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.txt-diff-card {
  position: relative;
  overflow: hidden;
  padding: 34px 28px;
}

.txt-diff-card > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: var(--txt-original-primary);
  border-radius: 999px;
  font-size: 24px;
  font-weight: 800;
}

.txt-diff-card ul {
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
}

.txt-diff-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 9px;
  color: #343a40;
  line-height: 1.55;
}

.txt-diff-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  background: var(--txt-original-primary);
  border-radius: 999px;
}

.txt-area-page {
  background: #f7f8f8;
}

.txt-area-page .container {
  max-width: 1240px;
}

.txt-area-page .row {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: 24px 28px;
  margin-left: 0;
  margin-right: 0;
}

.txt-area-page .row > [class*="col-"] {
  width: auto;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.txt-area-intro,
.txt-area-panel,
.txt-contact-form-card,
.txt-contact-info-card {
  height: 100%;
  padding: 36px;
}

.txt-area-intro {
  height: auto;
  align-self: start;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  overflow: hidden;
  position: relative;
  color: #343a40;
  background: #fff;
  border-left: 6px solid var(--txt-original-primary);
}

.txt-area-intro::after {
  content: "TXT";
  position: absolute;
  right: 28px;
  bottom: -20px;
  color: rgba(0, 157, 0, .08);
  font-size: clamp(5rem, 13vw, 9rem);
  line-height: .8;
  font-weight: 800;
}

.txt-area-intro .txt-eyebrow,
.txt-area-intro h2,
.txt-area-intro p,
.txt-area-intro .txt-area-actions {
  position: relative;
  z-index: 1;
}

.txt-area-intro h2 {
  max-width: 720px;
  margin: 0 0 14px;
  color: #111;
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  line-height: 1.1;
  font-weight: 800;
}

.txt-area-intro p {
  max-width: 820px;
  margin: 0;
  color: #5f6468;
}

.txt-area-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 0;
}

.txt-area-actions .txt-btn {
  min-width: 190px;
}

.txt-area-actions .txt-btn-border {
  color: #111;
  border-color: rgba(0, 0, 0, .18);
}

.txt-area-actions .txt-btn-border:hover {
  color: #fff;
  border-color: #111;
  background: #111;
}

.txt-area-panel {
  height: auto;
  padding: 0;
  overflow: hidden;
}

.txt-area-panel label {
  margin: 0;
  padding: 28px 32px 10px;
  background: #fff;
}

.txt-area-panel label {
  display: block;
  color: #111;
  font-weight: 800;
}

.txt-area-panel input,
.txt-contact-form-card input,
.txt-contact-form-card textarea,
.txt-contact-form-card select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: #111;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px !important;
  background: #f7f8f8;
  outline: 0;
}

.txt-area-panel > input {
  width: calc(100% - 64px);
  margin: 0 32px 24px;
  min-height: 56px;
  padding-left: 44px;
  background:
    linear-gradient(90deg, transparent 0 38px, #f7f8f8 38px),
    #f7f8f8;
  font-size: 16px;
}

.txt-contact-form-card textarea {
  min-height: 130px;
}

.txt-area-panel input:focus,
.txt-contact-form-card input:focus,
.txt-contact-form-card textarea:focus {
  border-color: var(--txt-original-primary);
  box-shadow: 0 0 0 3px rgba(0, 157, 0, .12);
}

.txt-area-table-wrap {
  max-height: 690px;
  overflow: auto;
  margin-top: 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, .08);
  border-radius: 0;
  background: #fff;
}

.txt-area-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.txt-area-table th:nth-child(1),
.txt-area-table td:nth-child(1) {
  width: 88px;
}

.txt-area-table th:nth-child(3),
.txt-area-table td:nth-child(3) {
  width: 190px;
}

.txt-area-table th,
.txt-area-table td {
  padding: 12px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  color: #343a40;
  font-size: 14px;
  line-height: 1.35;
  vertical-align: middle;
}

.txt-area-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: #fff;
  background: var(--txt-original-primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.txt-area-table tbody tr:nth-child(even) td {
  background: #fafafa;
}

.txt-area-table tr:hover td {
  background: rgba(0, 157, 0, .07);
}

.txt-area-table td:first-child {
  color: var(--txt-original-primary);
  font-weight: 800;
}

.txt-area-table td:nth-child(2) {
  color: #111;
  font-weight: 700;
}

.txt-area-table td:nth-child(3):empty::before {
  content: "Sob consulta";
  color: #8a8f93;
  font-style: italic;
}

.txt-area-note {
  margin: 0;
  padding: 18px 32px 28px;
  color: #6f7478;
  font-size: 14px;
  background: #fff;
}

.txt-area-no-results {
  display: none;
  margin: 18px 32px 0;
  padding: 14px 16px;
  color: #111;
  background: rgba(0, 157, 0, .08);
  border-radius: 8px;
  font-weight: 700;
}

.txt-area-summary {
  display: grid;
  gap: 10px;
  margin: 6px 0 18px;
}

.txt-area-summary span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  color: #343a40;
  background: #f7f8f8;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.txt-area-summary strong {
  color: var(--txt-original-primary) !important;
  font-size: 22px;
  line-height: 1;
}

.txt-area-modes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 32px 28px;
}

.txt-area-mode-card,
.txt-area-region-card {
  border-radius: 8px !important;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.txt-area-mode-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 22px;
}

.txt-area-mode-featured {
  background: #111;
  border-color: #111;
}

.txt-area-mode-tag {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  color: #fff;
  background: var(--txt-original-primary);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.txt-area-mode-card h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 800;
}

.txt-area-mode-featured h3,
.txt-area-mode-featured p,
.txt-area-mode-featured strong {
  color: #fff !important;
}

.txt-area-mode-card p,
.txt-area-mode-card small {
  margin: 0;
  color: #62686d;
  font-size: 14px;
  line-height: 1.55;
}

.txt-area-mode-card strong {
  margin-top: auto;
  padding-top: 16px;
  color: var(--txt-original-primary) !important;
  font-size: 14px;
}

.txt-area-region-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 32px 28px;
}

.txt-area-region-card {
  overflow: hidden;
}

.txt-area-region-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: #f7f8f8;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.txt-area-region-head span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: #fff;
  background: var(--txt-original-primary);
  border-radius: 999px;
  font-weight: 800;
}

.txt-area-region-head h3 {
  margin: 0;
  color: #111;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 800;
}

.txt-area-region-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px 20px 20px;
  list-style: none;
}

.txt-area-region-card li {
  position: relative;
  padding-left: 18px;
  color: #4d5358;
  font-size: 14px;
  line-height: 1.45;
}

.txt-area-region-card li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--txt-original-primary);
  border-radius: 999px;
}

.txt-contact-page {
  background: #f7f8f8;
}

.txt-contact-form-card .book-taxi-form {
  margin-top: 24px;
}

.txt-contact-form-card .book-taxi-form span {
  display: block;
  margin-bottom: 16px;
  color: #111;
  font-weight: 700;
}

.txt-contact-form-card .book-taxi-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: #fff;
  background: var(--txt-original-primary);
  border: 0;
  border-radius: 10px !important;
  font-weight: 800;
  transition: .2s ease;
}

.txt-contact-form-card .book-taxi-form button:hover {
  background: #111;
}

.txt-contact-side {
  display: grid;
  gap: 18px;
  height: 100%;
}

.txt-tracking-card {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 150px;
  padding: 28px;
  color: #fff;
  text-decoration: none;
  background:
    linear-gradient(rgba(0, 0, 0, .64), rgba(0, 0, 0, .64)),
    url("../image/servicos.jpg") center / cover no-repeat;
}

.txt-tracking-card i {
  color: var(--txt-original-primary);
  font-size: 32px;
}

.txt-tracking-card span {
  font-size: 20px;
  font-weight: 800;
}

.txt-tracking-card strong {
  color: #fff;
}

.txt-contact-list p {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 12px;
  margin: 0 0 18px;
  color: #343a40;
  line-height: 1.6;
}

.txt-contact-list i {
  color: var(--txt-original-primary);
  font-size: 20px;
  line-height: 1.4;
}

.txt-contact-list a {
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.txt-contact-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.txt-contact-social span {
  flex: 1 1 100%;
  color: #111;
  font-weight: 800;
}

.txt-contact-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--txt-original-primary);
  border-radius: 999px;
  text-decoration: none;
}

.txt-contact-social a:hover {
  background: #111;
}

.txt-map-page {
  background: #f7f8f8;
}

.txt-map-page .container {
  max-width: 1240px;
}

.txt-map-head,
.txt-map-search,
.txt-map-section,
.txt-map-group {
  border-radius: 8px !important;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.txt-map-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
  padding: 34px 36px;
  border-left: 6px solid var(--txt-original-primary);
}

.txt-map-head h2 {
  margin: 0 0 12px;
  color: #111;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.1;
  font-weight: 800;
}

.txt-map-head p {
  max-width: 850px;
  margin: 0;
  color: #5f6468;
}

.txt-map-head strong {
  min-width: 112px;
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: #fff !important;
  background: var(--txt-original-primary);
  border-radius: 999px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
  white-space: normal;
}

.txt-map-search {
  margin-bottom: 24px;
  padding: 28px 32px;
}

.txt-map-search label {
  display: block;
  margin-bottom: 10px;
  color: #111;
  font-weight: 800;
}

.txt-map-search input {
  width: 100%;
  min-height: 56px;
  padding: 12px 16px;
  color: #111;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px !important;
  background: #f7f8f8;
  font-size: 16px;
  outline: 0;
}

.txt-map-search input:focus {
  border-color: var(--txt-original-primary);
  box-shadow: 0 0 0 3px rgba(0, 157, 0, .12);
}

.txt-map-empty {
  display: none;
  margin: 16px 0 0;
  padding: 14px 16px;
  color: #111;
  background: rgba(0, 157, 0, .08);
  border-radius: 8px;
  font-weight: 700;
}

.txt-map-section {
  margin-bottom: 24px;
  padding: 30px 32px 34px;
}

.txt-map-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.txt-map-title span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--txt-original-primary);
  border-radius: 999px;
  font-weight: 800;
}

.txt-map-title h2 {
  margin: 0;
  color: #111;
  font-size: 1.35rem;
  font-weight: 800;
}

.txt-map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.txt-map-grid-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.txt-map-card {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 20px;
  color: #111;
  background: #f7f8f8;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 8px !important;
  text-decoration: none;
  transition: .2s ease;
}

.txt-map-card strong {
  color: #111;
  font-size: 1rem;
  line-height: 1.25;
}

.txt-map-card small {
  color: #5f6468;
  line-height: 1.55;
}

.txt-map-card:hover,
.txt-map-card:focus {
  color: #fff;
  background: var(--txt-original-primary);
  border-color: var(--txt-original-primary);
  transform: translateY(-2px);
}

.txt-map-card:hover strong,
.txt-map-card:hover small,
.txt-map-card:focus strong,
.txt-map-card:focus small {
  color: #fff;
}

.txt-map-accordion {
  display: grid;
  gap: 14px;
}

.txt-map-group {
  overflow: hidden;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
}

.txt-map-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: #111;
  background: #f7f8f8;
  cursor: pointer;
  list-style: none;
}

.txt-map-group summary::-webkit-details-marker {
  display: none;
}

.txt-map-group summary span {
  font-weight: 800;
}

.txt-map-group summary small {
  color: var(--txt-original-primary);
  font-weight: 800;
}

.txt-map-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 10px 20px 22px;
  background: #fff;
}

.txt-map-links a {
  position: relative;
  padding: 10px 10px 10px 18px;
  color: #343a40;
  text-decoration: none;
  line-height: 1.35;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.txt-map-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 7px;
  height: 7px;
  background: var(--txt-original-primary);
  border-radius: 999px;
}

.txt-map-links a:hover,
.txt-map-links a:focus {
  color: var(--txt-original-primary);
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: #f4f4f4;
}

body::-webkit-scrollbar-thumb,
.sub-menu-info::-webkit-scrollbar-thumb,
.txt-area-table-wrap::-webkit-scrollbar-thumb {
  background: var(--txt-original-primary) !important;
  border-radius: 999px;
}

.sub-menu-info::-webkit-scrollbar,
.txt-area-table-wrap::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: #f4f4f4;
}

.txt-btn-primary,
.btn-primary,
.txt-inner .btn-primary {
  color: #fff !important;
  background: var(--txt-original-primary) !important;
  border-color: var(--txt-original-primary) !important;
}

.txt-btn-primary:hover,
.txt-btn-primary:focus,
.btn-primary:hover,
.btn-primary:focus,
.txt-inner .btn-primary:hover,
.txt-inner .btn-primary:focus {
  color: #fff !important;
  background: #111 !important;
  border-color: #111 !important;
}

.back-to-top {
  color: #fff !important;
  background: var(--txt-original-primary) !important;
  box-shadow: 0 8px 20px rgba(0, 157, 0, .24) !important;
}

.back-to-top:hover {
  background: #111 !important;
  box-shadow: 0 12px 25px rgba(0, 0, 0, .28) !important;
}

.txt-inner footer,
.txt-inner footer .footer-top,
.txt-inner #assinatura {
  background: #050505 !important;
}

.txt-inner footer .footer-top {
  padding: 58px 0 42px;
}

.txt-inner footer h2,
.txt-inner footer h3 {
  color: #fff !important;
}

.txt-inner footer p,
.txt-inner footer li,
.txt-inner footer a,
.txt-inner #assinatura,
.txt-inner #assinatura a,
.txt-inner #assinatura div {
  color: rgba(255, 255, 255, .86) !important;
}

.txt-inner footer a:hover {
  color: var(--txt-original-primary) !important;
}

.txt-inner footer i,
.txt-inner footer strong,
.txt-inner #assinatura strong,
.txt-inner #assinatura span {
  color: var(--txt-original-primary) !important;
}

.txt-inner #assinatura {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

@media (max-width: 1320px) {
  .txt-inner .txt-nav .nav-link {
    padding-inline: 7px !important;
    font-size: 12px;
  }
}

@media (max-width: 1199px) {
  .txt-diff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .txt-inner .txt-header-row {
    min-height: 92px;
  }

  .txt-inner .txt-menu-toggle {
    border-color: rgba(255, 255, 255, .45);
  }

  .txt-inner .txt-menu-toggle .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }

  .txt-inner .txt-logo img {
    width: 170px;
  }

  .txt-inner .txt-header-actions {
    display: none;
  }

  .txt-inner .txt-nav {
    padding-right: 0;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .16);
  }

  .txt-inner .txt-nav .navbar-nav {
    gap: 0;
  }

  .txt-inner .txt-nav .nav-link {
    border-radius: 0 !important;
    color: #111 !important;
  }

  .txt-inner .txt-nav .tracking-menu {
    color: #fff !important;
  }

  .txt-inner .txt-nav .sub-menu-info {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  .txt-inner #caminho {
    min-height: 300px;
    padding: 136px 0 44px !important;
  }

  .txt-inner #caminho .breadcrumb {
    font-size: 15px;
  }

  .txt-inner #caminho h1 {
    margin-top: 22px;
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .txt-inner #paginas-seo .row {
    --bs-gutter-x: 1.5rem;
  }

  .txt-inner .txt-seo-media {
    float: none;
    width: 100%;
    max-width: 620px;
    margin: 0 0 28px;
  }

  .txt-inner #menu-lateral {
    position: static;
  }

  .txt-inner .txt-side-nav nav {
    max-height: 330px;
  }

  .txt-values-grid,
  .txt-diff-grid,
  .txt-inner .txt-service-grid {
    grid-template-columns: 1fr;
  }

  .txt-area-intro,
  .txt-area-panel,
  .txt-contact-form-card,
  .txt-contact-info-card {
    padding: 26px;
  }

  .txt-area-intro {
    grid-template-columns: 1fr;
  }

  .txt-area-actions {
    justify-content: flex-start;
    margin-top: 4px;
  }

  .txt-area-actions .txt-btn {
    width: 100%;
  }

  .txt-area-panel {
    padding: 0;
  }

  .txt-area-panel label {
    padding: 24px 22px 10px;
  }

  .txt-area-panel > input {
    width: calc(100% - 44px);
    margin: 0 22px 22px;
  }

  .txt-area-table-wrap {
    max-height: 620px;
  }

  .txt-area-table {
    min-width: 620px;
  }

  .txt-area-table th,
  .txt-area-table td {
    padding: 12px 18px;
  }

  .txt-area-note {
    padding: 16px 22px 24px;
  }

  .txt-map-head {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .txt-map-head strong {
    width: fit-content;
    min-width: 92px;
    min-height: 92px;
  }

  .txt-map-search,
  .txt-map-section {
    padding: 24px 22px;
  }

  .txt-map-grid,
  .txt-map-grid-services,
  .txt-map-links {
    grid-template-columns: 1fr;
  }

  .txt-map-group summary {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .txt-inner #paginas-seo p,
  .txt-inner section.py-5 p,
  .txt-inner #paginas-seo li {
    font-size: 15px;
    line-height: 1.65;
  }

  .txt-inner .txt-seo-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .txt-inner .cta-bottom {
    left: 12px;
    right: 12px;
    bottom: 12px;
    height: 46px;
  }
}

/* =========================
   TXT LOG - Revisão Mobile
========================= */
@media (max-width: 991px) {
  .txt-header,
  .txt-inner .txt-header,
  .txt-home .txt-header {
    z-index: 1000;
  }

  .txt-menu-toggle,
  .txt-inner .txt-menu-toggle,
  .txt-home .txt-menu-toggle {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    background: var(--txt-original-primary);
    border: 1px solid var(--txt-original-primary);
    border-radius: 8px !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  }

  .txt-menu-toggle:focus,
  .txt-inner .txt-menu-toggle:focus,
  .txt-home .txt-menu-toggle:focus {
    box-shadow: 0 0 0 3px rgba(0, 157, 0, .22);
  }

  .txt-menu-toggle i,
  .txt-inner .txt-menu-toggle i,
  .txt-home .txt-menu-toggle i {
    color: #fff;
    font-size: 21px;
    line-height: 1;
  }

  .txt-menu-toggle .txt-menu-icon-close {
    display: none;
  }

  .txt-menu-toggle[aria-expanded="true"] .txt-menu-icon-open {
    display: none;
  }

  .txt-menu-toggle[aria-expanded="true"] .txt-menu-icon-close {
    display: inline-block;
  }

  .txt-nav,
  .txt-inner .txt-nav,
  .txt-home .txt-nav {
    left: 0;
    right: 0;
    padding: 0 !important;
    z-index: 1001;
    max-height: calc(100vh - 118px);
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 8px !important;
  }

  .txt-nav .navbar-nav,
  .txt-inner .txt-nav .navbar-nav,
  .txt-home .txt-nav .navbar-nav {
    width: 100% !important;
    display: block !important;
    padding: 8px 0;
  }

  .txt-nav .nav-item,
  .txt-inner .txt-nav .nav-item,
  .txt-home .txt-nav .nav-item {
    width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
  }

  .txt-nav .nav-link,
  .txt-inner .txt-nav .nav-link,
  .txt-home .txt-nav .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 11px 18px !important;
    white-space: normal;
  }

  .txt-info-menu .dropdown-toggle {
    justify-content: flex-start;
    gap: 10px;
  }

  .txt-info-menu,
  .txt-info-menu .dropdown-toggle,
  .txt-info-menu .sub-menu-info {
    width: 100% !important;
  }

  .txt-info-menu {
    flex: 1 1 auto !important;
  }

  .txt-info-menu .dropdown-toggle i {
    width: 22px;
    font-size: 18px;
    text-align: center;
  }

  .txt-info-menu-label {
    display: inline;
  }

  .txt-info-menu-desktop {
    display: none !important;
  }

  .txt-info-menu-mobile {
    display: block !important;
    width: 100% !important;
  }

  .txt-info-mobile-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    justify-content: flex-start;
    gap: 10px;
  }

  .txt-info-mobile-toggle i {
    width: 22px;
    font-size: 18px;
    text-align: center;
  }

  .txt-info-mobile-toggle::after {
    content: "\f107";
    margin-left: auto;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform .2s ease;
  }

  .txt-info-mobile-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }

  .txt-info-mobile-panel {
    width: 100%;
  }

  .txt-inner .txt-nav .tracking-menu,
  .txt-home .txt-nav .tracking-menu {
    min-height: 46px;
    margin: 4px 10px;
    justify-content: center;
    border-radius: 8px !important;
  }

  .txt-inner .txt-nav .sub-menu-info,
  .txt-home .txt-nav .sub-menu-info,
  .txt-nav .sub-menu-info {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    max-height: 260px;
    overflow-y: auto;
    padding: 6px 10px 10px;
  }

  .txt-info-menu-mobile .sub-menu-info {
    display: block !important;
    width: 100% !important;
    min-width: 0;
    margin: 0;
    background: #fff;
    border: 0;
    box-shadow: none;
  }

  .txt-inner .txt-nav .dropdown-menu.show,
  .txt-home .txt-nav .dropdown-menu.show,
  .txt-nav .dropdown-menu.show,
  .txt-inner .txt-nav .txt-info-menu.is-mobile-info-open .sub-menu-info,
  .txt-home .txt-nav .txt-info-menu.is-mobile-info-open .sub-menu-info,
  .txt-nav .txt-info-menu.is-mobile-info-open .sub-menu-info {
    display: block;
  }

  .txt-inner .txt-nav .dropdown:hover .sub-menu-info:not(.show),
  .txt-inner .txt-nav .dropdown:focus-within .sub-menu-info:not(.show),
  .txt-home .txt-nav .dropdown:hover .sub-menu-info:not(.show),
  .txt-home .txt-nav .dropdown:focus-within .sub-menu-info:not(.show),
  .txt-nav .dropdown:hover .sub-menu-info:not(.show),
  .txt-nav .dropdown:focus-within .sub-menu-info:not(.show) {
    display: none !important;
  }

  .txt-inner #caminho {
    min-height: 286px;
    padding: 130px 0 40px !important;
  }

  .txt-inner #caminho .breadcrumb {
    row-gap: 6px;
    font-size: 14px;
    line-height: 1.35;
  }

  .txt-inner #caminho h1 {
    margin-top: 18px;
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.08;
  }
}

@media (max-width: 767px) {
  .txt-home .txt-hero,
  .txt-hero {
    min-height: 560px;
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .txt-home .txt-hero h1,
  .txt-hero h1 {
    font-size: clamp(2rem, 10vw, 2.4rem);
    line-height: 1.12;
  }

  .txt-home .txt-hero p,
  .txt-hero p {
    font-size: 16px;
    line-height: 1.55;
  }

  .txt-hero-actions {
    gap: 12px;
  }

  .txt-hero-actions .txt-btn {
    width: 100%;
    max-width: 320px;
  }

  .txt-home .txt-stats-box {
    gap: 0;
  }
}

@media (max-width: 575px) {
  .txt-inner #paginas-seo {
    padding: 0 !important;
  }

  .txt-inner .txt-page-section .row,
  .txt-page-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .txt-inner .txt-page-section .row > [class*="col-"],
  .txt-page-section .row > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .txt-inner #paginas-seo .container,
  .txt-inner section.py-5 .container,
  .txt-area-page .container,
  .txt-contact-page .container,
  .txt-map-page .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .txt-inner #paginas-seo .row {
    --bs-gutter-x: 0;
  }

  .txt-inner #paginas-seo .container.py-5,
  .txt-inner section.py-5 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .txt-inner .txt-seo-media,
  .txt-inner #menu-lateral,
  .txt-inner .card-artigo,
  .txt-inner .txt-contact-form-card,
  .txt-inner .txt-contact-info-card {
    width: 100%;
    max-width: none;
  }

  .txt-inner .txt-seo-media {
    margin-bottom: 24px;
  }

  .txt-inner .txt-seo-gallery {
    gap: 8px;
  }

  .txt-inner .title-veja {
    margin-top: 28px;
    font-size: 1.32rem;
    line-height: 1.25;
  }

  .txt-inner .card-artigo .card-body {
    min-height: 88px;
    padding: 18px !important;
  }

  .txt-inner .card-artigo .card-title {
    font-size: 1rem;
  }

  .txt-home .txt-service-card {
    min-height: 330px !important;
    padding: 30px 24px !important;
  }

  .txt-inner .txt-services .txt-service-card {
    min-height: 0 !important;
    padding: 28px 24px !important;
  }

  .txt-inner .txt-services .txt-service-card span {
    width: 72px !important;
    height: 72px !important;
    padding: 16px !important;
  }

  .txt-inner .txt-services .txt-service-card h3 {
    min-height: 0 !important;
    font-size: 1.15rem !important;
  }

  .txt-inner .txt-side-quote {
    min-height: 54px;
    padding: 14px 16px;
    font-size: 15px;
  }

  .txt-inner .txt-side-head,
  .txt-inner .txt-side-contact {
    padding: 20px;
  }

  .txt-inner .txt-side-contact a {
    overflow-wrap: anywhere;
  }

  .txt-area-intro,
  .txt-area-panel,
  .txt-contact-form-card,
  .txt-contact-info-card,
  .txt-map-head,
  .txt-map-search,
  .txt-map-section {
    padding: 22px !important;
  }

  .txt-area-intro h2,
  .txt-map-head h2 {
    font-size: 1.72rem;
  }

  .txt-area-panel {
    padding: 0 !important;
  }

  .txt-area-panel label {
    padding: 22px 20px 10px;
  }

  .txt-area-panel > input {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
  }

  .txt-area-table-wrap {
    max-height: 620px;
    margin: 0 14px 0;
    overflow-y: auto;
    overflow-x: hidden;
    border-top: 0;
  }

  .txt-area-table,
  .txt-area-table thead,
  .txt-area-table tbody,
  .txt-area-table tr,
  .txt-area-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .txt-area-table thead {
    display: none;
  }

  .txt-area-table tr {
    margin-bottom: 12px;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 8px !important;
    background: #fff;
  }

  .txt-area-table th,
  .txt-area-table td {
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    font-size: 14px;
  }

  .txt-area-table td:last-child {
    border-bottom: 0;
  }

  .txt-area-table td::before {
    display: block;
    margin-bottom: 2px;
    color: var(--txt-original-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .txt-area-table td:nth-child(1)::before {
    content: "UF";
  }

  .txt-area-table td:nth-child(2)::before {
    content: "Cidade";
  }

  .txt-area-table td:nth-child(3)::before {
    content: "Base";
  }

  .txt-area-note {
    padding: 16px 20px 22px;
  }

  .txt-home .txt-cta-footer,
  .txt-cta-footer {
    padding: 34px 0 !important;
    text-align: center;
  }

  .txt-cta-footer h2 {
    font-size: 22px;
  }

  .txt-cta-footer strong {
    font-size: 36px;
  }

  .txt-cta-footer p {
    font-size: 16px;
    line-height: 1.55;
  }

  .txt-cta-footer .txt-cta-white {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .txt-inner footer .footer-top {
    padding: 40px 0 28px;
  }

  footer .footer-top {
    padding-left: 0;
    padding-right: 0;
  }

  footer .logo-footer {
    max-width: 170px;
  }

  footer h2 {
    margin-bottom: 14px;
    font-size: 1.35rem;
  }

  footer p,
  footer li,
  footer a {
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 1.55;
  }

  .assinatura-footer {
    margin-left: 0;
    margin-right: 0;
    row-gap: 8px;
  }

  #assinatura img {
    max-width: 118px;
    height: auto;
  }

  #whatsapp-button {
    right: 16px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  #whatsapp-button img {
    width: 54px;
    height: 54px;
  }

  .back-to-top {
    right: 18px;
    bottom: 84px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 991px) {
  .txt-area-page .row {
    display: block;
  }

  .txt-area-page .row > [class*="col-"] + [class*="col-"] {
    margin-top: 24px;
  }

  .txt-area-modes {
    grid-template-columns: 1fr;
  }

  .txt-area-region-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .txt-area-summary {
    margin-bottom: 14px;
  }

  .txt-area-summary span {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .txt-area-modes,
  .txt-area-region-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .txt-area-mode-card {
    min-height: 0;
    padding: 20px;
  }

  .txt-area-region-head {
    padding: 16px 18px;
  }

  .txt-area-region-card ul {
    padding: 16px 18px 18px;
  }
}
