:root {
  --bg: #050b14;
  --bg-2: #081524;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(120, 223, 255, 0.28);
  --text: #f4f8fb;
  --muted: rgba(244, 248, 251, 0.68);
  --cyan: #55d9ff;
  --cyan-2: #0aa6d8;
  --green: #4be08c;
  --ink: #071426;
  --surface: rgba(255, 255, 255, 0.92);
  --radius: 24px;
  --radius-sm: 16px;
  --section-space: clamp(22px, 2.8vw, 36px);
  --content-width: min(1840px, calc(100% - clamp(24px, 2vw, 40px)));
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  font-family: Inter, Manrope, Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  max-width: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(85, 217, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(75, 224, 140, 0.12), transparent 24rem),
    linear-gradient(180deg, #050b14 0%, #081524 42%, #050b14 100%);
  overflow-x: hidden;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), transparent 82%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  min-width: 0;
}

.liquid-glass,
.liquid-glass-strong {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), var(--shadow);
}

.liquid-glass {
  background: var(--panel);
}

.liquid-glass-strong {
  background: var(--panel-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 28px 100px rgba(0, 0, 0, 0.42);
}

.liquid-glass::after,
.liquid-glass-strong::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-120%);
  transition: opacity 420ms ease, transform 720ms ease;
}

.liquid-glass:hover::after,
.liquid-glass-strong:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: var(--content-width);
  min-height: 70px;
  margin: 14px auto -84px;
  padding: 10px 14px;
}

.site-header.liquid-glass {
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(85, 217, 255, 0.28);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(244, 248, 251, 0.72);
  font-size: 14px;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.main-nav a:hover,
.main-nav a.is-selected {
  color: #03111d;
  background: linear-gradient(135deg, #f8fdff, #80e7ff);
  transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a.is-selected::after {
  transform: scaleX(0);
}

.menu-toggle {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.nav-cta,
.button.primary {
  color: #03111d;
  background: linear-gradient(135deg, #f8fdff, #78e6ff);
  box-shadow: 0 12px 34px rgba(85, 217, 255, 0.2);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.button.whatsapp {
  gap: 8px;
  color: #04170d;
  background: linear-gradient(135deg, var(--green), #9fffbf);
  box-shadow: 0 12px 34px rgba(75, 224, 140, 0.2);
}

.button.whatsapp::before,
.floating-detail-wa::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background:
    #25d366
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='white' d='M21.86 18.76c-.32-.16-1.9-.92-2.2-1.02-.29-.11-.5-.16-.71.16-.21.31-.82 1.01-1 1.22-.18.21-.37.24-.69.08-.32-.16-1.36-.49-2.59-1.56-.96-.84-1.6-1.88-1.79-2.19-.18-.32-.02-.49.14-.65.14-.14.32-.37.48-.55.16-.18.21-.31.32-.52.11-.21.05-.39-.03-.55-.08-.16-.71-1.69-.98-2.31-.26-.61-.52-.53-.71-.54h-.61c-.21 0-.55.08-.84.39-.29.32-1.1 1.06-1.1 2.58s1.13 3 1.29 3.21c.16.21 2.23 3.35 5.4 4.7.75.32 1.34.51 1.8.65.76.24 1.45.21 2 .13.61-.09 1.9-.76 2.17-1.5.27-.74.27-1.37.19-1.5-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E")
    center / 17px 17px no-repeat;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.72);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
}

.button:active,
.nav-cta:active {
  transform: scale(0.97);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: start;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: clamp(24px, 4vw, 56px);
}

.hero-media,
.hero-overlay,
.geo-grid,
.hero-earth-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-earth-canvas {
  z-index: 0;
  display: block;
  background: radial-gradient(circle at 50% 18%, rgba(22, 80, 95, 0.4), transparent 32rem), #030914;
}

.hero-media {
  object-fit: cover;
  width: 280%;
  height: 118%;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.18);
  opacity: 1;
  filter: saturate(1.12) contrast(1.08) brightness(0.92);
}

.hero-video-secondary {
  opacity: 0;
  transition: opacity 1400ms ease-in-out;
}

.hero.is-crossfading .hero-video-secondary {
  opacity: 1;
}

.hero-overlay {
  background:
    radial-gradient(circle at 50% 18%, rgba(85, 217, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(5, 11, 20, 0.42), rgba(5, 11, 20, 0.06) 42%, rgba(5, 11, 20, 0.56) 100%),
    linear-gradient(90deg, rgba(5, 11, 20, 0.68), rgba(5, 11, 20, 0.12) 52%, rgba(5, 11, 20, 0.28));
  z-index: 1;
}

.geo-grid {
  pointer-events: none;
  opacity: 0.14;
  background:
    linear-gradient(rgba(85, 217, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 217, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: driftGrid 18s linear infinite;
  z-index: 2;
}

.earth-cinematic {
  display: none;
}

.space-dust {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.85) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.65) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 52%, rgba(85, 217, 255, 0.85) 0 1px, transparent 2px),
    radial-gradient(circle at 34% 68%, rgba(255, 255, 255, 0.55) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 30%, rgba(75, 224, 140, 0.45) 0 1px, transparent 2px);
  opacity: 0.42;
  animation: starDrift 18s linear infinite;
  z-index: 0;
}

.earth-horizon {
  position: absolute;
  left: 50%;
  bottom: clamp(-470px, -38vw, -240px);
  width: clamp(1120px, 128vw, 1840px);
  height: clamp(780px, 92vw, 1260px);
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 42% 15%, rgba(255, 255, 255, 0.82), transparent 7%),
    radial-gradient(ellipse at 48% 4%, rgba(218, 255, 238, 0.6), rgba(100, 235, 203, 0.42) 18%, rgba(36, 126, 128, 0.64) 40%, rgba(3, 28, 46, 0.98) 74%),
    linear-gradient(180deg, rgba(158, 255, 226, 0.5), rgba(13, 95, 105, 0.72), rgba(2, 13, 26, 1));
  box-shadow:
    0 -18px 70px rgba(122, 255, 220, 0.42),
    inset 0 32px 80px rgba(233, 255, 245, 0.18),
    inset 0 -220px 260px rgba(0, 0, 0, 0.72);
  animation: planetBreath 8s ease-in-out infinite;
}

.earth-horizon::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: -1%;
  height: 12%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(210, 255, 236, 0.85), rgba(72, 255, 210, 0.18), transparent);
  filter: blur(3px);
  box-shadow: 0 0 46px rgba(144, 255, 220, 0.58);
}

.earth-horizon::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(ellipse at 68% 18%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(180deg, transparent 0 35%, rgba(0, 0, 0, 0.48) 100%);
  background-size: 62px 62px, 62px 62px, auto, auto;
  mix-blend-mode: screen;
  opacity: 0.36;
  animation: earthTextureDrift 18s linear infinite;
}

.earth-atmosphere {
  position: absolute;
  left: -6%;
  right: -6%;
  top: 2%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(173, 255, 224, 0.34), rgba(73, 229, 203, 0.12) 42%, transparent 68%);
  filter: blur(14px);
}

