@charset "UTF-8";
/* ==========================================================================
   TAGAT - MAIN SCSS
   Arquitetura BEM | ACF-first | Home institucional
   ========================================================================== */
@font-face {
  font-family: "Resonate";
  src: local("Resonate Light"), local("Resonate-Light"), url("../assets/fonts/Resonate-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Resonate";
  src: local("Resonate Medium"), local("Resonate-Medium"), url("../assets/fonts/Resonate-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Resonate";
  src: local("Resonate Bold"), local("Resonate-Bold"), url("../assets/fonts/Resonate-Bold.woff2") format("woff2");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(18, 32, 31, 0.08);
  box-shadow: 0 1px 0 rgba(18, 32, 31, 0.03);
}
.site-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 74px;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: #00524e;
  text-decoration: none;
}
.site-header__logo img {
  width: auto;
  max-width: 128px;
  height: 34px;
  object-fit: contain;
}
.site-header__logo-mark {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 22px;
}
.site-header__logo-mark::before, .site-header__logo-mark::after {
  content: "";
  position: absolute;
  background: #00524e;
}
.site-header__logo-mark::before {
  top: 2px;
  left: 0;
  width: 19px;
  height: 7px;
}
.site-header__logo-mark::after {
  top: 9px;
  left: 7px;
  width: 7px;
  height: 12px;
}
.site-header__logo-text {
  color: #00524e;
  font-family: "Resonate", "Inter", Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1;
}
.site-header__capsule {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
}
.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.05vw, 30px);
  width: 100%;
  min-width: 0;
}
.site-header__menu-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(15px, 1.45vw, 23px);
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header__menu-list > li {
  position: relative;
}
.site-header__menu-list > .site-header__menu-item--has-submenu {
  position: static;
}
.site-header__menu-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: #12201f;
  font-family: "Resonate", "Inter", Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.site-header__menu-list a:hover {
  color: #00524e;
}
.site-header__menu-list > .site-header__menu-item--has-submenu > a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -16px;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(0, 82, 78, 0.14);
  border-left: 1px solid rgba(0, 82, 78, 0.14);
  background: #f8f7ef;
  opacity: 0;
  visibility: hidden;
  display: none;
  transform: translateX(50%) rotate(45deg) translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.site-header__submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 1010;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: min(920px, 100vw - 56px);
  margin: 0;
  padding: 25px 28px 28px;
  border: 1px solid rgba(0, 82, 78, 0.14);
  border-top: 3px solid rgba(255, 159, 10, 0.82);
  border-radius: 8px;
  background: #f8f7ef;
  box-shadow: 0 28px 70px rgba(18, 32, 31, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-50%, 10px, 0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.site-header__submenu::before {
  content: "";
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  height: 14px;
}
.site-header__submenu-title {
  color: #b9b29a;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}
.site-header__submenu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header__submenu-list li {
  min-height: 86px;
  border-bottom: 1px solid rgba(18, 32, 31, 0.16);
}
.site-header__submenu-list li:nth-child(odd) {
  padding-right: 26px;
}
.site-header__submenu-list li:nth-child(even) {
  padding-left: 26px;
  border-left: 1px solid rgba(18, 32, 31, 0.16);
}
.site-header__submenu-list li:nth-last-child(-n+2) {
  border-bottom: 0;
}
.site-header__submenu-list a {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 86px;
  padding: 10px 0;
  border-radius: 0;
  color: #12201f;
  font-size: 0.72rem;
  text-transform: none;
  white-space: normal;
}
.site-header__submenu-list a:hover, .site-header__submenu-list a:focus {
  outline: none;
  color: #00524e;
}
.site-header__submenu-list a:hover .site-header__submenu-icon, .site-header__submenu-list a:focus .site-header__submenu-icon {
  transform: translateX(3px);
}
.site-header__submenu-list a:hover strong, .site-header__submenu-list a:focus strong {
  color: #ff9f0a;
}
.site-header__submenu-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #ff9f0a;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease;
}
.site-header__submenu-icon svg,
.site-header__submenu-icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.site-header__submenu-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}
.site-header__submenu-icon img {
  object-fit: contain;
}
.site-header__submenu-icon:empty, .site-header__submenu-icon--folder {
  width: 31px;
  height: 24px;
  border: 3px solid #ffbd70;
  border-radius: 3px;
}
.site-header__submenu-icon:empty::before, .site-header__submenu-icon--folder::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -3px;
  width: 17px;
  height: 9px;
  border: 3px solid #ffbd70;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}
.site-header__submenu-icon:empty::after, .site-header__submenu-icon--folder::after {
  content: "→";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffbd70;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}
.site-header__submenu-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.site-header__submenu-copy strong {
  color: #00524e;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  transition: color 0.2s ease;
}
.site-header__submenu-copy small {
  color: #12201f;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}
.site-header__submenu--solucoes {
  grid-template-columns: minmax(0, 1.32fr) minmax(260px, 0.86fr);
  width: min(900px, 100vw - 56px);
  column-gap: 28px;
}
.site-header__submenu--solucoes .site-header__submenu-title {
  grid-column: 1/-1;
}
.site-header__submenu--solucoes .site-header__submenu-list {
  grid-template-columns: 1fr;
  align-self: center;
}
.site-header__submenu--solucoes .site-header__submenu-list li {
  min-height: 92px;
  padding: 0;
  border-left: 0;
}
.site-header__submenu--solucoes .site-header__submenu-list li:nth-last-child(-n+2) {
  border-bottom: 1px solid rgba(18, 32, 31, 0.16);
}
.site-header__submenu--solucoes .site-header__submenu-list li:last-child {
  border-bottom: 0;
}
.site-header__submenu--solucoes .site-header__submenu-list a {
  grid-template-columns: 44px minmax(0, 1fr);
  min-height: 92px;
}
.site-header__submenu--solucoes .site-header__submenu-copy strong {
  color: #12201f;
  font-size: 1.25rem;
  font-weight: 500;
}
.site-header__submenu-feature {
  --submenu-feature-bg: none;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 288px;
  overflow: hidden;
  padding: 25px 26px;
  border-radius: 7px;
  background-color: #062f2f;
  background-image: linear-gradient(180deg, rgba(6, 47, 47, 0.08), rgba(6, 47, 47, 0.88)), var(--submenu-feature-bg);
  background-position: center;
  background-size: cover;
  color: #ffffff;
  text-decoration: none;
  white-space: normal;
  text-transform: none;
}
.site-header__submenu-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(6, 47, 47, 0.24), rgba(6, 47, 47, 0.68));
}
.site-header__submenu-feature strong {
  max-width: 330px;
  color: #ff9f0a;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.12;
}
.site-header__submenu-feature span {
  max-width: 320px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
}
.site-header__submenu-feature em {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  color: #ff9f0a;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.site-header__submenu-feature em::after {
  content: "→";
  font-size: 1.8rem;
  line-height: 0.7;
}
.site-header__submenu-feature:hover, .site-header__submenu-feature:focus {
  outline: none;
  transform: translateY(-1px);
}
.site-header__menu-list .site-header__submenu-feature {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  width: 100%;
  min-height: 288px;
  padding: 25px 26px;
  color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  line-height: normal;
  text-align: left;
  white-space: normal;
  text-transform: none;
}
.site-header__menu-item--has-submenu:hover > .site-header__submenu, .site-header__menu-item--has-submenu:focus-within > .site-header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0);
}
.site-header__menu-item--has-submenu:hover > a::after, .site-header__menu-item--has-submenu:focus-within > a::after {
  opacity: 1;
  visibility: visible;
  display: none;
  transform: translateX(50%) rotate(45deg) translateY(0);
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}
.site-header__search {
  position: relative;
  width: 220px;
  flex-shrink: 0;
}
.site-header__search label {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 31px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e7e6df;
  color: rgba(18, 32, 31, 0.42);
}
.site-header__search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #12201f;
  font-family: inherit;
  font-size: 0.74rem;
}
.site-header__search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 1005;
  width: 336px;
  max-width: calc(100vw - 48px);
  overflow: hidden;
  border: 1px solid rgba(0, 82, 78, 0.16);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(18, 32, 31, 0.16);
}
.site-header__search-results[hidden] {
  display: none;
}
.site-header__search-result, .site-header__search-all, .site-header__search-status {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 13px 15px;
  border-bottom: 1px solid rgba(18, 32, 31, 0.08);
  text-align: left;
}
.site-header__search-result {
  background: #ffffff;
}
.site-header__search-result span {
  color: #ff9f0a;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.site-header__search-result strong {
  color: #00524e;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.22;
}
.site-header__search-result small {
  display: -webkit-box;
  overflow: hidden;
  color: #596763;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.site-header__search-result:hover, .site-header__search-result:focus {
  outline: none;
  background: #f3f2ea;
}
.site-header__search-all {
  border-bottom: 0;
  background: #f3f2ea;
  color: #00524e;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2;
}
.site-header__search-all:hover, .site-header__search-all:focus {
  outline: none;
  color: #12201f;
  background: #ece9d8;
}
.site-header__search-status {
  color: #596763;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}
.site-header__lang {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: #00524e;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-header__btn-contato {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 105px;
  min-height: 39px;
  padding: 0 22px;
  border-radius: 4px;
  background: #ff9f0a;
  color: #12201f;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}
.site-header__btn-contato:hover {
  background: #f6aa17;
  color: #12201f;
}
.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(18, 32, 31, 0.08);
}
.site-header .mobile-menu-toggle {
  display: none;
}
@media (max-width: 1180px) {
  body.mobile-menu-open {
    overflow: hidden;
  }
  body.mobile-menu-open .site-header {
    z-index: 10020;
  }
  body.admin-bar .site-header__nav {
    top: 120px;
    bottom: 16px;
  }
}
@media (max-width: 1180px) and (max-width: 782px) {
  body.admin-bar .site-header__nav {
    top: 134px;
    bottom: 14px;
  }
}
@media (max-width: 1180px) {
  .site-header__container {
    min-height: 76px;
  }
  .site-header__nav {
    position: fixed;
    top: 88px;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 10020;
    display: none;
    width: auto;
    box-sizing: border-box;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: stretch;
    align-content: stretch;
    justify-content: flex-start;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(0, 82, 78, 0.14);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 28px 60px rgba(18, 32, 31, 0.16);
  }
  .site-header__nav > * {
    flex-shrink: 0;
  }
  .site-header__nav.is-open {
    display: flex;
  }
  .site-header__menu-list {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex: 0 0 auto;
    width: 100%;
    gap: 4px;
  }
  .site-header__menu-list > li {
    width: 100%;
  }
  .site-header__menu-list a {
    justify-content: center;
    width: 100%;
    min-height: 38px;
  }
  .site-header__menu-list > .site-header__menu-item--has-submenu > a {
    padding-right: 34px;
  }
  .site-header__menu-list > .site-header__menu-item--has-submenu > a::after {
    display: none;
  }
  .site-header__menu-list > .site-header__menu-item--has-submenu > a::before {
    content: "+";
    position: absolute;
    right: 10px;
    top: 50%;
    color: #ff9f0a;
    font-family: "Inter", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1;
    transform: translateY(-50%);
  }
  .site-header__menu-list > .site-header__menu-item--has-submenu {
    position: static;
  }
  .site-header__menu-list > .site-header__menu-item--has-submenu.is-active-dropdown > a::before {
    content: "-";
  }
  .site-header__submenu {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    max-height: none;
    overflow: visible;
    box-sizing: border-box;
    margin: 8px 0 18px;
    padding: 18px;
    border-radius: 6px;
    background: #f3f2ea;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none !important;
  }
  .site-header__submenu::before {
    display: none;
  }
  .site-header__submenu--solucoes {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .site-header__submenu--with-feature {
    gap: 16px;
  }
  .site-header__menu-item--has-submenu:hover > .site-header__submenu, .site-header__menu-item--has-submenu:focus-within > .site-header__submenu {
    display: none;
  }
  .site-header__menu-item--has-submenu.is-active-dropdown > .site-header__submenu {
    display: grid;
    position: static !important;
    top: auto;
    right: auto;
    left: auto;
    max-width: 100%;
    transform: none !important;
  }
  .site-header__submenu-title {
    text-align: left;
  }
  .site-header__submenu-list {
    grid-template-columns: 1fr;
  }
  .site-header__submenu-list li,
  .site-header__submenu-list li:nth-child(odd),
  .site-header__submenu-list li:nth-child(even),
  .site-header__submenu-list li:nth-last-child(-n+2) {
    min-height: 0;
    padding: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(18, 32, 31, 0.12);
  }
  .site-header__submenu-list li:last-child {
    border-bottom: 0;
  }
  .site-header__submenu-list a {
    grid-template-columns: 34px minmax(0, 1fr);
    justify-content: flex-start;
    min-height: 70px;
    text-align: left;
  }
  .site-header__submenu--solucoes .site-header__submenu-list li,
  .site-header__submenu--solucoes .site-header__submenu-list li:nth-last-child(-n+2) {
    min-height: 0;
    border-bottom: 1px solid rgba(18, 32, 31, 0.12);
  }
  .site-header__submenu--solucoes .site-header__submenu-list li:last-child {
    border-bottom: 0;
  }
  .site-header__submenu--solucoes .site-header__submenu-list a {
    min-height: 72px;
  }
  .site-header__submenu--solucoes .site-header__submenu-copy strong {
    font-size: 1rem;
    font-weight: 800;
  }
  .site-header__submenu-copy strong {
    font-size: 0.9rem;
  }
  .site-header__submenu-copy small {
    font-size: 0.73rem;
  }
  .site-header__submenu-feature {
    width: 100%;
    min-height: 230px;
    padding: 22px;
    box-sizing: border-box;
    background-position: center;
  }
  .site-header__submenu-feature strong {
    max-width: 100%;
    font-size: clamp(1.08rem, 5.6vw, 1.28rem);
    line-height: 1.12;
  }
  .site-header__submenu-feature span {
    max-width: 100%;
    font-size: 0.82rem;
    line-height: 1.36;
  }
  .site-header__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .site-header__search {
    width: 100%;
  }
  .site-header__search label {
    height: 40px;
  }
  .site-header__search-results {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 8px;
    box-shadow: 0 16px 36px rgba(18, 32, 31, 0.12);
  }
  .site-header__lang {
    justify-content: center;
  }
  .site-header__btn-contato {
    width: 100%;
  }
  .site-header .mobile-menu-toggle {
    position: relative;
    z-index: 10021;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(0, 82, 78, 0.2);
    border-radius: 4px;
    background: #ffffff;
    cursor: pointer;
  }
  .site-header .hamburger-line {
    display: block;
    width: 19px;
    height: 2px;
    margin: 0 auto;
    background: #00524e;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .site-header .mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header .mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .site-header .mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

.site-footer {
  position: relative;
  background: #00524e;
  color: rgba(255, 255, 255, 0.76);
  padding: 74px 0 34px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: start;
}
.site-footer .footer-brand a {
  display: inline-flex;
  margin-bottom: 18px;
  color: #ff9f0a;
  text-decoration: none;
}
.site-footer .footer-brand .footer-logo {
  max-width: 152px;
  height: auto;
  object-fit: contain;
}
.site-footer .footer-brand .footer-logo-fallback {
  display: inline-grid;
  gap: 7px;
  color: #ff9f0a;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 0.9;
}
.site-footer .footer-brand .footer-logo-fallback span {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 32px;
}
.site-footer .footer-brand .footer-logo-fallback span::before, .site-footer .footer-brand .footer-logo-fallback span::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.site-footer .footer-brand .footer-logo-fallback span::before {
  top: 2px;
  left: 0;
  width: 30px;
  height: 10px;
}
.site-footer .footer-brand .footer-logo-fallback span::after {
  top: 13px;
  left: 12px;
  width: 10px;
  height: 17px;
}
.site-footer .footer-brand p {
  max-width: 190px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.45;
}
.site-footer .footer-column h2 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}
.site-footer .footer-column ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .footer-column li,
.site-footer .footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
}
.site-footer .footer-column a:hover {
  color: #ff9f0a;
}
.site-footer .footer-column .footer-location-trigger {
  display: inline-flex;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}
.site-footer .footer-column .footer-location-trigger:hover, .site-footer .footer-column .footer-location-trigger:focus {
  outline: none;
  color: #ff9f0a;
}
.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.4;
}
.site-footer .footer-mangu {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-footer .footer-mangu a {
  display: inline-flex;
}
.site-footer .footer-mangu img {
  width: auto;
  height: 15px;
  filter: brightness(0) invert(1);
  opacity: 0.84;
}
.site-footer .btn-back-to-top {
  position: fixed;
  right: 96px;
  bottom: 32px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 4px;
  background: #ff9f0a;
  color: #12201f;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.site-footer .btn-back-to-top.is-visible {
  opacity: 0.64;
  pointer-events: auto;
  transform: translateY(0);
}
.site-footer .btn-back-to-top:hover {
  opacity: 1;
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.25fr repeat(3, minmax(120px, 0.42fr));
    gap: 58px;
  }
  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1180px) {
  .site-footer__grid {
    gap: 94px;
    padding-right: 60px;
  }
}

.whatsapp-floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.34);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-floating:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.42);
}
body.is-over-footer .whatsapp-floating {
  bottom: 126px;
}
@media (min-width: 1024px) {
  .whatsapp-floating {
    right: 40px;
    bottom: 40px;
  }
  body.is-over-footer .whatsapp-floating {
    bottom: 132px;
  }
}

