:root {
  --black: #050505;
  --ink: #0b0b0d;
  --carbon: #121214;
  --graphite: #1d1d20;
  --steel: #b8bcc2;
  --silver: #eef0f3;
  --muted: #a5a7ad;
  --orange: #ff5a00;
  --orange-2: #ff8a1f;
  --orange-dark: #a83800;
  --white: #ffffff;
  --wa: #25d366;
  --line: rgba(255, 255, 255, 0.1);
  --line-orange: rgba(255, 90, 0, 0.34);
  --radius: 8px;
  --maxw: 1180px;
  --font-display: 'Anton', system-ui, sans-serif;
  --font-body: 'Sora', system-ui, -apple-system, sans-serif;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.54);
  --shadow-orange: 0 18px 46px rgba(255, 90, 0, 0.28);
  --grad-orange: linear-gradient(135deg, var(--orange), var(--orange-2));
  --metal-sheen: linear-gradient(115deg, rgba(255,255,255,0.18), transparent 22%, transparent 70%, rgba(255,255,255,0.08));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 164px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 90, 0, 0.12), transparent 32%),
    radial-gradient(circle at 90% 18%, rgba(184, 188, 194, 0.06), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #050505 0%, #0f0f11 42%, #050505 100%);
  background-size: auto, auto, 78px 78px, auto;
  color: var(--silver);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(255, 90, 0, 0.045) 45%, transparent 52%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 140px);
  opacity: 0.72;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--orange); color: var(--white); }
.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1200;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--orange);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}
.container--narrow { max-width: 820px; }
.section { position: relative; padding: clamp(70px, 9vw, 120px) 0; }
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 90, 0, 0.018), transparent);
  opacity: 0.8;
}
.section--metal {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, #111114, #070707);
  border-block: 1px solid rgba(255, 255, 255, 0.07);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  width: 0;
  height: 3px;
  background: var(--grad-orange);
  box-shadow: 0 0 18px rgba(255, 90, 0, 0.9);
}

.grad {
  background: linear-gradient(90deg, var(--orange), var(--orange-2), #fff0df);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: paletteTextShift 4.8s ease-in-out infinite;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.section-head {
  max-width: 740px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 400;
  line-height: 1.03;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255, 90, 0, 0.16);
  animation: titleGlowPulse 4.4s ease-in-out infinite;
}
.section-sub {
  margin-top: 15px;
  color: var(--muted);
  font-size: 1rem;
}

.btn {
  --pad: 13px 24px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: var(--pad);
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: -40% -70%;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.26), transparent 62%);
  transform: translateX(-70%);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.btn:hover::after { transform: translateX(70%); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.98); }
.btn--primary {
  color: var(--white);
  background: var(--grad-orange);
  box-shadow: var(--shadow-orange);
}
.btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--line-orange);
}
.btn--ghost:hover { background: rgba(255, 90, 0, 0.11); }
.btn--whatsapp {
  color: #03150a;
  background: var(--wa);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.3);
}
.btn--mini {
  --pad: 8px 14px;
  min-height: 34px;
  color: var(--orange-2);
  background: rgba(255, 90, 0, 0.12);
  border-color: var(--line-orange);
  font-size: 0.8rem;
}
.btn--mini:hover { color: var(--white); background: var(--orange); }
.btn--block { width: 100%; }

.header {
  position: fixed;
  z-index: 900;
  inset: 0 0 auto 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.1));
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.header.is-scrolled {
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid var(--line-orange);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(16px);
}
.ticker {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 90, 0, 0.18), rgba(255, 138, 31, 0.18));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, var(--orange), var(--orange-2)) 1;
  backdrop-filter: blur(10px);
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 54px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, rgba(5, 5, 5, 0.92), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, rgba(5, 5, 5, 0.92), transparent); }
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 36s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 26px;
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  color: var(--silver);
}
.ticker-item .ic { font-size: 1.05rem; line-height: 1; }
.ticker-item .sep { color: var(--orange-2); opacity: 0.65; font-weight: 700; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 560px) {
  .ticker-item { padding: 8px 18px; font-size: 0.8rem; }
  .ticker-track { animation-duration: 26s; }
}
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

