/* ============================================================
   SeguriTecColina — styles.css  v2
   Corporativo Premium · Azul #232A8D · Amarillo #F5BE3D
   Bogotá, Colombia
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800;900&family=Manrope:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  --blue:       #232A8D;
  --blue-dark:  #1a2070;
  --blue-deep:  #111654;
  --blue-light: #2d36b0;
  --yellow:     #F5BE3D;
  --yellow-dark:#d9a520;
  --white:      #FFFFFF;
  --gray-light: #F5F6F8;
  --gray-mid:   #E4E6EE;
  --gray-dark:  #2F3440;
  --gray-text:  #5A6070;
  --black:      #0D1117;

  --blue-05:  rgba(35,42,141,0.05);
  --blue-10:  rgba(35,42,141,0.10);
  --blue-20:  rgba(35,42,141,0.20);
  --blue-80:  rgba(35,42,141,0.80);
  --yellow-15:rgba(245,190,61,0.15);
  --yellow-30:rgba(245,190,61,0.30);

  --f-title: 'Montserrat', sans-serif;
  --f-body:  'Manrope', sans-serif;
  --f-mono:  'Space Mono', monospace;

  --r-sm:  4px;
  --r-md:  10px;
  --r-lg:  18px;
  --r-xl:  28px;

  --shadow-sm:  0 2px 8px rgba(35,42,141,0.10);
  --shadow-md:  0 8px 32px rgba(35,42,141,0.14);
  --shadow-lg:  0 20px 60px rgba(35,42,141,0.18);
  --shadow-xl:  0 32px 80px rgba(35,42,141,0.22);

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h:  72px;
  --pad-x:  clamp(20px, 7vw, 96px);
  --sec-py: clamp(80px, 10vw, 140px);
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--white);
  color: var(--gray-dark);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img  { display: block; width: 100%; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ─── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

/* ─── CURSOR ──────────────────────────────────────────────── */
#cur-dot, #cur-ring {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
}
#cur-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  top: -4px; left: -4px;
  transition: transform 0.08s;
}
#cur-ring {
  width: 34px; height: 34px;
  border: 2px solid var(--blue-20);
  top: -17px; left: -17px;
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
              border-color 0.25s, background 0.25s;
}
body.cur-hover #cur-ring {
  width: 50px; height: 50px;
  border-color: var(--yellow);
  background: var(--yellow-15);
}

/* ─── PATTERN BG ──────────────────────────────────────────── */
.circuit-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(35,42,141,0.06) 1px, transparent 1px),
    linear-gradient(rgba(35,42,141,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,42,141,0.04) 1px, transparent 1px);
  background-size: 40px 40px, 80px 80px, 80px 80px;
  z-index: 0;
}

/* ─── SPLASH ──────────────────────────────────────────────── */
#splash {
  position: fixed; inset: 0;
  z-index: 9999;
  background: var(--blue-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
#splash.out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s var(--ease-out);
}
.spl-logo {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.spl-icon {
  width: 76px; height: 76px;
  background: var(--blue);
  border: 2px solid rgba(245,190,61,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.spl-icon::after {
  content: '';
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(245,190,61,0.2);
  animation: spl-ring 2s ease infinite;
}
.spl-icon svg { width: 38px; height: 38px; fill: var(--yellow); }
.spl-name {
  font-family: var(--f-title);
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  overflow: hidden;
  display: flex; gap: 0;
}
.spl-name span {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: spl-letter 0.45s var(--ease-out) forwards;
}
.spl-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  opacity: 0;
  animation: spl-fade 0.5s 1.1s ease forwards;
}
.spl-bar-wrap {
  width: 220px; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
  overflow: hidden;
}
.spl-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-light), var(--yellow));
  width: 0%;
  border-radius: 1px;
  animation: spl-progress 3.6s var(--ease-out) forwards;
}
.spl-status {
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.15em;
  animation: spl-blink 1.2s ease infinite;
}
@keyframes spl-ring     { 0%{ transform:scale(1);opacity:.6} 100%{transform:scale(1.55);opacity:0} }
@keyframes spl-letter   { to { opacity:1; transform:translateY(0) } }
@keyframes spl-fade     { to { opacity:1 } }
@keyframes spl-progress { 0%{width:0%} 30%{width:35%} 70%{width:75%} 100%{width:100%} }
@keyframes spl-blink    { 0%,100%{opacity:.3} 50%{opacity:.7} }