.cloud,
.landmass,
.ocean-shade {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.cloud {
  background: rgba(235, 255, 246, 0.38);
  filter: blur(18px);
  mix-blend-mode: screen;
  animation: cloudSlide 20s ease-in-out infinite;
}

.cloud-a {
  width: 34%;
  height: 9%;
  left: 14%;
  top: 14%;
  transform: rotate(-8deg);
}

.cloud-b {
  width: 42%;
  height: 10%;
  right: 10%;
  top: 23%;
  transform: rotate(7deg);
  animation-delay: 1.6s;
}

.cloud-c {
  width: 30%;
  height: 8%;
  left: 42%;
  top: 37%;
  transform: rotate(14deg);
  animation-delay: 3s;
}

.landmass {
  background: linear-gradient(135deg, rgba(95, 150, 98, 0.72), rgba(37, 88, 71, 0.44));
  filter: blur(10px);
  opacity: 0.64;
}

.land-a {
  width: 24%;
  height: 18%;
  left: 19%;
  top: 22%;
  transform: rotate(-18deg);
}

.land-b {
  width: 34%;
  height: 20%;
  right: 19%;
  top: 34%;
  transform: rotate(12deg);
}

.land-c {
  width: 28%;
  height: 14%;
  left: 38%;
  top: 50%;
  transform: rotate(-4deg);
}

.ocean-shade {
  inset: 0;
  background:
    radial-gradient(ellipse at 32% 26%, transparent 0 18%, rgba(3, 24, 46, 0.3) 42%, rgba(1, 9, 20, 0.78) 74%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 38%, rgba(0, 0, 0, 0.52));
}

.orbit-path {
  position: absolute;
  left: 50%;
  bottom: clamp(170px, 22vw, 280px);
  width: clamp(900px, 104vw, 1480px);
  height: clamp(260px, 30vw, 430px);
  border: 1px solid rgba(166, 255, 226, 0.22);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-9deg);
  filter: drop-shadow(0 0 18px rgba(122, 255, 220, 0.14));
}

.orbit-path-b {
  width: clamp(760px, 86vw, 1240px);
  height: clamp(340px, 40vw, 560px);
  border-color: rgba(85, 217, 255, 0.18);
  transform: translateX(-50%) rotate(16deg);
}

.real-satellite {
  position: absolute;
  width: 44px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #eaf7ff, #6bdfff 52%, #204b63);
  box-shadow: 0 0 26px rgba(85, 217, 255, 0.55);
  opacity: 0.72;
}

.real-satellite::before,
.real-satellite::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 28px;
  height: 14px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(135deg, rgba(63, 219, 255, 0.88), rgba(20, 75, 120, 0.88));
  background-size: 7px 100%, auto;
}

.real-satellite::before {
  right: calc(100% + 7px);
}

.real-satellite::after {
  left: calc(100% + 7px);
}

.real-satellite i {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 1px;
  height: 36px;
  background: linear-gradient(rgba(122, 255, 220, 0.72), transparent);
  transform: translateX(-50%);
}

.satellite-one {
  left: 17%;
  top: 19%;
  transform: rotate(-12deg);
  animation: satelliteDriftOne 12s ease-in-out infinite;
}

.satellite-two {
  right: 16%;
  top: 24%;
  transform: rotate(18deg) scale(0.78);
  animation: satelliteDriftTwo 14s ease-in-out infinite;
}

.satellite-three {
  left: 58%;
  top: 10%;
  transform: rotate(7deg) scale(0.58);
  opacity: 0.58;
  animation: satelliteDriftThree 16s ease-in-out infinite;
}

.gps-ping {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d9fff2;
  box-shadow: 0 0 18px rgba(217, 255, 242, 0.9), 0 0 38px rgba(85, 217, 255, 0.6);
  animation: signalBlink 2.2s ease-in-out infinite;
}

.ping-one {
  left: 31%;
  bottom: 32%;
}

.ping-two {
  right: 26%;
  bottom: 40%;
  animation-delay: 680ms;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1580px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(560px, 0.98fr) minmax(430px, 0.64fr);
  align-items: start;
  gap: clamp(80px, 13vw, 260px);
  padding: clamp(96px, 10vw, 128px) 0 44px;
}

