/* ============================================================
   TELMOVIL LANDING PAGE — landing-page.css
   All selectors prefixed with .tm- to avoid GP conflicts
   ============================================================ */

/* ── BRAND TOKENS ─────────────────────────────────────────── */
:root {
  --tm-navy:       #0D2535;
  --tm-navy-mid:   #133347;
  --tm-navy-dark:  #071820;
  --tm-cyan:       #00B4C8;
  --tm-cyan-light: #00CCDF;
  --tm-yellow:     #DFEC1B;
  --tm-gray-bg:    #F3F5F7;
  --tm-gray-mid:   #E2E7EC;
  --tm-text:       #1A2E3D;
  --tm-muted:      #5A6E7F;
  --tm-white:      #FFFFFF;

  --tm-radius-sm:  8px;
  --tm-radius-md:  16px;
  --tm-radius-lg:  24px;
  --tm-shadow:     0 4px 24px rgba(13,37,53,0.08);
  --tm-shadow-lg:  0 12px 40px rgba(13,37,53,0.16);
  --tm-ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── GLOBAL RESETS (scoped) ───────────────────────────────── */
.telmovil-landing-page *,
.telmovil-landing-page *::before,
.telmovil-landing-page *::after {
  box-sizing: border-box;
}

.telmovil-landing-page {
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove GP page padding */
.telmovil-landing-page #page,
.telmovil-landing-page .site,
.telmovil-landing-page .site-content,
.telmovil-landing-page #content,
.telmovil-landing-page .inside-page-hero,
.telmovil-landing-page .generate-columns-container {
  padding: 0 !important;
  margin: 0 !important;
}

.telmovil-landing-page .entry-content,
.telmovil-landing-page .entry-header,
.telmovil-landing-page article.page {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

html { scroll-behavior: smooth; }

/* ── TYPOGRAPHY BASE ──────────────────────────────────────── */
.telmovil-landing-page h1,
.telmovil-landing-page h2,
.telmovil-landing-page h3,
.telmovil-landing-page h4 {
  font-family: 'Outfit', sans-serif !important;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.telmovil-landing-page p,
.telmovil-landing-page a,
.telmovil-landing-page li,
.telmovil-landing-page span {
  font-family: 'DM Sans', sans-serif;
}

/* ── CONTAINER ────────────────────────────────────────────── */
.tm-container {
  max-width: 1200px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  width: 100%;
}

/* ── SECTION BASE ─────────────────────────────────────────── */
.tm-section {
  padding: 100px 0;
  position: relative;
}
.tm-section--white { background: var(--tm-white); }
.tm-section--gray  { background: var(--tm-gray-bg); }
.tm-section--dark  { background: var(--tm-navy); overflow: hidden; }

.tm-section__head { margin-bottom: 60px; }
.tm-section__head--center { text-align: center; }

.tm-section__head h2 {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--tm-navy);
  margin: 0 0 12px !important;
}
.tm-section__head--light h2 { color: var(--tm-white) !important; }

.tm-section__sub {
  font-size: 16px;
  color: var(--tm-muted);
  line-height: 1.7;
  margin: 0 !important;
}
.tm-section__head--center .tm-section__sub {
  max-width: 520px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.tm-section__head--light .tm-section__sub { color: rgba(255,255,255,0.5) !important; }

.tm-section__decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,180,200,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(223,236,27,0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* ── SECTION LABEL ────────────────────────────────────────── */
.tm-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tm-cyan);
  margin-bottom: 14px;
}
.tm-section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}
.tm-section-label--yellow { color: var(--tm-yellow); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.tm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.35s var(--tm-ease);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}
.tm-btn--primary {
  background: var(--tm-cyan);
  color: var(--tm-navy) !important;
  border-color: var(--tm-cyan);
}
.tm-btn--primary:hover {
  background: var(--tm-yellow);
  border-color: var(--tm-yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,180,200,0.35);
  color: var(--tm-navy) !important;
}
.tm-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.85) !important;
  border-color: rgba(255,255,255,0.2);
}
.tm-btn--ghost:hover {
  border-color: var(--tm-cyan);
  color: var(--tm-cyan) !important;
  transform: translateY(-2px);
}
.tm-btn--yellow {
  background: var(--tm-yellow);
  color: var(--tm-navy) !important;
  border-color: var(--tm-yellow);
}
.tm-btn--yellow:hover {
  background: var(--tm-cyan);
  border-color: var(--tm-cyan);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0,180,200,0.35);
  color: var(--tm-navy) !important;
}
.tm-btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.8) !important;
  border-color: rgba(255,255,255,0.15);
}
.tm-btn--ghost-light:hover {
  border-color: var(--tm-cyan);
  color: var(--tm-cyan) !important;
  transform: translateY(-2px);
}