body.is-over-footer .site-footer .btn-back-to-top {
  bottom: 134px;
}

body.location-modal-open {
  overflow: hidden;
}

.tagat-location-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}
.tagat-location-modal[hidden] {
  display: none;
}
.tagat-location-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.tagat-location-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 47, 47, 0.76);
  cursor: pointer;
}
.tagat-location-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 468px);
  padding: 34px 34px 32px;
  border: 1px solid rgba(255, 159, 10, 0.28);
  border-radius: 8px;
  background: #f3f2ea;
  color: #12201f;
  box-shadow: 0 28px 70px rgba(18, 32, 31, 0.36);
  transform: translateY(10px);
  transition: transform 0.24s ease;
}
.tagat-location-modal__dialog:focus {
  outline: none;
}
.tagat-location-modal.is-open .tagat-location-modal__dialog {
  transform: translateY(0);
}
.tagat-location-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 82, 78, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.54);
  color: #00524e;
  cursor: pointer;
}
.tagat-location-modal__close:hover, .tagat-location-modal__close:focus {
  outline: none;
  border-color: rgba(255, 159, 10, 0.56);
  color: #12201f;
}
.tagat-location-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 16px;
  padding: 0 10px;
  border: 1px solid rgba(255, 159, 10, 0.5);
  border-radius: 999px;
  background: #fee4c2;
  color: #301805;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.tagat-location-modal h2 {
  max-width: 360px;
  margin: 0 0 14px;
  color: #00524e;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.12;
}
.tagat-location-modal p, .tagat-location-modal__empty {
  margin: 0 0 22px;
  color: #12201f;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}
.tagat-location-modal__empty {
  padding: 14px 16px;
  border: 1px solid rgba(0, 82, 78, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.48);
}
.tagat-location-modal__actions {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}
.tagat-location-modal__actions a {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 82, 78, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.tagat-location-modal__actions a:hover, .tagat-location-modal__actions a:focus {
  outline: none;
  border-color: rgba(255, 159, 10, 0.72);
  background: #ffffff;
}
.tagat-location-modal__actions a[hidden] {
  display: none;
}
.tagat-location-modal__actions span {
  color: #ff9f0a;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.tagat-location-modal__actions strong {
  color: #00524e;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.tagat-location-modal__form-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  background: #ff9f0a;
  color: #12201f;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}
.tagat-location-modal__form-link:hover, .tagat-location-modal__form-link:focus {
  outline: none;
  background: #f6b21b;
  color: #12201f;
}

@media (min-width: 1024px) {
  .site-footer .btn-back-to-top {
    right: 112px;
    bottom: 48px;
  }
}
@media (max-width: 480px) {
  .tagat-location-modal {
    padding: 18px;
  }
  .tagat-location-modal__dialog {
    padding: 30px 24px 26px;
  }
  .tagat-location-modal h2 {
    font-size: 1.42rem;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: #f3f2ea;
  color: #596763;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

ul {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: "Resonate", "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.anchor-target {
  display: block;
  height: 0;
  scroll-margin-top: 96px;
}

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

.tagat-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: "Resonate", "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
.tagat-button--orange {
  background: #ff9f0a;
  color: #12201f;
}
.tagat-button--orange:hover {
  background: #f7b11d;
  color: #12201f;
  transform: translateY(-1px);
}
.tagat-button--dark {
  background: #062f2f;
  color: #ffffff;
}
.tagat-button--dark:hover {
  background: #00524e;
  color: #ffffff;
  transform: translateY(-1px);
}

.reveal-up,
.reveal-down,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-up.is-visible,
.reveal-down.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-up {
  transform: translate3d(0, 36px, 0);
}

.reveal-down {
  transform: translate3d(0, -28px, 0);
}

.reveal-left {
  transform: translate3d(-42px, 0, 0);
}

.reveal-right {
  transform: translate3d(42px, 0, 0);
}

.reveal-scale {
  transform: translate3d(0, 24px, 0) scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-down,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.home-section-title {
  max-width: 520px;
  margin: 0 0 38px;
  color: #00524e;
  font-family: "Resonate", "Inter", Arial, sans-serif;
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1.12;
}
.home-section-title--center {
  max-width: none;
  text-align: center;
}
@media (min-width: 768px) {
  .home-section-title {
    font-size: 2.55rem;
  }
}

.page-home {
  overflow: hidden;
  background: #f3f2ea;
}

/* --------------------------------------------------------------------------
   HOME HERO
   -------------------------------------------------------------------------- */
.home-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6, 47, 47, 0.02) 0%, rgba(6, 47, 47, 0.08) 42%, rgba(6, 47, 47, 0.5) 74%, rgba(6, 47, 47, 0.9) 100%), linear-gradient(90deg, rgba(6, 47, 47, 0.16) 0%, rgba(6, 47, 47, 0.04) 48%, rgba(6, 47, 47, 0.22) 100%), var(--hero-bg, linear-gradient(120deg, #1f4f4b 0%, #0f2d2d 46%, #69716b 100%));
  background-position: center top;
  background-size: cover;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 52% 36%, rgba(255, 255, 255, 0.08), transparent 24%), linear-gradient(180deg, rgba(5, 30, 28, 0) 0%, rgba(5, 30, 28, 0) 45%, rgba(5, 30, 28, 0.52) 100%);
  pointer-events: none;
}
.home-hero::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -1px;
  left: -2px;
  height: 82px;
  background: #f3f2ea;
  clip-path: polygon(0 45%, 23% 45%, 31% 78%, 43% 78%, 55% 78%, 76% 78%, 84% 48%, 100% 48%, 100% 100%, 0 100%);
}
.home-hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 42px;
  padding-bottom: 82px;
}
.home-hero__content {
  width: 100%;
  max-width: 690px;
  text-align: center;
}
.home-hero__title {
  margin: 0 auto 22px;
  color: #ffffff;
  font-family: "Resonate", "Inter", Arial, sans-serif;
  font-size: 2.45rem;
  font-weight: 700;
  line-height: 1.08;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
}
.home-hero__title span {
  color: #ffffff;
}
.home-hero__title strong {
  color: #ff9f0a;
  font-weight: 700;
}
.home-hero__text {
  max-width: 560px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.48;
}
.home-hero__text p {
  margin: 0;
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .home-hero {
    min-height: 640px;
  }
  .home-hero__title {
    font-size: 2.82rem;
  }
}
@media (min-width: 1024px) {
  .home-hero {
    min-height: 658px;
  }
  .home-hero__title {
    font-size: 3.08rem;
  }
}
@media (max-width: 560px) {
  .home-hero {
    min-height: 640px;
  }
  .home-hero__container {
    padding-top: 36px;
    padding-bottom: 76px;
  }
  .home-hero__title {
    font-size: 2.08rem;
  }
  .home-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* --------------------------------------------------------------------------
   SOBRE
   -------------------------------------------------------------------------- */
.home-about {
  padding: 96px 0 112px;
}
.home-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.home-about__media {
  width: 100%;
  max-width: 448px;
  margin: 0 auto;
}
.home-about__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.home-about__collage {
  position: relative;
  min-height: 330px;
}
.home-about__photo {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(0, 82, 78, 0.15), rgba(255, 159, 10, 0.18)), #d9d8cf;
}
.home-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.home-about__photo--main {
  top: 0;
  left: 0;
  width: 51%;
  height: 180px;
}
.home-about__photo--wide {
  top: 118px;
  right: 0;
  width: 62%;
  height: 142px;
}
.home-about__photo--small {
  bottom: 0;
  left: 23%;
  width: 35%;
  height: 172px;
}
.home-about__content {
  max-width: 520px;
}
.home-about__content h2 {
  margin: 0 0 28px;
  color: #00524e;
  font-size: 2.08rem;
  font-weight: 800;
  line-height: 1.08;
}
.home-about__text p {
  margin: 0 0 18px;
  color: #12201f;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.62;
}
.home-about__text p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .home-about__collage {
    min-height: 360px;
  }
}
@media (min-width: 1024px) {
  .home-about {
    padding: 104px 0 128px;
  }
  .home-about__grid {
    grid-template-columns: minmax(360px, 0.94fr) minmax(360px, 0.88fr);
    gap: 86px;
  }
  .home-about__content h2 {
    font-size: 2.62rem;
  }
}

/* --------------------------------------------------------------------------
   DIFERENCIAIS
   -------------------------------------------------------------------------- */
.home-why {
  position: relative;
  overflow: hidden;
  padding: 88px 0 92px;
  background-color: #f3f2ea;
  background-image: linear-gradient(180deg, rgba(243, 242, 234, 0.02), rgba(243, 242, 234, 0.1)), var(--why-bg, radial-gradient(circle at 50% 100%, rgba(0, 82, 78, 0.14), transparent 38%));
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.home-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .home-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .home-why {
    padding: 92px 0 116px;
  }
  .home-why__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1030px;
    margin: 0 auto;
  }
}

