/*
Theme Name: 2litros Studio
Theme URI: https://2litros.cl/
Author: Codex
Description: Tema custom para el nuevo sitio de 2litros basado en el HTML original.
Version: 1.1.2
Requires at least: 6.4
Tested up to: 6.5
Requires PHP: 8.1
Text Domain: 2litros-studio
*/

:root {
  --tl-brand: #155dfc;
  --tl-brand-on-dark: #51a2ff;
  --tl-black: #000000;
  --tl-navy: #0f172b;
  --tl-navy-800: #1d293d;
  --tl-navy-700: #314158;
  --tl-slate-500: #62748e;
  --tl-slate-400: #90a1b9;
  --tl-slate-200: #e2e8f0;
  --tl-slate-100: #f1f5f9;
  --tl-white: #ffffff;
  --tl-success: #33b442;
  --tl-danger: #c62828;
  --tl-shell: min(1200px, calc(100vw - 48px));
  --tl-header-height: 70px;
  --tl-shadow: 0 12px 32px rgba(15, 23, 43, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  color: var(--tl-navy);
  background: var(--tl-white);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.tl-shell {
  width: var(--tl-shell);
  margin: 0 auto;
}

.tl-reveal {
  --tl-reveal-delay: 0ms;
  --tl-reveal-distance: 28px;
  opacity: 0;
  filter: blur(6px);
  translate: 0 var(--tl-reveal-distance);
  transition:
    opacity 0.64s cubic-bezier(0.22, 1, 0.36, 1) var(--tl-reveal-delay),
    translate 0.64s cubic-bezier(0.22, 1, 0.36, 1) var(--tl-reveal-delay),
    filter 0.42s ease var(--tl-reveal-delay);
  will-change: opacity, translate, filter;
}

.tl-reveal[data-reveal="left"] {
  translate: calc(var(--tl-reveal-distance) * -1) 0;
}

.tl-reveal[data-reveal="right"] {
  translate: var(--tl-reveal-distance) 0;
}

.tl-reveal[data-reveal="fade"] {
  translate: 0 0;
}

.tl-reveal[data-reveal="card"] {
  --tl-reveal-distance: 18px;
  filter: none;
}

.tl-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .tl-reveal,
  .tl-reveal[data-reveal="left"],
  .tl-reveal[data-reveal="right"],
  .tl-reveal[data-reveal="fade"] {
    opacity: 1;
    filter: none;
    translate: 0 0;
    transition: none;
  }
}

.tl-site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
}

.tl-header-inner {
  min-height: var(--tl-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tl-brand {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--tl-white);
}

.tl-desktop-nav,
.tl-desktop-actions {
  display: flex;
  align-items: center;
}

.tl-desktop-nav {
  gap: 6px;
  flex: 1;
  margin-left: 28px;
}

.tl-nav-link,
.tl-nav-link:visited,
.tl-mobile-nav a {
  color: var(--tl-white);
}

.tl-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 4px 8px;
  font-size: 0.875rem;
  line-height: 1.25;
  opacity: 0.72;
  position: relative;
  transition: opacity 0.18s ease;
}

.tl-nav-link::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.tl-nav-link:hover,
.tl-nav-link.is-current {
  opacity: 1;
}

.tl-nav-link:hover::after,
.tl-nav-link.is-current::after {
  transform: scaleX(1);
}

.tl-desktop-actions {
  gap: 12px;
}

.tl-site-header .tl-button {
  min-height: 40px;
  padding: 0 16px;
}

.tl-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.tl-language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease;
}

.tl-language-link:hover {
  color: var(--tl-white);
  background: rgba(255, 255, 255, 0.08);
}

.tl-language-link.is-active {
  background: var(--tl-white);
  color: var(--tl-black);
}

.tl-language-link.is-active:hover {
  background: var(--tl-white);
  color: var(--tl-black);
}

.tl-language-switcher.is-mobile {
  display: none;
}

.tl-language-switcher.is-footer {
  margin-top: 4px;
  border-color: var(--tl-slate-200);
  background: transparent;
  justify-content: flex-start;
}

.tl-site-header .tl-language-switcher,
.tl-mobile-nav .tl-language-switcher {
  display: none !important;
}