.hero-copy-block {
  max-width: 820px;
  justify-self: start;
  padding-left: clamp(44px, 4vw, 70px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.lead-section h2 {
  margin: 0;
  color: #fff;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(36px, 3.15vw, 48px);
  line-height: 0.98;
}

.hero-copy {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
}

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

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-pills span,
.brand-row span,
.industry-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  color: rgba(244, 248, 251, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.hero-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  width: min(100%, 460px);
  justify-self: end;
  margin-top: clamp(-42px, -3vw, -22px);
  animation: floatPanel 5.5s ease-in-out infinite;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.panel-topline span {
  color: var(--green);
  font-weight: 800;
}

.panel-topline strong {
  color: #fff;
}

.receiver-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(85, 217, 255, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  overflow: hidden;
}

.receiver-visual::before,
.receiver-visual::after {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(85, 217, 255, 0.2);
  border-radius: 999px;
}

.receiver-visual::after {
  inset: 78px;
  border-color: rgba(75, 224, 140, 0.16);
}

.receiver-visual video {
  position: relative;
  z-index: 1;
  width: min(190px, 62%);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  box-shadow: 0 0 52px rgba(85, 217, 255, 0.28);
  background: rgba(5, 11, 20, 0.72);
  transform: scale(0.96) translateZ(0);
}

.pulse-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.dot-a { left: 18%; top: 28%; }
.dot-b { right: 18%; top: 45%; animation-delay: 240ms; }
.dot-c { left: 48%; bottom: 16%; animation-delay: 480ms; }

.telemetry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.telemetry-grid div {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.telemetry-grid dt {
  color: var(--muted);
  font-size: 12px;
}

.telemetry-grid dd {
  margin: 6px 0 0;
  color: #fff;
  font-weight: 800;
}

.telemetry-grid .coordinates-metric dd {
  white-space: nowrap;
  font-size: clamp(12px, 1.05vw, 15px);
}

.section,
.lead-section,
.site-footer {
  position: relative;
  padding: var(--section-space) 0;
}

.page-section {
  scroll-snap-align: start;
  scroll-margin-top: 108px;
}

.section.page-section,
.lead-section.page-section,
.site-footer.page-section {
  min-height: auto;
}

.page-section::before {
  content: "";
  position: absolute;
  left: max(14px, calc((100% - 1840px) / 2));
  right: max(14px, calc((100% - 1840px) / 2));
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(120, 223, 255, 0.22), transparent);
  opacity: 0.55;
}

.hero.page-section::before {
  display: none;
}

[data-section-view][hidden] {
  display: none !important;
}

body[data-active-view="productos"] #productos,
body[data-active-view="servicios"] #servicios,
body[data-active-view="aplicaciones"] #aplicaciones,
body[data-active-view="historia"] #historia,
body[data-active-view="aliados"] #aliados,
body[data-active-view="testimonios"] #testimonios,
body[data-active-view="blogs"] #blogs,
body[data-active-view="contacto"] #cotizar {
  padding-top: clamp(112px, 7.6vw, 136px);
}

body[data-active-view="contacto"] #cotizar {
  padding-top: clamp(70px, 5.2vw, 92px);
}

.section,
.lead-section,
.site-footer,
.catalog-tabs {
  scroll-margin-top: 118px;
}

.catalog-tabs {
  width: var(--content-width);
  margin: 0 auto clamp(18px, 2.2vw, 28px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  z-index: 5;
}

.catalog-tabs a {
  flex: 0 1 auto;
  justify-content: center;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 999px;
  color: rgba(244, 248, 251, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 28px rgba(0, 0, 0, 0.18);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.catalog-tabs a:hover,
.catalog-tabs a:focus-visible,
.catalog-tabs a.is-selected {
  color: #03111d;
  background: linear-gradient(135deg, #f8fdff, #80e7ff);
  transform: translateY(-1px);
}

.catalog-section,
.muted,
.benefits-section {
  background: transparent;
}

.catalog-section {
  padding-bottom: clamp(20px, 2.4vw, 32px);
}

.catalog-section + .muted,
.benefits-section + .split,
.story-section + .muted {
  padding-top: clamp(20px, 2.4vw, 32px);
}

#servicios {
  padding-top: clamp(20px, 2.4vw, 32px);
  padding-bottom: clamp(20px, 2.4vw, 32px);
  padding-right: 0;
  padding-left: 0;
}

.catalog-toolbar {
  width: var(--content-width);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr) auto;
  align-items: end;
  gap: 18px;
}

.catalog-toolbar h2,
.section h2,
.lead-section h2 {
  font-size: clamp(32px, 4.5vw, 56px);
}

.catalog-toolbar p,
.section p,
.lead-section p {
  color: var(--muted);
  line-height: 1.65;
}

.catalog-status {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero-copy,
.product-card p,
.category-grid p,
.benefit-grid p,
.service-list p,
.blog-list p,
.lead-section p,
.product-detail-description,
.product-specs li,
.site-footer p {
  text-align: justify;
}

.catalog-search {
  display: grid;
  grid-template-columns: 1fr auto auto;
  min-width: 0;
  border-radius: 999px;
  overflow: hidden;
}

.catalog-search input,
.catalog-search button {
  min-height: 50px;
  border: 0;
}

.catalog-search input {
  min-width: 0;
  padding: 0 18px;
  color: #fff;
  background: transparent;
}

.catalog-search input::placeholder {
  color: rgba(244, 248, 251, 0.58);
}

.catalog-search button {
  padding: 0 18px;
  color: #03111d;
  font-weight: 800;
  background: var(--cyan);
  cursor: pointer;
}

.catalog-search button[type="button"] {
  color: rgba(244, 248, 251, 0.84);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.12);
}

.view-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.view-toggle button {
  min-width: 48px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.view-toggle button.active {
  color: #03111d;
  background: var(--cyan);
}

.product-grid,
.category-grid,
.benefit-grid {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.category-grid article,
.benefit-grid article,
.service-list article,
.blog-list article,
.faq-grid details,
.ally-card,
.lead-section,
.app-store-panel,
.lead-form,
.empty-state {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 18px 58px rgba(0, 0, 0, 0.22);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms ease, box-shadow 320ms ease;
}

.product-card:hover,
.category-grid article:hover,
.benefit-grid article:hover,
.service-list article:hover,
.blog-list article:hover,
.faq-grid details:hover,
.ally-card:hover,
.app-store-panel:hover,
.app-store-panel:focus-within,
.lead-section:hover,
.lead-section:focus-within {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 30px 80px rgba(0, 0, 0, 0.34), 0 0 34px rgba(85, 217, 255, 0.1);
}

.product-card::after,
.category-grid article::after,
.benefit-grid article::after,
.service-list article::after,
.blog-list article::after,
.faq-grid details::after,
.ally-card::after,
.app-store-panel::after,
.lead-section::after,
.lead-form::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--glow-x, 18%) var(--glow-y, 0%), rgba(85, 217, 255, 0.2), transparent 28%),
    linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.13), transparent 42%);
  transform: translateX(-20%);
  transition: opacity 360ms ease, transform 650ms ease;
}

.product-card:hover::after,
.category-grid article:hover::after,
.benefit-grid article:hover::after,
.service-list article:hover::after,
.blog-list article:hover::after,
.faq-grid details:hover::after,
.ally-card:hover::after,
.app-store-panel:hover::after,
.app-store-panel:focus-within::after,
.lead-section:hover::after,
.lead-section:focus-within::after,
.lead-form:hover::after,
.lead-form:focus-within::after {
  opacity: 1;
  transform: translateX(12%);
}

.product-card > *,
.category-grid article > *,
.benefit-grid article > *,
.service-list article > *,
.blog-list article > *,
.faq-grid details > *,
.ally-card > *,
.app-store-panel > *,
.lead-section > *,
.lead-form > * {
  position: relative;
  z-index: 1;
}

.product-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  overflow: hidden;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #03111d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #8fffc0, #55d9ff);
  box-shadow: 0 12px 34px rgba(75, 224, 140, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.product-card > .discount-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
}

.product-grid.is-list {
  grid-template-columns: 1fr;
}

.product-grid.is-list .product-card {
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: stretch;
}

.product-grid.is-list .product-visual {
  min-height: 100%;
}

.product-grid.is-list .product-visual img {
  height: 100%;
  max-height: 260px;
}

.product-grid.is-list .product-body {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 24px;
  align-content: center;
}

.product-grid.is-list .product-meta,
.product-grid.is-list h3,
.product-grid.is-list p {
  grid-column: 1;
}

.product-grid.is-list .product-card h3,
.product-grid.is-list .product-card p {
  min-height: 0;
}

.product-grid.is-list .product-commerce {
  grid-column: 2;
  grid-row: 1 / span 3;
  min-width: 220px;
  align-self: center;
  flex-direction: column;
  align-items: flex-end;
}