.feature-card {
  min-height: 132px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(0, 82, 78, 0.16);
  border-radius: 4px;
  background: rgba(251, 250, 245, 0.82);
}
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-bottom: 12px;
  color: #ff9f0a;
  font-size: 1.14rem;
  font-weight: 800;
  line-height: 1;
}
.feature-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.feature-card h3 {
  margin: 0 0 7px;
  color: #00524e;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
}
.feature-card p {
  margin: 0;
  color: #596763;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.42;
}

/* --------------------------------------------------------------------------
   ECOSSISTEMA
   -------------------------------------------------------------------------- */
.home-ecosystem {
  padding: 104px 0 92px;
}
.home-ecosystem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.home-ecosystem__content h2 {
  max-width: 475px;
  margin: 0 0 18px;
  color: #00524e;
  font-size: 2.22rem;
  font-weight: 800;
  line-height: 1.1;
}
.home-ecosystem__text {
  max-width: 500px;
  margin-bottom: 28px;
}
.home-ecosystem__text p {
  margin: 0;
  color: #12201f;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.58;
}
.home-ecosystem__visual {
  display: flex;
  justify-content: center;
}
.home-ecosystem__visual img {
  width: 100%;
  max-width: 518px;
  height: auto;
}
@media (min-width: 1024px) {
  .home-ecosystem {
    padding: 118px 0 104px;
  }
  .home-ecosystem__grid {
    grid-template-columns: 0.9fr 1fr;
    gap: 86px;
  }
  .home-ecosystem__content h2 {
    font-size: 2.74rem;
  }
}

.ecosystem-tags {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  max-width: 448px;
}

.ecosystem-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(0, 82, 78, 0.18);
  border-radius: 999px;
  background: #fbfaf5;
  color: #12201f;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
}
.ecosystem-tag__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: #00524e;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1;
}
.ecosystem-tag__icon:empty {
  display: none;
}
.ecosystem-tag__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.ecosystem-tag__text {
  display: inline-block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .ecosystem-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.performance-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.performance-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding: 0 15px;
  border: 1px solid rgba(0, 82, 78, 0.18);
  border-radius: 999px;
  background: #fbfaf5;
  color: #00524e;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.ecosystem-diagram {
  position: relative;
  width: min(100%, 488px);
  aspect-ratio: 1/1;
  border-radius: 50px;
  background: conic-gradient(from 0deg, #ff9f0a 0 18%, #062f2f 18% 34%, #00524e 34% 50%, #ff9f0a 50% 66%, #062f2f 66% 82%, #00524e 82% 100%);
  box-shadow: inset 0 0 0 22px #fbfaf5;
}
.ecosystem-diagram__ring {
  position: absolute;
  inset: 17%;
  border: 16px solid rgba(255, 255, 255, 0.88);
  border-radius: 34px;
  background: rgba(243, 242, 234, 0.82);
}
.ecosystem-diagram__ring--middle {
  inset: 28%;
  border-width: 12px;
  background: rgba(0, 82, 78, 0.12);
}
.ecosystem-diagram__ring--inner {
  inset: 39%;
  border-width: 8px;
  background: rgba(255, 159, 10, 0.2);
}
.ecosystem-diagram__core {
  position: absolute;
  inset: 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #ff9f0a;
  color: #062f2f;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
.ecosystem-diagram__label {
  position: absolute;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.86);
  color: #062f2f;
  font-size: 0.56rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.ecosystem-diagram__label--top {
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
}
.ecosystem-diagram__label--bottom {
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
}
.ecosystem-diagram__label--left {
  top: 50%;
  left: 5%;
  transform: translateY(-50%) rotate(-90deg);
}
.ecosystem-diagram__label--right {
  top: 50%;
  right: 2%;
  transform: translateY(-50%) rotate(90deg);
}

/* --------------------------------------------------------------------------
   SEGMENTOS
   -------------------------------------------------------------------------- */
.home-segments {
  padding: 56px 0 104px;
}
.home-segments__panel {
  position: relative;
  overflow: hidden;
  padding: 48px 38px 56px;
  border-radius: 8px;
  background-color: #062f2f;
  background-image: var(--segments-bg, none), radial-gradient(circle at 0% 52%, rgba(0, 82, 78, 0.56), transparent 31%), radial-gradient(circle at 94% 50%, rgba(0, 82, 78, 0.42), transparent 28%);
  background-repeat: no-repeat;
  background-position: center, left center, right center;
  background-size: cover, 58% 116%, 58% 116%;
}
.home-segments__panel h2 {
  max-width: 620px;
  margin: 0 0 34px;
  color: #ffffff;
  font-size: 1.68rem;
  font-weight: 800;
  line-height: 1.18;
}
.home-segments__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .home-segments__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .home-segments {
    padding-bottom: 116px;
  }
  .home-segments__panel {
    padding: 58px 64px 68px;
  }
  .home-segments__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.segment-card {
  display: block;
  min-height: 198px;
  padding: 24px 22px;
  border-radius: 4px;
  background: rgba(0, 82, 78, 0.52);
  color: #ffffff;
}
.segment-card:hover {
  background: rgba(0, 82, 78, 0.78);
  transform: translateY(-2px);
}
.segment-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  margin-bottom: 18px;
  color: #ff9f0a;
  font-size: 1.36rem;
  font-weight: 800;
  line-height: 1;
}
.segment-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.segment-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.18;
}
.segment-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   PERFORMANCE
   -------------------------------------------------------------------------- */
.home-performance {
  padding: 70px 0 92px;
}
.home-performance__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  align-items: center;
}
.home-performance__visual img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: none;
}
.home-performance__content h2 {
  max-width: 455px;
  margin: 0 0 16px;
  color: #00524e;
  font-size: 1.66rem;
  font-weight: 800;
  line-height: 1.08;
}
.home-performance__text {
  max-width: 360px;
  margin-bottom: 18px;
}
.home-performance__text p {
  margin: 0;
  color: #12201f;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.42;
}
@media (min-width: 1024px) {
  .home-performance__grid {
    grid-template-columns: 0.98fr 0.92fr;
    gap: 68px;
  }
  .home-performance__content h2 {
    font-size: 1.78rem;
  }
}

.performance-chips {
  display: flex;
  flex-wrap: wrap;
  max-width: 428px;
  gap: 7px 8px;
}
.performance-chips span {
  position: relative;
  min-height: 24px;
  padding: 0 12px 0 20px;
  border: 0;
  border-radius: 999px;
  background: #b9ddb9;
  color: #00524e;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.1;
}
.performance-chips span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00524e;
  transform: translateY(-50%);
}

.dashboard-mock {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(0, 82, 78, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(18, 32, 31, 0.08);
}
.dashboard-mock__sidebar {
  background: #fbfaf5;
  border-right: 1px solid rgba(0, 82, 78, 0.08);
}
.dashboard-mock__body {
  padding: 42px;
}
.dashboard-mock__top {
  width: 54%;
  height: 18px;
  margin-bottom: 32px;
  border-radius: 999px;
  background: #ecebe2;
}
.dashboard-mock__numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 42px;
}
.dashboard-mock__numbers span {
  height: 52px;
  border-radius: 6px;
  background: #fbfaf5;
  border: 1px solid rgba(0, 82, 78, 0.08);
}
.dashboard-mock__chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 132px;
}
.dashboard-mock__chart i {
  width: 34px;
  border-radius: 4px 4px 0 0;
  background: #00524e;
}
.dashboard-mock__chart i:nth-child(1) {
  height: 42%;
}
.dashboard-mock__chart i:nth-child(2) {
  height: 64%;
}
.dashboard-mock__chart i:nth-child(3) {
  height: 48%;
}
.dashboard-mock__chart i:nth-child(4) {
  height: 82%;
}
.dashboard-mock__chart i:nth-child(5) {
  height: 58%;
  background: #ff9f0a;
}
.dashboard-mock__score {
  position: absolute;
  right: 42px;
  bottom: 54px;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 13px solid #ff9f0a;
  border-radius: 50%;
  color: #00524e;
  font-size: 1.18rem;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.home-cta {
  padding: 50px 0 112px;
}
.home-cta__panel {
  position: relative;
  overflow: hidden;
  max-width: 1110px;
  margin: 0 auto;
  padding: 72px 32px 70px;
  border-radius: 8px;
  background-color: #062f2f;
  background-image: linear-gradient(180deg, rgba(6, 47, 47, 0.18), rgba(6, 47, 47, 0.18)), var(--cta-bg, none), radial-gradient(circle at 74% 50%, rgba(0, 82, 78, 0.46), transparent 30%), radial-gradient(circle at 92% 50%, rgba(0, 82, 78, 0.42), transparent 32%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
}
.home-cta__panel h2 {
  max-width: 650px;
  margin: 0 auto 24px;
  color: #ff9f0a;
  font-size: 2.02rem;
  font-weight: 800;
  line-height: 1.14;
}
.home-cta__panel h2 span {
  display: block;
}
.home-cta__text {
  max-width: 650px;
  margin: 0 auto 28px;
}
.home-cta__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.58;
}
@media (min-width: 768px) {
  .home-cta__panel h2 {
    font-size: 2.48rem;
  }
}

/* --------------------------------------------------------------------------
   BLOG
   -------------------------------------------------------------------------- */
.home-blog {
  padding: 8px 0 128px;
}
.home-blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .home-blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(48, 24, 5, 0.36);
  border-radius: 4px;
  background: #fbfaf5;
}
.blog-card__image {
  position: relative;
  display: block;
  min-height: 178px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 82, 78, 0.25), rgba(255, 159, 10, 0.18)), #d9d8cf;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
}
.blog-card__image > span {
  display: none;
}
.blog-card__body {
  padding: 18px 18px 20px;
}
.blog-card__body > span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-bottom: 11px;
  padding: 0 8px;
  border: 1px solid #ff9f0a;
  border-radius: 999px;
  background: #fee4c2;
  color: #301805;
  font-size: 0.56rem;
  font-weight: 800;
  line-height: 1;
}
.blog-card__body h3 {
  min-height: 58px;
  margin: 0 0 10px;
  color: #00524e;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}
.blog-card__body h3 a {
  color: inherit;
  text-decoration: none;
}
.blog-card__body p {
  min-height: 56px;
  margin: 0 0 16px;
  color: #596763;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.45;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.blog-card__meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 8px;
  border: 1px solid #024949;
  border-radius: 2px;
  background: transparent;
  color: #024949;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.blog-card__meta a::after {
  content: "→";
  margin-left: 5px;
  font-size: 0.76rem;
  line-height: 1;
}
.blog-card__meta time {
  color: #024949;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   PÁGINA BLOG
   -------------------------------------------------------------------------- */
.page-blog {
  overflow: hidden;
  background: #f3f2ea;
}

.blog-hero {
  padding: 76px 0 180px;
}
.blog-hero .container {
  position: relative;
}
.blog-hero__frame {
  position: relative;
  min-height: 448px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(0, 82, 78, 0.88) 0%, rgba(0, 82, 78, 0.66) 39%, rgba(6, 47, 47, 0.18) 74%, rgba(6, 47, 47, 0.06) 100%), var(--blog-hero-bg, linear-gradient(120deg, #0a3938 0%, #35534e 100%));
  background-position: center;
  background-size: cover;
}
.blog-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  padding: 72px 118px 112px;
}
.blog-hero__content h1 {
  max-width: 660px;
  margin: 0 0 24px;
  color: #ff9f0a;
  font-size: 2.42rem;
  font-weight: 800;
  line-height: 1.12;
}
.blog-hero__text {
  max-width: 612px;
}
.blog-hero__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.52;
}

.blog-search-panel {
  position: absolute;
  right: 74px;
  bottom: -58px;
  left: 74px;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.98fr);
  gap: 34px;
  align-items: center;
  min-height: 118px;
  padding: 26px 54px;
  border-radius: 12px;
  background: #00524e;
  box-shadow: 0 24px 54px rgba(18, 32, 31, 0.12);
}
.blog-search-panel strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
}
.blog-search-panel label {
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0 18px 0 24px;
  border-radius: 6px;
  background: #ffffff;
}
.blog-search-panel input[type=search] {
  min-width: 0;
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #12201f;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 600;
}
.blog-search-panel input[type=search]::placeholder {
  color: rgba(89, 103, 99, 0.54);
}
.blog-search-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #12201f;
  cursor: pointer;
}
.blog-search-panel button:hover, .blog-search-panel button:focus {
  outline: none;
  color: #ff9f0a;
}