.tl-language-switcher.is-footer .tl-language-link {
  color: var(--tl-slate-500);
}

.tl-language-switcher.is-footer .tl-language-link:hover {
  color: var(--tl-navy);
  background: var(--tl-slate-100);
}

.tl-language-switcher.is-footer .tl-language-link.is-active,
.tl-site-footer.is-brand .tl-language-switcher.is-footer .tl-language-link.is-active {
  background: var(--tl-brand);
  color: var(--tl-white);
}

.tl-site-footer.is-brand .tl-language-switcher.is-footer {
  border-color: rgba(255, 255, 255, 0.22);
}

.tl-site-footer.is-brand .tl-language-switcher.is-footer .tl-language-link {
  color: rgba(255, 255, 255, 0.72);
}

.tl-site-footer.is-brand .tl-language-switcher.is-footer .tl-language-link:hover {
  color: var(--tl-white);
  background: rgba(255, 255, 255, 0.08);
}

.tl-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--tl-white);
  cursor: pointer;
}

.tl-service-icon {
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-size: 1.75rem;
}

.tl-menu-toggle-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.tl-menu-toggle-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.tl-menu-toggle-icon span:nth-child(1) {
  top: 0;
}

.tl-menu-toggle-icon span:nth-child(2) {
  top: 7px;
}

.tl-menu-toggle-icon span:nth-child(3) {
  top: 14px;
}

.tl-menu-toggle.is-open .tl-menu-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.tl-menu-toggle.is-open .tl-menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.tl-menu-toggle.is-open .tl-menu-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.tl-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  padding: 92px 24px 36px;
  background: var(--tl-black);
  z-index: 999;
}

.tl-mobile-nav.is-open {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tl-mobile-nav-links {
  display: grid;
}

.tl-mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
}

.tl-mobile-nav-link.is-current,
.tl-mobile-nav-link.is-contact {
  color: var(--tl-white);
}

.tl-mobile-nav-link.is-contact {
  color: var(--tl-brand);
}

.tl-mobile-nav-footer {
  display: grid;
  gap: 20px;
}

.tl-mobile-nav-contact {
  display: grid;
  gap: 6px;
}

.tl-mobile-nav-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

.tl-mobile-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--tl-brand);
  background: var(--tl-brand);
  color: var(--tl-white);
  font-weight: 600;
  border-radius: 4px;
  min-height: 46px;
  padding: 0 18px;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.tl-button:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

.tl-button.is-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--tl-white);
}

.tl-button.is-dark-outline {
  background: transparent;
  border-color: var(--tl-navy);
  color: var(--tl-navy);
}

.tl-button.is-white {
  background: var(--tl-white);
  border-color: var(--tl-white);
  color: var(--tl-brand);
}

.tl-kicker {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--tl-brand);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tl-main {
  overflow: clip;
}

.tl-hero {
  padding: calc(var(--tl-header-height) + 56px) 0 80px;
  background: var(--tl-white);
  color: var(--tl-navy);
  position: relative;
}

.tl-hero-shell {
  position: relative;
  min-height: auto;
}

.tl-hero-glow {
  display: none;
}

.tl-hero-split .tl-hero-shell {
  display: flex;
  align-items: flex-start;
}

.tl-hero-split-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 72px;
  align-items: flex-start;
}

.tl-hero-copy {
  max-width: 1040px;
}

.tl-hero-copy > *,
.tl-page-hero .tl-shell > * {
  margin-bottom: 0;
}

.tl-hero-copy > .tl-kicker + .tl-hero-title,
.tl-page-hero .tl-shell > .tl-kicker + h1 {
  margin-top: 24px;
}

.tl-hero-copy > .tl-hero-title + .tl-hero-subtitle,
.tl-page-hero .tl-shell > h1 + p {
  margin-top: 24px;
}

.tl-hero-copy > .tl-hero-subtitle + .tl-hero-actions {
  margin-top: 40px;
}

.tl-hero .tl-kicker,
.tl-page-hero .tl-kicker {
  display: inline-block;
  margin: 0;
  color: var(--tl-navy);
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: -0.011em;
  text-transform: none;
}

