:root {
  --tglp-bg: #020705;
  --tglp-bg-2: #04140c;
  --tglp-panel: rgba(255,255,255,.055);
  --tglp-panel-strong: rgba(255,255,255,.085);
  --tglp-line: rgba(255,255,255,.16);
  --tglp-line-green: rgba(0, 245, 111, .34);
  --tglp-text: #f8fff9;
  --tglp-muted: rgba(248,255,249,.72);
  --tglp-soft: rgba(248,255,249,.56);
  --tglp-primary: #00f06a;
  --tglp-primary-2: #6cff9d;
  --tglp-dark-on-primary: #001407;
  --tglp-radius-xl: 34px;
  --tglp-radius-lg: 24px;
  --tglp-radius-md: 18px;
  --tglp-shadow: 0 26px 90px rgba(0,0,0,.42);
}

html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body.tglp-standalone { margin: 0 !important; background: var(--tglp-bg); }
body.tglp-standalone.admin-bar .tglp-header { top: 44px; }

.tglp, .tglp * { box-sizing: border-box; }
.tglp {
  width: 100%;
  min-height: 100vh;
  overflow-x: clip;
  position: relative;
  color: var(--tglp-text);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 6%, rgba(0,240,106,.19), transparent 30%),
    radial-gradient(circle at 88% 24%, rgba(0,240,106,.10), transparent 32%),
    linear-gradient(180deg, #020705 0%, #021108 46%, #020705 100%);
  padding-bottom: 1px;
}
.tglp::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
}
.tglp a { color: inherit; text-decoration: none; }
.tglp img { max-width: 100%; height: auto; display: block; }
.tglp p, .tglp h1, .tglp h2, .tglp h3 { margin: 0; }

.tglp-progress { position: fixed; inset: 0 0 auto 0; height: 4px; z-index: 1000; background: rgba(255,255,255,.06); }
.tglp-progress span { display: block; height: 100%; width: 0%; background: var(--tglp-primary); box-shadow: 0 0 24px rgba(0,240,106,.86); }

.tglp-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.tglp-section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }

.tglp-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 14px;
}
.tglp-header__inner {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid var(--tglp-line);
  border-radius: 30px;
  background: rgba(2, 10, 6, .74);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}
.tglp-logo { min-width: 0; display: flex; align-items: center; }
.tglp-logo img { width: clamp(170px, 16vw, 242px); max-height: 64px; object-fit: contain; }
.tglp-nav { display: flex; justify-content: center; align-items: center; gap: clamp(14px, 2vw, 28px); color: rgba(248,255,249,.72); font-size: 13px; font-weight: 700; }
.tglp-nav a { transition: color .2s ease; white-space: nowrap; }
.tglp-nav a:hover, .tglp-nav a:focus-visible { color: var(--tglp-primary-2); outline: none; }
.tglp-header__actions { display: flex; align-items: center; gap: 10px; }

.tglp-lang { position: relative; }
.tglp-lang__button {
  width: 92px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--tglp-text);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--tglp-line);
  border-radius: 16px;
  font: 900 14px/1 "Montserrat", sans-serif;
  cursor: pointer;
}
.tglp-lang__button:focus-visible, .tglp-btn:focus-visible, .tglp a:focus-visible { outline: 3px solid rgba(108,255,157,.75); outline-offset: 4px; }
.tglp-lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  padding: 8px;
  display: none;
  background: #06130c;
  border: 1px solid var(--tglp-line);
  border-radius: 18px;
  box-shadow: var(--tglp-shadow);
}
.tglp-lang.is-open .tglp-lang__menu { display: grid; gap: 4px; }
.tglp-lang__menu button {
  width: 100%;
  text-align: left;
  padding: 12px 13px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--tglp-text);
  font: 800 13px/1 "Montserrat", sans-serif;
  cursor: pointer;
}
.tglp-lang__menu button:hover, .tglp-lang__menu button:focus-visible { background: rgba(0,240,106,.13); outline: none; }

.tglp-btn {
  --btn-bg: rgba(255,255,255,.07);
  --btn-color: var(--tglp-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 17px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: var(--btn-bg);
  color: var(--btn-color);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  cursor: pointer;
  text-align: center;
}
.tglp-btn:hover { transform: translateY(-2px); border-color: rgba(108,255,157,.45); }
.tglp-btn--primary {
  --btn-bg: linear-gradient(135deg, var(--tglp-primary), #22ff86);
  --btn-color: var(--tglp-dark-on-primary);
  border-color: rgba(0,240,106,.55);
  box-shadow: 0 18px 45px rgba(0,240,106,.22);
}
.tglp-btn--primary:hover { box-shadow: 0 22px 55px rgba(0,240,106,.32); }
.tglp-btn--ghost { background: rgba(255,255,255,.04); color: var(--tglp-text); }
.tglp-btn--small { min-height: 48px; padding: 14px 18px; font-size: 13px; }

.tglp-hero { padding-top: clamp(68px, 8vw, 116px); padding-bottom: clamp(70px, 8vw, 122px); }
.tglp-hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, .88fr); gap: clamp(34px, 5vw, 70px); align-items: center; }
.tglp-hero__content { min-width: 0; }
.tglp-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--tglp-line-green);
  background: rgba(0,240,106,.07);
  color: var(--tglp-primary-2);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}