/* ─── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 var(--pad-x);
  display: flex; align-items: center; gap: 40px;
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--gray-mid), var(--shadow-sm);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-title);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  flex: 1;
  transition: color 0.3s;
}
#navbar.scrolled .nav-logo { color: var(--blue-deep); }
.nav-logo-badge {
  width: 38px; height: 38px;
  background: var(--blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(245,190,61,0.5);
}
.nav-logo-badge svg { width: 20px; height: 20px; fill: var(--yellow); }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 13px; font-weight: 600;
  font-family: var(--f-body);
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}
#navbar.scrolled .nav-links a { color: var(--gray-text); }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  height: 2px; width: 0;
  background: var(--yellow);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: white; }
#navbar.scrolled .nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-cta-btn {
  background: var(--yellow);
  color: var(--blue-deep) !important;
  font-weight: 800 !important;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-size: 12px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 3px 12px rgba(245,190,61,0.35);
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { background: var(--yellow-dark) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,190,61,0.4) !important; }
.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 32px; padding: 4px 0;
  cursor: pointer; z-index: 1001;
}
.nav-burger span {
  display: block; height: 2px;
  background: white; border-radius: 1px;
  transition: all 0.3s var(--ease-out);
}
#navbar.scrolled .nav-burger span { background: var(--gray-dark); }
.nav-burger span:nth-child(2) { width: 70%; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Drawer */
#nav-drawer {
  position: fixed; inset: 0; z-index: 998;
  background: var(--blue-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
#nav-drawer.open { opacity: 1; pointer-events: all; }
#nav-drawer a {
  font-family: var(--f-title); font-size: clamp(24px,5vw,40px);
  font-weight: 800; color: white; text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
#nav-drawer a:hover { color: var(--yellow); }

/* ─── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--blue-deep);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-grad {
  position: absolute; inset: 0;
  background: linear-gradient(120deg,
    rgba(17,22,84,0.97) 0%,
    rgba(35,42,141,0.88) 45%,
    rgba(17,22,84,0.92) 100%);
}
.hero-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(245,190,61,0.12) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-bg-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,190,61,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,190,61,0.05) 1px, transparent 1px);
  background-size: 96px 96px;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,190,61,0.08) 0%, transparent 65%);
  top: -200px; right: -150px;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  padding: calc(var(--nav-h) + 64px) var(--pad-x) 80px;
  max-width: 820px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 28px;
}
.hero-kicker-line {
  width: 28px; height: 1px; background: var(--yellow); flex-shrink: 0;
}
.hero-title {
  font-family: var(--f-title);
  font-size: clamp(52px, 10vw, 118px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase; color: white;
  margin-bottom: 28px;
}
.hero-title .hl { color: var(--yellow); }
.hero-sub {
  font-family: var(--f-body);
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 520px;
  margin-bottom: 48px;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 60px;
}
.btn-pri {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: var(--blue-deep);
  font-family: var(--f-title); font-weight: 800;
  font-size: 13px; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 16px 32px; border-radius: var(--r-sm);
  box-shadow: 0 4px 24px rgba(245,190,61,0.4);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-pri:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 36px rgba(245,190,61,0.5); }
.btn-sec {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: white;
  font-family: var(--f-title); font-weight: 700;
  font-size: 13px; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 16px 32px; border-radius: var(--r-sm);
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-sec:hover { border-color: var(--yellow); background: rgba(245,190,61,0.08); transform: translateY(-2px); }
.hero-checks {
  display: flex; flex-wrap: wrap; gap: 20px 32px;
}
.hero-check {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-body); font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.hero-check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(245,190,61,0.15);
  border: 1px solid rgba(245,190,61,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-check-icon svg { width: 10px; height: 10px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: var(--pad-x);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); z-index: 1;
}
.hero-scroll-bar {
  width: 36px; height: 1px;
  background: rgba(245,190,61,0.25); position: relative; overflow: hidden;
}
.hero-scroll-bar::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--yellow);
  animation: scroll-run 2s ease infinite;
}
@keyframes scroll-run { 0%{left:-100%} 50%{left:0} 100%{left:100%} }

/* ─── MARQUEE ─────────────────────────────────────────────── */
#marquee {
  background: var(--yellow);
  overflow: hidden; padding: 18px 0;
  white-space: nowrap; position: relative; z-index: 1;
}
.mq-track {
  display: inline-flex;
  animation: mq-run 28s linear infinite;
}
.mq-track span {
  font-family: var(--f-title); font-size: 12px;
  font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue-deep);
  padding: 0 28px;
}
.mq-track .sep { color: rgba(35,42,141,0.35); padding: 0 6px; }
#marquee:hover .mq-track { animation-play-state: paused; }
@keyframes mq-run { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── SECTIONS BASE ───────────────────────────────────────── */
.section {
  position: relative;
  padding: var(--sec-py) var(--pad-x);
}
.section.bg-light { background: var(--gray-light); }
.section.bg-blue  { background: var(--blue); }
.section.bg-deep  { background: var(--blue-deep); }
.sec-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.sec-label::before { content:''; width:20px; height:1px; background:var(--yellow); }
.sec-num {
  font-family: var(--f-title);
  font-size: clamp(90px, 16vw, 160px);
  font-weight: 900; line-height: .85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(35,42,141,0.08);
  user-select: none; pointer-events: none;
}
.section.bg-blue .sec-num,
.section.bg-deep .sec-num {
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
}
.sec-title {
  font-family: var(--f-title);
  font-size: clamp(28px, 4.5vw, 54px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em; color: var(--blue-deep);
  margin-bottom: 20px;
}
.sec-title em { font-style: normal; color: var(--blue); }
.sec-title.on-dark { color: white; }
.sec-title.on-dark em { color: var(--yellow); }
.sec-body {
  font-family: var(--f-body);
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--gray-text); line-height: 1.75;
  max-width: 580px;
}
.sec-body.on-dark { color: rgba(255,255,255,0.6); }
.divider {
  width: 44px; height: 3px;
  background: var(--yellow); border-radius: 2px;
  margin: 24px 0;
}

/* ─── SECCIÓN 01 · NOSOTROS ───────────────────────────────── */
#nosotros .nos-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px); align-items: start;
  margin-top: 48px;
}
.nos-visual { position: relative; }
.nos-img {
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-xl);
}
.nos-img::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='white' opacity='0.07'/%3E%3C/svg%3E") repeat;
  background-size: 40px 40px;
}
.nos-img-icon { width: 120px; height: 120px; opacity: 0.18; }
.nos-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--yellow);
  width: 116px; height: 116px; border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(245,190,61,0.4);
}
.nos-badge-num { font-family: var(--f-title); font-size: 30px; font-weight: 900; color: var(--blue-deep); line-height:1; }
.nos-badge-txt { font-family: var(--f-title); font-size: 9px; font-weight: 800; color: var(--blue-deep); text-transform: uppercase; letter-spacing: 0.05em; text-align: center; padding: 0 10px; }
.nos-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 36px;
}
.stat-box {
  padding: 20px 18px;
  border: 1px solid var(--gray-mid);
  border-radius: var(--r-md);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.stat-box:hover { border-color: var(--blue-20); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stat-val { font-family: var(--f-title); font-size: clamp(26px,3.5vw,38px); font-weight: 900; color: var(--blue); line-height:1; }
.stat-lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; color: var(--gray-text); text-transform: uppercase; margin-top: 4px; }
.nos-list { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.nos-list li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 14px; color: var(--gray-text);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  background: var(--blue-05);
  border-left: 3px solid var(--blue);
}
.nos-list li strong { color: var(--blue-deep); margin-right: 4px; }

/* ─── SECCIÓN 02 · SERVICIOS ──────────────────────────────── */
#servicios {
  padding-left: 0; padding-right: 0;
  background: var(--gray-light);
}
#servicios .svc-header {
  padding: 0 var(--pad-x);
  margin-bottom: 52px;
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.svc-track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  gap: 20px; padding: 0 var(--pad-x) 24px;
  cursor: grab;
}
.svc-track::-webkit-scrollbar { display: none; }
.svc-track.drag { cursor: grabbing; }
.svc-card {
  flex: 0 0 min(360px, 78vw);
  scroll-snap-align: start;
  background: white;
  border: 1px solid var(--gray-mid);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
}
.svc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--blue-20); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num  { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.25em; color: var(--blue); margin-bottom: 20px; }
.svc-emoji{ font-size: 38px; margin-bottom: 16px; display: block; }
.svc-name { font-family: var(--f-title); font-size: 19px; font-weight: 800; color: var(--blue-deep); margin-bottom: 6px; }
.svc-short{ font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; color: var(--blue); text-transform: uppercase; margin-bottom: 14px; }
.svc-desc { font-family: var(--f-body); font-size: 13.5px; color: var(--gray-text); line-height: 1.7; margin-bottom: 20px; }
.svc-bens { display: flex; flex-direction: column; gap: 7px; margin-bottom: 28px; }
.svc-ben  {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-body); font-size: 12.5px; color: var(--gray-text);
}
.svc-ben::before { content:'✓'; color: var(--blue); font-weight: 700; font-size: 11px; flex-shrink: 0; }
.svc-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--blue); color: white;
  font-family: var(--f-title); font-weight: 700;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 20px; border-radius: var(--r-sm);
  transition: background 0.2s, transform 0.2s;
  width: 100%;
}
.svc-wa:hover { background: var(--blue-dark); transform: translateY(-1px); }
.svc-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 36px; padding: 0 var(--pad-x);
}
.svc-prog-bar { width: 180px; height: 2px; background: var(--gray-mid); border-radius: 1px; overflow: hidden; }
.svc-prog-fill { height: 100%; background: var(--blue); width: 10%; border-radius: 1px; transition: width 0.3s var(--ease-out); }
.svc-prog-txt { font-family: var(--f-mono); font-size: 11px; color: var(--gray-text); letter-spacing: 0.12em; }
.svc-nav { display: flex; gap: 10px; }
.svc-nav-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--gray-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-text);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.svc-nav-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-05); }
.svc-nav-btn svg { width: 16px; height: 16px; }