.tl-hero-title {
  margin: 0;
  color: var(--tl-navy);
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: clamp(3rem, var(--tl-hero-size, 6vw), 5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.tl-hero-split .tl-hero-title,
.tl-hero-title.is-serif {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.tl-hero-split .tl-hero-title {
  color: var(--tl-brand);
  max-width: 10ch;
}

.tl-hero-subtitle {
  max-width: 68rem;
  margin: 0;
  color: var(--tl-navy);
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: -0.011em;
}

.tl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.tl-hero-visual {
  min-height: 520px;
  padding: 0;
  border-radius: 12px;
  background: var(--tl-slate-100);
  position: relative;
  overflow: hidden;
}

.tl-hero-visual::before,
.tl-hero-visual::after {
  display: none;
}

.tl-hero-visual-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  gap: 16px;
  padding: 24px;
}

.tl-hero-image-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
}

.tl-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.tl-browser-card,
.tl-type-card {
  border: 1px solid var(--tl-slate-200);
  border-radius: 8px;
  overflow: hidden;
}

.tl-browser-card {
  background: var(--tl-white);
}

.tl-browser-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--tl-slate-100);
}

.tl-browser-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
}

.tl-browser-bar {
  flex: 1;
  height: 14px;
  margin-left: 8px;
  border-radius: 4px;
  background: var(--tl-slate-200);
}

.tl-browser-body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.tl-line {
  border-radius: 3px;
}

.tl-line.is-brand {
  width: 45%;
  height: 6px;
  background: var(--tl-brand);
}

.tl-line.is-soft {
  height: 4px;
  background: var(--tl-slate-200);
}

.tl-line.is-soft.short {
  width: 60%;
  background: var(--tl-slate-300);
}

.tl-cta-preview {
  height: 28px;
  margin-top: 4px;
  border-radius: 4px;
  background: rgba(21, 93, 252, 0.15);
  border: 1px solid rgba(21, 93, 252, 0.25);
}

.tl-swatch-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.tl-swatch {
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tl-type-card {
  padding: 14px;
  background: var(--tl-white);
  display: grid;
  gap: 4px;
}

.tl-type-a {
  color: var(--tl-navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
}

.tl-type-row {
  color: var(--tl-slate-500);
  font-size: 0.625rem;
  letter-spacing: 0.04em;
}

.tl-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tl-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(21, 93, 252, 0.12);
  color: var(--tl-brand);
  font-size: 0.625rem;
  font-weight: 600;
}

.tl-hero-centered .tl-hero-shell,
.tl-hero-minimal .tl-hero-shell {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.tl-hero-centered .tl-hero-shell {
  text-align: left;
}

.tl-hero-centered .tl-hero-copy {
  max-width: 1040px;
  text-align: left;
}

.tl-hero-centered .tl-hero-title {
  max-width: 12ch;
  color: var(--tl-brand);
  font-size: clamp(3rem, 6vw, 5rem);
}

.tl-hero-centered em {
  font-style: italic;
  font-weight: 400;
}

.tl-hero-centered .tl-hero-actions {
  justify-content: flex-start;
}

.tl-hero-minimal .tl-hero-shell {
  padding-bottom: 0;
}

.tl-hero-minimal-grid {
  width: 100%;
}

.tl-hero-minimal-top,
.tl-hero-minimal-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--tl-slate-200);
}

.tl-hero-minimal-top {
  padding-top: 32px;
  margin-bottom: 52px;
}

.tl-hero-minimal-bottom {
  padding-top: 28px;
}

.tl-hero-minimal .tl-hero-title {
  margin-bottom: 44px;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 0.96;
}

.tl-hero-minimal-meta {
  color: var(--tl-slate-500);
  font-size: 0.9375rem;
}

.tl-hero-minimal-copy {
  max-width: 420px;
  color: var(--tl-navy);
  font-size: 1.125rem;
  line-height: 1.55;
}

.tl-stats {
  background: var(--tl-navy);
  color: var(--tl-white);
  padding: 36px 0;
}

.tl-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.tl-stat {
  text-align: center;
}

.tl-stat-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.tl-stat-label {
  margin-top: 6px;
  color: var(--tl-slate-400);
  font-size: 0.8125rem;
}