.tglp-pill span { width: 10px; height: 10px; flex: 0 0 auto; border-radius: 50%; background: var(--tglp-primary); box-shadow: 0 0 18px rgba(0,240,106,.9); }
.tglp-hero__title {
  margin-top: 26px;
  color: var(--tglp-text);
  font-size: clamp(56px, 7.2vw, 106px);
  line-height: .89;
  letter-spacing: -.075em;
  font-weight: 950;
  max-width: 10.5ch;
  overflow-wrap: break-word;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.tglp-hero__lead {
  margin-top: 28px;
  max-width: 760px;
  color: var(--tglp-muted);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.7;
  font-weight: 600;
}
.tglp-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 13px; }
.tglp-actions--center { justify-content: center; }
.tglp-hero__keywords { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px; }
.tglp-hero__keywords span {
  padding: 11px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--tglp-line);
  color: rgba(248,255,249,.76);
  font-size: 12px;
  font-weight: 900;
}

.tglp-hero__visual { min-width: 0; display: grid; gap: 18px; }
.tglp-visual-card {
  position: relative;
  min-height: min(600px, 58vw);
  overflow: hidden;
  border-radius: var(--tglp-radius-xl);
  border: 1px solid var(--tglp-line);
  background:
    radial-gradient(circle at 52% 32%, rgba(0,240,106,.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: var(--tglp-shadow), inset 0 0 0 1px rgba(0,240,106,.08);
}
.tglp-visual-card::after { content: ""; position: absolute; inset: auto 0 0 0; height: 45%; background: linear-gradient(180deg, transparent, rgba(2,7,5,.88)); pointer-events: none; }
.tglp-visual-card__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .56; filter: saturate(.95) contrast(1.08); }
.tglp-visual-card__copy { position: absolute; z-index: 2; left: clamp(24px, 5vw, 46px); right: clamp(24px, 5vw, 46px); bottom: clamp(24px, 4vw, 44px); }
.tglp-visual-card__copy h2 { font-size: clamp(33px, 4vw, 58px); line-height: .95; letter-spacing: -.06em; font-weight: 950; }
.tglp-visual-card__copy p { margin-top: 11px; color: var(--tglp-primary-2); font-size: clamp(13px, 1.4vw, 17px); text-transform: uppercase; letter-spacing: .16em; font-weight: 950; }
.tglp-radar { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; opacity: .82; }
.tglp-radar i { position: absolute; width: 42%; aspect-ratio: 1; border-radius: 50%; border: 2px solid rgba(0,240,106,.25); }
.tglp-radar i:nth-child(2) { width: 28%; opacity: .8; }
.tglp-radar i:nth-child(3) { width: 15%; opacity: .7; }
.tglp-radar b { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--tglp-primary); box-shadow: 0 0 20px rgba(0,240,106,.8); animation: tglpOrbit 8s linear infinite; transform-origin: -120px 0; }
.tglp-radar b:nth-of-type(2) { width: 14px; height: 14px; animation-duration: 10s; transform-origin: -154px 0; }
.tglp-radar b:nth-of-type(3) { width: 12px; height: 12px; animation-duration: 12s; transform-origin: -86px 0; }
@keyframes tglpOrbit { from { transform: rotate(0deg) translateX(120px); } to { transform: rotate(360deg) translateX(120px); } }
.tglp-mini-card {
  min-width: 0;
  padding: 24px;
  border-radius: var(--tglp-radius-lg);
  background: rgba(255,255,255,.055);
  border: 1px solid var(--tglp-line);
}
.tglp-mini-card strong { display: block; font-size: clamp(19px, 2.2vw, 26px); font-weight: 950; line-height: 1.15; letter-spacing: -.04em; }
.tglp-mini-card p { margin-top: 10px; color: var(--tglp-muted); font-size: 16px; line-height: 1.55; font-weight: 650; }