/* ─── SECCIÓN 03 · SOLUCIONES ─────────────────────────────── */
#soluciones .sol-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 56px;
}
.sol-block {
  border: 1px solid var(--gray-mid);
  border-radius: var(--r-lg); padding: 40px 32px;
  background: white; overflow: hidden; position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
}
.sol-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.sol-block:hover::before { transform: scaleX(1); }
.sol-block:hover { border-color: var(--blue-20); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.sol-icon { font-size: 46px; margin-bottom: 18px; display: block; transition: transform 0.3s; }
.sol-block:hover .sol-icon { transform: scale(1.08); }
.sol-lbl { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.sol-title { font-family: var(--f-title); font-size: clamp(20px,2.5vw,28px); font-weight: 800; color: var(--blue-deep); margin-bottom: 14px; }
.sol-desc { font-family: var(--f-body); font-size: 14px; color: var(--gray-text); line-height: 1.7; margin-bottom: 22px; }
.sol-feats { display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.sol-feat {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--f-body); font-size: 13px; color: var(--gray-text);
}
.sol-feat::before { content:'→'; color: var(--blue); font-size: 11px; font-weight: 700; }
.sol-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-title); font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); border-bottom: 1.5px solid var(--blue-20);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.sol-cta:hover { color: var(--yellow-dark); border-color: var(--yellow); }
.sol-arrow { transition: transform 0.2s; }
.sol-cta:hover .sol-arrow { transform: translateX(4px); }