.tl-section {
  padding: 96px 0;
}

.tl-section.is-alt {
  background: var(--tl-slate-100);
}

.tl-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.tl-section-title {
  margin: 0;
  color: var(--tl-navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
}

.tl-grid-services,
.tl-grid-projects,
.tl-grid-values,
.tl-grid-team {
  display: grid;
}

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

.tl-grid-projects {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tl-grid-values {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tl-grid-team {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.tl-card,
.tl-project-card,
.tl-value-card,
.tl-team-card,
.tl-contact-card,
.tl-service-panel {
  border: 1px solid var(--tl-slate-200);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.tl-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--tl-white);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tl-card:hover {
  border-color: var(--tl-brand);
  transform: translateY(-2px);
  box-shadow: var(--tl-shadow);
}

.tl-card-media {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--tl-slate-200);
}

.tl-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tl-service-card-media {
  aspect-ratio: 4 / 3;
}

.tl-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px;
}

.tl-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tl-navy);
  font-size: 1.5rem;
  line-height: 1;
}

.tl-card-kicker {
  color: var(--tl-slate-500);
  font-size: 0.75rem;
  line-height: 1.25;
}

.tl-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 8px;
  color: #45556c;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.18s ease;
}

.tl-card-link:hover {
  color: var(--tl-brand);
}

.tl-card h3,
.tl-project-card h3,
.tl-value-card h3,
.tl-team-card h3,
.tl-service-panel-copy h2,
.tl-service-single h1,
.tl-project-single h1,
.tl-page-hero h1 {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-weight: 600;
  color: var(--tl-navy);
  letter-spacing: -0.02em;
}

.tl-card p,
.tl-project-card p,
.tl-value-card p,
.tl-team-card p,
.tl-section-copy,
.tl-service-panel-copy p,
.tl-project-single-copy,
.tl-contact-card p {
  margin: 0;
  color: var(--tl-slate-500);
  line-height: 1.65;
}

.tl-card h3 {
  font-size: 1.125rem;
  line-height: 1.3;
}

.tl-card-text {
  font-size: 1rem;
  line-height: 1.5;
}

.tl-about-teaser {
  background: var(--tl-navy);
  color: var(--tl-white);
}

.tl-about-teaser-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.tl-about-teaser-grid > div:last-child > * {
  margin-bottom: 0;
}

.tl-about-teaser-grid > div:last-child > .tl-kicker + .tl-section-title {
  margin-top: 24px;
}

.tl-about-teaser-grid > div:last-child > .tl-section-title + .tl-section-copy {
  margin-top: 24px;
}

.tl-about-teaser-grid > div:last-child > .tl-section-copy + .tl-hero-actions {
  margin-top: 40px;
}

.tl-about-placeholder,
.tl-service-placeholder,
.tl-project-placeholder,
.tl-team-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-align: center;
}

.tl-about-placeholder {
  min-height: 420px;
  background: var(--tl-navy-800);
  color: var(--tl-navy-700);
  font-size: 0.75rem;
}

.tl-about-image,
.tl-service-placeholder img,
.tl-project-placeholder img,
.tl-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.tl-about-teaser .tl-section-title,
.tl-value-card h3 {
  color: var(--tl-white);
}

.tl-about-teaser .tl-kicker {
  color: var(--tl-brand-on-dark);
}

.tl-about-teaser p {
  max-width: 500px;
  color: var(--tl-slate-400);
}

.tl-cta-band {
  background: var(--tl-brand);
  color: var(--tl-white);
}

.tl-cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tl-cta-title {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.tl-cta-copy {
  margin: 0;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.8);
}

.tl-page-hero {
  padding: calc(var(--tl-header-height) + 56px) 0 72px;
  background: var(--tl-white);
}