.blog-posts-section--recent {
  padding: 0 0 100px;
}
.blog-posts-section--latest {
  padding: 70px 0 112px;
  border-top: 1px solid rgba(18, 32, 31, 0.12);
}

.blog-page-title {
  margin: 0 0 42px;
  color: #12201f;
  font-size: 2.18rem;
  font-weight: 800;
  line-height: 1.12;
}

.blog-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.blog-page-grid--latest {
  row-gap: 34px;
}

.blog-section-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.blog-section-dots span,
.blog-section-dots button {
  width: 52px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cec8a4;
  font-size: 0;
}
.blog-section-dots span.is-active,
.blog-section-dots button.is-active {
  background: #00524e;
}
.blog-section-dots button {
  cursor: pointer;
  transition: width 0.22s ease, background-color 0.22s ease, opacity 0.22s ease;
}
.blog-section-dots button:hover, .blog-section-dots button:focus {
  outline: none;
  opacity: 0.78;
}
.blog-section-dots--events {
  margin-top: 34px;
}
.blog-section-dots--events span.is-active,
.blog-section-dots--events button.is-active {
  background: #ff9f0a;
}

.blog-events {
  padding: 76px 0 78px;
  background-color: #062f2f;
  background-image: linear-gradient(90deg, rgba(6, 47, 47, 0.86), rgba(6, 47, 47, 0.7)), var(--blog-events-bg, radial-gradient(circle at 44% 48%, rgba(0, 82, 78, 0.44), transparent 42%));
  background-position: center;
  background-size: cover;
}
.blog-events .blog-page-title {
  color: rgba(255, 255, 255, 0.88);
}
.blog-events__carousel {
  position: relative;
}
.blog-events__track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 1px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.blog-events__track::-webkit-scrollbar {
  display: none;
}
.blog-events__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.blog-events__track.is-dragging .blog-event-card {
  pointer-events: none;
}
.blog-events__controls {
  pointer-events: none;
  position: absolute;
  inset: 0 -23px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-events__controls[hidden] {
  display: none;
}
.blog-events__arrow {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 159, 10, 0.9);
  border-radius: 999px;
  background: #ff9f0a;
  color: #12201f;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(6, 47, 47, 0.22);
  transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}
.blog-events__arrow:hover, .blog-events__arrow:focus {
  outline: none;
  background: #f7b11d;
  transform: translateY(-1px);
}
.blog-events__arrow[disabled] {
  opacity: 0.42;
  cursor: default;
  transform: none;
}
.blog-events__pagination {
  min-height: 12px;
}
.blog-events__pagination:empty {
  display: none;
}

.blog-event-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(236, 235, 226, 0.54);
  border-radius: 6px;
  background: rgba(0, 82, 78, 0.3);
  scroll-snap-align: start;
}
.blog-event-card__image {
  min-height: 200px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}
.blog-event-card__image img,
.blog-event-card__image span {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
.blog-event-card__body {
  padding: 28px 30px 24px;
}
.blog-event-card__body > span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 16px;
  padding: 0 10px;
  border: 1px solid #ff9f0a;
  border-radius: 999px;
  background: #fee4c2;
  color: #301805;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
}
.blog-event-card__body h3 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.18;
}
.blog-event-card__body h3 a {
  color: inherit;
}
.blog-event-card__body p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}
.blog-event-card__body time {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
}

@media (min-width: 768px) {
  .blog-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .blog-event-card {
    flex-basis: calc((100% - 30px) / 2);
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  }
  .blog-event-card__image {
    min-height: 238px;
  }
}
@media (max-width: 900px) {
  .blog-search-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    right: 42px;
    left: 42px;
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .blog-hero {
    padding: 28px 0 138px;
  }
  .blog-hero__frame {
    min-height: 430px;
  }
  .blog-hero__content {
    padding: 44px 28px 96px;
  }
  .blog-hero__content h1 {
    font-size: 1.86rem;
  }
  .blog-search-panel {
    right: 24px;
    bottom: -72px;
    left: 24px;
  }
  .blog-search-panel strong {
    font-size: 1rem;
  }
  .blog-posts-section--recent {
    padding-bottom: 72px;
  }
  .blog-posts-section--latest {
    padding: 56px 0 76px;
  }
  .blog-page-title {
    margin-bottom: 28px;
    font-size: 1.78rem;
  }
  .blog-section-dots span {
    width: 38px;
  }
  .blog-events {
    padding: 58px 0 62px;
  }
  .blog-events__controls {
    inset: auto 0 -8px;
    justify-content: flex-end;
    gap: 10px;
  }
  .blog-events__arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .blog-events__pagination {
    justify-content: flex-start;
    padding-right: 102px;
  }
}
/* --------------------------------------------------------------------------
   SOLUCOES
   -------------------------------------------------------------------------- */
.page-solucoes {
  overflow: hidden;
  background: #f3f2ea;
}

.solucoes-hero {
  padding: 68px 0 72px;
}
.solucoes-hero__frame {
  position: relative;
  min-height: 462px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(0, 82, 78, 0.9) 0%, rgba(0, 82, 78, 0.72) 38%, rgba(6, 47, 47, 0.2) 75%, rgba(6, 47, 47, 0.08) 100%), var(--solucoes-hero-bg, linear-gradient(120deg, #123d3b 0%, #6e7a70 100%));
  background-position: center;
  background-size: cover;
}
.solucoes-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 770px);
  padding: 64px 80px;
}
.solucoes-hero__content h1 {
  max-width: 650px;
  margin: 0 0 26px;
  color: #ff9f0a;
  font-size: 2.42rem;
  font-weight: 800;
  line-height: 1.12;
}
.solucoes-hero__text {
  max-width: 560px;
}
.solucoes-hero__text p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
}
.solucoes-hero__text p:last-child {
  margin-bottom: 0;
}

.solucoes-segments {
  padding: 44px 0 96px;
}
.solucoes-segments__list {
  display: grid;
  gap: 42px;
}

.solucao-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
  padding: 44px;
  border-radius: 4px;
  background: #fbfaf5;
}
.solucao-card:nth-child(even) .solucao-card__media {
  order: 2;
}
.solucao-card__media {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.45;
  margin: 0;
  border-radius: 4px;
  background: rgba(0, 82, 78, 0.1);
}
.solucao-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solucao-card__content h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #12201f;
  font-size: 1.88rem;
  font-weight: 800;
  line-height: 1.15;
}
.solucao-card__content h2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: #ff9f0a;
  font-size: 1.68rem;
  line-height: 1;
}
.solucao-card__content h2 span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.solucao-card__content p {
  max-width: 430px;
  margin: 0 0 20px;
  color: #12201f;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}
.solucao-card__content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  color: #00524e;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}
.solucao-card__content ul li {
  position: relative;
  padding-left: 16px;
}
.solucao-card__content ul li::before {
  content: "";
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #00524e;
}
.solucao-card__content .tagat-button {
  min-width: 206px;
}

@media (min-width: 768px) {
  .solucao-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.98fr);
    padding: 48px 56px;
  }
}
@media (max-width: 767px) {
  .solucoes-hero {
    padding: 32px 0 46px;
  }
  .solucoes-hero__frame {
    min-height: 430px;
  }
  .solucoes-hero__content {
    padding: 42px 28px;
  }
  .solucoes-hero__content h1 {
    font-size: 1.86rem;
  }
  .solucoes-segments {
    padding: 26px 0 68px;
  }
  .solucao-card {
    gap: 24px;
    padding: 24px;
  }
  .solucao-card:nth-child(even) .solucao-card__media {
    order: 0;
  }
  .solucao-card__content h2 {
    font-size: 1.42rem;
  }
  .solucao-card__content .tagat-button {
    width: 100%;
  }
}
/* --------------------------------------------------------------------------
   HUBS TAGAT
   -------------------------------------------------------------------------- */
.page-hub-tagat {
  overflow: hidden;
  background: #f3f2ea;
}

.tagat-hub-hero {
  padding: 68px 0 82px;
}
.tagat-hub-hero__frame {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(0, 82, 78, 0.88) 0%, rgba(0, 82, 78, 0.66) 42%, rgba(6, 47, 47, 0.18) 100%), var(--hub-hero-bg, linear-gradient(120deg, #123d3b 0%, #6e7a70 100%));
  background-position: center;
  background-size: cover;
}
.tagat-hub-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  padding: 68px 80px;
}
.tagat-hub-hero__content h1 {
  margin: 0 0 22px;
  color: #ff9f0a;
  font-size: 2.58rem;
  font-weight: 800;
  line-height: 1.1;
}
.tagat-hub-hero__text {
  max-width: 590px;
}
.tagat-hub-hero__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.52;
}

.tagat-hub-grid-section {
  position: relative;
  isolation: isolate;
  padding: 92px 0 112px;
}
.tagat-hub-grid-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--hub-section-bg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 0.48;
  pointer-events: none;
}
.tagat-hub-grid-section--divided {
  border-top: 1px solid rgba(18, 32, 31, 0.12);
}
.tagat-hub-grid-section__head {
  max-width: 690px;
  margin: 0 auto 54px;
  text-align: center;
}
.tagat-hub-grid-section__head h2 {
  margin: 0;
  color: #00524e;
  font-size: 2.22rem;
  font-weight: 800;
  line-height: 1.12;
}
.tagat-hub-grid-section__text {
  max-width: 520px;
  margin: 16px auto 0;
}
.tagat-hub-grid-section__text p {
  margin: 0;
  color: #12201f;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.48;
}

.tagat-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.tagat-info-card {
  min-height: 202px;
  padding: 28px 30px;
  border: 1px solid rgba(18, 32, 31, 0.15);
  border-radius: 4px;
  background: rgba(251, 250, 245, 0.94);
  box-shadow: 0 16px 34px rgba(18, 32, 31, 0.04);
}
.tagat-info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: #ff9f0a;
  font-size: 1.58rem;
  font-weight: 800;
  line-height: 1;
}
.tagat-info-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tagat-info-card h3 {
  margin: 0 0 10px;
  color: #00524e;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.22;
}
.tagat-info-card p {
  margin: 0;
  color: #12201f;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
}
.tagat-info-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #12201f;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.tagat-info-card a::after {
  content: "→";
  color: #ff9f0a;
  font-size: 0.9rem;
  line-height: 1;
}
.tagat-info-card a:hover, .tagat-info-card a:focus {
  outline: none;
  color: #00524e;
}