/* ─── SECCIÓN · SELECTOR DE SERVICIOS (con fotos) ─────────── */
#selector { background: var(--gray-light); }
.sel-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(32px, 4vw, 56px);
  margin-top: 52px;
  align-items: start;
}
.sel-list {
  display: flex; flex-direction: column; gap: 8px;
  position: sticky; top: calc(var(--nav-h) + 24px);
}
.sel-list-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--r-md);
  background: white;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: var(--f-body);
}
.sel-list-item:hover { border-color: var(--blue-20); transform: translateX(3px); }
.sel-list-item.active {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: var(--shadow-md);
}
.sel-list-item.active .sel-list-name { color: white; }
.sel-list-item.active .sel-list-short { color: rgba(255,255,255,0.6); }
.sel-list-emoji { font-size: 22px; flex-shrink: 0; width: 30px; text-align: center; }
.sel-list-text { flex: 1; min-width: 0; }
.sel-list-name {
  font-family: var(--f-title); font-weight: 700; font-size: 13.5px;
  color: var(--blue-deep); line-height: 1.3;
  transition: color 0.2s;
}
.sel-list-short {
  font-family: var(--f-body); font-size: 11.5px; color: var(--gray-text);
  margin-top: 2px; transition: color 0.2s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sel-list-arrow {
  flex-shrink: 0; opacity: 0; transition: opacity 0.2s, transform 0.2s;
  color: var(--yellow);
}
.sel-list-item.active .sel-list-arrow { opacity: 1; transform: translateX(2px); }

.sel-detail {
  background: white; border: 1px solid var(--gray-mid);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.sel-detail-img {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
}
.sel-detail-img::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='white' opacity='0.08'/%3E%3C/svg%3E") repeat;
  background-size: 36px 36px;
}
.sel-detail-img img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.sel-detail-emoji {
  font-size: 100px; position: relative; z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
}
.sel-detail-badge {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  background: var(--yellow); color: var(--blue-deep);
  font-family: var(--f-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--r-sm);
}
.sel-detail-body { padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; }
.sel-detail-name { font-family: var(--f-title); font-size: clamp(22px, 3vw, 32px); font-weight: 900; color: var(--blue-deep); margin-bottom: 6px; }
.sel-detail-short { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--blue); text-transform: uppercase; margin-bottom: 16px; }
.sel-detail-desc { font-family: var(--f-body); font-size: 14.5px; color: var(--gray-text); line-height: 1.75; margin-bottom: 22px; }
.sel-detail-bens { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; flex: 1; }
.sel-detail-ben {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 13.5px; color: var(--gray-dark);
}
.sel-detail-ben::before {
  content: '✓'; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue-10); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