.product-grid.is-list .product-actions {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.empty-state {
  grid-column: 1 / -1;
  max-width: 720px;
  padding: 30px;
}

.product-visual {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 210px;
  padding: 18px;
  border: 0;
  color: inherit;
  background:
    radial-gradient(circle at 50% 26%, rgba(85, 217, 255, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  cursor: pointer;
  overflow: hidden;
}

.product-visual img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.42));
  transform: scale(1);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-visual img {
  transform: scale(1.04);
}

.device-art {
  width: 100%;
  height: 178px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.85), transparent 10%),
    radial-gradient(circle at 50% 44%, rgba(85, 217, 255, 0.38), transparent 24%),
    linear-gradient(180deg, rgba(244, 248, 251, 0.92), rgba(128, 151, 168, 0.18));
  box-shadow: inset 0 -22px 45px rgba(5, 11, 20, 0.28);
}

.product-body {
  display: grid;
  align-content: start;
  padding: 22px;
  text-align: left;
}

.product-meta {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #062016;
  background: linear-gradient(135deg, #88ffc4, #cbfff7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-card h3 {
  min-height: 58px;
  margin: 10px 0 0;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
}

.product-card p {
  min-height: 88px;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.55;
}

.product-commerce {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
}

.product-price {
  display: grid;
  gap: 2px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  text-align: right;
}

.product-price small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-price.has-discount {
  gap: 1px;
}

.old-price {
  color: rgba(244, 248, 251, 0.48);
  font-size: 13px;
  font-weight: 800;
  text-decoration: line-through;
}

.product-price.has-discount strong {
  color: #89ffc0;
  font-size: 20px;
}

.product-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.product-actions .button {
  width: 100%;
}

.modal-open {
  overflow: hidden;
}

body.modal-open .floating-wa,
body.modal-open .floating-socials,
body.menu-open .floating-socials {
  display: none;
}

.product-modal[hidden] {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 34px);
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(92, 225, 255, 0.18), transparent 34%),
    rgba(2, 7, 13, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.product-modal-card {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(880px, calc(100vh - 34px));
  padding: clamp(18px, 3vw, 30px);
  overflow: auto;
}

.modal-close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  margin-left: auto;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #04131f;
  background: rgba(218, 250, 255, 0.92);
  font-weight: 900;
  cursor: pointer;
  transition: transform 240ms ease, opacity 240ms ease;
}

.modal-close:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
}

.product-detail-media {
  display: grid;
  place-items: center;
  min-height: 0;
  aspect-ratio: 1.36 / 1;
  padding: clamp(8px, 1vw, 12px);
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 50% 25%, rgba(91, 219, 255, 0.2), transparent 38%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.product-detail-media img {
  display: block;
  width: min(98%, 590px);
  height: auto;
  max-height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.46));
}

.product-detail-info {
  display: grid;
  gap: 16px;
}

.product-detail-info h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
}

.product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail-meta span {
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-detail-description {
  margin: 0;
  color: rgba(244, 248, 251, 0.78);
  line-height: 1.7;
}

.product-detail-price {
  display: grid;
  gap: 4px;
  width: fit-content;
  padding: 16px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.product-detail-price small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-detail-price strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
}

.product-detail-price .old-price {
  font-size: 15px;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-specs {
  margin-top: clamp(22px, 4vw, 38px);
  padding-top: clamp(18px, 3vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.product-specs h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 24px;
}

.product-specs ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-specs li {
  position: relative;
  padding-left: 20px;
  color: rgba(244, 248, 251, 0.78);
  line-height: 1.5;
}

.product-specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(85, 217, 255, 0.55);
}

.floating-detail-wa {
  position: sticky;
  right: 18px;
  bottom: 0;
  z-index: 3;
  display: flex;
  gap: 8px;
  width: fit-content;
  margin: 20px 0 0 auto;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  color: #04131f;
  background: linear-gradient(135deg, #73ffad, #a9ffe7);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(23, 255, 151, 0.24);
}

.section-heading {
  width: var(--content-width);
  max-width: none;
  margin: 0 auto 34px;
}

.section-heading h2,
.section-heading .eyebrow {
  max-width: 900px;
}

.section-intro {
  width: var(--content-width);
  max-width: none;
  margin: 14px auto 0;
  color: rgba(244, 248, 251, 0.72);
  line-height: 1.65;
  text-align: justify;
}

.section-heading .section-intro {
  width: auto;
  margin: 14px 0 0;
  text-align: left;
}

.blogs-section .section-heading,
.lead-section > div:first-child {
  padding-top: 0;
}

.allies-section .section-intro {
  max-width: none;
  margin-left: 0;
  margin-right: auto;
  white-space: nowrap;
}

.blog-grid {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

.testimonial-grid {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
}

.blog-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  border-radius: 22px;
}

.testimonial-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.testimonial-media {
  position: relative;
  min-height: 230px;
  background: rgba(255, 255, 255, 0.04);
}

.testimonial-media img,
.testimonial-media iframe,
.testimonial-social-embed {
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: block;
  object-fit: cover;
  border: 0;
}

.testimonial-social-embed {
  margin: 0 auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  background: rgba(255, 255, 255, 0.04);
}

.testimonial-media .tiktok-embed,
.testimonial-media .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

.testimonial-media .tiktok-embed iframe,
.testimonial-media .instagram-media iframe {
  width: 100% !important;
  min-height: 230px !important;
}

.testimonial-video-link,
.testimonial-video-preview {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #06131d;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(135deg, #e8fbff, #7fdff2);
}

.testimonial-video-preview {
  position: relative;
  isolation: isolate;
  align-content: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.18), transparent 16rem),
    linear-gradient(135deg, rgba(9, 18, 31, 0.98), rgba(28, 76, 92, 0.78));
}

.testimonial-video-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.42;
}

.testimonial-video-glow {
  position: absolute;
  inset: auto -18% -42% auto;
  z-index: -1;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.88;
  background: radial-gradient(circle, rgba(116, 231, 255, 0.68), transparent 62%);
}

.testimonial-video-preview.youtube .testimonial-video-glow {
  background: radial-gradient(circle, rgba(255, 30, 30, 0.7), transparent 62%);
}

.testimonial-video-preview.instagram .testimonial-video-glow {
  background: radial-gradient(circle, rgba(255, 87, 199, 0.76), rgba(255, 178, 61, 0.35), transparent 66%);
}

.testimonial-video-preview.tiktok .testimonial-video-glow {
  background: radial-gradient(circle, rgba(36, 226, 222, 0.72), rgba(255, 42, 103, 0.28), transparent 66%);
}

.testimonial-video-preview.facebook .testimonial-video-glow,
.testimonial-video-preview.linkedin .testimonial-video-glow {
  background: radial-gradient(circle, rgba(57, 139, 255, 0.72), transparent 64%);
}