/* ── NAV ──────────────────────────────────────────────────── */
.tm-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(13,37,53,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,180,200,0.1);
  transition: all 0.3s var(--tm-ease);
}
.tm-nav--scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.3); }

.tm-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}

.tm-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}
.tm-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--tm-cyan);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.tm-logo-mark svg { width: 22px; height: 22px; display: block; }

.tm-logo-text {
  font-family: 'Outfit', sans-serif !important;
  font-size: 22px;
  font-weight: 700;
  color: var(--tm-white) !important;
  letter-spacing: -0.03em;
  text-decoration: none !important;
}
.tm-logo-text span { color: var(--tm-cyan); }

.tm-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}
.tm-nav__links li { margin: 0 !important; }
.tm-nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
.tm-nav__links a:hover { color: var(--tm-cyan) !important; }

.tm-nav__cta {
  background: var(--tm-cyan) !important;
  color: var(--tm-navy) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  transition: all 0.3s var(--tm-ease) !important;
  font-size: 13px !important;
}
.tm-nav__cta:hover {
  background: var(--tm-yellow) !important;
  color: var(--tm-navy) !important;
  transform: translateY(-1px) !important;
}

/* Hamburger */
.tm-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.tm-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: all 0.3s var(--tm-ease);
}

/* ── HERO ─────────────────────────────────────────────────── */
.tm-hero {
  min-height: 100vh;
  background: var(--tm-navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.tm-hero__bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 70% 40%, rgba(0,180,200,0.12) 0%, transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(223,236,27,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.tm-hero__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,180,200,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,200,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.tm-hero__accent-bar {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--tm-cyan), var(--tm-yellow));
}

.tm-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Eyebrow */
.tm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,200,0.12);
  border: 1px solid rgba(0,180,200,0.25);
  color: var(--tm-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.tm-eyebrow__dot {
  width: 6px; height: 6px;
  background: var(--tm-cyan);
  border-radius: 50%;
  animation: tm-pulse 2s infinite;
}
@keyframes tm-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.tm-hero__title {
  font-size: clamp(40px, 5.5vw, 70px) !important;
  font-weight: 800 !important;
  color: var(--tm-white) !important;
  margin: 0 0 16px !important;
  line-height: 1.1 !important;
}
.tm-accent-cyan   { color: var(--tm-cyan); }
.tm-accent-yellow { color: var(--tm-yellow); }

.tm-hero__tagline {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(17px, 2vw, 24px) !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.5) !important;
  font-style: italic !important;
  margin: 0 0 28px !important;
}
.tm-hero__tagline strong {
  color: rgba(255,255,255,0.9) !important;
  font-style: normal !important;
  font-weight: 700 !important;
}

.tm-hero__desc {
  font-size: 16px !important;
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.8 !important;
  margin: 0 0 40px !important;
  max-width: 480px;
}

.tm-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero stat cards */
.tm-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tm-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--tm-radius-md);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.35s var(--tm-ease);
}
.tm-stat-card:hover {
  background: rgba(0,180,200,0.08);
  border-color: rgba(0,180,200,0.2);
  transform: translateX(5px);
}
.tm-stat-card__icon {
  width: 52px; height: 52px;
  background: rgba(0,180,200,0.15);
  border-radius: var(--tm-radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--tm-cyan);
}
.tm-stat-card__number {
  font-family: 'Outfit', sans-serif !important;
  font-size: 34px !important;
  font-weight: 800 !important;
  color: var(--tm-white) !important;
  line-height: 1 !important;
  margin: 0 0 4px !important;
}
.tm-stat-card__number span { color: var(--tm-cyan); font-size: 20px; }
.tm-stat-card__label {
  font-size: 13px !important;
  color: rgba(255,255,255,0.5) !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}

/* ── ABOUT ────────────────────────────────────────────────── */
.tm-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tm-about__visual { position: relative; }

.tm-about__card {
  background: var(--tm-navy);
  border-radius: var(--tm-radius-lg);
  padding: 48px 44px;
  color: var(--tm-white);
  position: relative;
  overflow: hidden;
}
.tm-about__card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,180,200,0.18), transparent 70%);
  pointer-events: none;
}
.tm-about__card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tm-cyan), var(--tm-yellow));
}
.tm-about__card h3 {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--tm-white) !important;
  margin: 0 0 14px !important;
}
.tm-about__card p {
  font-size: 15px !important;
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.8 !important;
  margin: 0 !important;
}
.tm-about__year {
  font-family: 'Outfit', sans-serif;
  font-size: 88px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  position: absolute; bottom: 16px; right: 24px;
  line-height: 1; letter-spacing: -4px;
  pointer-events: none;
}