.sel-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── SECCIÓN 04 · BANNER DIGITAL ────────────────────────── */
#digital {
  position: relative; overflow: hidden;
  padding: clamp(80px,12vw,140px) var(--pad-x);
  background: var(--blue-deep);
}
.dig-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px,6vw,80px); align-items: center;
  position: relative; z-index: 1;
}
.dig-title {
  font-family: var(--f-title);
  font-size: clamp(34px,5.5vw,66px);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -0.03em; color: white;
  margin-bottom: 16px;
}
.dig-title span { color: var(--yellow); }
.dig-sub {
  font-family: var(--f-body); font-size: clamp(15px,1.8vw,19px);
  color: rgba(255,255,255,0.65); margin-bottom: 40px; line-height: 1.6;
}
.dig-bens {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 40px;
}
.dig-ben {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; border-radius: var(--r-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  transition: background 0.3s;
}
.dig-ben:hover { background: rgba(245,190,61,0.1); }
.dig-ben-icon { font-size: 20px; flex-shrink: 0; }
.dig-ben-txt { font-family: var(--f-body); font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.55; }
.dig-ben-txt strong { color: white; display: block; margin-bottom: 2px; }
.dig-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: var(--blue-deep);
  font-family: var(--f-title); font-weight: 800;
  font-size: 13px; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 17px 36px; border-radius: var(--r-sm);
  box-shadow: 0 4px 24px rgba(245,190,61,0.4);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.dig-cta:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 36px rgba(245,190,61,0.5); }