.tl-page-hero .tl-shell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.tl-page-hero h1 {
  margin: 0;
  color: var(--tl-navy);
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.tl-page-hero p {
  max-width: 68rem;
  margin: 0;
  color: var(--tl-navy);
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: -0.011em;
}

.tl-service-stack {
  display: grid;
}

.tl-service-panel {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  background: var(--tl-white);
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

.tl-service-stack > section:nth-child(odd) .tl-service-panel {
  background: var(--tl-white);
}

.tl-service-stack > section:nth-child(even) {
  background: var(--tl-slate-100);
}

.tl-service-panel-copy {
  padding: 80px 0;
}

.tl-service-panel-copy > * {
  margin-bottom: 0;
}

.tl-service-panel-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.05;
}

.tl-service-panel-copy > .tl-service-icon + h2 {
  margin-top: 24px;
}

.tl-service-panel-copy > h2 + p {
  margin-top: 24px;
}

.tl-service-panel-copy > p + .tl-hero-actions {
  margin-top: 40px;
}

.tl-service-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--tl-slate-200);
  color: var(--tl-slate-400);
  font-size: 0.75rem;
}

.tl-service-stack > section:nth-child(even) .tl-service-panel {
  background: var(--tl-slate-100);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.tl-service-stack > section:nth-child(even) .tl-service-visual {
  order: 2;
}

.tl-service-stack > section:nth-child(even) .tl-service-panel-copy {
  order: 1;
}

.tl-project-filter-bar {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.tl-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 4px 14px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--tl-navy);
  font-size: 0.875rem;
  font-weight: 400;
  white-space: nowrap;
  position: relative;
  transition: color 0.18s ease, background 0.18s ease;
}

.tl-filter-chip:hover {
  background: rgba(15, 23, 43, 0.04);
}

.tl-filter-chip.is-active {
  color: var(--tl-navy);
}

.tl-filter-chip.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--tl-slate-500);
}

.tl-project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--tl-white);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.tl-project-card .tl-project-placeholder,
.tl-project-card .tl-project-visual {
  border-radius: 10px 10px 0 0;
}

.tl-project-card .tl-project-placeholder img,
.tl-project-card .tl-project-visual img {
  border-radius: 10px 10px 0 0;
}

.tl-project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tl-shadow);
}

.tl-project-visual {
  aspect-ratio: 1 / 1;
  background: var(--tl-slate-200);
  color: var(--tl-slate-400);
  font-size: 0.75rem;
}

.tl-project-card-body {
  padding-top: 24px;
}

.tl-project-card-top,
.tl-project-meta,
.tl-project-single-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.tl-project-card-top {
  margin-bottom: 8px;
}

.tl-project-category {
  margin: 6px 0 0;
  font-size: 0.75rem;
  color: var(--tl-slate-500);
}

.tl-project-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
}

.tl-project-badge.is-web {
  color: var(--tl-brand);
  background: rgba(21, 93, 252, 0.1);
}

.tl-project-badge.is-branding {
  color: #7f22fe;
  background: rgba(127, 34, 254, 0.1);
}

.tl-project-badge.is-senaletica {
  color: #33b442;
  background: rgba(51, 180, 66, 0.1);
}

.tl-project-badge.is-impresion {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
}

.tl-project-card-text {
  font-size: 0.875rem;
  line-height: 1.55;
}

.tl-project-single,
.tl-service-single,
.tl-generic-page {
  padding: calc(var(--tl-header-height) + 52px) 0 96px;
}

.tl-project-single-layout,
.tl-contact-layout,
.tl-about-history,
.tl-generic-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.tl-contact-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: start;
}

.tl-project-single h1,
.tl-service-single h1,
.tl-generic-page h1 {
  margin: 0 0 20px;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.02;
}

.tl-rich-text p {
  margin: 0;
}

.tl-rich-text p + p {
  margin-top: 1.65em;
}

.tl-project-meta-list,
.tl-service-meta-list {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--tl-slate-100);
  border-radius: 10px;
  border: 1px solid var(--tl-slate-200);
}