@media (min-width: 768px) {
  .tagat-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .tagat-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .tagat-hub-hero {
    padding: 32px 0 48px;
  }
  .tagat-hub-hero__frame {
    min-height: 430px;
  }
  .tagat-hub-hero__content {
    padding: 42px 28px;
  }
  .tagat-hub-hero__content h1 {
    font-size: 1.92rem;
  }
  .tagat-hub-grid-section {
    padding: 58px 0 72px;
  }
  .tagat-hub-grid-section__head {
    margin-bottom: 32px;
    text-align: left;
  }
  .tagat-hub-grid-section__head h2 {
    font-size: 1.78rem;
  }
}
/* --------------------------------------------------------------------------
   PAGINAS INTERNAS TAGAT
   -------------------------------------------------------------------------- */
.page-interna-tagat {
  overflow: hidden;
  background: #f3f2ea;
}

.internal-hero {
  padding: 68px 0 54px;
}
.internal-hero__frame {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(0, 82, 78, 0.88) 0%, rgba(0, 82, 78, 0.62) 44%, rgba(6, 47, 47, 0.1) 100%), var(--internal-hero-bg, linear-gradient(120deg, #123d3b 0%, #6e7a70 100%));
  background-position: center;
  background-size: cover;
}
.internal-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  padding: 66px 40px 66px 72px;
}
.internal-hero__content h1 {
  margin: 0 0 20px;
  color: #ff9f0a;
  font-size: 2.44rem;
  font-weight: 800;
  line-height: 1.1;
}
.internal-hero__text {
  max-width: 590px;
}
.internal-hero__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.5;
}

.internal-tabs {
  display: flex;
  width: min(100%, 314px);
  min-height: 46px;
  margin: 52px auto 0;
  padding: 5px;
  border: 1px solid rgba(18, 32, 31, 0.16);
  border-radius: 999px;
  background: rgba(251, 250, 245, 0.78);
}
.internal-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #12201f;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}
.internal-tabs a.is-active {
  border-color: #ff9f0a;
  background: #fee4c2;
  color: #301805;
}

.internal-intro,
.internal-benefits {
  padding: 70px 0 82px;
}
.internal-intro__grid,
.internal-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.internal-intro__content h2,
.internal-benefits__content h2 {
  margin: 0 0 28px;
  color: #00524e;
  font-size: 2.28rem;
  font-weight: 800;
  line-height: 1.12;
}
.internal-intro__text,
.internal-benefits__text {
  max-width: 560px;
}
.internal-intro__text p,
.internal-benefits__text p {
  margin: 0 0 18px;
  color: #12201f;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.54;
}
.internal-intro__media,
.internal-benefits__media {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.94;
  margin: 0;
  border-radius: 4px;
  background: rgba(0, 82, 78, 0.12);
}
.internal-intro__media img,
.internal-benefits__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.internal-arrow-list {
  display: grid;
  gap: 24px;
  max-width: 590px;
  margin: 26px 0 0;
}
.internal-arrow-list li {
  position: relative;
  padding-left: 34px;
  color: #12201f;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.28;
}
.internal-arrow-list li::before {
  content: "→";
  position: absolute;
  top: -1px;
  left: 0;
  color: #00524e;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1;
}

.internal-summary {
  padding: 48px 0 74px;
  text-align: center;
}
.internal-summary h2 {
  max-width: 700px;
  margin: 0 auto 20px;
  color: #00524e;
  font-size: 2.08rem;
  font-weight: 800;
  line-height: 1.12;
}
.internal-summary div {
  max-width: 720px;
  margin: 0 auto;
}
.internal-summary p {
  margin: 0 0 14px;
  color: #12201f;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.52;
}
.internal-summary p:last-child {
  margin-bottom: 0;
}

.internal-applications {
  padding: 34px 0 78px;
}
.internal-applications h2 {
  margin: 0 0 36px;
  color: #00524e;
  font-size: 2.02rem;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.internal-dark-band {
  padding: 8px 0 54px;
}
.internal-dark-band__box {
  --internal-dark-bg: none;
  width: min(100%, 870px);
  margin: 0 auto;
  overflow: hidden;
  padding: 38px 56px 42px;
  border-radius: 5px;
  background-color: #062f2f;
  background-image: linear-gradient(180deg, rgba(6, 47, 47, 0.9), rgba(6, 47, 47, 0.86)), var(--internal-dark-bg);
  background-position: center bottom;
  background-size: contain;
}
.internal-dark-band h2 {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}
.internal-dark-band .internal-application-grid {
  max-width: 650px;
  margin: 0 auto;
  gap: 34px 76px;
}
.internal-dark-band .internal-application-card {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 12px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.internal-dark-band .internal-application-card .internal-card-icon {
  grid-row: 1/span 2;
  width: 28px;
  height: 28px;
  margin: 0;
}
.internal-dark-band .internal-application-card h3 {
  margin: 1px 0 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.15;
}
.internal-dark-band .internal-application-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.73rem;
  font-weight: 500;
  line-height: 1.38;
}
.internal-dark-band .internal-application-card .internal-card-bullets {
  grid-column: 2;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
}
.internal-dark-band .internal-application-card .internal-card-bullets li::marker {
  color: rgba(255, 255, 255, 0.76);
}

.internal-application-grid,
.internal-feature-grid,
.internal-protein-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.internal-application-card,
.internal-feature-card,
.internal-protein-card {
  display: flex;
  flex-direction: column;
  min-height: 170px;
  height: 100%;
  padding: 28px 30px;
  border: 1px solid rgba(18, 32, 31, 0.15);
  border-radius: 4px;
  background: #fbfaf5;
}

.internal-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  color: #ff9f0a;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.internal-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.internal-application-card h3,
.internal-feature-card h3 {
  margin: 0 0 10px;
  color: #00524e;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}
.internal-application-card p,
.internal-feature-card p {
  margin: 0;
  color: #12201f;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.46;
}
.internal-application-card .internal-card-bullets,
.internal-feature-card .internal-card-bullets {
  display: grid;
  gap: 4px;
  margin: 10px 0 0;
  padding-left: 17px;
  color: #12201f;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.42;
  list-style: disc;
}
.internal-application-card .internal-card-bullets li,
.internal-feature-card .internal-card-bullets li {
  padding-left: 2px;
}
.internal-application-card .internal-card-bullets li::marker,
.internal-feature-card .internal-card-bullets li::marker {
  color: #12201f;
}
.internal-application-card a,
.internal-feature-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #12201f;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.internal-application-card a::after,
.internal-feature-card a::after {
  content: "→";
  color: #ff9f0a;
  font-size: 0.9rem;
  line-height: 1;
}

.internal-feature-section {
  padding: 34px 0 90px;
}
.internal-feature-section--no-head {
  padding-top: 0;
}
.internal-feature-section__head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.internal-feature-section__head h2 {
  margin: 0;
  color: #00524e;
  font-size: 2.08rem;
  font-weight: 800;
  line-height: 1.12;
}
.internal-feature-section__head div {
  max-width: 620px;
  margin: 18px auto 0;
}
.internal-feature-section__head p {
  margin: 0;
  color: #12201f;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}
.internal-feature-section__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: stretch;
}
.internal-feature-section__media {
  overflow: hidden;
  margin: 0;
  border-radius: 4px;
  background: rgba(0, 82, 78, 0.12);
}
.internal-feature-section__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.page-interna-tagat--ecossistema .internal-feature-section {
  padding: 0 0 72px;
}
.page-interna-tagat--ecossistema .internal-feature-section__head {
  max-width: 620px;
  margin-bottom: 30px;
  text-align: center;
}
.page-interna-tagat--ecossistema .internal-feature-section__head h2 {
  color: #12201f;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.12;
}
.page-interna-tagat--ecossistema .internal-feature-section__head div {
  max-width: 520px;
  margin-top: 14px;
}
.page-interna-tagat--ecossistema .internal-feature-section__head p {
  color: rgba(18, 32, 31, 0.68);
  font-size: 0.78rem;
  line-height: 1.42;
}
.page-interna-tagat--ecossistema .internal-feature-grid {
  max-width: 590px;
  margin: 0 auto;
  gap: 18px 20px;
}
.page-interna-tagat--ecossistema .internal-feature-card {
  min-height: 132px;
  padding: 22px 24px;
  border-color: rgba(18, 32, 31, 0.13);
  border-radius: 4px;
  background: #ffffff;
}
.page-interna-tagat--ecossistema .internal-feature-card .internal-card-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.page-interna-tagat--ecossistema .internal-feature-card h3 {
  margin-bottom: 8px;
  color: #12201f;
  font-size: 0.78rem;
  line-height: 1.15;
}
.page-interna-tagat--ecossistema .internal-feature-card p {
  color: rgba(18, 32, 31, 0.58);
  font-size: 0.74rem;
  line-height: 1.42;
}
.page-interna-tagat--ecossistema .internal-feature-card .internal-card-bullets {
  color: rgba(18, 32, 31, 0.58);
  font-size: 0.74rem;
  line-height: 1.34;
}
.page-interna-tagat--ecossistema .internal-feature-card .internal-card-bullets li::marker {
  color: rgba(18, 32, 31, 0.58);
}

.internal-feature-stack {
  display: grid;
  gap: 0;
}
.internal-feature-stack .internal-feature-card {
  min-height: 0;
  border-radius: 4px 4px 0 0;
}
.internal-feature-stack .internal-feature-card + .internal-feature-card {
  margin-top: -1px;
}
.internal-feature-stack .internal-feature-card:last-child {
  border-radius: 0 0 4px 4px;
}

.page-interna-tagat--desafios .internal-feature-section--split {
  padding-top: 18px;
  padding-bottom: 84px;
}
.page-interna-tagat--desafios .internal-feature-section__head {
  max-width: 940px;
  margin: 0 auto 22px;
  text-align: left;
}
.page-interna-tagat--desafios .internal-feature-section__head h2 {
  max-width: 500px;
  font-size: 1.66rem;
  line-height: 1.08;
}
.page-interna-tagat--desafios .internal-feature-section__head div {
  max-width: 430px;
  margin: 12px 0 0;
}
.page-interna-tagat--desafios .internal-feature-section__head p {
  font-size: 0.78rem;
  line-height: 1.45;
}
.page-interna-tagat--desafios .internal-feature-section__split {
  --challenge-card-count: 4;
  --challenge-stack-offset: 76px;
  max-width: 940px;
  margin: 0 auto;
  align-items: flex-start;
}
.page-interna-tagat--desafios .internal-feature-section__media {
  align-self: start;
  width: 100%;
  max-width: 520px;
  height: clamp(300px, 28vw, 410px);
  min-height: 0;
}
.page-interna-tagat--desafios .internal-feature-section__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
.page-interna-tagat--desafios .internal-feature-stack {
  position: relative;
  isolation: isolate;
  align-self: start;
  width: 100%;
  max-width: 360px;
  padding-bottom: calc((var(--challenge-card-count, 4) - 1) * var(--challenge-stack-offset, 76px));
}
.page-interna-tagat--desafios .internal-feature-stack::before {
  display: none;
}
.page-interna-tagat--desafios .internal-feature-stack .internal-feature-card {
  position: sticky;
  top: calc(var(--challenge-stack-top, 112px) + var(--stack-index, 0) * var(--challenge-stack-offset, 76px));
  z-index: calc(10 + var(--stack-index, 0));
  min-height: 138px;
  overflow: visible;
  margin: 0 0 -44px;
  padding: 20px 22px 20px 62px;
  border-color: rgba(18, 32, 31, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(18, 32, 31, 0.06);
  cursor: default;
  transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}
.page-interna-tagat--desafios .internal-feature-stack .internal-feature-card::before {
  display: none;
}
.page-interna-tagat--desafios .internal-feature-stack .internal-feature-card + .internal-feature-card {
  margin-top: 0;
}
.page-interna-tagat--desafios .internal-feature-stack .internal-feature-card:last-child {
  margin-bottom: 0;
}
.page-interna-tagat--desafios .internal-feature-stack .internal-feature-card:focus-visible {
  outline: none;
  border-color: rgba(255, 159, 10, 0.72);
}
.page-interna-tagat--desafios .internal-feature-stack .internal-feature-card.is-stack-active {
  z-index: 80;
  border-color: rgba(255, 159, 10, 0.82);
  box-shadow: 0 18px 44px rgba(18, 32, 31, 0.11);
  transform: translateY(-2px);
}
.page-interna-tagat--desafios .internal-feature-stack .internal-feature-card.is-stack-before {
  z-index: calc(40 + var(--stack-index, 0));
  border-color: rgba(18, 32, 31, 0.12);
  box-shadow: 0 10px 24px rgba(18, 32, 31, 0.05);
  transform: translateY(-5px);
}
.page-interna-tagat--desafios .internal-feature-stack .internal-feature-card.is-stack-after {
  z-index: calc(20 + var(--stack-index, 0));
  transform: translateY(0);
}
.page-interna-tagat--desafios .internal-feature-stack .internal-feature-card .internal-card-icon {
  position: absolute;
  top: 20px;
  left: 22px;
  width: 30px;
  height: 30px;
  margin: 0;
}
.page-interna-tagat--desafios .internal-feature-stack .internal-feature-card h3 {
  margin-bottom: 7px;
  font-size: 0.9rem;
  line-height: 1.16;
}
.page-interna-tagat--desafios .internal-feature-stack .internal-feature-card p,
.page-interna-tagat--desafios .internal-feature-stack .internal-feature-card .internal-card-bullets {
  color: rgba(18, 32, 31, 0.72);
  font-size: 0.76rem;
  line-height: 1.42;
}

.internal-proteins {
  padding: 4px 0 90px;
}
.internal-proteins h2 {
  margin: 0 0 36px;
  color: #12201f;
  font-size: 1.72rem;
  font-weight: 800;
  line-height: 1.16;
  text-align: center;
}

.internal-protein-card {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 18px 20px;
  text-align: center;
}
.internal-protein-card .internal-card-icon {
  margin-bottom: 8px;
}
.internal-protein-card strong {
  color: #00524e;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.15;
}
.internal-protein-card:hover, .internal-protein-card:focus {
  outline: none;
  border-color: rgba(255, 159, 10, 0.8);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .internal-intro__grid,
  .internal-benefits__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 72px;
  }
  .internal-application-grid,
  .internal-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .internal-dark-band .internal-application-grid,
  .page-interna-tagat--ecossistema .internal-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .internal-protein-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .internal-application-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .internal-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .internal-dark-band .internal-application-grid,
  .page-interna-tagat--ecossistema .internal-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .internal-feature-section__split {
    grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1.15fr);
    gap: 80px;
  }
  .page-interna-tagat--desafios .internal-feature-section__split {
    grid-template-columns: minmax(300px, 360px) minmax(420px, 520px);
    gap: 60px;
    min-height: calc(430px + var(--challenge-card-count, 4) * 118px);
  }
  .page-interna-tagat--desafios .internal-feature-section__media {
    position: sticky;
    top: 112px;
  }
}
@media (max-width: 767px) {
  .internal-hero {
    padding: 32px 0 42px;
  }
  .internal-hero__frame {
    min-height: 430px;
  }
  .internal-hero__content {
    padding: 42px 28px;
  }
  .internal-hero__content h1 {
    font-size: 1.9rem;
  }
  .internal-tabs {
    margin-top: 28px;
  }
  .internal-intro,
  .internal-benefits {
    padding: 46px 0 58px;
  }
  .internal-intro__content h2,
  .internal-benefits__content h2 {
    font-size: 1.76rem;
  }
  .internal-summary {
    padding: 28px 0 54px;
  }
  .internal-summary h2 {
    font-size: 1.66rem;
  }
  .internal-feature-section {
    padding: 28px 0 68px;
  }
  .internal-feature-section__head {
    margin-bottom: 30px;
    text-align: left;
  }
  .internal-feature-section__head h2 {
    font-size: 1.66rem;
  }
  .internal-dark-band {
    padding: 0 0 52px;
  }
  .internal-dark-band__box {
    padding: 30px 28px 34px;
  }
  .internal-dark-band h2 {
    margin-bottom: 24px;
  }
  .internal-dark-band .internal-application-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .internal-dark-band .internal-application-card {
    grid-template-columns: 30px minmax(0, 1fr);
  }
  .page-interna-tagat--ecossistema .internal-feature-section {
    padding: 0 0 58px;
  }
  .page-interna-tagat--ecossistema .internal-feature-section__head {
    margin-bottom: 26px;
    text-align: center;
  }
  .page-interna-tagat--ecossistema .internal-feature-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .page-interna-tagat--desafios .internal-feature-section__head {
    max-width: 360px;
    margin-bottom: 24px;
  }
  .page-interna-tagat--desafios .internal-feature-section__head h2 {
    max-width: 330px;
    font-size: 1.46rem;
    line-height: 1.08;
  }
  .page-interna-tagat--desafios .internal-feature-section__head div {
    max-width: 330px;
  }
  .page-interna-tagat--desafios .internal-feature-section__split {
    --challenge-stack-offset: 56px;
    --challenge-stack-top: 50vh;
    max-width: 360px;
    min-height: calc(88vh + var(--challenge-card-count, 4) * 190px);
    gap: 30px;
  }
  .page-interna-tagat--desafios .internal-feature-section__media {
    order: -1;
    position: relative;
    top: auto;
    max-width: none;
    height: auto;
    aspect-ratio: 1.14;
  }
  .page-interna-tagat--desafios .internal-feature-section__media img {
    height: 100%;
    min-height: 0;
  }
  .page-interna-tagat--desafios .internal-feature-stack {
    max-width: none;
    padding-bottom: calc(70vh + (var(--challenge-card-count, 4) - 1) * var(--challenge-stack-offset, 56px));
  }
  .page-interna-tagat--desafios .internal-feature-stack::before {
    display: none;
  }
  .page-interna-tagat--desafios .internal-feature-stack .internal-feature-card {
    position: sticky;
    top: calc(var(--challenge-stack-top, 50vh) + var(--stack-index, 0) * var(--challenge-stack-offset, 56px));
    min-height: 184px;
    margin: 0 0 -28px;
    padding: 24px 22px 24px 70px;
  }
  .page-interna-tagat--desafios .internal-feature-stack .internal-feature-card:last-child {
    margin-bottom: 0;
  }
  .page-interna-tagat--desafios .internal-feature-stack .internal-feature-card .internal-card-icon {
    top: 24px;
    left: 22px;
    width: 34px;
    height: 34px;
  }
  .page-interna-tagat--desafios .internal-feature-stack .internal-feature-card h3 {
    max-width: 240px;
    font-size: 1.02rem;
    line-height: 1.14;
  }
  .page-interna-tagat--desafios .internal-feature-stack .internal-feature-card p,
  .page-interna-tagat--desafios .internal-feature-stack .internal-feature-card .internal-card-bullets {
    font-size: 0.8rem;
    line-height: 1.48;
  }
  .page-interna-tagat--desafios .internal-feature-stack .internal-feature-card.is-stack-active {
    z-index: 90;
    box-shadow: 0 18px 46px rgba(18, 32, 31, 0.13);
    transform: translateY(-3px);
  }
  .page-interna-tagat--desafios .internal-feature-stack .internal-feature-card.is-stack-before {
    transform: translateY(-6px);
  }
}
/* --------------------------------------------------------------------------
   PAGE BASIC FALLBACK
   -------------------------------------------------------------------------- */
.page-basic {
  overflow: hidden;
  background: #f3f2ea;
}
.page-basic__hero {
  padding: 92px 0 82px;
  border-bottom: 1px solid rgba(18, 32, 31, 0.1);
}
.page-basic__eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: #ff9f0a;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.page-basic h1 {
  max-width: 740px;
  margin: 0 0 24px;
  color: #00524e;
  font-size: 2.42rem;
  font-weight: 800;
  line-height: 1.1;
}
.page-basic__text {
  max-width: 650px;
}
.page-basic__text p {
  margin: 0;
  color: #12201f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.62;
}