.header__inner {
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  min-height: 62px;
  padding: 8px 20px 8px 10px;
  border: 1px solid rgba(255, 90, 0, 0.32);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.13), transparent 34%),
    linear-gradient(145deg, #111114, #050505 62%, #141416);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.055);
  isolation: isolate;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.brand:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 90, 0, 0.55);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.48), 0 0 30px rgba(255, 90, 0, 0.12);
}
.brand__img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand--bare {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  min-height: 0;
}
.brand--bare:hover {
  background: none;
  border: none;
  box-shadow: none;
  transform: translateY(-1px);
}
.brand--bare {
  gap: 0;
  /* corre todo el branding (logo + nombre) más a la izquierda */
  margin-left: -60px;
}
.brand--bare .brand__img {
  height: 100px;
}
.brand--bare .brand__wordmark {
  margin-left: -78px;
}
.brand__emblem {
  position: relative;
  width: 56px;
  height: 46px;
  flex: 0 0 auto;
}
.brand__bag {
  position: absolute;
  left: 4px;
  right: 0;
  bottom: 0;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px 8px 12px 12px;
  background: linear-gradient(155deg, #191b20, #050506 72%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5), 0 0 18px rgba(255, 90, 0, 0.2);
}
.brand__handle {
  position: absolute;
  left: 13px;
  top: -16px;
  width: 27px;
  height: 24px;
  border: 5px solid var(--orange);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  box-shadow: 0 0 12px rgba(255, 90, 0, 0.4);
}
.brand__phone {
  position: absolute;
  left: 18px;
  top: 8px;
  width: 15px;
  height: 22px;
  border: 3px solid var(--white);
  border-radius: 4px;
}
.brand__phone::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -1px;
  width: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}