.testimonial-video-platform {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.testimonial-video-play {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #06131d;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #f4feff, #7bdff1);
  box-shadow: 0 22px 48px rgba(86, 220, 245, 0.28);
  transition: transform 220ms ease;
}

.testimonial-video-preview:hover .testimonial-video-play {
  transform: scale(1.06);
}

.testimonial-video-title {
  width: min(88%, 360px);
  color: #fff;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.16;
}

.testimonial-video-caption {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.testimonial-body {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  text-align: center;
}

.testimonial-body h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
}

.testimonial-card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  text-align: justify;
  white-space: pre-line;
}

.testimonial-card .button {
  width: min(190px, 100%);
  min-height: 48px;
}

.testimonial-link-button {
  width: min(240px, 100%);
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.blog-card-body {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: clamp(22px, 2.3vw, 34px);
  text-align: center;
}

.blog-card h3,
.blog-card p {
  margin: 0;
}

.blog-card h3 {
  color: #fff;
  font-size: clamp(20px, 1.75vw, 28px);
  line-height: 1.15;
  text-align: center;
}

.blog-card p {
  color: var(--muted);
  text-align: justify;
  text-align-last: left;
}

.blog-card .button {
  align-self: center;
  min-width: 190px;
  width: auto;
  height: auto;
  min-height: 46px;
  padding: 0 24px;
  flex: 0 0 auto;
}

.category-grid article,
.benefit-grid article {
  min-height: 210px;
  padding: 24px;
}

.category-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 56px;
  min-height: 40px;
  margin-bottom: 18px;
  color: #06121f;
  border-radius: 999px;
  background: linear-gradient(135deg, #f8fdff, #80e7ff);
  font-size: 12px;
  font-weight: 900;
}

.category-grid strong,
.benefit-grid strong {
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.category-grid a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--cyan);
  font-weight: 800;
}

.app-store-panel {
  width: var(--content-width);
  margin: 18px auto 0;
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  background:
    radial-gradient(circle at 12% 8%, rgba(85, 217, 255, 0.18), transparent 20rem),
    radial-gradient(circle at 88% 100%, rgba(75, 224, 140, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.07);
}

.app-store-panel h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  font-weight: 600;
}

.app-copy {
  display: contents;
}

.app-store-panel .eyebrow,
.app-store-panel h3 {
  grid-column: 1;
}

.store-button {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  gap: 14px;
  white-space: nowrap;
  min-height: 74px;
  padding: 0 24px;
}

.google-play-icon {
  width: 34px;
  height: 38px;
  display: inline-block;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: conic-gradient(from 315deg at 35% 50%, #00d084 0 26%, #36c5f0 0 52%, #ffd166 0 76%, #ff5c5c 0);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
}

.store-button-copy {
  display: grid;
  gap: 3px;
  text-align: left;
}

.store-button-copy strong,
.store-button-copy small {
  display: block;
}

.store-button-copy strong {
  font-size: 15px;
  font-weight: 900;
}

.store-button-copy small {
  color: rgba(3, 17, 29, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.app-store-panel p:not(.eyebrow) {
  grid-column: 1 / -1;
  max-width: none;
  margin: 12px 0 0;
  color: rgba(244, 248, 251, 0.74);
  line-height: 1.65;
  text-align: left;
  white-space: nowrap;
}

.split {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
}

#servicios.split {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

#servicios > div:first-child {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}

#servicios h2 {
  grid-column: 1;
  max-width: 760px;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.06;
}

#servicios .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

#servicios > div:first-child > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 2;
  max-width: 560px;
  margin: 0 0 6px;
}

.story-section {
  overflow: hidden;
}

.about-heading {
  width: var(--content-width);
  margin-bottom: clamp(18px, 3vw, 28px);
}

.about-heading h2 {
  font-size: clamp(34px, 4.2vw, 58px);
}

.story-layout {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.story-copy {
  min-height: 100%;
  padding: clamp(20px, 2.4vw, 30px);
}

.story-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  max-height: clamp(420px, 34vw, 560px);
  overflow: auto;
  padding-right: 4px;
}

.story-text p {
  margin: 0;
  text-align: justify;
  color: rgba(244, 248, 251, 0.74);
  line-height: 1.58;
}

.story-video-card {
  width: 100%;
  max-width: 640px;
  justify-self: end;
  align-self: stretch;
  display: flex;
  padding: clamp(8px, 1vw, 12px);
}

.story-video-card video {
  display: block;
  width: 100%;
  min-height: clamp(420px, 34vw, 560px);
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
  background: rgba(255, 255, 255, 0.06);
}

.service-list,
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-list article,
.blog-list article,
.faq-grid details {
  padding: 24px;
}

.service-list article {
  min-height: 190px;
}

#servicios .service-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.field-allies-panel {
  display: grid;
  grid-template-columns: minmax(520px, 1.28fr) minmax(360px, 0.72fr);
  gap: clamp(18px, 2.2vw, 28px);
  align-items: start;
  padding: clamp(22px, 3vw, 34px);
}

.field-allies-copy {
  grid-column: 1 / -1;
  max-width: 1120px;
}

.field-allies-copy h3 {
  margin: 10px 0 0;
  font-size: clamp(30px, 3.3vw, 52px);
  line-height: 1.05;
}