@media (max-width: 767px) {
  .page-basic__hero {
    padding: 54px 0 58px;
  }
  .page-basic h1 {
    font-size: 1.86rem;
  }
}
/* --------------------------------------------------------------------------
   SINGLE POST
   -------------------------------------------------------------------------- */
.page-single-post {
  overflow: hidden;
  background: #f3f2ea;
}

.single-post-hero {
  padding: 78px 0 92px;
  border-bottom: 1px solid rgba(18, 32, 31, 0.12);
}
.single-post-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
.single-post-hero__content h1 {
  max-width: 690px;
  margin: 18px 0 24px;
  color: #00524e;
  font-size: 2.48rem;
  font-weight: 800;
  line-height: 1.08;
}
.single-post-hero__content p {
  max-width: 590px;
  margin: 0;
  color: #12201f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}
.single-post-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 26px;
  color: #00524e;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.single-post-hero__back::before {
  content: "←";
  font-size: 0.84rem;
  line-height: 1;
}
.single-post-hero__media {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.48;
  margin: 0;
  border-radius: 4px;
  background: rgba(0, 82, 78, 0.12);
}
.single-post-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post-category {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid #ff9f0a;
  border-radius: 999px;
  background: #fee4c2;
  color: #301805;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
}

.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 28px;
  color: #00524e;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.single-post-body {
  padding: 72px 0 94px;
}

.single-post-content {
  width: min(100%, 760px);
  margin: 0 auto;
  color: #12201f;
}
.single-post-content > *:first-child {
  margin-top: 0;
}
.single-post-content > *:last-child {
  margin-bottom: 0;
}
.single-post-content p,
.single-post-content li {
  color: #12201f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.72;
}
.single-post-content p {
  margin: 0 0 24px;
}
.single-post-content h2,
.single-post-content h3 {
  color: #00524e;
  font-weight: 800;
  line-height: 1.16;
}
.single-post-content h2 {
  margin: 46px 0 18px;
  font-size: 1.74rem;
}
.single-post-content h3 {
  margin: 34px 0 14px;
  font-size: 1.26rem;
}
.single-post-content ul,
.single-post-content ol {
  display: grid;
  gap: 10px;
  margin: 0 0 28px 22px;
}
.single-post-content ul {
  list-style: disc;
}
.single-post-content ol {
  list-style: decimal;
}
.single-post-content blockquote {
  margin: 38px 0;
  padding: 24px 28px;
  border-left: 5px solid #ff9f0a;
  background: #fbfaf5;
  color: #00524e;
}
.single-post-content blockquote p {
  color: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.48;
}
.single-post-content a {
  color: #00524e;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.single-post-content img {
  margin: 34px auto;
  border-radius: 4px;
}

.single-post-related {
  padding: 76px 0 118px;
  border-top: 1px solid rgba(18, 32, 31, 0.12);
  background: rgba(251, 250, 245, 0.6);
}
.single-post-related__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 36px;
}
.single-post-related__head h2 {
  margin: 0;
  color: #00524e;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}
.single-post-related__head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #00524e;
  border-radius: 3px;
  color: #00524e;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .single-post-hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1fr);
    gap: 64px;
  }
}
@media (max-width: 767px) {
  .single-post-hero {
    padding: 44px 0 58px;
  }
  .single-post-hero__content h1 {
    font-size: 1.92rem;
  }
  .single-post-hero__content p {
    font-size: 0.94rem;
  }
  .single-post-body {
    padding: 54px 0 68px;
  }
  .single-post-content p,
  .single-post-content li {
    font-size: 0.94rem;
  }
  .single-post-content h2 {
    font-size: 1.42rem;
  }
  .single-post-related {
    padding: 58px 0 78px;
  }
  .single-post-related__head h2 {
    font-size: 1.58rem;
  }
}
/* --------------------------------------------------------------------------
   SOBRE NOS
   -------------------------------------------------------------------------- */
.page-sobre {
  overflow: hidden;
  background: #f3f2ea;
}