.brand__phone::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.95), 0 8px 0 -4px var(--orange);
}
.brand__wordmark {
  display: grid;
  min-width: 0;
  line-height: 1;
}
.brand__wordmark > span {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.95rem, 2.45vw, 2.72rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(255, 90, 0, 0.15);
}
.brand__wordmark em {
  color: var(--orange);
  font-style: normal;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
}
.nav__link {
  position: relative;
  padding: 7px 0;
  color: rgba(238, 240, 243, 0.86);
  font-size: 0.88rem;
  font-weight: 700;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--grad-orange);
  transition: width 0.22s ease;
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__cta { margin-left: 4px; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  border: 1px solid var(--line-orange);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 172px 0 86px;
  overflow: hidden;
}
.hero__aura {
  position: absolute;
  inset: 86px 0 auto 0;
  height: 58%;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 32%, rgba(255, 90, 0, 0.28), transparent 30%),
    radial-gradient(circle at 72% 22%, rgba(255, 138, 31, 0.18), transparent 28%),
    linear-gradient(90deg, transparent, rgba(255,255,255,0.045), transparent);
  filter: blur(10px);
  opacity: 0.82;
  animation: auraDrift 7s ease-in-out infinite;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 90, 0, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 25%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 80px);
  pointer-events: none;
}
.hero__mesh {
  position: absolute;
  inset: auto -10% 0 -10%;
  height: 38%;
  background:
    linear-gradient(transparent, rgba(255, 90, 0, 0.12)),
    repeating-linear-gradient(0deg, rgba(255, 90, 0, 0.16) 0 1px, transparent 1px 28px);
  transform: skewY(-4deg);
  opacity: 0.62;
}
.hero__mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.3), transparent);
  transform: translateX(-100%);
  animation: meshSweep 5.8s ease-in-out infinite;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  border: 1px solid var(--line-orange);
  border-radius: 999px;
  background: rgba(255, 90, 0, 0.09);
  color: #ffd3b7;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 0 26px rgba(255, 90, 0, 0.1);
}
.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 90, 0, 0.18);
}
.hero__title {
  position: relative;
  display: grid;
  gap: 0.01em;
  margin: 22px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 400;
  line-height: 0.92;
  color: var(--white);
  text-transform: uppercase;
  isolation: isolate;
  text-shadow: 0 0 22px rgba(255, 90, 0, 0.18);
  animation: heroTitleGlow 4.2s ease-in-out infinite;
}
.hero__title::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -8%;
  bottom: -8%;
  left: -14%;
  width: 54%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.18) 48%, transparent 72%);
  filter: blur(2px);
  opacity: 0;
  transform: translateX(-140%) skewX(-12deg);
  pointer-events: none;
}
.hero__title::after {
  content: "";
  width: min(420px, 72%);
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, var(--orange), var(--orange-2), transparent),
    linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 0 26px rgba(255, 90, 0, 0.42);
  transform: scaleX(0);
  transform-origin: left center;
}
.hero__title-line {
  display: block;
  overflow: hidden;
  padding: 0.04em 0;
}
.hero__title-line > span {
  display: block;
  opacity: 0;
  transform: translateY(112%) skewY(3deg);
  transform-origin: left bottom;
  will-change: transform, opacity, background-position;
}
.hero__title-line:nth-child(2) > span {
  animation-delay: 0.14s;
}
.hero__title-line--accent > span {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-2) 22%, #fff0df 48%, var(--orange) 72%, var(--orange-dark) 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(255, 90, 0, 0.24));
  animation-delay: 0.28s;
}
.hero__content.is-visible .hero__title::before {
  animation: titleScanner 1.65s 0.72s ease-out forwards;
}
.hero__content.is-visible .hero__title::after {
  animation: titleBeam 1.05s 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__content.is-visible .hero__title-line > span {
  animation-name: titleLineReveal;
  animation-duration: 0.92s;
  animation-timing-function: cubic-bezier(0.18, 1, 0.3, 1);
  animation-fill-mode: forwards;
}
.hero__content.is-visible .hero__title-line--accent > span {
  animation-name: titleLineReveal, titleChrome;
  animation-duration: 0.92s, 5.6s;
  animation-timing-function: cubic-bezier(0.18, 1, 0.3, 1), ease-in-out;
  animation-delay: 0.28s, 1.28s;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
}
.hero__lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
}
.hero__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: -10px 0 30px;
}
.hero__assurance span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(238, 240, 243, 0.78);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.78rem;
  font-weight: 700;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 34px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero__trust li {
  display: flex;
  flex-direction: column;
}
.hero__trust strong {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.9rem;
  line-height: 1;
}
.hero__trust span {
  color: var(--muted);
  font-size: 0.8rem;
}
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  row-gap: clamp(18px, 3vw, 32px);
}
.hero__logo {
  position: relative;
  width: clamp(300px, 49vw, 600px);
  max-width: 100%;
  height: auto;
  /* Centrado verticalmente entre el header y la imagen del celular.
     top/left (no transform) para no chocar con la animación tcFloat. */
  top: -65px;
  left: 0;
  margin-bottom: 6px;
  filter: drop-shadow(0 18px 50px rgba(255, 90, 0, 0.45));
  animation: tcFloat 4.6s ease-in-out infinite;
}
.hero-device {
  position: relative;
  border: 1px solid var(--line-orange);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.055) inset;
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
  isolation: isolate;
  animation: deviceFloat 7s ease-in-out infinite;
}
.hero-device::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--metal-sheen);
  pointer-events: none;
}
.hero-device__scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(255, 90, 0, 0.22), transparent);
  transform: translateY(-110%);
  opacity: 0.55;
  animation: imageScanner 4.8s ease-in-out infinite;
  pointer-events: none;
}
.hero-device img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.hero-device video {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
/* Botón flotante de sonido (instrumental de fondo) */
.tc-sound {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  cursor: pointer;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid var(--line-orange);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.18s ease, background 0.18s ease;
}
.tc-sound.show { display: inline-flex; }
.tc-sound .ic { font-size: 1.05rem; line-height: 1; }
.tc-sound:hover { transform: scale(1.05); background: rgba(5, 5, 5, 0.95); }
.tc-sound.mini { padding: 11px; border-radius: 50%; }
.tc-sound.mini .lbl { display: none; }
.tc-sound.pulse { animation: tcSoundPulse 1.6s ease-in-out infinite; }
@keyframes tcSoundPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 0 rgba(255,90,0,0.5); }
  50% { box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 10px rgba(255,90,0,0); }
}
.hero-device__panel {
  position: absolute;
  left: 18px;
  bottom: 18px;
  min-width: 230px;
  padding: 15px 18px;
  border: 1px solid var(--line-orange);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(12px);
}
.hero-device__panel span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-device__panel strong {
  display: block;
  color: var(--orange-2);
  font-size: 1.35rem;
}
.hero__status {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border: 1px solid var(--line-orange);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(5, 5, 5, 0.76);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42), 0 0 24px rgba(255, 90, 0, 0.12);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__status--top {
  top: 9%;
  right: -4px;
}
.hero__status--bottom {
  left: -10px;
  bottom: 11%;
}