.field-allies-copy p:not(.eyebrow) {
  max-width: 980px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.field-allies-copy .eyebrow {
  margin: 0;
}

.field-side {
  display: grid;
  align-content: start;
  align-self: start;
  gap: 10px;
}

.field-disclaimer {
  display: block;
  margin: 0;
  padding: 12px 14px;
  color: rgba(244, 248, 251, 0.62);
  font-size: 11.5px;
  line-height: 1.5;
  text-align: justify;
  border-radius: 18px;
  background: rgba(5, 11, 20, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.colombia-map-card {
  min-height: clamp(470px, 34vw, 570px);
  padding: 12px;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 42%, rgba(85, 217, 255, 0.12), transparent 58%), rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.colombia-map {
  position: relative;
  min-height: clamp(440px, 32vw, 540px);
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(5, 11, 20, 0.5);
}

.colombia-map .leaflet-control-attribution {
  color: rgba(4, 17, 29, 0.82);
  font-size: 10px;
}

.colombia-map .leaflet-tile-pane {
  filter: saturate(0.8) contrast(1.02) brightness(0.82);
}

.field-map-marker {
  display: grid;
  place-items: center;
  width: 34px !important;
  height: 34px !important;
  margin: 0;
  color: #04170d;
  border: 1px solid rgba(85, 217, 255, 0.26);
  border-radius: 999px;
  background: rgba(5, 11, 20, 0.72);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32), 0 0 0 5px rgba(85, 217, 255, 0.08);
}

.field-map-marker span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #8fffc0;
  font-size: 12px;
  font-weight: 900;
}

.field-map-marker:hover,
.field-map-marker.is-active {
  z-index: 3;
  color: #03111d;
  background: rgba(223, 250, 255, 0.95);
  box-shadow: 0 18px 48px rgba(85, 217, 255, 0.22);
  transform: scale(1.12);
}

.field-allies-results {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: clamp(330px, 25vw, 420px);
  overflow: auto;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.field-empty {
  display: grid;
  align-content: start;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 0;
}

.field-filter-card {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(5, 11, 20, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.field-filter-card label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.field-filter-card select {
  width: 100%;
  min-height: 38px;
  padding: 0 14px;
  color: #06131d;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: #eaf8fb;
  outline: none;
}

.field-filter-card select option {
  color: #06131d;
  background: #f4fbfd;
}

.field-filter-card select:focus {
  border-color: rgba(128, 231, 255, 0.78);
  box-shadow: 0 0 0 3px rgba(85, 217, 255, 0.16);
}

.field-filter-card select:disabled {
  color: rgba(6, 19, 29, 0.48);
  background: rgba(234, 248, 251, 0.68);
  cursor: not-allowed;
}

.field-results-head {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.field-results-head h4,
.field-empty h4 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2vw, 30px);
}

.field-results-head span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #03111d;
  background: #8fffc0;
  font-size: 12px;
  font-weight: 900;
}

.field-ally-list {
  display: grid;
  gap: 10px;
}

.field-ally-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.field-ally-card strong {
  color: #fff;
}

.field-ally-card p,
.field-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.field-ally-card a {
  color: var(--cyan);
  font-weight: 800;
}

.service-list h3,
.blog-list h3 {
  margin: 0 0 8px;
  color: #fff;
  font-weight: 600;
}

.faq-grid summary {
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.faq-grid p {
  margin: 14px 0 0;
  text-align: justify;
}

.brand-row {
  width: var(--content-width);
  margin: 0 auto 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.industry-grid {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.brand-row span {
  min-width: 150px;
  justify-content: center;
}

.industry-grid span {
  justify-content: center;
  border-radius: var(--radius-sm);
}

.allies-section {
  overflow: hidden;
}

.allies-grid {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ally-card {
  min-height: 150px;
  padding: 18px;
  display: grid;
  place-items: center;
}

.ally-card img {
  display: block;
  width: 100%;
  max-width: 220px;
  max-height: 92px;
  object-fit: contain;
}

.ally-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 0;
  border-radius: calc(var(--radius) - 10px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 12px 34px rgba(0, 0, 0, 0.12);
}

.inline-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--cyan);
  font-weight: 800;
}

.lead-section {
  width: var(--content-width);
  margin: clamp(18px, 2.4vw, 30px) auto 0;
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  min-height: auto;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 12%, rgba(85, 217, 255, 0.16), transparent 22rem),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lead-section > div:first-child {
  display: grid;
  align-content: center;
  gap: 16px;
  max-width: 780px;
  padding-left: clamp(10px, 2vw, 22px);
}

.lead-section > div:first-child .eyebrow,
.lead-section > div:first-child p {
  margin: 0;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2vw, 22px);
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (min-width: 1041px) {
  .lead-form {
    transform: translateX(-16px);
  }
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(244, 248, 251, 0.84);
  font-size: 14px;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.lead-form option {
  color: var(--ink);
}

.lead-form button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

body[data-active-view="contacto"] .lead-section {
  width: var(--content-width);
  margin-top: clamp(118px, 8.4vw, 150px);
  padding: clamp(18px, 2vw, 28px);
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.58fr);
  gap: clamp(18px, 3vw, 42px);
  scroll-margin-top: 190px;
}

body[data-active-view="contacto"] .lead-section h2 {
  font-size: clamp(34px, 3.5vw, 52px);
}

body[data-active-view="contacto"] .lead-form {
  gap: 10px;
  padding: clamp(14px, 1.5vw, 18px);
  transform: none;
}

body[data-active-view="contacto"] .lead-form input,
body[data-active-view="contacto"] .lead-form select {
  min-height: 42px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  position: relative;
  width: var(--content-width);
  min-height: auto;
  margin: clamp(16px, 2.2vw, 28px) auto 18px;
  padding: clamp(22px, 2.7vw, 34px);
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(230px, 0.95fr) minmax(300px, 1.1fr) minmax(150px, 0.55fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  color: var(--muted);
  border: 1px solid rgba(120, 223, 255, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(85, 217, 255, 0.13), transparent 34%),
    radial-gradient(circle at 86% 45%, rgba(75, 224, 140, 0.13), transparent 20rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-footer.page-section {
  min-height: auto;
  scroll-snap-align: none;
  align-content: start;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: clamp(24px, 4vw, 42px);
  right: clamp(24px, 4vw, 42px);
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(85, 217, 255, 0.72), rgba(75, 224, 140, 0.42), transparent);
}

.site-footer > div {
  min-width: 0;
}

.site-footer strong,
.site-footer h2 {
  color: #fff;
}

.site-footer strong {
  display: block;
  margin-bottom: 14px;
}

.site-footer h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.site-footer p {
  margin: 0 0 12px;
  line-height: 1.55;
  text-align: left;
}

.company-legal {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  color: rgba(244, 248, 251, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 10px;
  align-items: center;
}

.site-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  margin: 0;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--social-bg, rgba(255, 255, 255, 0.06));
  border: 0;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    inset 0 -2px 5px rgba(0, 0, 0, 0.16),
    0 9px 20px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.site-footer .social-links a:hover {
  color: #fff;
  filter: saturate(1.12) brightness(1.05);
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.42),
    inset 0 -2px 5px rgba(0, 0, 0, 0.14),
    0 13px 26px rgba(0, 0, 0, 0.24);
}

.site-footer .social-pill.whatsapp {
  --social-bg: linear-gradient(145deg, #35df68, #1fb653);
}

.site-footer .social-pill.tiktok {
  --social-bg: linear-gradient(145deg, #292929, #050505);
}

.site-footer .social-pill.facebook {
  --social-bg: linear-gradient(145deg, #4c9aff, #1877f2);
}

.site-footer .social-pill.youtube {
  --social-bg: linear-gradient(145deg, #ff3b3b, #ff0000);
}

.site-footer .social-pill.instagram {
  --social-bg: radial-gradient(circle at 30% 105%, #feda75 0 16%, #fa7e1e 30%, #d62976 56%, #962fbf 78%, #4f5bd5 100%);
}

.site-footer .social-pill.telegram {
  --social-bg: linear-gradient(145deg, #45c3f6, #229ed9);
}

.site-footer .social-links .social-icon,
.site-footer .social-links .facebook-icon,
.site-footer .social-links .whatsapp-mini-icon {
  color: #fff;
}

.site-footer .social-links .instagram-icon {
  background: transparent;
  border-color: #fff;
}

.social-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: currentColor;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.youtube-icon {
  width: 20px;
  border-radius: 6px;
  background: #ff0000;
}

.youtube-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
  transform: translateX(1px);
}

.instagram-icon {
  border: 2px solid transparent;
  border-radius: 6px;
  background:
    linear-gradient(#172333, #172333) padding-box,
    radial-gradient(circle at 30% 110%, #feda75 0 18%, #fa7e1e 28%, #d62976 52%, #962fbf 74%, #4f5bd5 100%) border-box;
}

.instagram-icon::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
}

.telegram-icon {
  clip-path: polygon(0 42%, 100% 0, 72% 100%, 45% 68%, 22% 88%);
  background: #26a5e4;
}

.tiktok-icon {
  color: #fff;
  text-shadow: -1px 0 #25f4ee, 1px 0 #fe2c55;
}

.tiktok-icon::before {
  content: "\266A";
}

.facebook-icon {
  color: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.whatsapp-mini-icon {
  color: #25d366;
}

.gmail-icon {
  display: inline-grid;
  place-items: center;
}

.gmail-icon svg {
  display: block;
  width: 23px;
  height: 18px;
}

.whatsapp-logo {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 20px;
  color: #04170d;
  font-weight: 850;
  background: linear-gradient(135deg, var(--green), #a9ffc8);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3), 0 0 28px rgba(75, 224, 140, 0.22);
  transition: transform 220ms ease;
}

.floating-wa .whatsapp-logo {
  width: 22px;
  height: 22px;
}

.floating-wa:hover {
  transform: translateY(-3px) scale(1.03);
}

.floating-socials {
  position: fixed;
  left: clamp(5px, 0.7vw, 10px);
  top: 50%;
  z-index: 39;
  display: grid;
  gap: 9px;
  transform: translateY(-50%);
}

.floating-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: var(--social-bg, linear-gradient(145deg, var(--social-light, #5f7fc1), var(--social, #355ca8)));
  border: 0;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.42),
    inset 0 -2px 5px rgba(0, 0, 0, 0.18),
    0 7px 14px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.floating-socials a:hover,
.floating-socials a:focus-visible {
  transform: translateX(4px) translateY(-1px) scale(1.04);
  filter: saturate(1.12) brightness(1.05);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.46),
    inset 0 -2px 5px rgba(0, 0, 0, 0.16),
    0 10px 18px rgba(0, 0, 0, 0.28);
}

.floating-socials .social-icon {
  width: 21px;
  height: 21px;
  font-size: 16px;
  color: #fff;
}

.floating-socials .instagram-icon {
  background: transparent;
  border-color: #fff;
}

.floating-socials .instagram-icon::before {
  border-color: #fff;
}

.floating-socials .telegram-icon {
  width: 22px;
  height: 22px;
  background: #fff !important;
  clip-path: polygon(0 43%, 100% 0, 75% 100%, 47% 70%, 25% 88%);
}

.floating-socials a:nth-child(1) {
  --social: #18b43f;
  --social-light: #28d464;
  --social-bg: linear-gradient(145deg, #35df68, #1fb653);
}

.floating-socials a:nth-child(2) {
  --social: #ffffff;
  --social-light: #ffffff;
  --social-bg: linear-gradient(145deg, #ffffff, #f7f9fb);
}

.floating-socials a:nth-child(3) {
  --social: #070707;
  --social-light: #2a2a2a;
  --social-bg: linear-gradient(145deg, #292929, #050505);
}

.floating-socials a:nth-child(4) {
  --social: #1877f2;
  --social-light: #4c9aff;
  --social-bg: linear-gradient(145deg, #4c9aff, #1877f2);
}

.floating-socials a:nth-child(5) {
  --social: #ff0000;
  --social-light: #ff3b3b;
  --social-bg: linear-gradient(145deg, #ff3b3b, #ff0000);
}

.floating-socials a:nth-child(6) {
  --social-bg:
    radial-gradient(circle at 30% 105%, #feda75 0 16%, #fa7e1e 30%, #d62976 56%, #962fbf 78%, #4f5bd5 100%);
}

.floating-socials a:nth-child(7) {
  --social: #229ed9;
  --social-light: #43b7ef;
  --social-bg: linear-gradient(145deg, #45c3f6, #229ed9);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes driftGrid {
  from { background-position: 0 0; }
  to { background-position: 96px 96px; }
}

@keyframes starDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-34px, 22px, 0); }
}

@keyframes planetBreath {
  0%, 100% { filter: saturate(1) brightness(1); transform: translateX(-50%) scale(1); }
  50% { filter: saturate(1.12) brightness(1.07); transform: translateX(-50%) scale(1.012); }
}

@keyframes earthTextureDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 124px 62px, 62px 124px, 0 0, 0 0; }
}

@keyframes cloudSlide {
  0%, 100% { translate: 0 0; opacity: 0.34; }
  50% { translate: 42px -8px; opacity: 0.56; }
}

@keyframes satelliteDriftOne {
  0%, 100% { translate: 0 0; rotate: -12deg; }
  50% { translate: 26px -14px; rotate: -6deg; }
}

@keyframes satelliteDriftTwo {
  0%, 100% { translate: 0 0; rotate: 18deg; }
  50% { translate: -30px 10px; rotate: 10deg; }
}

@keyframes satelliteDriftThree {
  0%, 100% { translate: 0 0; rotate: 7deg; }
  50% { translate: 18px 18px; rotate: 14deg; }
}

@keyframes signalBlink {
  0%, 100% { opacity: 0.32; transform: scale(0.76); }
  45% { opacity: 1; transform: scale(1.5); }
}

@keyframes floatPanel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.8); opacity: 1; }
}

@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;
  }
}

@media (min-width: 761px) {
  html {
    scroll-snap-type: y proximity;
  }
}

@media (min-width: 761px) and (max-width: 1400px) {
  :root {
    --content-width: min(100% - clamp(28px, 4vw, 56px), 1580px);
  }

  .hero-content,
  .catalog-tabs {
    width: var(--content-width);
  }

  .floating-socials {
    left: 10px;
  }
}

@media (max-width: 1040px) {
  html {
    scroll-padding-top: 92px;
  }

  .site-header {
    top: 10px;
    width: min(100% - 20px, 1180px);
    margin-top: 10px;
    gap: 10px;
    padding: 8px 10px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .main-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    z-index: 40;
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(5, 11, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 12px;
  }

  .nav-cta {
    display: none;
  }

  .hero-content,
  .catalog-toolbar,
  .split,
  .story-layout,
  .lead-section,
  .field-allies-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
  }

  .product-grid,
  .category-grid,
  .benefit-grid,
  .allies-grid,
  .testimonial-grid,
  .blog-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-store-panel {
    grid-template-columns: 1fr;
  }

  body[data-active-view="contacto"] .lead-section {
    width: var(--content-width);
    margin-top: 76px;
    grid-template-columns: 1fr;
  }

  .app-store-panel .eyebrow,
  .app-store-panel h3,
  .app-store-panel p:not(.eyebrow),
  .store-button {
    grid-column: 1;
  }

  .store-button {
    grid-row: auto;
    justify-self: start;
  }

  .app-store-panel p:not(.eyebrow) {
    white-space: normal;
  }

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

  .product-detail-layout,
  .product-specs ul {
    grid-template-columns: 1fr;
  }

  #servicios > div:first-child {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #servicios h2,
  #servicios .eyebrow,
  #servicios > div:first-child > p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  #servicios .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .colombia-map-card,
  .field-allies-results,
  .field-side {
    min-height: auto;
    max-height: none;
  }

  .colombia-map {
    min-height: 360px;
  }

  .story-video-card {
    max-width: 720px;
    justify-self: center;
    align-self: auto;
  }

  .story-video-card video {
    min-height: auto;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .story-text {
    max-height: none;
  }
}

@media (max-width: 760px) {
  :root {
    --content-width: min(100% - 32px, 1180px);
    --section-space: clamp(18px, 7vw, 30px);
    --mobile-header-height: 122px;
  }

  html {
    scroll-padding-top: calc(var(--mobile-header-height) + 18px);
  }

  .section.page-section,
  .lead-section.page-section,
  .site-footer.page-section {
    min-height: auto;
  }

  .page-section {
    scroll-margin-top: calc(var(--mobile-header-height) + 18px);
  }

  .page-section::before {
    left: 16px;
    right: 16px;
  }

  body[data-active-view="productos"] #productos,
  body[data-active-view="servicios"] #servicios,
  body[data-active-view="aplicaciones"] #aplicaciones,
  body[data-active-view="historia"] #historia,
  body[data-active-view="aliados"] #aliados,
  body[data-active-view="testimonios"] #testimonios,
  body[data-active-view="blogs"] #blogs,
  body[data-active-view="contacto"] #cotizar {
    padding-top: calc(var(--mobile-header-height) + 34px);
  }

  .site-header {
    width: min(100% - 16px, 1180px);
    min-height: var(--mobile-header-height);
    align-items: flex-start;
    padding: 10px 12px 48px;
  }

  .floating-socials {
    left: 50%;
    top: 88px;
    width: max-content;
    max-width: calc(100% - 24px);
    bottom: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(5px, 1.8vw, 7px);
    transform: translateX(-50%);
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .floating-socials a {
    width: clamp(26px, 8.6vw, 30px);
    height: clamp(26px, 8.6vw, 30px);
    box-shadow:
      inset 0 1px 2px rgba(255, 255, 255, 0.38),
      inset 0 -2px 4px rgba(0, 0, 0, 0.16),
      0 6px 12px rgba(0, 0, 0, 0.22);
  }

  .floating-socials .social-icon {
    width: clamp(14px, 4.8vw, 16px);
    height: clamp(14px, 4.8vw, 16px);
    font-size: clamp(10px, 3.6vw, 12px);
  }

  .floating-wa {
    display: none;
  }

  .section-intro,
  .allies-section .section-intro {
    width: 100%;
    max-width: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    width: 285%;
    height: 118%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.12);
  }

  .hero-content {
    width: var(--content-width);
    padding-top: calc(var(--mobile-header-height) + 24px);
    padding-bottom: 28px;
    text-align: center;
  }

  .hero-copy-block {
    width: 100%;
    min-width: 0;
    padding-left: 0;
  }

  .hero-actions,
  .hero-pills {
    justify-content: center;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(30px, 10vw, 40px);
    line-height: 1.08;
    margin-inline: auto;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    font-size: clamp(15px, 4.4vw, 17px);
  }

  .hero-actions .button.whatsapp {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    animation: none;
    width: 100%;
    padding: 16px;
    gap: 14px;
    margin-top: 0;
    justify-self: stretch;
  }

  .panel-topline {
    flex-wrap: wrap;
  }

  .receiver-visual {
    min-height: 168px;
  }

  .catalog-tabs {
    width: var(--content-width);
    justify-content: flex-start;
    margin: 0 auto 18px;
    padding: 8px;
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .catalog-tabs a {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .catalog-search {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .catalog-search input,
  .catalog-search button {
    width: 100%;
  }

  .social-links {
    grid-template-columns: repeat(2, max-content);
  }

  .product-grid,
  .category-grid,
  .benefit-grid,
  .allies-grid,
  .testimonial-grid,
  .blog-grid,
  .faq-grid,
  .service-list,
  .blog-list,
  .industry-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .product-grid.is-list .product-card,
  .product-grid.is-list .product-body,
  .product-grid.is-list .product-actions {
    grid-template-columns: 1fr;
  }

  .product-grid.is-list .product-commerce,
  .product-grid.is-list .product-actions,
  .product-grid.is-list .product-meta,
  .product-grid.is-list h3,
  .product-grid.is-list p {
    grid-column: 1;
    grid-row: auto;
  }

  .product-grid.is-list .product-commerce {
    min-width: 0;
    align-items: flex-start;
  }

  .lead-section {
    width: var(--content-width);
    border-radius: 26px;
    min-height: auto;
    gap: 12px;
  }

  .lead-section > div:first-child {
    padding: 24px 22px 0;
  }

  .lead-form {
    padding: 16px;
  }

  .product-commerce,
  .product-detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-price {
    text-align: left;
  }

  .product-modal {
    padding: 10px;
  }

  .product-modal-card {
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 24px;
    padding: 14px;
  }

  .product-detail-media {
    aspect-ratio: 1.32 / 1;
  }

  .product-detail-info h2 {
    font-size: clamp(28px, 10vw, 42px);
  }

  .telemetry-grid .coordinates-metric dd {
    white-space: normal;
  }

  #servicios .service-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --content-width: min(100% - 24px, 1180px);
  }

  .site-header {
    width: min(100% - 12px, 1180px);
    min-height: var(--mobile-header-height);
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(29px, 10.6vw, 38px);
  }

  .telemetry-grid {
    grid-template-columns: 1fr;
  }

  .receiver-visual {
    min-height: 150px;
  }

  .receiver-visual video {
    width: min(160px, 66%);
  }

  .section-heading h2,
  .catalog-toolbar h2,
  .lead-section h2 {
    font-size: clamp(28px, 11vw, 38px);
  }
}

@media (max-width: 360px) {
  :root {
    --content-width: min(100% - 20px, 1180px);
  }

  .button,
  .nav-cta {
    min-height: 44px;
    padding-inline: 14px;
  }

  .hero-panel,
  .product-card,
  .lead-form,
  .story-copy,
  .field-allies-panel {
    border-radius: 20px;
  }
}