.tglp-marquee { overflow: hidden; background: var(--tglp-primary); color: var(--tglp-dark-on-primary); border-block: 1px solid rgba(0,0,0,.16); }
.tglp-marquee__track { width: max-content; display: flex; align-items: center; gap: clamp(24px, 4vw, 56px); padding: 22px 0; animation: tglpMarquee 32s linear infinite; }
.tglp-marquee span, .tglp-marquee b { font-size: clamp(15px, 2vw, 22px); font-weight: 950; white-space: nowrap; }
@keyframes tglpMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.tglp-two-col { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(34px, 6vw, 82px); align-items: start; }
.tglp-eyebrow { display: inline-block; margin-bottom: 16px; color: var(--tglp-primary-2); text-transform: uppercase; letter-spacing: .22em; font-size: 12px; font-weight: 950; }
.tglp-section-title { max-width: 940px; overflow-wrap: break-word; font-size: clamp(38px, 5.4vw, 78px); line-height: .94; letter-spacing: -.068em; font-weight: 950; text-wrap: balance; }
.tglp-lead { color: var(--tglp-muted); font-size: clamp(17px, 1.65vw, 22px); line-height: 1.75; font-weight: 650; }
.tglp-section-head { max-width: 960px; margin-bottom: clamp(28px, 5vw, 58px); }
.tglp-section-head .tglp-lead { margin-top: 20px; max-width: 820px; }
.tglp-proof-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.tglp-proof-grid span { min-width: 0; padding: 18px 18px; border-radius: 18px; background: rgba(255,255,255,.06); border: 1px solid var(--tglp-line); color: var(--tglp-text); font-size: 14px; font-weight: 900; }

.tglp-value-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.tglp-value-card, .tglp-service-card, .tglp-steps article, .tglp-resource-grid article, .tglp-faq details {
  min-width: 0;
  border: 1px solid var(--tglp-line);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.032));
  border-radius: var(--tglp-radius-lg);
  box-shadow: 0 18px 44px rgba(0,0,0,.20);
}
.tglp-value-card { padding: 28px; min-height: 260px; }
.tglp-value-card span, .tglp-steps span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 14px; background: rgba(0,240,106,.12); color: var(--tglp-primary-2); border: 1px solid var(--tglp-line-green); font-size: 13px; font-weight: 950; }
.tglp-value-card h3, .tglp-service-card h3, .tglp-steps h3, .tglp-resource-grid h3 { margin-top: 28px; font-size: clamp(20px, 2.1vw, 28px); line-height: 1.08; letter-spacing: -.04em; font-weight: 950; }
.tglp-value-card p, .tglp-service-card p, .tglp-steps p, .tglp-resource-grid p { margin-top: 12px; color: var(--tglp-muted); font-size: 15px; line-height: 1.65; font-weight: 600; }

.tglp-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.tglp-service-card { padding: 28px; min-height: 300px; transition: transform .22s ease, border-color .22s ease; }
.tglp-service-card:hover { transform: translateY(-4px); border-color: rgba(0,240,106,.42); }
.tglp-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: rgba(0,240,106,.13); border: 1px solid var(--tglp-line-green); color: var(--tglp-primary-2); font-size: 13px; font-weight: 950; }
.tglp-service-card a { display: inline-flex; margin-top: 22px; color: var(--tglp-primary-2); font-size: 13px; font-weight: 950; }

.tglp-method__grid, .tglp-global__grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(30px, 5vw, 76px); align-items: center; }
.tglp-method__content .tglp-btn { margin-top: 28px; }
.tglp-steps { display: grid; gap: 14px; }
.tglp-steps article { padding: 24px; display: grid; grid-template-columns: 52px minmax(0, 1fr); column-gap: 18px; align-items: start; }
.tglp-steps article h3 { margin-top: 0; }
.tglp-steps article p { grid-column: 2; }

.tglp-global { background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,240,106,.04)); }
.tglp-image-panel {
  min-width: 0;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--tglp-line);
  border-radius: var(--tglp-radius-xl);
  background:
    radial-gradient(circle at 32% 28%, rgba(0,240,106,.24), transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: var(--tglp-shadow);
}
.tglp-image-panel__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; filter: contrast(1.06) saturate(.92); }
.tglp-image-panel > div { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.tglp-image-panel span { min-width: 0; padding: 14px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(2,7,5,.68); color: var(--tglp-text); font-size: 13px; font-weight: 900; backdrop-filter: blur(12px); }

.tglp-photo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.tglp-photo-card { min-width: 0; margin: 0; min-height: 330px; position: relative; overflow: hidden; border-radius: var(--tglp-radius-lg); border: 1px solid var(--tglp-line); background: linear-gradient(145deg, rgba(0,240,106,.10), rgba(255,255,255,.04)); }
.tglp-photo-card::before { content: ""; position: absolute; inset: 20px; border: 1px dashed rgba(255,255,255,.18); border-radius: 18px; }
.tglp-photo-card.has-image::before { display: none; }
.tglp-photo-card img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; }
.tglp-photo-card figcaption { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2; padding: 12px 14px; border-radius: 14px; background: rgba(2,7,5,.76); color: var(--tglp-text); font-size: 13px; font-weight: 950; backdrop-filter: blur(12px); }
.tglp-gallery { margin-top: 16px; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.tglp-gallery__item { margin: 0; aspect-ratio: 1; overflow: hidden; border-radius: 18px; border: 1px solid var(--tglp-line); }
.tglp-gallery__item img { width: 100%; height: 100%; object-fit: cover; }

.tglp-client-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.tglp-client-banner {
  min-width: 0;
  min-height: 132px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--tglp-line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.032));
}
.tglp-client-banner img { width: 72px; height: 72px; object-fit: contain; border-radius: 16px; background: rgba(255,255,255,.06); padding: 8px; }
.tglp-client-banner strong { display: block; color: var(--tglp-text); font-size: 16px; line-height: 1.2; font-weight: 950; overflow-wrap: anywhere; }
.tglp-client-banner span { display: block; margin-top: 7px; color: var(--tglp-muted); font-size: 12px; line-height: 1.35; font-weight: 700; }
.tglp-client-banner:not(:has(img)) { grid-template-columns: 1fr; }