.tm-about__badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--tm-cyan);
  color: var(--tm-navy);
  border-radius: var(--tm-radius-md);
  padding: 16px 20px;
  font-family: 'Outfit', sans-serif;
  text-align: center;
  box-shadow: var(--tm-shadow-lg);
}
.tm-about__badge-num {
  font-size: 28px; font-weight: 800;
  display: block; line-height: 1;
  margin-bottom: 2px;
}
.tm-about__badge-txt {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.8; display: block;
}

.tm-about__content h2 {
  font-size: clamp(28px, 3.5vw, 44px) !important;
  font-weight: 800 !important;
  color: var(--tm-navy) !important;
  margin: 0 0 18px !important;
}
.tm-about__content > p {
  font-size: 16px !important;
  color: var(--tm-muted) !important;
  line-height: 1.85 !important;
  margin: 0 0 32px !important;
}

.tm-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tm-mv-card {
  background: var(--tm-gray-bg);
  border-radius: var(--tm-radius-md);
  padding: 24px;
  border-left: 3px solid var(--tm-cyan);
  transition: all 0.35s var(--tm-ease);
}
.tm-mv-card:hover {
  background: var(--tm-navy);
  border-left-color: var(--tm-yellow);
  transform: translateY(-4px);
  box-shadow: var(--tm-shadow-lg);
}
.tm-mv-card h4 {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--tm-navy) !important;
  margin: 0 0 8px !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.35s;
}
.tm-mv-card p {
  font-size: 14px !important;
  color: var(--tm-muted) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  transition: color 0.35s;
}
.tm-mv-card:hover h4 { color: var(--tm-white) !important; }
.tm-mv-card:hover p  { color: rgba(255,255,255,0.65) !important; }

/* ── VALORES ──────────────────────────────────────────────── */
.tm-valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tm-valor-card {
  background: var(--tm-white);
  border-radius: var(--tm-radius-md);
  padding: 36px 26px;
  border: 1px solid var(--tm-gray-mid);
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--tm-ease);
}
.tm-valor-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tm-cyan);
  transform: scaleX(0);
  transition: transform 0.35s var(--tm-ease);
  transform-origin: left;
}
.tm-valor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tm-shadow-lg);
  border-color: transparent;
}
.tm-valor-card:hover::after { transform: scaleX(1); }

.tm-valor-card__icon {
  width: 54px; height: 54px;
  background: rgba(0,180,200,0.1);
  border-radius: var(--tm-radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--tm-cyan);
  transition: all 0.35s var(--tm-ease);
}
.tm-valor-card:hover .tm-valor-card__icon {
  background: var(--tm-navy);
  color: var(--tm-cyan);
}

.tm-valor-card h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--tm-navy) !important;
  margin: 0 0 10px !important;
}
.tm-valor-card p {
  font-size: 14px !important;
  color: var(--tm-muted) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* ── CANALES ──────────────────────────────────────────────── */
.tm-canales-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.tm-canal {
  border-radius: var(--tm-radius-lg);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--tm-ease);
  color: var(--tm-white);
}
.tm-canal:hover { transform: translateY(-4px); }
.tm-canal--retail    { background: var(--tm-navy); }
.tm-canal--wholesale { background: linear-gradient(135deg, #007A8A 0%, #00AABF 100%); }

.tm-canal::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.tm-canal__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--tm-white);
}

.tm-canal h3 {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: var(--tm-white) !important;
  margin: 0 0 12px !important;
  position: relative; z-index: 2;
}
.tm-canal > p {
  font-size: 15px !important;
  color: rgba(255,255,255,0.72) !important;
  line-height: 1.7 !important;
  margin: 0 0 28px !important;
  position: relative; z-index: 2;
}

.tm-canal__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative; z-index: 2;
}
.tm-canal__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px !important;
  color: rgba(255,255,255,0.82) !important;
  margin: 0 !important;
  padding: 0 !important;
}
.tm-canal__list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--tm-yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

.tm-canal__bg-number {
  font-family: 'Outfit', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  position: absolute; bottom: 20px; right: 28px;
  line-height: 1; letter-spacing: -4px;
  pointer-events: none;
}

/* ── VENTAJAS ─────────────────────────────────────────────── */
.tm-ventajas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative; z-index: 2;
}

.tm-ventaja-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--tm-radius-md);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--tm-ease);
}
.tm-ventaja-card:hover {
  background: rgba(0,180,200,0.08);
  border-color: rgba(0,180,200,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.tm-ventaja-card__num {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tm-cyan);
  display: block;
  margin-bottom: 16px;
}
.tm-ventaja-card h3 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--tm-white) !important;
  margin: 0 0 12px !important;
}
.tm-ventaja-card p {
  font-size: 14px !important;
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.75 !important;
  margin: 0 !important;
}
.tm-ventaja-card__icon {
  position: absolute; bottom: 20px; right: 24px;
  opacity: 0.06;
  color: var(--tm-white);
  transition: all 0.35s var(--tm-ease);
  pointer-events: none;
}
.tm-ventaja-card:hover .tm-ventaja-card__icon {
  opacity: 0.12;
  transform: scale(1.1);
}