.features { padding-top: 0; margin-top: -36px; }
.features__grid,
.products,
.cats,
.why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature,
.product,
.why__item,
.step,
.quote,
.contact__form,
.faq__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, var(--graphite), #090909);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}
.feature::before,
.product::before,
.why__item::before,
.step::before,
.quote::before,
.contact__form::before,
.faq__item::before,
.service::before,
.loc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--metal-sheen);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.feature:hover::before,
.product:hover::before,
.why__item:hover::before,
.step:hover::before,
.quote:hover::before,
.contact__form:hover::before,
.faq__item:hover::before,
.service:hover::before,
.loc-card:hover::before {
  opacity: 0.55;
}
.feature {
  min-height: 180px;
  padding: 26px 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature:hover,
.product:hover,
.cat:hover,
.why__item:hover,
.step:hover {
  transform: translateY(-5px);
  border-color: var(--line-orange);
  box-shadow: var(--shadow-orange);
}
.feature__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid var(--line-orange);
  border-radius: var(--radius);
  color: var(--orange-2);
  background: rgba(255, 90, 0, 0.11);
  font-weight: 900;
  letter-spacing: 0.08em;
}
.feature h3,
.product h3,
.step h3 {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.25;
  animation: compactTitleGlow 6.2s ease-in-out infinite;
}
.feature:nth-child(2) h3,
.product:nth-child(2) h3,
.cat:nth-child(2) span,
.service:nth-child(2) strong,
.step:nth-child(2) h3 { animation-delay: 0.55s; }
.feature:nth-child(3) h3,
.product:nth-child(3) h3,
.cat:nth-child(3) span,
.service:nth-child(3) strong,
.step:nth-child(3) h3 { animation-delay: 1.1s; }
.feature:nth-child(4) h3,
.product:nth-child(4) h3,
.cat:nth-child(4) span,
.service:nth-child(4) strong { animation-delay: 1.65s; }
.service:nth-child(5) strong { animation-delay: 2.2s; }
.service:nth-child(6) strong { animation-delay: 2.75s; }
.feature p,
.product p,
.step p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product {
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.product__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0c0c0e;
  border-bottom: 1px solid var(--line-orange);
}
.product__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0c0c0e;
  padding: 10px;
  transition: transform 0.35s ease, filter 0.35s ease;
}
/* placeholder cuando el producto todavia no tiene imagen */
.product__media .tc-ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  color: var(--muted);
}
.product:hover .product__media img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}
.product__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 90, 0, 0.84);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product { display: flex; flex-direction: column; }
.product__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 18px;
}
.product__body,
.feature > *,
.why__item > *,
.step > *,
.quote > *,
.contact__form > *,
.faq__item > *,
.service > *,
.loc-card > * {
  position: relative;
  z-index: 1;
}
.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--muted);
  font-size: 0.82rem;
}
.product__foot strong { color: var(--orange-2); }