.tl-meta-item-title {
  display: block;
  margin-bottom: 6px;
  color: var(--tl-brand);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tl-value-card {
  padding: 32px;
  background: var(--tl-navy-800);
  border-color: rgba(255, 255, 255, 0.06);
}

.tl-value-card p {
  color: var(--tl-slate-400);
}

.tl-team-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.tl-team-photo {
  aspect-ratio: 3 / 4;
  margin-bottom: 12px;
  background: var(--tl-slate-100);
  border: 1px solid var(--tl-slate-200);
  color: var(--tl-slate-400);
  font-size: 0.75rem;
  overflow: hidden;
}

.tl-team-role {
  margin-top: 6px;
  color: var(--tl-slate-500);
  font-size: 0.8125rem;
}

.tl-contact-section {
  padding: 56px 0 96px;
}

.tl-contact-card {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.tl-contact-card h2 {
  margin: 0 0 16px;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.04;
}

.tl-contact-meta-block + .tl-contact-meta-block {
  margin-top: 32px;
}

.tl-contact-meta-label {
  display: block;
  margin-bottom: 8px;
  color: var(--tl-brand);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.tl-contact-response {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--tl-slate-200);
}

.tl-contact-response p {
  max-width: 32rem;
}

.tl-form-shell {
  display: grid;
  gap: 24px;
}

.tl-form-shell-gravity .gform_wrapper,
.tl-form-shell-gravity .gform_heading,
.tl-form-shell-gravity .gform_body,
.tl-form-shell-gravity .gform_footer {
  margin: 0;
  width: 100%;
}

.tl-form-shell-gravity .gform_required_legend,
.tl-form-shell-gravity .validation_message {
  display: none;
}

.tl-form-shell-gravity .gform_fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}

.tl-form-shell-gravity .gfield {
  grid-column: 1 / -1;
}

.tl-form-shell-gravity .gfield.tl-gfield-half {
  grid-column: span 1;
}

.tl-form-shell-gravity .gfield_label,
.tl-form-shell-gravity legend {
  display: block;
  margin: 0 0 4px;
  color: var(--tl-navy);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
}

.tl-form-shell-gravity .gfield_required {
  color: var(--tl-danger);
  margin-left: 4px;
}

.tl-form-shell-gravity .gfield_required::before {
  content: "Requerido";
}

.tl-form-shell-gravity .gfield_required .gfield_required_text {
  display: none !important;
}

.tl-form-shell-gravity input,
.tl-form-shell-gravity select,
.tl-form-shell-gravity textarea {
  width: 100%;
  border: 1px solid var(--tl-slate-200);
  border-radius: 0;
  background: var(--tl-white);
  color: var(--tl-navy);
  padding: 12px 16px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.tl-form-shell-gravity input:focus,
.tl-form-shell-gravity select:focus,
.tl-form-shell-gravity textarea:focus {
  outline: none;
  border-color: var(--tl-brand);
  box-shadow: 0 0 0 3px rgba(21, 93, 252, 0.12);
}

.tl-form-shell-gravity textarea {
  min-height: 181px;
  resize: vertical;
}

.tl-form-shell-gravity .gfield_error input,
.tl-form-shell-gravity .gfield_error select,
.tl-form-shell-gravity .gfield_error textarea {
  border-color: var(--tl-danger);
}

.tl-form-shell-gravity .gform_validation_errors,
.tl-form-shell-gravity .gform_confirmation_message {
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.9375rem;
  margin-bottom: 18px;
}

.tl-form-shell-gravity .gform_validation_errors {
  background: rgba(198, 40, 40, 0.1);
  color: var(--tl-danger);
}

.tl-form-shell-gravity .gfield_validation_message {
  margin-top: 8px;
  color: var(--tl-danger);
  font-size: 0.8125rem;
}

.tl-form-shell-gravity .gform_footer {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.tl-form-shell-gravity .gform_button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--tl-brand);
  background: var(--tl-brand);
  color: var(--tl-white);
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 999px;
  min-height: 56px;
  padding: 0 24px;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.tl-form-shell-gravity .gform_button.button:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

.tl-form-notice {
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.9375rem;
}

.tl-form-notice-success {
  background: rgba(51, 180, 66, 0.12);
  color: #176a21;
}

.tl-form-notice-error {
  background: rgba(198, 40, 40, 0.1);
  color: var(--tl-danger);
}

.tl-contact-form {
  display: grid;
  gap: 24px;
}

.tl-contact-form > .tl-button {
  justify-self: end;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 1.125rem;
  font-weight: 500;
}

.tl-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}

.tl-form-field {
  display: grid;
  gap: 4px;
}

.tl-form-field span {
  color: var(--tl-navy);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
}

.tl-form-field input,
.tl-form-field select,
.tl-form-field textarea {
  width: 100%;
  border: 1px solid var(--tl-slate-200);
  border-radius: 0;
  background: var(--tl-white);
  color: var(--tl-navy);
  padding: 12px 16px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.tl-form-field input:focus,
.tl-form-field select:focus,
.tl-form-field textarea:focus {
  outline: none;
  border-color: var(--tl-brand);
  box-shadow: 0 0 0 3px rgba(21, 93, 252, 0.12);
}

.tl-site-footer {
  padding: 64px 0 40px;
  border-top: 0;
}

.tl-site-footer.is-brand {
  background: var(--tl-brand);
  color: var(--tl-white);
  border-top-color: transparent;
}

.tl-site-footer.is-brand .tl-footer-link,
.tl-site-footer.is-brand .tl-footer-meta,
.tl-site-footer.is-brand .tl-footer-note {
  color: rgba(255, 255, 255, 0.75);
}

.tl-footer-top {
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.tl-site-footer.is-brand .tl-footer-top {
  border-bottom: 0;
}

.tl-footer-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 48px;
}

.tl-footer-brand {
  display: inline-block;
  margin-bottom: 0;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.tl-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 24px 32px;
}

.tl-footer-column {
  min-width: 0;
}

.tl-footer-column--language {
  display: grid;
  justify-items: start;
  align-content: start;
}

.tl-footer-column--language .tl-language-switcher.is-footer {
  margin-top: 0;
}

.tl-footer-title {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--tl-brand);
}

.tl-footer-link {
  display: block;
  margin-bottom: 8px;
  color: var(--tl-navy);
  font-size: 1rem;
  line-height: 1.5;
}

.tl-footer-link:hover {
  color: var(--tl-brand);
}

.tl-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--tl-slate-200);
}