/* ── CTA ──────────────────────────────────────────────────── */
.tm-cta {
  background: var(--tm-navy);
  border-radius: var(--tm-radius-lg);
  padding: 72px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.tm-cta__decor {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(0,180,200,0.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(223,236,27,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.tm-cta__accent-bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--tm-cyan), var(--tm-yellow));
  border-radius: 4px 0 0 4px;
}

.tm-cta__text { position: relative; z-index: 2; }
.tm-cta__text h2 {
  font-size: clamp(26px, 3vw, 40px) !important;
  font-weight: 800 !important;
  color: var(--tm-white) !important;
  margin: 0 0 12px !important;
}
.tm-cta__text h2 em {
  color: var(--tm-cyan);
  font-style: normal;
}
.tm-cta__text p {
  font-size: 16px !important;
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.tm-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  position: relative; z-index: 2;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.tm-footer {
  background: var(--tm-navy-dark);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(0,180,200,0.08);
}
.tm-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.tm-footer__brand .tm-nav__logo { margin-bottom: 16px; }
.tm-footer__brand p {
  font-size: 14px !important;
  color: rgba(255,255,255,0.42) !important;
  line-height: 1.75 !important;
  margin: 0 !important;
  max-width: 300px;
}

.tm-footer__col h4 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--tm-cyan) !important;
  margin: 0 0 20px !important;
}
.tm-footer__col ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tm-footer__col ul li { margin: 0 !important; padding: 0 !important; }
.tm-footer__col ul li a {
  font-size: 14px !important;
  color: rgba(255,255,255,0.48) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
.tm-footer__col ul li a:hover { color: var(--tm-cyan) !important; }

.tm-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tm-footer__bottom p {
  font-size: 12px !important;
  color: rgba(255,255,255,0.28) !important;
  margin: 0 !important;
}
.tm-footer__bottom-links {
  display: flex;
  gap: 24px;
}
.tm-footer__bottom-links a {
  font-size: 12px !important;
  color: rgba(255,255,255,0.28) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
.tm-footer__bottom-links a:hover { color: var(--tm-cyan) !important; }

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.tm-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.65s var(--tm-ease),
    transform 0.65s var(--tm-ease);
}
.tm-fade-up.tm-visible { opacity: 1; transform: translateY(0); }
.tm-delay-1 { transition-delay: 0.10s; }
.tm-delay-2 { transition-delay: 0.20s; }
.tm-delay-3 { transition-delay: 0.30s; }
.tm-delay-4 { transition-delay: 0.40s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tm-valores-grid  { grid-template-columns: repeat(2, 1fr); }
  .tm-ventajas-grid { grid-template-columns: repeat(2, 1fr); }
  .tm-about         { gap: 48px; }
}

@media (max-width: 768px) {
  .tm-nav__links { display: none; }
  .tm-nav__links.tm-open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(13,37,53,0.98);
    padding: 16px 0 24px;
    border-top: 1px solid rgba(0,180,200,0.1);
    z-index: 9998;
  }
  .tm-nav__links.tm-open li { padding: 0; }
  .tm-nav__links.tm-open a {
    display: block;
    padding: 12px 24px;
    font-size: 16px !important;
  }
  .tm-nav__links.tm-open .tm-nav__cta {
    margin: 8px 24px 0;
    border-radius: 50px !important;
    text-align: center;
    display: block;
    padding: 10px 24px !important;
  }
  .tm-nav__hamburger { display: flex; }

  .tm-hero__content  { grid-template-columns: 1fr; gap: 0; }
  .tm-hero__stats    { display: none; }
  .tm-section        { padding: 64px 0; }
  .tm-about          { grid-template-columns: 1fr; gap: 40px; }
  .tm-about__badge   { position: static; display: inline-block; margin-top: 16px; }
  .tm-mv-grid        { grid-template-columns: 1fr; }
  .tm-canales-grid   { grid-template-columns: 1fr; }
  .tm-valores-grid   { grid-template-columns: 1fr 1fr; gap: 16px; }
  .tm-ventajas-grid  { grid-template-columns: 1fr; }
  .tm-cta            { grid-template-columns: 1fr; gap: 28px; padding: 44px 28px; }
  .tm-footer__inner  { grid-template-columns: 1fr; gap: 32px; }
  .tm-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .tm-valores-grid { grid-template-columns: 1fr; }
  .tm-canal        { padding: 36px 28px; }
  .tm-hero__content { padding-top: 100px; padding-bottom: 60px; }
}