.cats { gap: 18px; }
.cat {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.cat::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.18), transparent 28%, transparent 70%, rgba(255, 90, 0, 0.16));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.cat:hover::before { opacity: 0.7; }
.cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.cat::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.8));
}
.cat:hover img {
  transform: scale(1.07);
  opacity: 0.92;
}
.cat span,
.cat small {
  position: relative;
  z-index: 1;
}
.cat span {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
  animation: compactTitleGlow 6.2s ease-in-out infinite;
}
.cat small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.credit__inner,
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--silver);
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--grad-orange);
  font-size: 0.72rem;
  font-weight: 900;
}
.quote {
  padding: clamp(24px, 4vw, 34px);
  border-color: var(--line-orange);
}
.quote__label {
  color: var(--orange-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.quote__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 14px 0 10px;
}
.quote__row span { color: var(--muted); }
.quote__row strong {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 400;
}
.quote__bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.quote__bar span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--grad-orange);
}
.quote__plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0 16px;
}
.quote__plans > div {
  padding: 14px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.quote__plans em {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
}
.quote__plans strong {
  display: block;
  color: var(--white);
  margin-top: 5px;
  font-size: 0.98rem;
}
.quote__plans .is-best {
  border-color: var(--line-orange);
  background: rgba(255, 90, 0, 0.12);
}
.quote small {
  color: var(--muted);
  font-size: 0.72rem;
}

.why__item {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 24px 18px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.why__item strong {
  display: block;
  font-family: var(--font-display);
  color: var(--orange);
  font-size: 2.65rem;
  line-height: 1;
}
.why__item span {
  display: block;
  max-width: 150px;
  color: var(--muted);
  font-size: 0.84rem;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(130deg, rgba(255, 90, 0, 0.12), transparent 36%),
    linear-gradient(180deg, var(--graphite), #080808);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.service:hover {
  transform: translateY(-4px);
  border-color: var(--line-orange);
}
.service span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-2);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.service strong {
  color: var(--white);
  font-size: 0.98rem;
  animation: compactTitleGlow 6.2s ease-in-out infinite;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 54px;
}
.step {
  padding: 28px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.step__num {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--orange);
  font-size: 3rem;
  line-height: 1;
}

.map-frame {
  position: relative;
  height: clamp(380px, 56vw, 560px);
  overflow: hidden;
  border: 1px solid var(--line-orange);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}
.map-frame__view,
.map-loader {
  position: absolute;
  inset: 0;
}
.map-frame__view iframe {
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.8s ease, transform 1s ease;
}
.map-frame.is-revealed .map-frame__view iframe {
  opacity: 1;
  transform: scale(1);
}
.map-loader {
  z-index: 2;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.map-loader.is-done {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}
.map-loader__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08);
}
.map-loader__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.25), rgba(5,5,5,0.84));
}
.map-loader__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}
.spinner {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 2px solid var(--line-orange);
  border-radius: 50%;
  color: var(--orange-2);
  background: rgba(5, 5, 5, 0.68);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 0 26px rgba(255, 90, 0, 0.42);
  animation: spinPulse 1.25s ease-in-out infinite;
}
.map-loader__title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.6rem, 3.8vw, 2.45rem);
  text-transform: uppercase;
}
.map-loader__text { color: var(--silver); }
.map-loader__bar {
  width: min(320px, 74%);
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
}
.map-loader__bar span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--grad-orange);
}
.map-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 90, 0, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(255,255,255,0.06), transparent 42%),
    rgba(255, 90, 0, 0.06);
  color: rgba(238, 240, 243, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
}
.map-note a {
  flex: none;
  color: var(--orange-2);
  font-weight: 900;
}
.map-note a:hover {
  color: var(--white);
}
.location__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.loc-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--graphite), #090909);
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.loc-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-orange);
}
.loc-card > span,
.contact__list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  border: 1px solid var(--line-orange);
  border-radius: var(--radius);
  color: var(--orange-2);
  background: rgba(255, 90, 0, 0.11);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.loc-card strong {
  display: block;
  color: var(--white);
}
.loc-card p {
  color: var(--muted);
  font-size: 0.84rem;
}

.contact__list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.contact__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--silver);
  font-weight: 700;
}
.contact__form {
  padding: clamp(24px, 4vw, 32px);
  border-color: var(--line-orange);
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 800;
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255,255,255,0.045);
  font: inherit;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: #777a80; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.13);
}
.contact__hint {
  min-height: 1.2em;
  margin-top: 12px;
  color: var(--orange-2);
  font-size: 0.84rem;
  text-align: center;
}
.contact__hint.is-error { color: #ff7676; }

.faq {
  display: grid;
  gap: 14px;
}
.faq__item {
  overflow: hidden;
}
.faq__item[open] { border-color: var(--line-orange); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.45rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.final-cta {
  padding-top: clamp(40px, 7vw, 84px);
}
.final-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line-orange);
  border-radius: 14px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 90, 0, 0.22), transparent 34%),
    var(--metal-sheen),
    linear-gradient(145deg, #151518, #060606 72%);
  box-shadow: var(--shadow), 0 0 42px rgba(255, 90, 0, 0.12);
}
.final-cta__inner::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-2), transparent);
  box-shadow: 0 0 28px rgba(255, 90, 0, 0.5);
}
.final-cta__inner > * {
  position: relative;
  z-index: 1;
}
.final-cta .section-title {
  margin: 0;
}
.final-cta .section-sub {
  max-width: 620px;
}