.tglp-resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.tglp-resource-grid article { padding: 28px; }
.tglp-resource-grid h3 { margin-top: 0; }
.tglp-resource-grid a { display: inline-flex; margin-top: 22px; color: var(--tglp-primary-2); font-size: 13px; font-weight: 950; }

.tglp-faq-list { display: grid; gap: 12px; }
.tglp-faq details { padding: 0; overflow: hidden; }
.tglp-faq summary { list-style: none; cursor: pointer; padding: 22px 24px; color: var(--tglp-text); font-size: clamp(18px, 2vw, 24px); line-height: 1.2; font-weight: 950; }
.tglp-faq summary::-webkit-details-marker { display: none; }
.tglp-faq p { padding: 0 24px 24px; color: var(--tglp-muted); font-size: 16px; line-height: 1.7; font-weight: 600; }

.tglp-final-card {
  text-align: center;
  padding: clamp(36px, 6vw, 78px);
  border-radius: clamp(28px, 4vw, 46px);
  border: 1px solid var(--tglp-line-green);
  background:
    radial-gradient(circle at 50% 0%, rgba(0,240,106,.22), transparent 46%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.032));
  box-shadow: var(--tglp-shadow);
}
.tglp-final-card h2 { max-width: 980px; overflow-wrap: break-word; margin: 0 auto; font-size: clamp(42px, 6vw, 86px); line-height: .93; letter-spacing: -.07em; font-weight: 950; }
.tglp-final-card p { max-width: 820px; margin: 22px auto 0; color: var(--tglp-muted); font-size: clamp(17px, 1.6vw, 22px); line-height: 1.7; font-weight: 650; }

.tglp-footer { padding: 28px 0 44px; border-top: 1px solid rgba(255,255,255,.08); color: var(--tglp-muted); }
.tglp-footer .tglp-container { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.tglp-footer p { font-size: 13px; font-weight: 700; }
.tglp-footer a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid var(--tglp-line); color: var(--tglp-primary-2); font-weight: 950; }

.tglp-floating-whatsapp { display: none; }

