:root {
  --gt-ink: #07140e;
  --gt-forest: #0e2a1c;
  --gt-pine: #164a32;
  --gt-leaf: #25b85d;
  --gt-mint: #7ee0a3;
  --gt-glow: #c6f5d4;
  --gt-gold: #d4b56a;
  --gt-cream: #f4f0e6;
  --gt-paper: #fbf8f1;
  --gt-white: #ffffff;
  --gt-muted: #5c6b62;
  --gt-line: rgba(14, 42, 28, 0.1);
  --gt-shadow: 0 24px 60px rgba(7, 20, 14, 0.16);
  --gt-radius: 28px;
  --gt-font: "Figtree", system-ui, sans-serif;
  --gt-display: "Syne", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--gt-font);
  color: var(--gt-ink);
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(37, 184, 93, 0.12), transparent 55%),
    linear-gradient(180deg, #f7f4ec 0%, #fbf8f1 40%, #f3eee3 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.page-wrapper {
  position: relative;
  padding-top: var(--gt-chrome-h, 132px);
  transition: padding-top 0.28s ease;
}

.gt-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.gt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 184, 93, 0.12);
  color: var(--gt-pine);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gt-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gt-leaf);
  box-shadow: 0 0 0 4px rgba(37, 184, 93, 0.18);
}

h1, h2, h3, .gt-display {
  font-family: var(--gt-display);
  letter-spacing: -0.04em;
}

.gt-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  color: #d7e8dc;
  font-size: 13px;
}

.gt-topbar-wrap {
  background: var(--gt-ink);
  max-height: 80px;
  overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.28s ease;
}

.gt-chrome.is-scrolled .gt-topbar-wrap {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.gt-topbar a {
  color: #fff;
}

.gt-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gt-btn:hover {
  transform: translateY(-1px);
}

.gt-btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.gt-btn-solid {
  background: linear-gradient(135deg, #25b85d 0%, #148a42 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 184, 93, 0.28);
}

.gt-btn-dark {
  background: var(--gt-ink);
  color: #fff;
}

.gt-btn-outline {
  background: transparent;
  border-color: rgba(7, 20, 14, 0.16);
  color: var(--gt-ink);
}

.gt-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(251, 248, 241, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gt-line);
  transition: box-shadow 0.25s ease;
}

.gt-chrome.is-scrolled {
  box-shadow: 0 12px 32px rgba(7, 20, 14, 0.12);
}

.gt-chrome.is-scrolled .gt-nav {
  min-height: 68px;
}

.gt-chrome.is-scrolled .gt-logo img {
  height: 48px;
}

.gt-header {
  position: relative;
  z-index: 1;
  background: transparent;
  border-bottom: 0;
}

.gt-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  transition: min-height 0.2s ease;
}

.gt-logo img {
  height: 58px;
  width: auto;
  transition: height 0.2s ease;
}

.main-menu__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
  align-items: center;
}

.main-menu__list > li > a {
  display: block;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gt-forest);
}

.main-menu__list > li > a:hover,
.main-menu__list > li.current > a {
  background: #fff;
  box-shadow: 0 6px 16px rgba(7, 20, 14, 0.08);
}

.gt-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.gt-translate {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-height: 42px;
  padding: 4px 10px 4px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--gt-line);
  box-shadow: 0 8px 20px rgba(7, 20, 14, 0.06);
  overflow: visible;
}

.gt-translate > i {
  color: var(--gt-leaf);
  font-size: 16px;
}

#google_translate_element,
#google_translate_element .skiptranslate {
  display: flex !important;
  align-items: center;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.goog-te-gadget img,
.goog-te-gadget .goog-logo-link,
.goog-te-gadget span[style],
.goog-te-gadget > span > a {
  display: none !important;
}

.goog-te-gadget .goog-te-combo {
  appearance: none;
  -webkit-appearance: none;
  min-width: 148px;
  max-width: 180px;
  height: 32px;
  margin: 0 !important;
  padding: 0 26px 0 4px !important;
  border: 0 !important;
  background-color: transparent !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23164a32' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  font-family: var(--gt-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--gt-forest) !important;
  cursor: pointer;
  outline: none;
}