.dig-visual {
  display: flex; flex-direction: column; gap: 14px;
}
.dig-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md); padding: 20px 22px;
  display: flex; align-items: center; gap: 14px;
  transition: background 0.3s, border-color 0.3s;
}
.dig-card:hover { background: rgba(245,190,61,0.1); border-color: rgba(245,190,61,0.25); }
.dig-card-icon { font-size: 30px; }
.dig-card-title { font-family: var(--f-title); font-weight: 700; font-size: 14px; color: white; }
.dig-card-sub { font-family: var(--f-body); font-size: 11.5px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ─── SECCIÓN · PRODUCTOS DISPONIBLES ────────────────────── */
#productos { background: white; }
.prod-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 40px; margin-bottom: 36px;
}
.prod-filter-btn {
  font-family: var(--f-title); font-weight: 700;
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 999px;
  border: 1.5px solid var(--gray-mid);
  background: white; color: var(--gray-text);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
}
.prod-filter-btn:hover { border-color: var(--blue-20); color: var(--blue); }
.prod-filter-btn.active {
  background: var(--blue); border-color: var(--blue); color: white;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.prod-card {
  background: white; border: 1px solid var(--gray-mid);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.prod-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--blue-10); }
.prod-card.hidden { display: none; }
.prod-img {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-05) 0%, var(--gray-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.prod-img-emoji { font-size: 52px; position: relative; z-index: 1; }
.prod-cat-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(35,42,141,0.9); color: white;
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-sm);
}
.prod-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.prod-name { font-family: var(--f-title); font-size: 15px; font-weight: 800; color: var(--blue-deep); line-height: 1.3; }
.prod-price { font-family: var(--f-mono); font-size: 12px; color: var(--blue); font-weight: 700; letter-spacing: 0.05em; }
.prod-desc { font-family: var(--f-body); font-size: 12.5px; color: var(--gray-text); line-height: 1.6; flex: 1; }
.prod-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.prod-tag {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.05em;
  background: var(--gray-light); color: var(--gray-text);
  padding: 4px 8px; border-radius: var(--r-sm);
}
.prod-cta {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--yellow); color: var(--blue-deep);
  font-family: var(--f-title); font-weight: 800;
  font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 16px; border-radius: var(--r-sm);
  margin-top: 4px;
  transition: background 0.2s, transform 0.2s;
}
.prod-cta:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* ─── GALERÍA ─────────────────────────────────────────────── */
#galeria { padding-left: 0; padding-right: 0; background: var(--gray-light); overflow: hidden; }
#galeria .gal-header { padding: 0 var(--pad-x); margin-bottom: 44px; }
.gal-lanes { display: flex; flex-direction: column; gap: 14px; }
.gal-lane { display: flex; gap: 14px; }
.gal-lane:nth-child(odd)  .gal-inner { animation: gl-left  24s linear infinite; }
.gal-lane:nth-child(even) .gal-inner { animation: gl-right 30s linear infinite; }
.gal-lane:hover .gal-inner { animation-play-state: paused; }
.gal-inner { display: flex; gap: 14px; flex-shrink: 0; }
.gal-item {
  flex-shrink: 0;
  width: clamp(180px, 20vw, 280px);
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  background: white;
  border: 1px solid var(--gray-mid);
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s, transform 0.4s;
}
.gal-item:hover { box-shadow: var(--shadow-md); transform: scale(1.03); }
.gal-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--gray-light), white);
}
.gal-ph span { font-size: 26px; }
.gal-ph p { font-family: var(--f-mono); font-size: 8px; letter-spacing: 0.12em; color: var(--gray-text); text-align: center; text-transform: uppercase; padding: 0 12px; }
@keyframes gl-left  { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes gl-right { from{transform:translateX(-50%)} to{transform:translateX(0)} }

/* ─── TESTIMONIOS ─────────────────────────────────────────── */
#testimonios .tes-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 52px;
}
.tes-card {
  background: white; border: 1px solid var(--gray-mid);
  border-radius: var(--r-lg); padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
}
.tes-card::before {
  content: '"';
  position: absolute; top: 16px; right: 20px;
  font-family: var(--f-title); font-size: 64px; font-weight: 900;
  color: var(--blue-05); line-height: 1;
}
.tes-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--blue-10); }
.tes-stars { color: var(--yellow); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.tes-text { font-family: var(--f-body); font-size: 13.5px; color: var(--gray-text); line-height: 1.75; margin-bottom: 20px; }
.tes-author { display: flex; align-items: center; gap: 10px; }
.tes-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  font-family: var(--f-title); font-weight: 800; font-size: 13px; color: white; flex-shrink: 0;
}
.tes-name { font-family: var(--f-title); font-weight: 700; font-size: 13px; color: var(--blue-deep); }
.tes-role { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--gray-text); text-transform: uppercase; margin-top: 2px; }