[data-tglp-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .72s ease, transform .72s ease; }
[data-tglp-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

@media (max-width: 1080px) {
  .tglp-nav { display: none; }
  .tglp-header__inner { grid-template-columns: 1fr auto; }
  .tglp-header__actions { grid-column: 1 / -1; justify-content: stretch; }
  .tglp-header__actions .tglp-btn { flex: 1 1 auto; }
  .tglp-lang { flex: 0 0 132px; }
  .tglp-lang__button { width: 100%; min-height: 54px; }
  .tglp-hero__grid, .tglp-method__grid, .tglp-global__grid, .tglp-two-col { grid-template-columns: 1fr; }
  .tglp-hero__title { max-width: 12ch; }
  .tglp-visual-card { min-height: 520px; }
  .tglp-value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tglp-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tglp-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tglp-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tglp-client-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  body.tglp-standalone.admin-bar .tglp-header { top: 0; }
  .tglp { padding-bottom: 108px; }
  .tglp::before { background-size: 72px 72px; opacity: .24; }
  .tglp-container { width: min(100% - 32px, 560px); }
  .tglp-section { padding: 64px 0; }
  .tglp-header { top: 8px; width: calc(100% - 20px); padding-top: 8px; }
  .tglp-header__inner { padding: 14px; gap: 14px; border-radius: 24px; }
  .tglp-logo img { width: clamp(166px, 48vw, 208px); }
  .tglp-header__actions { display: grid; grid-template-columns: 108px 1fr; gap: 10px; }
  .tglp-header__actions .tglp-btn { min-width: 0; padding-inline: 14px; }
  .tglp-btn { width: auto; min-height: 56px; padding: 16px 20px; font-size: 14px; }
  .tglp-btn--small { min-height: 54px; font-size: 13px; }

  .tglp-hero { padding-top: 48px; padding-bottom: 64px; }
  .tglp-hero__grid { gap: 34px; }
  .tglp-pill { font-size: 12px; padding: 9px 12px; }
  .tglp-hero__title {
    margin-top: 22px;
    max-width: 100%;
    font-size: clamp(40px, 11.4vw, 50px);
    line-height: .91;
    letter-spacing: -.065em;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
  }
  .tglp-hero__lead { margin-top: 22px; font-size: 16px; line-height: 1.72; }
  .tglp-actions { display: grid; grid-template-columns: 1fr; gap: 11px; }
  .tglp-hero__keywords { gap: 8px; }
  .tglp-hero__keywords span { font-size: 11px; padding: 10px 11px; }
  .tglp-visual-card { min-height: 440px; border-radius: 28px; }
  .tglp-radar b { transform-origin: -86px 0; }
  @keyframes tglpOrbit { from { transform: rotate(0deg) translateX(86px); } to { transform: rotate(360deg) translateX(86px); } }
  .tglp-mini-card { padding: 20px; border-radius: 22px; }
  .tglp-mini-card p { font-size: 14px; }
  .tglp-marquee__track { padding: 18px 0; gap: 24px; }
  .tglp-section-title { font-size: clamp(34px, 10vw, 46px); line-height: .97; letter-spacing: -.055em; }
  .tglp-lead { font-size: 16px; line-height: 1.72; }
  .tglp-proof-grid, .tglp-value-grid, .tglp-service-grid, .tglp-resource-grid, .tglp-client-grid { grid-template-columns: 1fr; }
  .tglp-value-card, .tglp-service-card, .tglp-resource-grid article { min-height: unset; padding: 24px; }
  .tglp-steps article { grid-template-columns: 44px minmax(0, 1fr); padding: 20px; gap: 14px; }
  .tglp-steps article p { grid-column: 1 / -1; }
  .tglp-image-panel { min-height: 420px; border-radius: 28px; }
  .tglp-image-panel > div { grid-template-columns: 1fr; left: 16px; right: 16px; bottom: 16px; }
  .tglp-photo-grid { grid-template-columns: 1fr; }
  .tglp-photo-card, .tglp-photo-card img { min-height: 300px; }
  .tglp-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tglp-client-banner { min-height: 118px; padding: 18px; border-radius: 22px; }
  .tglp-faq summary { padding: 20px; font-size: 18px; }
  .tglp-faq p { padding: 0 20px 20px; font-size: 15px; }
  .tglp-final-card { text-align: left; padding: 30px 22px; }
  .tglp-final-card h2 { font-size: clamp(36px, 10vw, 46px); }
  .tglp-actions--center { justify-content: stretch; }
  .tglp-footer .tglp-container { align-items: flex-start; }
  .tglp-floating-whatsapp {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 120;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 999px;
    background: var(--tglp-primary);
    color: var(--tglp-dark-on-primary);
    box-shadow: 0 18px 46px rgba(0,0,0,.42), 0 16px 40px rgba(0,240,106,.25);
    border: 1px solid rgba(0,0,0,.12);
    font-size: 15px;
    font-weight: 950;
  }
  .tglp-floating-whatsapp b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--tglp-dark-on-primary); color: var(--tglp-primary); }
}

@media (max-width: 420px) {
  .tglp-container { width: calc(100% - 28px); }
  .tglp-header { width: calc(100% - 16px); }
  .tglp-header__inner { padding: 12px; }
  .tglp-header__actions { grid-template-columns: 94px 1fr; }
  .tglp-lang__button { min-height: 50px; }
  .tglp-header__actions .tglp-btn { min-height: 50px; font-size: 12px; gap: 8px; padding-inline: 10px; }
  .tglp-logo img { width: 168px; }
  .tglp-hero__title { font-size: clamp(39px, 11.4vw, 48px); letter-spacing: -.058em; }
  .tglp-visual-card { min-height: 390px; }
  .tglp-visual-card__copy h2 { font-size: 34px; }
  .tglp-proof-grid span { padding: 16px; }
  .tglp-client-banner { grid-template-columns: 58px minmax(0, 1fr); gap: 13px; }
  .tglp-client-banner img { width: 58px; height: 58px; }
}

@media (max-width: 360px) {
  .tglp-hero__title { font-size: 38px; }
  .tglp-section-title, .tglp-final-card h2 { font-size: 34px; }
  .tglp-header__actions { grid-template-columns: 86px 1fr; }
  .tglp-logo img { width: 154px; }
}

/* ==========================================================
   V6 RESPONSIVE HARDENING — mobile overflow + contrast fixes
   ========================================================== */
.tglp, .tglp * { min-width: 0; }
.tglp { max-width: 100vw; overflow-x: hidden; }
.tglp .tglp-container { width: min(1180px, calc(100vw - 48px)); max-width: calc(100vw - 48px); }
.tglp h1, .tglp h2, .tglp h3 { max-width: 100%; }
.tglp p, .tglp li, .tglp a, .tglp span, .tglp strong { max-width: 100%; }