.sobre-hero {
  padding: 68px 0 0;
}
.sobre-hero__frame {
  position: relative;
  min-height: 462px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(0, 82, 78, 0.88) 0%, rgba(0, 82, 78, 0.7) 35%, rgba(6, 47, 47, 0.18) 74%, rgba(6, 47, 47, 0.08) 100%), var(--sobre-hero-bg, linear-gradient(120deg, #092e2d 0%, #32534f 100%));
  background-position: center;
  background-size: cover;
}
.sobre-hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 47, 47, 0.08), rgba(6, 47, 47, 0.3));
  pointer-events: none;
}
.sobre-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
  padding: 58px 80px;
}
.sobre-hero__content h1 {
  max-width: 760px;
  margin: 0 0 28px;
  color: #ff9f0a;
  font-size: 2.42rem;
  font-weight: 800;
  line-height: 1.12;
}
.sobre-hero__text {
  max-width: 455px;
}
.sobre-hero__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.52;
}

.sobre-origin {
  padding: 122px 0 108px;
}
.sobre-origin__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 58px;
  align-items: center;
}
.sobre-origin__media {
  width: 100%;
  max-width: 568px;
  min-height: 310px;
  margin: 0 auto;
}
.sobre-origin__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.sobre-origin__content {
  max-width: 430px;
}
.sobre-origin__content h2 {
  margin: 0 0 22px;
  color: #12201f;
  font-size: 1.52rem;
  font-weight: 800;
  line-height: 1.16;
}
.sobre-origin__text p {
  margin: 0 0 20px;
  color: #12201f;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
}
.sobre-origin__text p:last-child {
  margin-bottom: 0;
}

.sobre-founders {
  padding: 0 0 104px;
}

.sobre-founder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
  align-items: center;
  margin-bottom: 116px;
}
.sobre-founder:last-child {
  margin-bottom: 0;
}
.sobre-founder__photo {
  width: 100%;
  max-width: 480px;
  min-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(236, 235, 226, 0.72)), #e8e7df;
}
.sobre-founder__photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
}
.sobre-founder__content {
  max-width: 470px;
}
.sobre-founder__content h2 {
  max-width: 390px;
  margin: 0 0 22px;
  color: #00524e;
  font-size: 1.58rem;
  font-weight: 800;
  line-height: 1.2;
}
.sobre-founder__text p {
  margin: 0;
  color: #12201f;
  font-size: 0.89rem;
  font-weight: 500;
  line-height: 1.52;
}

.sobre-mission {
  padding: 0 0 102px;
}
.sobre-mission__panel {
  position: relative;
  overflow: hidden;
  min-height: 378px;
  border-radius: 8px;
  background-color: #062f2f;
  background-image: linear-gradient(90deg, rgba(6, 47, 47, 0.82), rgba(6, 47, 47, 0.58)), var(--sobre-mission-bg, radial-gradient(circle at 48% 52%, rgba(0, 82, 78, 0.46), transparent 38%));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.sobre-mission__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 800px);
  margin: 0 auto;
  padding: 60px 32px 62px;
}
.sobre-mission__inner h2 {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.56rem;
  font-weight: 800;
  line-height: 1.15;
}
.sobre-mission__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.sobre-mission-card {
  min-height: 152px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(0, 82, 78, 0.6);
  border-radius: 4px;
  background: rgba(0, 82, 78, 0.62);
}
.sobre-mission-card__icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-bottom: 14px;
  color: #ff9f0a;
}
.sobre-mission-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.sobre-mission-card h3 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
}
.sobre-mission-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.42;
}

.page-sobre .contato-pre-footer {
  padding: 118px 0 122px;
}

.sobre-locations {
  padding: 74px 0 78px;
  background: #062f2f;
}
.sobre-locations h2 {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.52rem;
  font-weight: 800;
  line-height: 1.18;
}
.sobre-locations__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.sobre-location-card {
  min-height: 118px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 4px;
  background: rgba(0, 82, 78, 0.28);
}
.sobre-location-card h3 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}
.sobre-location-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.48;
}

@media (min-width: 768px) {
  .sobre-mission__grid,
  .sobre-locations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .sobre-origin__grid {
    grid-template-columns: minmax(420px, 0.96fr) minmax(360px, 0.74fr);
    gap: 98px;
  }
  .sobre-founder {
    grid-template-columns: minmax(430px, 0.78fr) minmax(360px, 0.72fr);
    gap: 92px;
  }
  .sobre-founder--reverse {
    grid-template-columns: minmax(360px, 0.72fr) minmax(430px, 0.78fr);
  }
  .sobre-founder--reverse .sobre-founder__photo {
    order: 2;
  }
  .sobre-founder--reverse .sobre-founder__content {
    order: 1;
    justify-self: end;
  }
  .sobre-mission__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sobre-locations__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .sobre-hero {
    padding-top: 28px;
  }
  .sobre-hero__frame {
    min-height: 430px;
  }
  .sobre-hero__content {
    padding: 42px 28px;
  }
  .sobre-hero__content h1 {
    font-size: 1.88rem;
  }
  .sobre-origin {
    padding: 72px 0 76px;
  }
  .sobre-founders {
    padding-bottom: 72px;
  }
  .sobre-founder {
    margin-bottom: 74px;
  }
  .sobre-founder__photo {
    min-height: 430px;
  }
  .sobre-founder__photo img {
    min-height: 430px;
  }
  .sobre-mission {
    padding-bottom: 76px;
  }
  .sobre-mission__inner {
    padding: 42px 24px;
  }
  .page-sobre .contato-pre-footer {
    padding-top: 76px;
  }
}
/* --------------------------------------------------------------------------
   PAGES: CASES E CONTATO
   -------------------------------------------------------------------------- */
.page-cases,
.page-contato {
  overflow: hidden;
  background: #f3f2ea;
}

.tagat-page-hero {
  padding: 68px 0 0;
}
.tagat-page-hero__frame {
  position: relative;
  min-height: 462px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(0, 82, 78, 0.9) 0%, rgba(0, 82, 78, 0.68) 36%, rgba(6, 47, 47, 0.2) 74%, rgba(6, 47, 47, 0.08) 100%), var(--page-hero-bg, linear-gradient(120deg, #092e2d 0%, #31534f 100%));
  background-position: center;
  background-size: cover;
}
.tagat-page-hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 47, 47, 0.08), rgba(6, 47, 47, 0.31));
  pointer-events: none;
}
.tagat-page-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 780px);
  padding: 58px 80px;
}
.tagat-page-hero__content h1 {
  max-width: 760px;
  margin: 0 0 28px;
  color: #ff9f0a;
  font-size: 2.42rem;
  font-weight: 800;
  line-height: 1.12;
}
.tagat-page-hero__text {
  max-width: 455px;
}
.tagat-page-hero__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.52;
}

.cases-list {
  padding: 88px 0 150px;
}
.cases-list__stack {
  overflow: hidden;
  border: 1px solid rgba(18, 32, 31, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.28);
}

.case-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 168px;
  border-bottom: 1px solid rgba(18, 32, 31, 0.16);
}
.case-row:last-child {
  border-bottom: 0;
}
.case-row--large {
  min-height: 330px;
}
.case-row__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 24px;
}
.case-row__content h2 {
  margin: 0 0 12px;
  color: #777b78;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.12;
}
.case-row__text {
  max-width: 500px;
}
.case-row__text p {
  margin: 0;
  color: #12201f;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
}
.case-row__media {
  min-height: 168px;
  overflow: hidden;
  background: #d8d8d8;
}
.case-row__media img,
.case-row__media span {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.cases-testimonials {
  padding: 74px 0 78px;
  background-color: #062f2f;
  background-image: linear-gradient(90deg, rgba(6, 47, 47, 0.9), rgba(6, 47, 47, 0.78)), var(--cases-testimonials-bg, radial-gradient(circle at 42% 50%, rgba(0, 82, 78, 0.42), transparent 40%));
  background-position: center;
  background-size: cover;
}
.cases-testimonials h2 {
  margin: 0 0 42px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.56rem;
  font-weight: 800;
  line-height: 1.15;
}
.cases-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.case-testimonial {
  min-height: 150px;
  padding: 34px 30px 26px;
  border-radius: 4px;
  background: #f3f2ea;
}
.case-testimonial blockquote {
  margin: 0 0 22px;
  color: #12201f;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.42;
}
.case-testimonial p {
  margin: 0;
  color: #00524e;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .cases-testimonials__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .case-row {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.86fr);
  }
  .case-row__content {
    padding: 42px 34px 38px 6px;
  }
  .case-row__media {
    margin: 16px 6px 16px 0;
    border-radius: 4px;
  }
}
@media (max-width: 767px) {
  .tagat-page-hero {
    padding-top: 28px;
  }
  .tagat-page-hero__frame {
    min-height: 430px;
  }
  .tagat-page-hero__content {
    padding: 42px 28px;
  }
  .tagat-page-hero__content h1 {
    font-size: 1.88rem;
  }
  .cases-list {
    padding: 58px 0 88px;
  }
  .case-row--large {
    min-height: 0;
  }
  .case-row__media {
    min-height: 220px;
  }
  .cases-testimonials {
    padding: 58px 0 62px;
  }
}
/* --------------------------------------------------------------------------
   BUSCA
   -------------------------------------------------------------------------- */
.page-search {
  background: #f3f2ea;
}

.search-hero {
  padding: 92px 0 76px;
  background: #062f2f;
}
.search-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-bottom: 18px;
  padding: 0 10px;
  border: 1px solid rgba(255, 159, 10, 0.42);
  border-radius: 999px;
  color: #ff9f0a;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.search-hero h1 {
  max-width: 720px;
  margin: 0 0 30px;
  color: #ffffff;
  font-size: 2.34rem;
  font-weight: 800;
  line-height: 1.12;
}

.search-page-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(100%, 650px);
}
.search-page-form input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  color: #12201f;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
}
.search-page-form button {
  height: 50px;
  border: 0;
  border-radius: 4px;
  background: #ff9f0a;
  color: #12201f;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.search-results-section {
  min-height: 420px;
  padding: 72px 0 104px;
}

.search-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.search-result-card {
  padding: 24px 24px 22px;
  border: 1px solid rgba(0, 82, 78, 0.16);
  border-radius: 4px;
  background: #fbfaf5;
}
.search-result-card > span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-bottom: 14px;
  padding: 0 8px;
  border: 1px solid #ff9f0a;
  border-radius: 999px;
  background: #fee4c2;
  color: #301805;
  font-size: 0.56rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.search-result-card h2 {
  margin: 0 0 12px;
  color: #00524e;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.24;
}
.search-result-card p {
  min-height: 44px;
  margin: 0 0 18px;
  color: #596763;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.48;
}
.search-result-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid #00524e;
  border-radius: 2px;
  color: #00524e;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.search-result-card__link::after {
  content: "→";
  margin-left: 6px;
  font-size: 0.76rem;
}

.search-empty {
  max-width: 560px;
  padding: 34px;
  border: 1px solid rgba(0, 82, 78, 0.16);
  border-radius: 4px;
  background: #fbfaf5;
}
.search-empty h2 {
  margin: 0 0 12px;
  color: #00524e;
  font-size: 1.48rem;
  font-weight: 800;
  line-height: 1.18;
}
.search-empty p {
  margin: 0;
  color: #596763;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .search-page-form {
    grid-template-columns: 1fr 136px;
  }
  .search-results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .search-hero {
    padding: 72px 0 58px;
  }
  .search-hero h1 {
    font-size: 1.86rem;
  }
}
/* --------------------------------------------------------------------------
   CONTATO
   -------------------------------------------------------------------------- */