.goog-te-banner-frame.skiptranslate,
.skiptranslate iframe.skiptranslate,
iframe.goog-te-banner-frame {
  display: none !important;
  visibility: hidden !important;
}

body {
  top: 0 !important;
}

.goog-te-gadget-simple {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

.mobile-nav__toggler {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: var(--gt-ink);
  color: #fff;
  font-size: 20px;
}

.gt-hero {
  position: relative;
  padding: 56px 0 40px;
}

.gt-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "copy visual"
    "stats visual";
  gap: 28px 48px;
  align-items: center;
}

.gt-hero-copy { grid-area: copy; }
.gt-visual { grid-area: visual; }
.gt-stats { grid-area: stats; }

.gt-hero h1 {
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.02;
  margin: 16px 0 18px;
  overflow-wrap: anywhere;
}

.gt-hero h1 span {
  background: linear-gradient(90deg, #148a42, #25b85d 45%, #d4b56a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gt-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gt-muted);
  max-width: 540px;
}

.gt-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

.gt-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 480px;
}

.gt-stat {
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--gt-line);
}

.gt-stat strong {
  display: block;
  font-family: var(--gt-display);
  font-size: 26px;
}

.gt-stat span {
  font-size: 12px;
  color: var(--gt-muted);
}

.gt-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  z-index: -1;
}

.gt-orb-1 {
  width: 280px;
  height: 280px;
  background: rgba(37, 184, 93, 0.28);
  top: 40px;
  right: 8%;
}

.gt-orb-2 {
  width: 180px;
  height: 180px;
  background: rgba(212, 181, 106, 0.28);
  bottom: 0;
  left: 12%;
}

.gt-visual {
  position: relative;
}

.gt-hero-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--gt-shadow);
}

.gt-card-thumb {
  width: 100%;
  height: 148px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
}

.gt-card.featured .gt-card-thumb {
  height: 230px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gt-console {
  position: relative;
  border-radius: 32px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    var(--gt-forest);
  color: #e9f7ee;
  box-shadow: var(--gt-shadow);
  overflow: hidden;
}

.gt-console::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(37, 184, 93, 0.55), transparent 70%);
}

.gt-console-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.gt-dots {
  display: flex;
  gap: 6px;
}

.gt-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7ee0a3;
}

.gt-dots span:nth-child(2) { background: #d4b56a; }
.gt-dots span:nth-child(3) { background: #fff; opacity: 0.4; }

.gt-panel-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.gt-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 16px;
}

.gt-panel h4 {
  margin: 0 0 8px;
  font-size: 14px;
}

.gt-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 110px;
}

.gt-bars i {
  display: block;
  width: 18px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, var(--gt-mint), #1a8f48);
  animation: rise 2.2s ease both;
}

.gt-bars i:nth-child(1) { height: 42%; }
.gt-bars i:nth-child(2) { height: 68%; animation-delay: 0.1s; }
.gt-bars i:nth-child(3) { height: 54%; animation-delay: 0.2s; }
.gt-bars i:nth-child(4) { height: 86%; animation-delay: 0.3s; }
.gt-bars i:nth-child(5) { height: 70%; animation-delay: 0.4s; }
.gt-bars i:nth-child(6) { height: 94%; animation-delay: 0.5s; }

.gt-chip-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gt-chip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(14, 42, 28, 0.35);
  font-size: 13px;
}

.gt-chip b {
  color: var(--gt-mint);
}

.gt-float-card {
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: 210px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  color: var(--gt-ink);
  box-shadow: var(--gt-shadow);
}

.gt-float-card small {
  color: var(--gt-muted);
}

.gt-marquee-wrap {
  border-block: 1px solid var(--gt-line);
  background: #fff8;
  overflow: hidden;
  padding: 16px 0;
}

.gt-marquee {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-weight: 700;
  color: var(--gt-pine);
}

.gt-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.gt-marquee span::before {
  content: "✓";
  color: var(--gt-leaf);
}

.gt-section {
  padding: 88px 0;
}