/* ─── CONTACTO ────────────────────────────────────────────── */
#contacto { background: var(--gray-light); }
#contacto .con-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px); margin-top: 52px;
}
.con-info { display: flex; flex-direction: column; gap: 16px; }
.con-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: white; border: 1px solid var(--gray-mid);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.con-item:hover { border-color: var(--blue-20); box-shadow: var(--shadow-md); }
.con-item-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.con-item-lbl { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
.con-item-val { font-family: var(--f-body); font-size: 14.5px; color: var(--blue-deep); font-weight: 600; }
.con-sched { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.con-sched-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-body); font-size: 13px; color: var(--gray-text);
  padding-bottom: 6px; border-bottom: 1px solid var(--gray-mid);
}
.con-sched-row:last-child { border: none; }
.con-sched-row strong { color: var(--blue-deep); font-weight: 600; }
.con-wa-big {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; font-family: var(--f-title); font-weight: 800;
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 18px 28px; border-radius: var(--r-sm);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: opacity 0.2s, transform 0.2s;
}
.con-wa-big:hover { opacity: 0.92; transform: translateY(-2px); }
/* Form */
.con-form { display: flex; flex-direction: column; gap: 14px; }
.con-form h3 { font-family: var(--f-title); font-size: 20px; font-weight: 800; color: var(--blue-deep); margin-bottom: 4px; }
.con-form p  { font-family: var(--f-body); font-size: 13px; color: var(--gray-text); margin-bottom: 8px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fl {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue);
}
.fl-n { color: var(--gray-text); margin-right: 5px; }
.fi, .fs, .ft {
  background: white; border: 1.5px solid var(--gray-mid);
  border-radius: var(--r-sm); padding: 13px 14px;
  font-family: var(--f-body); font-size: 14px; color: var(--gray-dark);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.fi::placeholder, .ft::placeholder { color: var(--gray-mid); }
.fi:focus, .fs:focus, .ft:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-10); }
.fs { cursor: pointer; }
.fs option { background: white; }
.ft { min-height: 96px; resize: vertical; }
.fsub {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; border: none; width: 100%;
  font-family: var(--f-title); font-weight: 800;
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 17px 28px; border-radius: var(--r-sm);
  box-shadow: 0 4px 20px rgba(37,211,102,0.28);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.fsub:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
.fsub svg { width: 20px; height: 20px; }
.form-note { font-family: var(--f-mono); font-size: 10px; color: var(--gray-text); text-align: center; letter-spacing: 0.1em; }

/* ─── FOOTER ──────────────────────────────────────────────── */
#footer { background: var(--blue-deep); position: relative; overflow: hidden; }
.foot-wm {
  font-family: var(--f-title); font-weight: 900;
  font-size: clamp(28px,7vw,90px); letter-spacing: -0.03em; text-transform: uppercase;
  color: transparent; -webkit-text-stroke: 1px rgba(245,190,61,0.1);
  padding: 56px var(--pad-x) 44px; line-height: 1;
  user-select: none;
}
.foot-main {
  padding: 0 var(--pad-x) 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px;
}
.foot-brand-name { font-family: var(--f-title); font-size: 16px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 10px; }
.foot-brand-tag  { font-family: var(--f-body); font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 260px; margin-bottom: 22px; }
.foot-socials { display: flex; gap: 10px; }
.foot-soc {
  width: 38px; height: 38px;
  border: 1px solid rgba(245,190,61,0.25); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 16px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.foot-soc:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(245,190,61,0.08); }
.foot-col-t { font-family: var(--f-title); font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.foot-col-links { display: flex; flex-direction: column; gap: 8px; }
.foot-col-links a { font-family: var(--f-body); font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.foot-col-links a:hover { color: var(--yellow); }
.foot-map { margin: 0 var(--pad-x) 44px; height: 200px; border-radius: var(--r-md); overflow: hidden; border: 1px solid rgba(245,190,61,0.1); }
.foot-map iframe { width: 100%; height: 100%; border: none; display: block; }
.foot-bottom {
  padding: 20px var(--pad-x);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.foot-legal { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.15em; color: rgba(255,255,255,0.2); text-transform: uppercase; }
.back-top {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,190,61,0.65);
  border: 1px solid rgba(245,190,61,0.2); padding: 9px 14px; border-radius: var(--r-sm);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.back-top:hover { background: rgba(245,190,61,0.08); color: var(--yellow); border-color: rgba(245,190,61,0.4); }

/* ─── FLOAT WA ────────────────────────────────────────────── */
#wa-float {
  position: fixed; bottom: 26px; right: 26px;
  z-index: 900; display: flex; flex-direction: column;
  align-items: flex-end; gap: 10px;
}
.wa-tip {
  background: white; color: var(--blue-deep);
  font-family: var(--f-body); font-size: 12.5px; font-weight: 700;
  padding: 7px 13px; border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateX(8px);
  transition: opacity 0.3s, transform 0.3s; pointer-events: none; white-space: nowrap;
}
#wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.42);
  animation: wa-pulse 3s ease infinite;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.wa-btn svg { width: 27px; height: 27px; fill: white; }
@keyframes wa-pulse {
  0%,100%{ box-shadow:0 4px 18px rgba(37,211,102,0.42) }
  50%    { box-shadow:0 4px 34px rgba(37,211,102,0.65),0 0 0 8px rgba(37,211,102,0.1) }
}

/* ─── ANIMATE IN ──────────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(28px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal.in { opacity:1; transform:translateY(0); }
.reveal-l { opacity:0; transform:translateX(-28px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal-l.in { opacity:1; transform:translateX(0); }
.reveal-r { opacity:0; transform:translateX(28px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal-r.in { opacity:1; transform:translateX(0); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media(max-width:1100px){
  .foot-main { grid-template-columns:1fr 1fr; }
  .dig-grid  { grid-template-columns:1fr; }
  .dig-visual{ display:none; }
  .prod-grid { grid-template-columns:repeat(3,1fr); }
}
@media(max-width:900px){
  .nav-links { display:none; }
  .nav-burger{ display:flex; }
  #nosotros .nos-grid { grid-template-columns:1fr; }
  .nos-visual { max-width:380px; }
  .sol-grid   { grid-template-columns:1fr; }
  #testimonios .tes-grid { grid-template-columns:1fr 1fr; }
  #contacto .con-grid { grid-template-columns:1fr; }
  .foot-main  { grid-template-columns:1fr 1fr; }
  .prod-grid  { grid-template-columns:1fr 1fr; }
  .sel-grid   { grid-template-columns:1fr; }
  .sel-list   { position:static; flex-direction:row; overflow-x:auto; scrollbar-width:none; padding-bottom:4px; }
  .sel-list::-webkit-scrollbar { display:none; }
  .sel-list-item { flex:0 0 auto; min-width:200px; }
  .sel-detail { grid-template-columns:1fr; }
  .sel-detail-img { min-height:220px; }
}
@media(max-width:640px){
  :root { --sec-py:60px; }
  .hero-title { font-size:clamp(46px,14vw,74px); }
  .nos-stats { grid-template-columns:1fr 1fr; }
  #testimonios .tes-grid { grid-template-columns:1fr; }
  .dig-bens  { grid-template-columns:1fr; }
  .form-row-2{ grid-template-columns:1fr; }
  .foot-main { grid-template-columns:1fr; }
  .foot-bottom { flex-direction:column; gap:14px; text-align:center; }
  #wa-float  { bottom:18px; right:18px; }
  .prod-grid { grid-template-columns:1fr; }
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{ animation-duration:.01ms!important; transition-duration:.01ms!important; }
  .mq-track,.gal-inner{ animation:none; }
}