.contato-pre-footer {
  padding: 34px 0 126px;
  background: #f3f2ea;
}
.contato-pre-footer .contato-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}
.contato-pre-footer .contato-box__left {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 34px;
  border-radius: 8px;
  background: #062f2f;
}
.contato-pre-footer .contato-box__left h2 {
  max-width: 330px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.14;
}
.contato-pre-footer .contato-box__left .contato-desc {
  max-width: 330px;
}
.contato-pre-footer .contato-box__left .contato-desc p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.56;
}
.contato-pre-footer .contato-box__right .form-wrapper {
  width: 100%;
  padding: 34px 30px 32px;
  border: 1px solid rgba(0, 82, 78, 0.28);
  border-radius: 6px;
  background: #e9e8d8;
}
.contato-pre-footer .contato-box__right h3 {
  margin: 0 0 22px;
  color: #12201f;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}
.contato-pre-footer .contato-box .contato-infos {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.contato-pre-footer .contato-box .info-item {
  display: inline-grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  width: fit-content;
  color: #ffffff;
}
.contato-pre-footer .contato-box .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 159, 10, 0.56);
  border-radius: 6px;
  color: #ff9f0a;
}
.contato-pre-footer .contato-box .text-box span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.contato-pre-footer .contato-box .text-box strong {
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
}
.contato-pre-footer .tagat-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 18px;
}
.contato-pre-footer .tagat-form-grid label {
  display: block;
  color: rgba(18, 32, 31, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
}
.contato-pre-footer .tagat-form-grid .wpcf7-form-control-wrap {
  display: block;
  margin-top: 7px;
}
.contato-pre-footer .tagat-form-grid input[type=text],
.contato-pre-footer .tagat-form-grid input[type=email],
.contato-pre-footer .tagat-form-grid input[type=tel],
.contato-pre-footer .tagat-form-grid textarea {
  width: 100%;
  border: 1px solid rgba(0, 82, 78, 0.1);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.78);
  color: #12201f;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
  transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}
.contato-pre-footer .tagat-form-grid input[type=text]:focus,
.contato-pre-footer .tagat-form-grid input[type=email]:focus,
.contato-pre-footer .tagat-form-grid input[type=tel]:focus,
.contato-pre-footer .tagat-form-grid textarea:focus {
  outline: none;
  border-color: rgba(0, 82, 78, 0.44);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 82, 78, 0.08);
}
.contato-pre-footer .tagat-form-grid input[type=text].is-valid,
.contato-pre-footer .tagat-form-grid input[type=email].is-valid,
.contato-pre-footer .tagat-form-grid input[type=tel].is-valid,
.contato-pre-footer .tagat-form-grid textarea.is-valid {
  border-color: #71b982;
  background: #f0faf3;
  box-shadow: 0 0 0 3px rgba(113, 185, 130, 0.12);
}
.contato-pre-footer .tagat-form-grid input[type=text].is-invalid, .contato-pre-footer .tagat-form-grid input[type=text].wpcf7-not-valid,
.contato-pre-footer .tagat-form-grid input[type=email].is-invalid,
.contato-pre-footer .tagat-form-grid input[type=email].wpcf7-not-valid,
.contato-pre-footer .tagat-form-grid input[type=tel].is-invalid,
.contato-pre-footer .tagat-form-grid input[type=tel].wpcf7-not-valid,
.contato-pre-footer .tagat-form-grid textarea.is-invalid,
.contato-pre-footer .tagat-form-grid textarea.wpcf7-not-valid {
  border-color: #d96860;
  background: #fff1ef;
  box-shadow: 0 0 0 3px rgba(217, 104, 96, 0.12);
}
.contato-pre-footer .tagat-form-grid input[type=text],
.contato-pre-footer .tagat-form-grid input[type=email],
.contato-pre-footer .tagat-form-grid input[type=tel] {
  height: 38px;
  padding: 0 11px;
}
.contato-pre-footer .tagat-form-grid textarea {
  height: 112px;
  min-height: 112px;
  padding: 11px;
  resize: vertical;
}
@media (min-width: 768px) {
  .contato-pre-footer .tagat-form-grid .span-2 {
    grid-column: span 2;
  }
}
.contato-pre-footer .tagat-form-grid .field-error {
  display: block;
  margin-top: 6px;
  color: #a8322b;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
}
.contato-pre-footer .tagat-form-grid input[type=submit] {
  width: 100%;
  min-height: 47px;
  border: 0;
  border-radius: 4px;
  background: #ff9f0a;
  color: #12201f;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}
.contato-pre-footer .tagat-form-grid input[type=submit]:hover {
  background: #f6b21b;
}
.contato-pre-footer .tagat-form-grid input[type=submit]:disabled {
  background: #ffc15e;
  color: rgba(18, 32, 31, 0.72);
  cursor: wait;
  opacity: 0.82;
}
.contato-pre-footer .tagat-form-grid input[type=submit].is-submit-success {
  background: #71b982;
  color: #062f2f;
}
.contato-pre-footer .submit-wrapper {
  position: relative;
}
.contato-pre-footer .wpcf7-form.is-submitting .submit-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 2px solid rgba(18, 32, 31, 0.22);
  border-top-color: #12201f;
  border-radius: 50%;
  animation: tagat-form-spin 0.7s linear infinite;
  pointer-events: none;
}
.contato-pre-footer .wpcf7-spinner,
.contato-pre-footer .wpcf7-not-valid-tip,
.contato-pre-footer .wpcf7-response-output {
  display: none !important;
}
.contato-pre-footer .tagat-error-msg,
.contato-pre-footer .tagat-success-msg {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}
.contato-pre-footer .tagat-error-msg {
  border: 1px solid rgba(201, 74, 63, 0.35);
  background: #fff0ed;
  color: #9c2f27;
}
.contato-pre-footer .tagat-success-msg {
  border: 1px solid rgba(79, 143, 98, 0.35);
  background: #eff8f0;
  color: #2e6f43;
}
@media (min-width: 768px) {
  .contato-pre-footer .tagat-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .contato-pre-footer .contato-box {
    grid-template-columns: 0.93fr 0.78fr;
    gap: 0;
  }
  .contato-pre-footer .contato-box__left {
    min-height: 380px;
    padding: 64px 56px;
  }
  .contato-pre-footer .contato-box__right {
    margin-left: -76px;
  }
  .contato-pre-footer .contato-box__right .form-wrapper {
    padding: 38px 36px 34px;
  }
}

@keyframes tagat-form-spin {
  to {
    transform: rotate(360deg);
  }
}
body.tagat-form-modal-open {
  overflow: hidden;
}

.tagat-form-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}
.tagat-form-modal[hidden] {
  display: none;
}
.tagat-form-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.tagat-form-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 47, 47, 0.78);
  cursor: pointer;
}
.tagat-form-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 464px);
  padding: 34px 34px 32px;
  border: 1px solid rgba(255, 159, 10, 0.28);
  border-radius: 8px;
  background: #f3f2ea;
  color: #12201f;
  box-shadow: 0 28px 70px rgba(18, 32, 31, 0.36);
  transform: translateY(10px);
  transition: transform 0.24s ease;
}
.tagat-form-modal__dialog:focus {
  outline: none;
}
.tagat-form-modal.is-open .tagat-form-modal__dialog {
  transform: translateY(0);
}
.tagat-form-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 82, 78, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.54);
  color: #00524e;
  cursor: pointer;
}
.tagat-form-modal__close:hover, .tagat-form-modal__close:focus {
  outline: none;
  border-color: rgba(255, 159, 10, 0.56);
  color: #12201f;
}
.tagat-form-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 16px;
  padding: 0 10px;
  border: 1px solid rgba(255, 159, 10, 0.5);
  border-radius: 999px;
  background: #fee4c2;
  color: #301805;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.tagat-form-modal h2 {
  max-width: 360px;
  margin: 0 0 14px;
  color: #00524e;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.12;
}
.tagat-form-modal p {
  margin: 0 0 22px;
  color: #12201f;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}
.tagat-form-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  background: #ff9f0a;
  color: #12201f;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}
.tagat-form-modal__button:hover, .tagat-form-modal__button:focus {
  outline: none;
  background: #f6b21b;
}

@media (max-width: 480px) {
  .tagat-form-modal {
    padding: 18px;
  }
  .tagat-form-modal__dialog {
    padding: 30px 24px 26px;
  }
  .tagat-form-modal h2 {
    font-size: 1.42rem;
  }
}
/* --------------------------------------------------------------------------
   PÁGINA CONTATO
   -------------------------------------------------------------------------- */
.contact-page-body {
  padding: 142px 0 158px;
  background-image: linear-gradient(90deg, rgba(243, 242, 234, 0.18), rgba(243, 242, 234, 0.42)), var(--contact-page-bg, radial-gradient(ellipse at 36% 54%, rgba(0, 82, 78, 0.09), transparent 54%));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-page-body__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

.contact-page-form.contato-pre-footer {
  padding: 0;
  background: transparent;
}
.contact-page-form .contato-box__right .form-wrapper {
  width: 100%;
  max-width: 506px;
  margin: 0 auto;
  padding: 38px 34px 34px;
}
.contact-page-form .tagat-form-grid {
  gap: 18px 20px;
}
.contact-page-form .tagat-form-grid input[type=text],
.contact-page-form .tagat-form-grid input[type=email],
.contact-page-form .tagat-form-grid input[type=tel] {
  height: 42px;
}
.contact-page-form .tagat-form-grid textarea {
  height: 128px;
  min-height: 128px;
}

.contact-page-info {
  max-width: 455px;
  color: #12201f;
}
.contact-page-info h2 {
  margin: 0 0 24px;
  color: #12201f;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.15;
}
.contact-page-info__text {
  max-width: 430px;
  margin-bottom: 28px;
}
.contact-page-info__text p {
  margin: 0;
  color: #12201f;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.52;
}
.contact-page-info__addresses {
  display: grid;
  gap: 26px;
}
.contact-page-info__addresses h3 {
  margin: 0 0 6px;
  color: #12201f;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}
.contact-page-info__addresses p {
  margin: 0;
  color: #12201f;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
}

@media (min-width: 1024px) {
  .contact-page-body__grid {
    grid-template-columns: minmax(420px, 0.8fr) minmax(360px, 0.72fr);
    gap: 86px;
  }
  .contact-page-form {
    justify-self: end;
  }
}
@media (max-width: 767px) {
  .contact-page-body {
    padding: 72px 0 86px;
  }
  .contact-page-form .contato-box__right .form-wrapper {
    padding: 32px 24px 30px;
  }
}
/* --------------------------------------------------------------------------
   POLITICA
   -------------------------------------------------------------------------- */
.page-politica {
  background: #f3f2ea;
  color: #12201f;
}

.politica-hero {
  padding: 104px 0 76px;
  background: #062f2f;
}
.politica-hero__eyebrow {
  display: block;
  margin-bottom: 18px;
  color: #ff9f0a;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.politica-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.08;
}
.politica-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.68;
}

.politica-body {
  padding: 76px 0 112px;
}
.politica-body__container {
  max-width: 980px;
}

.politica-card {
  padding: 42px 28px;
  border-top: 6px solid #ff9f0a;
  border-radius: 4px;
  background: #ffffff;
}

.politica-content {
  color: rgba(18, 32, 31, 0.82);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}
.politica-content p {
  margin-bottom: 24px;
}
.politica-content h2,
.politica-content h3,
.politica-content h4 {
  margin: 42px 0 16px;
  color: #00524e;
  font-weight: 800;
  line-height: 1.25;
}
.politica-content h2 {
  font-size: 1.38rem;
}
.politica-content h3 {
  font-size: 1.18rem;
}
.politica-content ul,
.politica-content ol {
  margin: 0 0 26px 22px;
  padding: 0;
}
.politica-content li {
  margin-bottom: 12px;
}
.politica-content a {
  color: #00524e;
  font-weight: 800;
  border-bottom: 1px solid rgba(0, 82, 78, 0.32);
}
.politica-content strong,
.politica-content b {
  color: #12201f;
  font-weight: 800;
}

@media (min-width: 768px) {
  .politica-card {
    padding: 58px 64px 64px;
  }
  .politica-hero h1 {
    font-size: 4rem;
  }
}
/* --------------------------------------------------------------------------
   COOKIES
   -------------------------------------------------------------------------- */
.tagat-cookies-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  padding: 12px 0;
  background: #062f2f;
  box-shadow: 0 -16px 34px rgba(18, 32, 31, 0.18);
  transform: translateY(105%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.tagat-cookies-banner.is-visible {
  transform: translateY(0);
}

.tagat-cookies-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}
.tagat-cookies-container p {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.48;
}
.tagat-cookies-container a {
  color: #ff9f0a;
  font-weight: 800;
}
@media (min-width: 768px) {
  .tagat-cookies-container {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
  .tagat-cookies-container p {
    font-size: 0.86rem;
    line-height: 1.62;
  }
}

.tagat-cookies-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  background: #ff9f0a;
  color: #12201f;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}
.tagat-cookies-button:hover {
  background: #f6b21b;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=main.css.map */