.gt-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 12px 0 16px;
}

.gt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.gt-copy p {
  color: var(--gt-muted);
  line-height: 1.8;
  font-size: 17px;
}

.gt-photo {
  position: relative;
}

.gt-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--gt-shadow);
}

.gt-photo-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--gt-ink);
  color: #fff;
  padding: 14px 16px;
  border-radius: 16px;
}

.gt-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.gt-card {
  background: #fff;
  border: 1px solid var(--gt-line);
  border-radius: var(--gt-radius);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(7, 20, 14, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gt-shadow);
}

.gt-card.featured {
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%),
    var(--gt-ink);
  color: #edf8f0;
}

.gt-card.featured p {
  color: #cfe6d7;
}

.gt-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(37, 184, 93, 0.12);
  color: var(--gt-leaf);
  font-size: 18px;
  margin-bottom: 16px;
}

.gt-card h3 {
  font-size: 22px;
  margin: 0 0 10px;
}

.gt-card p {
  color: var(--gt-muted);
  line-height: 1.7;
  margin: 0;
}

.gt-card.featured p {
  color: #cfe6d7;
}

.gt-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}

.gt-step {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--gt-line);
}

.gt-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--gt-display);
  font-size: 42px;
  color: var(--gt-leaf);
  display: block;
  margin-bottom: 8px;
}

.gt-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gt-value {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--gt-line);
}

.gt-value strong {
  display: block;
  margin-bottom: 4px;
}

.gt-value span {
  color: var(--gt-muted);
  font-size: 14px;
  line-height: 1.6;
}

.gt-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gt-app {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  background: var(--gt-forest);
  color: #eaf7ee;
  border-radius: 40px;
  padding: 48px;
  overflow: hidden;
}

.gt-legal {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--gt-line);
  border-radius: 32px;
  padding: 40px 44px 48px;
  box-shadow: 0 18px 40px rgba(7, 20, 14, 0.06);
}

.gt-legal h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 8px;
}

.gt-legal .gt-legal-meta {
  color: var(--gt-muted);
  margin-bottom: 28px;
}

.gt-legal h2 {
  font-size: 22px;
  margin: 28px 0 10px;
}

.gt-legal p,
.gt-legal li {
  color: var(--gt-muted);
  line-height: 1.8;
  font-size: 16px;
}

.gt-legal ul {
  padding-left: 18px;
  margin: 0 0 8px;
}

.gt-legal li {
  margin: 6px 0;
}

.gt-legal a {
  color: var(--gt-pine);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 575px) {
  .gt-legal {
    padding: 24px 20px 32px;
    border-radius: 22px;
  }
}

.gt-app h2,
.gt-app p {
  color: inherit;
}

.gt-app h2 span {
  font-size: 0.48em;
  letter-spacing: 0;
  color: var(--gt-mint);
}

.gt-app p {
  opacity: 0.82;
}

.gt-stores {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.gt-stores img {
  height: 52px;
  width: auto;
}

.gt-app-photo img {
  max-height: 460px;
  margin: 0 auto;
  display: block;
}

.gt-map-wrap {
  background: #fff;
  border-radius: 32px;
  padding: 20px;
  border: 1px solid var(--gt-line);
}

.map-container {
  position: relative;
  display: block;
}

.map-container img {
  width: 100%;
}

.map-container .point {
  cursor: pointer;
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--gt-leaf);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(37, 184, 93, 0.18);
  animation: pulse 2.6s infinite;
}

.map-container .brasil { top: 64%; left: 28%; }
.map-container .argentina { top: 77%; left: 27%; }
.map-container .panama { top: 51%; left: 18%; }
.map-container .mexico { top: 38%; left: 12%; }
.map-container .usa { top: 26%; left: 17%; }
.map-container .arabia { top: 38%; left: 58%; }
.map-container .turquia { top: 32%; left: 56%; }
.map-container .rusia { top: 22%; left: 68%; }
.map-container .china { top: 36%; left: 76%; }
.map-container .japon { top: 34%; left: 86%; }
.map-container .australia { top: 72%; left: 84%; }
.map-container .india { top: 42%; left: 68%; }