.tl-footer-note {
  max-width: 480px;
  color: var(--tl-navy);
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.15;
}

.tl-footer-meta {
  color: var(--tl-slate-500);
  font-size: 1rem;
}

.tl-site-footer.is-brand .tl-footer-title {
  color: var(--tl-brand-on-dark);
}

.tl-site-footer.is-brand .tl-footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1024px) {
  .tl-grid-services,
  .tl-grid-projects,
  .tl-grid-team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tl-grid-values,
  .tl-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tl-about-teaser-grid,
  .tl-service-panel,
  .tl-service-stack > section:nth-child(even) .tl-service-panel,
  .tl-project-single-layout,
  .tl-contact-layout,
  .tl-about-history,
  .tl-generic-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .tl-desktop-nav,
  .tl-desktop-actions {
    display: none;
  }

  .tl-language-switcher.is-mobile {
    display: inline-flex;
    align-self: flex-start;
  }

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

  .tl-hero {
    padding: calc(var(--tl-header-height) + 28px) 0 48px;
  }

  .tl-hero-shell {
    min-height: auto;
  }

  .tl-hero-split .tl-hero-shell,
  .tl-hero-centered .tl-hero-shell,
  .tl-hero-minimal .tl-hero-shell {
    display: block;
    padding: 0 0 36px;
  }

  .tl-hero-split-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tl-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: none;
  }

  .tl-hero .tl-kicker,
  .tl-page-hero .tl-kicker {
    display: block;
    width: 100%;
    max-width: none;
    font-size: 0.9375rem;
    line-height: 1.35;
    color: var(--tl-slate-500);
    letter-spacing: -0.01em;
  }

  .tl-hero-title,
  .tl-page-hero h1 {
    max-width: none;
    font-size: clamp(3rem, 15vw, 4.5rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
  }

  .tl-hero-subtitle,
  .tl-page-hero p {
    width: 100%;
    max-width: none;
    font-size: 1.0625rem;
    line-height: 1.45;
    color: var(--tl-slate-500);
  }

  .tl-hero-copy > .tl-kicker + .tl-hero-title,
  .tl-page-hero .tl-shell > .tl-kicker + h1 {
    margin-top: 24px;
  }

  .tl-hero-copy > .tl-hero-title + .tl-hero-subtitle,
  .tl-page-hero .tl-shell > h1 + p {
    margin-top: 24px;
  }

  .tl-hero-copy > .tl-hero-subtitle + .tl-hero-actions {
    margin-top: 40px;
  }

  .tl-about-teaser-grid > div:last-child > .tl-kicker + .tl-section-title,
  .tl-service-panel-copy > .tl-service-icon + h2 {
    margin-top: 24px;
  }

  .tl-about-teaser-grid > div:last-child > .tl-section-title + .tl-section-copy,
  .tl-service-panel-copy > h2 + p {
    margin-top: 24px;
  }

  .tl-about-teaser-grid > div:last-child > .tl-section-copy + .tl-hero-actions,
  .tl-service-panel-copy > p + .tl-hero-actions {
    margin-top: 40px;
  }

  .tl-hero-visual {
    min-height: 300px;
  }

  .tl-section {
    padding: 60px 0;
  }

  .tl-section-head,
  .tl-cta-band-inner,
  .tl-hero-minimal-top,
  .tl-hero-minimal-bottom,
  .tl-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .tl-grid-services,
  .tl-grid-projects,
  .tl-grid-values,
  .tl-form-grid,
  .tl-form-shell-gravity .gform_fields,
  .tl-footer-grid {
    grid-template-columns: 1fr;
  }

  .tl-grid-team,
  .tl-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .tl-footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tl-mobile-nav-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .tl-about-placeholder {
    min-height: 260px;
  }

  .tl-page-hero {
    padding: calc(var(--tl-header-height) + 40px) 0 52px;
  }

  .tl-service-panel-copy {
    padding: 0 0 8px;
  }

  .tl-contact-section,
  .tl-project-single,
  .tl-service-single,
  .tl-generic-page {
    padding-bottom: 60px;
  }

  .tl-site-footer {
    padding-top: 48px;
  }
}