.footer {
  padding-top: 56px;
  border-top: 1px solid var(--line-orange);
  background: linear-gradient(180deg, #090909, #000);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer__brand p {
  max-width: 340px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer__col h4 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__col a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer__col a:hover {
  color: var(--orange-2);
  transform: translateX(4px);
}
.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.82rem;
}
.footer__bottom > span:last-child { text-align: right; }
.footer__admin { text-align: center; }
.footer__admin a { font-weight: 600; }
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #03150a;
  background: var(--wa);
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(37, 211, 102, 0.45);
  transition: transform 0.22s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float__icon {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: currentColor;
}
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border: 2px solid var(--wa);
  border-radius: 50%;
  animation: ring 2s ease-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes ring {
  from { transform: scale(1); opacity: 0.72; }
  to { transform: scale(1.75); opacity: 0; }
}
@keyframes spinPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}
@keyframes auraDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.78; }
  50% { transform: translate3d(2%, -2%, 0) scale(1.04); opacity: 0.96; }
}
@keyframes meshSweep {
  0%, 45% { transform: translateX(-100%); opacity: 0; }
  55% { opacity: 0.85; }
  100% { transform: translateX(100%); opacity: 0; }
}
@keyframes deviceFloat {
  0%, 100% { transform: perspective(900px) rotateY(-5deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(900px) rotateY(-3deg) rotateX(1deg) translateY(-10px); }
}
@keyframes imageScanner {
  0%, 36% { transform: translateY(-115%); opacity: 0; }
  48% { opacity: 0.62; }
  68%, 100% { transform: translateY(115%); opacity: 0; }
}
@keyframes paletteTextShift {
  0%, 100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 6px rgba(255, 90, 0, 0.18));
  }
  28% {
    background-position: 78% 50%;
    filter: drop-shadow(0 0 18px rgba(255, 90, 0, 0.48));
  }
  52% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 24px rgba(255, 138, 31, 0.34));
  }
  76% {
    background-position: 38% 50%;
    filter: drop-shadow(0 0 10px rgba(238, 240, 243, 0.22));
  }
}
@keyframes titleGlowPulse {
  0%, 100% {
    color: var(--white);
    text-shadow:
      0 0 10px rgba(255, 90, 0, 0.12),
      0 0 0 rgba(255, 138, 31, 0);
  }
  18% {
    color: #fff8f2;
    text-shadow:
      0 0 14px rgba(255, 90, 0, 0.34),
      0 0 32px rgba(255, 90, 0, 0.18);
  }
  34% {
    color: #ffd9bf;
    text-shadow:
      0 0 20px rgba(255, 138, 31, 0.46),
      0 0 52px rgba(255, 90, 0, 0.24);
  }
  46% {
    color: var(--silver);
    text-shadow:
      0 0 10px rgba(238, 240, 243, 0.2),
      0 0 22px rgba(255, 90, 0, 0.1);
  }
  62% {
    color: #fff1e5;
    text-shadow:
      0 0 18px rgba(255, 90, 0, 0.4),
      0 0 46px rgba(255, 138, 31, 0.22);
  }
}
@keyframes heroTitleGlow {
  0%, 100% {
    text-shadow:
      0 0 16px rgba(255, 90, 0, 0.16),
      0 0 42px rgba(0, 0, 0, 0.5);
  }
  22% {
    text-shadow:
      0 0 24px rgba(255, 90, 0, 0.42),
      0 0 70px rgba(255, 90, 0, 0.22),
      0 10px 44px rgba(0, 0, 0, 0.6);
  }
  48% {
    text-shadow:
      0 0 14px rgba(238, 240, 243, 0.22),
      0 0 42px rgba(255, 138, 31, 0.18);
  }
  70% {
    text-shadow:
      0 0 28px rgba(255, 138, 31, 0.38),
      0 0 82px rgba(255, 90, 0, 0.2),
      0 10px 44px rgba(0, 0, 0, 0.62);
  }
}
@keyframes compactTitleGlow {
  0%, 100% {
    color: var(--white);
    text-shadow: 0 0 0 rgba(255, 90, 0, 0);
  }
  30% {
    color: #fff5ec;
    text-shadow: 0 0 14px rgba(255, 90, 0, 0.28);
  }
  42% {
    color: #ffd7bc;
    text-shadow: 0 0 22px rgba(255, 138, 31, 0.28);
  }
  58% {
    color: var(--silver);
    text-shadow: 0 0 8px rgba(238, 240, 243, 0.14);
  }
}
@keyframes titleLineReveal {
  0% {
    opacity: 0;
    transform: translateY(112%) skewY(3deg);
  }
  72% {
    opacity: 1;
    transform: translateY(-6%) skewY(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
  }
}
@keyframes titleChrome {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes titleScanner {
  0% {
    opacity: 0;
    transform: translateX(-140%) skewX(-12deg);
  }
  18% { opacity: 1; }
  86% { opacity: 0.7; }
  100% {
    opacity: 0;
    transform: translateX(265%) skewX(-12deg);
  }
}
@keyframes titleBeam {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 1100px) {
  .brand {
    padding-right: 14px;
  }
  .brand__wordmark > span {
    font-size: 1.95rem;
  }
  .nav { gap: 14px; }
  .nav__link { font-size: 0.82rem; }
  .nav__cta { display: none; }
}

@media (max-width: 900px) {
  .header__inner { height: 78px; }
  .brand {
    min-height: 58px;
    padding: 6px 14px 6px 9px;
  }
  .brand__emblem {
    width: 52px;
    height: 42px;
  }
  .brand__wordmark > span {
    font-size: 1.72rem;
  }
  .nav {
    position: fixed;
    top: 78px;
    right: 0;
    width: min(330px, 86vw);
    height: calc(100vh - 78px);
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 24px;
    border-left: 1px solid var(--line-orange);
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(16px);
    transform: translateX(110%);
    transition: transform 0.32s ease;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav__cta {
    display: inline-flex;
    margin: 12px 0 0;
  }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding-top: 154px; text-align: center; }
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__content { order: 2; }
  .hero__visual { order: 1; }
  .hero__assurance { justify-content: center; }
  .hero__status--top {
    right: 12px;
    top: 10px;
  }
  .hero__status--bottom {
    left: 12px;
    bottom: 10px;
  }
  .hero__title::after {
    margin-inline: auto;
    transform-origin: center;
  }
  .hero__title-line > span {
    transform-origin: center bottom;
  }
  .hero__lead { margin-inline: auto; }
  .hero__actions,
  .hero__trust { justify-content: center; }
  .features__grid,
  .products,
  .cats,
  .why { grid-template-columns: repeat(2, 1fr); }
  .services,
  .steps,
  .credit__inner,
  .contact__inner { grid-template-columns: 1fr; }
  .location__cards { grid-template-columns: 1fr; }
  .final-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .final-cta .section-sub {
    margin-inline: auto;
  }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .brand {
    max-width: calc(100vw - 92px);
    min-height: 52px;
    gap: 8px;
    padding: 6px 10px 6px 7px;
  }
  .brand__emblem {
    width: 43px;
    height: 36px;
    transform: scale(0.84);
    transform-origin: left center;
    margin-right: -4px;
  }
  .brand__wordmark > span {
    font-size: 1.32rem;
  }
  .hero { padding-top: 146px; }
  .hero__title { font-size: clamp(2.45rem, 16vw, 3.5rem); }
  .hero__assurance span {
    width: 100%;
    justify-content: center;
  }
  .hero__actions .btn { width: 100%; }
  .hero__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .hero-device { transform: none; }
  .hero__status {
    position: static;
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }
  .hero__status--bottom {
    margin-top: 8px;
  }
  .hero-device__panel {
    position: static;
    min-width: 0;
    border-width: 1px 0 0 0;
    border-radius: 0;
  }
  .map-note {
    align-items: flex-start;
    flex-direction: column;
  }
  .map-note a {
    width: 100%;
  }
  .features__grid,
  .products,
  .cats,
  .why,
  .quote__plans,
  .footer__grid { grid-template-columns: 1fr; }
  .features { margin-top: 0; padding-top: 48px; }
  .cat { min-height: 230px; }
  .quote__row {
    flex-direction: column;
    gap: 4px;
  }
  .final-cta__inner {
    padding: 26px 18px;
  }
  .final-cta__inner .btn {
    width: 100%;
  }
  .footer__bottom { grid-template-columns: 1fr; text-align: center; }
  .footer__bottom > span:last-child { text-align: center; }
  .wa-float {
    width: 54px;
    height: 54px;
    right: 18px;
    bottom: 18px;
  }
}

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

/* ===== Splash / animación de carga inicial ===== */
#tcSplash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  background-color: #0b0b0d;
  background-image:
    radial-gradient(circle at 50% 36%, rgba(255, 90, 0, 0.16), transparent 58%),
    linear-gradient(160deg, rgba(8, 5, 2, 0.82), rgba(5, 5, 6, 0.9)),
    url('assets/manizales-splash.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#tcSplash.gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.tc-splash__glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.22), transparent 65%);
  filter: blur(18px);
  animation: tcGlow 3.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes tcGlow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 1; }
}
.tc-splash__logo {
  width: clamp(280px, 66vw, 380px);
  height: auto;
  object-fit: contain;
  position: relative;
  animation: tcLogoIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both, tcFloat 4s ease-in-out 0.9s infinite;
  filter: drop-shadow(0 12px 38px rgba(255, 90, 0, 0.4));
}
@keyframes tcLogoIn {
  0% { transform: scale(0.4) rotate(-12deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes tcFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.tc-splash__name {
  font-family: 'Anton', 'Sora', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  animation: tcUp 0.7s ease 0.35s both;
}
.tc-splash__name b {
  background: linear-gradient(135deg, #ff5a00, #ff8a1f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tc-splash__tag {
  color: #cfcfd6;
  font-size: clamp(0.82rem, 2.6vw, 1rem);
  letter-spacing: 0.04em;
  position: relative;
  animation: tcUp 0.7s ease 0.5s both;
}
.tc-splash__loc {
  color: #ff8a1f;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  position: relative;
  animation: tcUp 0.7s ease 0.62s both;
}
@keyframes tcUp {
  0% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.tc-splash__bar {
  width: 180px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.13);
  overflow: hidden;
  position: relative;
  margin-top: 6px;
}
.tc-splash__bar i {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 3px;
  background: linear-gradient(90deg, #ff5a00, #ff8a1f);
  animation: tcBar 1.1s ease-in-out infinite;
}
@keyframes tcBar {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(360%); }
}
.tc-splash__hint {
  font-size: 0.74rem;
  color: #8a8a93;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  animation: tcUp 0.7s ease 0.8s both;
}
@media (prefers-reduced-motion: reduce) {
  #tcSplash .tc-splash__logo,
  #tcSplash .tc-splash__glow { animation: none; }
}

/* ===== Galería "Lo que hacemos en el local" ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gcard {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, #141416, #08080a);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.gcard:hover {
  transform: translateY(-6px);
  border-color: var(--line-orange);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55), 0 0 34px rgba(255, 90, 0, 0.16);
}
.gcard img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: saturate(1.05) contrast(1.02);
}
.gcard:hover img { transform: scale(1.07); }
.gcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(5, 5, 6, 0.92) 100%);
  pointer-events: none;
  z-index: 1;
}
.gcard__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 16px 18px 18px;
}
.gcard__body strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
}
.gcard__body span {
  display: block;
  margin-top: 4px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--steel);
}
.gcard__body strong::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 3px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 3px;
  background: var(--grad-orange);
}
@media (max-width: 880px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .gallery { grid-template-columns: 1fr; }
  .gcard img { height: 200px; }
}

/* ===== Selector del simulador de credito ===== */
.quote__select-wrap {
  display: block;
  margin: 6px 0 16px;
}
.quote__select-wrap > span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.quote__select-wrap select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding: 13px 42px 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--line-orange);
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.1), transparent 40%),
    linear-gradient(150deg, #161618, #0a0a0c);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ff8a1f' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(255, 90, 0, 0.1), transparent 40%),
    linear-gradient(150deg, #161618, #0a0a0c);
  background-repeat: no-repeat;
  background-position: right 16px center, 0 0, 0 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.quote__select-wrap select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.18);
}
.quote__select-wrap select option { background: #0c0c0e; color: #fff; }
.quote .btn--block { margin: 14px 0 4px; }
.quote__plans strong { transition: color 0.25s ease; }

/* ===== Planes de cuotas seleccionables ===== */
.quote__plans-hint {
  display: block;
  margin: 18px 0 8px;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.quote__plans { margin-top: 0; }
.quote__plans .plan {
  position: relative;
  cursor: pointer;
  outline: none;
  transition: transform 0.18s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.quote__plans .plan:hover {
  transform: translateY(-3px);
  border-color: var(--line-orange);
  background: rgba(255, 90, 0, 0.07);
}
.quote__plans .plan:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.22);
}
.quote__plans .plan.is-selected {
  border-color: var(--orange);
  background: linear-gradient(160deg, rgba(255, 90, 0, 0.2), rgba(255, 90, 0, 0.06));
  box-shadow: 0 12px 30px rgba(255, 90, 0, 0.22), inset 0 0 0 1px rgba(255, 138, 31, 0.35);
}
.quote__plans .plan.is-selected strong { color: var(--orange-2); }
.quote__plans .plan.is-selected::after {
  content: "✓";
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--orange-2);
}
.quote__plans .plan__pop {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #150a02;
  background: var(--grad-orange);
  white-space: nowrap;
}
.quote__plans .plan em { margin-top: 4px; }