.gt-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 42px;
  border-radius: 36px;
  background:
    linear-gradient(120deg, rgba(37, 184, 93, 0.92), rgba(14, 42, 28, 0.94)),
    #0e2a1c;
  color: #fff;
}

.gt-cta h2 {
  margin: 0 0 8px;
}

.gt-footer {
  background: var(--gt-ink);
  color: #d5e6db;
  padding: 64px 0 0;
  margin-top: 20px;
}

.gt-footer h3 {
  color: #fff;
  font-size: 18px;
}

.gt-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}

.gt-footer a:hover {
  color: var(--gt-mint);
}

.gt-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gt-footer li {
  margin: 8px 0;
}

.gt-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 13px;
  line-height: 1.7;
  color: #9fb3a6;
}

.gt-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gt-social {
  display: flex;
  gap: 10px;
}

.gt-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gt-leaf);
  color: #fff;
  display: none;
  text-align: center;
  line-height: 46px;
  z-index: 50;
}

.mobile-nav__wrapper {
  position: fixed;
  inset: 0;
  z-index: 999;
  visibility: hidden;
}

.mobile-nav__wrapper.expanded {
  visibility: visible;
}

.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 14, 0.55);
  opacity: 0;
}

.mobile-nav__wrapper.expanded .mobile-nav__overlay {
  opacity: 1;
}

.mobile-nav__content {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(360px, 88vw);
  background: #fff;
  padding: 28px 22px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow: auto;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  transform: none;
}

.mobile-nav__close {
  float: right;
  font-size: 20px;
  cursor: pointer;
}

.mobile-nav__container .main-menu__list {
  display: block;
  margin-top: 40px;
}

.mobile-nav__container .main-menu__list > li > a {
  padding: 12px 0;
  border-bottom: 1px solid var(--gt-line);
  border-radius: 0;
}

.mobile-nav__contact {
  margin-top: 24px;
  padding: 0;
}

@keyframes rise {
  from { transform: scaleY(0.2); opacity: 0.4; transform-origin: bottom; }
  to { transform: scaleY(1); opacity: 1; transform-origin: bottom; }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 184, 93, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(37, 184, 93, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 184, 93, 0); }
}

@media (max-width: 991px) {
  .main-menu-box .main-menu__list {
    display: none;
  }

  .mobile-nav__toggler {
    display: inline-flex;
  }

  .gt-nav {
    gap: 10px;
  }

  .gt-logo img {
    height: 46px;
  }

  .gt-translate {
    flex-shrink: 0;
    min-width: auto;
    padding: 4px 8px 4px 10px;
  }

  .gt-hero-grid,
  .gt-split,
  .gt-app,
  .gt-footer-grid,
  .gt-cta,
  .gt-process,
  .gt-why,
  .gt-bento,
  .gt-panel-grid {
    grid-template-columns: 1fr;
  }

  .gt-hero-grid {
    grid-template-areas:
      "copy"
      "visual"
      "stats";
  }

  .gt-card.featured {
    grid-row: auto;
  }

  .gt-hero {
    padding-top: 28px;
  }

  .gt-hero-photo img {
    height: 280px;
  }

  .gt-float-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .gt-photo img {
    height: 280px;
  }

  .gt-app {
    padding: 28px;
  }

  .gt-cta {
    padding: 28px;
  }

  .gt-translate {
    min-width: 0;
    padding: 4px 8px 4px 10px;
  }

  .goog-te-gadget .goog-te-combo {
    min-width: 118px;
    max-width: 132px;
    font-size: 12px !important;
  }
}

@media (max-width: 575px) {
  .gt-stats,
  .gt-values {
    grid-template-columns: 1fr;
  }

  .gt-topbar .wg,
  .gt-topbar .gt-btn-solid {
    display: none;
  }

  .gt-hero h1 {
    font-size: clamp(28px, 11vw, 40px);
  }

  .gt-section {
    padding: 64px 0;
  }

  .gt-actions .gt-btn {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .goog-te-gadget .goog-te-combo {
    min-width: 104px;
    max-width: 118px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