@media (max-width: 640px) {
  :root {
    --tl-shell: min(100vw - 40px, 100%);
  }

  .tl-grid-team {
    grid-template-columns: 1fr 1fr;
  }

  .tl-hero-title {
    max-width: none;
    font-size: clamp(2.15rem, 13vw, 3.35rem);
    line-height: 0.92;
  }

  .tl-hero-centered .tl-hero-title {
    font-size: clamp(2.15rem, 13vw, 3.2rem);
  }

  .tl-hero-minimal .tl-hero-title {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
  }

  .tl-hero .tl-kicker,
  .tl-page-hero .tl-kicker {
    width: 100%;
    max-width: none;
    font-size: 0.8125rem;
    line-height: 1.3;
  }

  .tl-hero-subtitle,
  .tl-page-hero p {
    width: 100%;
    max-width: none;
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .tl-hero-copy {
    gap: 0;
  }

  .tl-hero-copy > .tl-kicker + .tl-hero-title,
  .tl-page-hero .tl-shell > .tl-kicker + h1 {
    margin-top: 24px;
  }

  .tl-hero-copy > .tl-hero-title + .tl-hero-subtitle,
  .tl-page-hero .tl-shell > h1 + p {
    margin-top: 24px;
  }

  .tl-hero-copy > .tl-hero-subtitle + .tl-hero-actions {
    margin-top: 40px;
  }

  .tl-about-teaser-grid > div:last-child > .tl-kicker + .tl-section-title,
  .tl-service-panel-copy > .tl-service-icon + h2 {
    margin-top: 24px;
  }

  .tl-about-teaser-grid > div:last-child > .tl-section-title + .tl-section-copy,
  .tl-service-panel-copy > h2 + p {
    margin-top: 24px;
  }

  .tl-about-teaser-grid > div:last-child > .tl-section-copy + .tl-hero-actions,
  .tl-service-panel-copy > p + .tl-hero-actions {
    margin-top: 40px;
  }
}

@media (max-width: 980px) {
  .tl-hero-split-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tl-hero-copy {
    max-width: none;
  }

  .tl-hero .tl-kicker,
  .tl-page-hero .tl-kicker,
  .tl-hero-subtitle,
  .tl-page-hero p {
    max-width: none;
    width: 100%;
  }
}

.tl-filter-chip {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.tl-filter-chip[hidden],
[data-project-card][hidden] {
  display: none !important;
}

.tl-contact-form button[disabled] {
  opacity: 0.7;
  cursor: wait;
}
