.site-footer {
  position: relative;
  margin-top: 0;
  padding: 78px 0 0;
  background: var(--tm-forest-2);
  color: #c9d9cf;
}
.footer-grid { display:grid;grid-template-columns:1.35fr repeat(3,1fr);gap:54px; }
.footer-logo { width:205px;margin-bottom:22px;filter:brightness(0) invert(1); }
.footer-brand p { max-width:390px;color:#aebfb4; }
.footer-contact {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  font-style: normal;
}
.footer-contact__item {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  color: #e5eee8;
  line-height: 1.45;
}
.footer-contact a.footer-contact__item:hover,
.footer-contact a.footer-contact__item:focus-visible {
  color: #fff;
}
.footer-contact__icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--tm-lime);
}
.footer-contact__icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-contact__icon--whatsapp {
  color: #9fca6a;
}
.footer-contact__item--location {
  color: #c9d9cf;
}
.site-footer h3 { margin-bottom:18px;color:#fff;font-size:1rem;letter-spacing:0; }
.site-footer ul { list-style:none;padding:0; }
.site-footer li { margin:9px 0; }
.site-footer a { color:#c9d9cf; }
.site-footer a:hover { color:var(--tm-lime); }
.footer-bottom { display:flex;justify-content:space-between;gap:22px;flex-wrap:wrap;margin-top:54px;padding:24px 0;border-top:1px solid rgba(255,255,255,.12);color:#96aa9e;font-size:.85rem; }
.footer-legal { display:flex;gap:10px; }

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  z-index: 2147482000;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: var(--tm-matcha);
  color: #fff;
  font: inherit;
  line-height: 1;
  box-shadow: var(--tm-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 10px, 0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s, background-color .2s ease;
}
html.tm-page-has-scrolled .back-to-top,
.back-to-top.is-visible,
.back-to-top[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}
.back-to-top:focus-visible,
.back-to-top:active,
.back-to-top.is-pressed {
  background: var(--tm-forest);
}

@media (hover:hover) and (pointer:fine) {
  .back-to-top:hover {
    background: var(--tm-forest);
  }
}

@media (hover:none), (pointer:coarse) {
  .back-to-top:hover:not(:active):not(.is-pressed),
  .back-to-top:focus:not(:focus-visible):not(.is-pressed) {
    background: var(--tm-matcha);
  }
}

@media (max-width:980px) {
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
}
@media (max-width:620px) {
  .site-footer { padding-top:58px; }
  .footer-grid { grid-template-columns:1fr;gap:28px; }
  .footer-brand { grid-column:auto; }
  .footer-bottom { margin-top:36px;display:grid; }
}
@media (max-width:767px) {
  .back-to-top {
    right: max(18px, env(safe-area-inset-right, 0px));
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    z-index: 2147483000;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255,255,255,.72);
    box-shadow: 0 14px 34px rgba(21,55,38,.28);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
}
@media (prefers-reduced-motion:reduce) {
  .back-to-top { transition:none; }
}