/* Every bright-green surface must use dark text for legibility. */
.tglp .tglp-btn--primary,
.tglp .tglp-btn--primary span,
.tglp .tglp-btn--primary strong,
.tglp .tglp-marquee,
.tglp .tglp-marquee *,
.tglp .tglp-floating-whatsapp,
.tglp .tglp-floating-whatsapp span {
  color: var(--tglp-dark-on-primary) !important;
  text-shadow: none !important;
}
.tglp .tglp-btn--primary { background: linear-gradient(135deg, #00f06a 0%, #33ff8a 100%) !important; }

/* Safer premium hero: no word can escape the viewport. */
.tglp .tglp-hero__title {
  max-width: 9.6ch;
  font-size: clamp(54px, 7.1vw, 98px);
  line-height: .92;
  letter-spacing: -.06em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.tglp .tglp-hero__lead { max-width: 760px; }
.tglp .tglp-hero__visual,
.tglp .tglp-visual-card,
.tglp .tglp-mini-card { width: 100%; max-width: 100%; }

/* Image panels and validation banners stay inside their columns. */
.tglp .tglp-image-panel,
.tglp .tglp-photo-card,
.tglp .tglp-client-banner,
.tglp .tglp-value-card,
.tglp .tglp-service-card,
.tglp .tglp-resource-grid article,
.tglp .tglp-steps article {
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 980px) {
  .tglp .tglp-hero__grid,
  .tglp .tglp-method__grid,
  .tglp .tglp-global__grid,
  .tglp .tglp-two-col {
    grid-template-columns: 1fr !important;
  }
  .tglp .tglp-hero__title { max-width: 8.8ch; }
}

@media (max-width: 767px) {
  body.tglp-standalone { width: 100%; max-width: 100%; overflow-x: hidden !important; }
  .tglp { padding-bottom: 0; }
  .tglp::before { background-size: 72px 72px; opacity: .24; }
  .tglp .tglp-container { width: calc(100vw - 32px) !important; max-width: calc(100vw - 32px) !important; }
  .tglp .tglp-section { padding: 72px 0; }

  .tglp .tglp-header {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    top: 10px;
    padding-top: 10px;
  }
  body.tglp-standalone.admin-bar .tglp-header { top: 56px; }
  .tglp .tglp-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: auto;
    padding: 14px;
    border-radius: 22px;
  }
  .tglp .tglp-logo img { width: min(230px, 58vw); max-height: 56px; object-fit: contain; }
  .tglp .tglp-nav { display: none !important; }
  .tglp .tglp-header__actions {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(96px, 120px) minmax(0, 1fr);
    gap: 10px;
  }
  .tglp .tglp-lang__button { width: 100%; min-height: 52px; border-radius: 17px; }
  .tglp .tglp-lang__menu { left: 0; right: auto; min-width: min(220px, calc(100vw - 48px)); }
  .tglp .tglp-header__actions .tglp-btn {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    font-size: 13px;
    white-space: normal;
  }

  .tglp .tglp-hero {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .tglp .tglp-pill { width: 100%; justify-content: flex-start; padding: 10px 12px; font-size: 12px; }
  .tglp .tglp-hero__title {
    margin-top: 22px;
    max-width: 8.6ch;
    font-size: clamp(42px, 12.6vw, 54px);
    line-height: .95;
    letter-spacing: -.048em;
    overflow-wrap: normal;
    word-break: normal;
  }
  .tglp .tglp-hero__lead {
    margin-top: 22px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.68;
  }
  .tglp .tglp-actions { display: grid; grid-template-columns: 1fr; gap: 11px; margin-top: 28px; }
  .tglp .tglp-actions .tglp-btn { width: 100%; min-height: 56px; padding: 15px 16px; }
  .tglp .tglp-hero__keywords { gap: 8px; }
  .tglp .tglp-hero__keywords span { font-size: 11px; padding: 9px 10px; }

  .tglp .tglp-visual-card {
    min-height: 390px;
    border-radius: 26px;
  }
  .tglp .tglp-visual-card__copy {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .tglp .tglp-visual-card__copy h2 {
    font-size: clamp(31px, 9vw, 42px);
    line-height: .98;
    letter-spacing: -.045em;
  }
  .tglp .tglp-visual-card__copy p {
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: .12em;
    overflow-wrap: anywhere;
  }
  .tglp .tglp-radar b { animation: none; }
  .tglp .tglp-radar i { width: 54%; }
  .tglp .tglp-radar i:nth-child(2) { width: 36%; }
  .tglp .tglp-radar i:nth-child(3) { width: 19%; }
  .tglp .tglp-mini-card { padding: 20px; border-radius: 22px; }
  .tglp .tglp-mini-card strong { font-size: 21px; }
  .tglp .tglp-mini-card p { font-size: 14px; }

  .tglp .tglp-section-title {
    font-size: clamp(32px, 9.4vw, 44px);
    line-height: 1;
    letter-spacing: -.045em;
    overflow-wrap: normal;
    word-break: normal;
  }
  .tglp .tglp-lead { font-size: 16px; line-height: 1.68; }
  .tglp .tglp-proof-grid,
  .tglp .tglp-value-grid,
  .tglp .tglp-service-grid,
  .tglp .tglp-resource-grid,
  .tglp .tglp-client-grid { grid-template-columns: 1fr !important; }
  .tglp .tglp-photo-grid { grid-template-columns: 1fr !important; }
  .tglp .tglp-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .tglp .tglp-image-panel { min-height: 430px; border-radius: 26px; }
  .tglp .tglp-image-panel > div { grid-template-columns: 1fr !important; left: 16px; right: 16px; bottom: 16px; }
  .tglp .tglp-image-panel span { font-size: 12px; line-height: 1.35; }
  .tglp .tglp-client-banner { min-height: 106px; padding: 16px; grid-template-columns: 56px minmax(0,1fr); }
  .tglp .tglp-client-banner strong { font-size: 15px; overflow-wrap: anywhere; }
  .tglp .tglp-final-card { padding: 30px 22px; text-align: left; border-radius: 26px; }
  .tglp .tglp-final-card h2 { font-size: clamp(34px, 9.4vw, 44px); line-height: 1; letter-spacing: -.045em; }

  /* Contact remains accessible without covering the page content. */
  .tglp .tglp-floating-whatsapp {
    left: auto !important;
    right: max(16px, env(safe-area-inset-right)) !important;
    bottom: max(16px, env(safe-area-inset-bottom)) !important;
    width: 58px !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 !important;
    border-radius: 999px !important;
  }
  .tglp .tglp-floating-whatsapp span { display: none !important; }
  .tglp .tglp-floating-whatsapp b { width: 100%; height: 100%; background: transparent !important; color: var(--tglp-dark-on-primary) !important; }
}

@media (max-width: 420px) {
  .tglp .tglp-container { width: calc(100vw - 28px) !important; max-width: calc(100vw - 28px) !important; }
  .tglp .tglp-header { width: calc(100vw - 18px) !important; max-width: calc(100vw - 18px) !important; }
  .tglp .tglp-logo img { width: min(210px, 55vw); }
  .tglp .tglp-header__actions { grid-template-columns: 94px minmax(0, 1fr); }
  .tglp .tglp-header__actions .tglp-btn { font-size: 12px; padding-inline: 10px; }
  .tglp .tglp-hero__title { font-size: clamp(40px, 12vw, 48px); max-width: 8.4ch; }
}

@media (max-width: 360px) {
  .tglp .tglp-hero__title,
  .tglp .tglp-section-title,
  .tglp .tglp-final-card h2 { font-size: 36px; }
  .tglp .tglp-header__actions { grid-template-columns: 82px minmax(0, 1fr); }
}

/* ==========================================================
   V7 FINAL RESPONSIVE + CONTRAST LOCK
   Objetivo: cero desbordes horizontales, lectura clara y CTAs legibles.
   ========================================================== */
html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}
.tglp {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
}
.tglp, .tglp * {
  box-sizing: border-box !important;
  min-width: 0 !important;
}
.tglp-container {
  width: min(1160px, calc(100vw - 48px)) !important;
  max-width: calc(100vw - 48px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.tglp-header {
  width: min(1160px, calc(100vw - 32px)) !important;
  max-width: calc(100vw - 32px) !important;
}
.tglp h1,
.tglp h2,
.tglp h3,
.tglp p,
.tglp span,
.tglp strong,
.tglp a,
.tglp li {
  max-width: 100% !important;
}
.tglp h1,
.tglp h2,
.tglp h3 {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}
.tglp p,
.tglp span,
.tglp strong,
.tglp a,
.tglp li {
  overflow-wrap: break-word !important;
}
.tglp-hero__title {
  max-width: 12ch !important;
  font-size: clamp(46px, 5.8vw, 82px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.055em !important;
}
.tglp-section-title,
.tglp-final-card h2 {
  font-size: clamp(38px, 5vw, 72px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.052em !important;
}
.tglp-btn--primary,
.tglp-btn--primary *,
.tglp-marquee,
.tglp-marquee *,
.tglp-floating-whatsapp,
.tglp-floating-whatsapp *,
.tglp a[href*="wa.me"].tglp-btn--primary,
.tglp a[href*="wa.me"].tglp-btn--primary * {
  color: #020705 !important;
  text-shadow: none !important;
}
.tglp-btn--primary,
.tglp-floating-whatsapp {
  background: linear-gradient(135deg, #00f06a 0%, #45ff95 100%) !important;
  border-color: rgba(0,240,106,.65) !important;
}
.tglp-floating-whatsapp b {
  background: #020705 !important;
  color: #00f06a !important;
}
.tglp-visual-card,
.tglp-image-panel,
.tglp-photo-card,
.tglp-client-banner,
.tglp-service-card,
.tglp-value-card,
.tglp-resource-grid article,
.tglp-steps article,
.tglp-final-card {
  width: 100% !important;
  max-width: 100% !important;
}
.tglp-visual-card__copy h2 {
  font-size: clamp(30px, 4vw, 52px) !important;
  line-height: 1 !important;
}

@media (max-width: 980px) {
  .tglp-hero__grid,
  .tglp-two-col,
  .tglp-method__grid,
  .tglp-global__grid {
    grid-template-columns: 1fr !important;
  }
  .tglp-hero__title { max-width: 100% !important; }
}

@media (max-width: 767px) {
  .tglp-container {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }
  .tglp-header {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
  }
  .tglp-header__inner {
    padding: 14px !important;
    border-radius: 22px !important;
  }
  .tglp-logo img {
    width: min(220px, 56vw) !important;
  }
  .tglp-hero {
    padding-top: 58px !important;
    padding-bottom: 64px !important;
  }
  .tglp-pill {
    width: 100% !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
  }
  .tglp-hero__title {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(36px, 10.4vw, 46px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.043em !important;
    text-wrap: balance !important;
  }
  .tglp-hero__lead {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }
  .tglp-section-title,
  .tglp-final-card h2 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(30px, 8.3vw, 40px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em !important;
    text-wrap: balance !important;
  }
  .tglp-lead {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }
  .tglp-actions,
  .tglp-actions--center {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-content: initial !important;
  }
  .tglp-btn,
  .tglp-actions .tglp-btn,
  .tglp-header__actions .tglp-btn {
    width: 100% !important;
    min-height: 54px !important;
    padding: 14px 16px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
  }
  .tglp-visual-card {
    min-height: 360px !important;
    border-radius: 24px !important;
  }
  .tglp-visual-card__copy {
    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;
  }
  .tglp-visual-card__copy h2 {
    font-size: clamp(27px, 7.6vw, 36px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.04em !important;
  }
  .tglp-visual-card__copy p {
    font-size: 10.5px !important;
    line-height: 1.4 !important;
    letter-spacing: .10em !important;
  }
  .tglp-mini-card,
  .tglp-service-card,
  .tglp-value-card,
  .tglp-resource-grid article,
  .tglp-steps article,
  .tglp-client-banner {
    padding: 18px !important;
    border-radius: 22px !important;
  }
  .tglp-image-panel {
    min-height: 360px !important;
    border-radius: 24px !important;
  }
  .tglp-image-panel > div {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    grid-template-columns: 1fr !important;
  }
  .tglp-client-grid,
  .tglp-value-grid,
  .tglp-service-grid,
  .tglp-resource-grid,
  .tglp-proof-grid,
  .tglp-photo-grid {
    grid-template-columns: 1fr !important;
  }
  .tglp-client-banner {
    grid-template-columns: 52px minmax(0,1fr) !important;
    min-height: 94px !important;
    gap: 12px !important;
  }
  .tglp-client-banner img {
    width: 52px !important;
    height: 52px !important;
  }
  .tglp-client-banner strong,
  .tglp-client-banner p {
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }
  .tglp-floating-whatsapp {
    width: 56px !important;
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    left: auto !important;
    right: max(14px, env(safe-area-inset-right)) !important;
    bottom: max(14px, env(safe-area-inset-bottom)) !important;
  }
  .tglp-floating-whatsapp span { display: none !important; }
  .tglp-floating-whatsapp b {
    background: transparent !important;
    color: #020705 !important;
  }
}

@media (max-width: 420px) {
  .tglp-container {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
  }
  .tglp-header {
    width: calc(100vw - 18px) !important;
    max-width: calc(100vw - 18px) !important;
  }
  .tglp-logo img { width: min(200px, 54vw) !important; }
  .tglp-hero__title {
    font-size: clamp(34px, 9.7vw, 42px) !important;
    line-height: 1.08 !important;
  }
  .tglp-section-title,
  .tglp-final-card h2 {
    font-size: clamp(29px, 8.2vw, 36px) !important;
  }
  .tglp-header__actions {
    grid-template-columns: 88px minmax(0, 1fr) !important;
  }
  .tglp-lang__button { font-size: 13px !important; }
}

@media (max-width: 360px) {
  .tglp-container { width: calc(100vw - 24px) !important; max-width: calc(100vw - 24px) !important; }
  .tglp-hero__title { font-size: 32px !important; }
  .tglp-section-title,
  .tglp-final-card h2 { font-size: 28px !important; }
}
