
/* ===== SECCIÓN: HERO v3 — laptop 3D con dashboard animado ===== */
.ug-hero-v3 {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 100px 24px 60px;
  box-sizing: border-box;
  background: #ffffff;
}

.ug-hero-v3-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(39, 50, 103, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 85% 65% at 50% 0%, #000 40%, transparent 100%);
  z-index: 0;
}
.ug-hero-v3-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.ug-hero-v3-glow-blue { width: 500px; height: 500px; top: -200px; left: -140px; background: rgba(39, 50, 103, 0.14); }
.ug-hero-v3-glow-red { width: 420px; height: 420px; bottom: -160px; right: -120px; background: rgba(227, 27, 50, 0.12); }

.ug-hero-v3-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.ug-hero-v3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ug-blue-primary);
  background: rgba(39, 50, 103, 0.06);
  border: 1px solid rgba(39, 50, 103, 0.14);
  padding: 7px 16px 7px 12px;
  border-radius: 9999px;
  font-size: var(--ug-text-eyebrow, 12px);
  font-weight: 700;
  margin-bottom: 22px;
}
.ug-hero-v3-pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 rgba(34, 197, 94, 0.5);
  animation: ugPulseDot 2s infinite;
}
@keyframes ugPulseDot {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.ug-hero-v3-title {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ug-blue-primary);
  margin: 0 0 20px;
}
.ug-hero-v3-title-accent {
  display: block;
  background: linear-gradient(90deg, var(--ug-blue-primary) 0%, var(--ug-red-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ug-hero-v3-lead {
  font-size: var(--ug-text-lg, 16px);
  line-height: 1.65;
  color: var(--ug-text-gray);
  max-width: 460px;
  margin: 0 0 32px;
}

.ug-hero-v3-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.ug-hero-v3-btn-solid {
  display: inline-flex; align-items: center;
  background: var(--ug-red-accent); color: #ffffff;
  padding: 14px 30px; border-radius: 9999px;
  text-decoration: none; font-weight: 700; font-size: 15px;
  box-shadow: 0 8px 20px rgba(227, 27, 50, 0.25);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.ug-hero-v3-btn-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(227, 27, 50, 0.35), 0 0 40px rgba(227, 27, 50, 0.25);
}
.ug-hero-v3-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ug-blue-primary);
  border: 1.5px solid rgba(39, 50, 103, 0.2);
  padding: 13px 26px; border-radius: 9999px;
  text-decoration: none; font-weight: 700; font-size: 15px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ug-hero-v3-btn-ghost:hover { border-color: var(--ug-blue-primary); background: rgba(39, 50, 103, 0.05); }
.ug-hero-v3-arrow { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.ug-hero-v3-btn-ghost:hover .ug-hero-v3-arrow { transform: translateX(4px); }

/* ----- Métricas rápidas ----- */
.ug-hero-v3-stats { display: flex; gap: 36px; }
.ug-hero-v3-stat { display: flex; flex-direction: column; }
.ug-hero-v3-stat-num {
  font-size: 26px; font-weight: 800;
  color: var(--ug-blue-primary);
  font-variant-numeric: tabular-nums;
}
.ug-hero-v3-stat-label { font-size: 12px; color: var(--ug-text-gray); margin-top: 2px; }

/* =========================================================
 * LA LAPTOP 3D
 * ========================================================= */
.ug-hero-v3-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
}

.ug-laptop {
  position: relative;
  width: 100%;
  max-width: 560px;
  transform: rotateY(-10deg) rotateX(6deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.ug-laptop-screen {
  position: relative;
  background: #12162e;
  border-radius: 14px 14px 4px 4px;
  padding: 10px 10px 0;
  box-shadow: 0 40px 70px rgba(39, 50, 103, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ug-laptop-screen-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px 10px;
}
.ug-laptop-dot { width: 8px; height: 8px; border-radius: 50%; }
.ug-laptop-dot-red { background: #ff5f56; }
.ug-laptop-dot-yellow { background: #ffbd2e; }
.ug-laptop-dot-green { background: #27c93f; }
.ug-laptop-screen-title {
  margin-left: 8px;
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.ug-laptop-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12px;
  background: #0c1024;
  border-radius: 6px 6px 0 0;
  padding: 14px;
  min-height: 260px;
}

/* ----- Terminal con secuencia genética "corriendo" ----- */
.ug-terminal {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px;
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 11px;
  line-height: 1.9;
  color: #4ade80;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
  white-space: pre;
}
.ug-terminal span { display: block; opacity: 0; animation: ugTerminalLine 0.4s ease forwards; }

@keyframes ugTerminalLine {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----- Panel del gráfico ----- */
.ug-chart {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ug-chart-header { margin-bottom: 10px; }
.ug-chart-status {
  display: flex; align-items: center; gap: 6px;
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.ug-chart-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: ugPulseDot 2s infinite;
}
.ug-chart-counter {
  display: block;
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 13px;
  color: #ffffff;
  font-weight: 700;
}

.ug-chart-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
.ug-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #e31b32 0%, #7c1a2b 100%);
  animation: ugBarPulse 2.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.12s);
}
@keyframes ugBarPulse {
  0%, 100% { height: 30%; opacity: 0.55; }
  50% { height: var(--h, 85%); opacity: 1; }
}
.ug-bar:nth-child(odd) { --h: 70%; }
.ug-bar:nth-child(3n) { --h: 95%; }
.ug-bar:nth-child(4n) { --h: 55%; }

/* ----- Base de la laptop (el "teclado") ----- */
.ug-laptop-base {
  position: relative;
  height: 16px;
  background: linear-gradient(180deg, #dfe3ee 0%, #b8bfd4 100%);
  border-radius: 0 0 12px 12px;
  transform: perspective(300px) rotateX(-25deg);
  transform-origin: top;
  box-shadow: 0 10px 20px rgba(39, 50, 103, 0.2);
}
.ug-laptop-base::after {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 70px; height: 5px;
  background: rgba(39, 50, 103, 0.15);
  border-radius: 0 0 6px 6px;
}

.ug-laptop-shadow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(39, 50, 103, 0.25) 0%, transparent 75%);
  filter: blur(10px);
  z-index: -1;
}

/* ----- Partículas de luz saliendo de la pantalla ----- */
.ug-hero-v3-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.ug-particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ug-red-accent);
  opacity: 0;
  animation: ugParticleFloat linear infinite;
}
@keyframes ugParticleFloat {
  0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  15% { opacity: 0.9; }
  90% { opacity: 0.4; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(1.2); }
}

/* ----- Entrada animada ----- */
.ug-hero-v3-anim { opacity: 0; transform: translateY(18px); animation: ugHeroV3Reveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.ug-hero-v3-anim-delay { animation-delay: 0.15s; }
@keyframes ugHeroV3Reveal { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 960px) {
  .ug-hero-v3-inner { grid-template-columns: 1fr; text-align: center; }
  .ug-hero-v3-lead { margin-left: auto; margin-right: auto; }
  .ug-hero-v3-actions, .ug-hero-v3-stats { justify-content: center; }
  .ug-laptop { transform: none; max-width: 420px; }
  .ug-laptop-body { grid-template-columns: 1fr; min-height: auto; }
  .ug-terminal { min-height: 140px; }
}
@media (max-width: 560px) {
  .ug-hero-v3-stats { flex-wrap: wrap; gap: 22px; justify-content: center; }
}







/* ===== SECCIÓN: CATEGORÍAS v3 (panel de control + fotos reales) ===== */
.ug-cat-v3-section {
  max-width: 1160px;
  margin: 110px auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.ug-cat-v3-header { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.ug-cat-v3-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ug-blue-primary);
  background: rgba(39, 50, 103, 0.06);
  border: 1px solid rgba(39, 50, 103, 0.14);
  padding: 7px 16px 7px 12px;
  border-radius: 9999px;
  font-size: var(--ug-text-eyebrow, 12px);
  font-weight: 700;
  margin-bottom: 16px;
}
.ug-cat-v3-title {
  font-size: var(--ug-title-section, 28px);
  font-weight: 800;
  color: var(--ug-blue-primary);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.ug-cat-v3-subtitle { font-size: var(--ug-text-base, 14.5px); color: var(--ug-text-gray); margin: 0; }

.ug-cat-v3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ug-cat-v3-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  border-radius: 18px;
  padding: 24px;
  text-decoration: none;
  overflow: hidden;
  border-color: transparent;
  background: #0c1130; /* se ve un instante mientras carga la imagen */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ug-cat-v3-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(39, 50, 103, 0.25);
}

/* Foto de fondo real detrás de cada tarjeta de categoría — con
   degradado oscuro encima para que el texto blanco siga siendo
   legible, y el ícono/contador mantengan su protagonismo. */
.ug-cat-v3-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ug-cat-v3-card:hover .ug-cat-v3-bg-img {
  transform: scale(1.08);
}
.ug-cat-v3-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 17, 48, 0.45) 0%, rgba(12, 17, 48, 0.92) 100%);
  z-index: 1;
}

/* Línea de "escaneo" que cruza la tarjeta al pasar el cursor — el
   mismo tipo de microdetalle "sistema activo" que la laptop del Hero */
.ug-cat-v3-scanline {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 3;
}
.ug-cat-v3-card:hover .ug-cat-v3-scanline { left: 120%; }

/* El contenido de texto queda por encima de la foto+overlay */
.ug-cat-v3-card-top,
.ug-cat-v3-card h3,
.ug-cat-v3-card p,
.ug-cat-v3-link {
  position: relative;
  z-index: 2;
}

.ug-cat-v3-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.ug-cat-v3-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  backdrop-filter: blur(6px);
  transition: background 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.ug-cat-v3-card:hover .ug-cat-v3-icon {
  background: var(--ug-red-accent);
  transform: rotate(-6deg) scale(1.05);
}
.ug-cat-v3-count {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}
.ug-cat-v3-count::after { content: "+"; }

.ug-cat-v3-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}
.ug-cat-v3-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0 0 18px;
  flex-grow: 1;
}
.ug-cat-v3-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}
.ug-cat-v3-card:hover .ug-cat-v3-link { color: #ffffff; }

/* Tarjeta especial "Ver catálogo completo" — sin foto, con acento
   visual propio (mismo degradado oscuro que usaremos en el footer) */
.ug-cat-v3-card--all {
  background: linear-gradient(150deg, #1c2450 0%, #0c1130 100%);
  align-items: flex-start;
  justify-content: center;
}
.ug-cat-v3-icon--big {
  width: 52px; height: 52px;
  font-size: 21px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}
.ug-cat-v3-card--all:hover .ug-cat-v3-icon--big {
  background: var(--ug-red-accent);
}

@media (max-width: 900px) {
  .ug-cat-v3-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ug-cat-v3-section { margin: 60px auto; }
  .ug-cat-v3-grid { grid-template-columns: 1fr; }
  .ug-cat-v3-title { font-size: 24px; }
}











/* ===== SECCIÓN: OXFORD NANOPORE — explicación visual + selector interactivo ===== */
.ug-device-section {
  max-width: 1100px;
  margin: 110px auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.ug-device-header { text-align: center; max-width: 620px; margin: 0 auto 32px; }
.ug-device-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ug-red-accent);
  font-size: var(--ug-text-eyebrow, 12px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.ug-device-title {
  font-size: var(--ug-title-section, 28px);
  font-weight: 800;
  color: var(--ug-blue-primary);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.ug-device-subtitle { font-size: var(--ug-text-base, 14.5px); color: var(--ug-text-gray); margin: 0; }

/* ----- Franja explicativa: "¿Qué es Oxford Nanopore?" ----- */
.ug-device-explainer {
  max-width: 960px;
  margin: 0 auto 48px;
  text-align: center;
}
.ug-device-explainer-lead {
  font-size: var(--ug-text-lg, 16px);
  color: var(--ug-text-main);
  line-height: 1.7;
  margin: 0 0 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.ug-device-explainer-lead strong { color: var(--ug-blue-primary); }

.ug-flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.ug-flow-step {
  flex: 1;
  max-width: 220px;
  padding: 24px 18px;
  background: #ffffff;
  border: 1px solid rgba(39, 50, 103, 0.08);
  border-radius: 18px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}
.ug-flow-step:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 27, 50, 0.25);
  box-shadow: 0 16px 36px rgba(39, 50, 103, 0.1);
}

.ug-flow-step-icon {
  position: relative;
  width: 50px; height: 50px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: rgba(39, 50, 103, 0.06);
  color: var(--ug-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  transition: background 0.35s ease, color 0.35s ease;
}
.ug-flow-step:hover .ug-flow-step-icon {
  background: var(--ug-red-accent);
  color: #ffffff;
}
.ug-flow-step-badge {
  position: absolute;
  top: -8px; right: -10px;
  background: var(--ug-blue-primary);
  color: #ffffff;
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.ug-flow-step h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ug-blue-primary);
  margin: 0 0 8px;
  line-height: 1.35;
}
.ug-flow-step p {
  font-size: 12.5px;
  color: var(--ug-text-gray);
  line-height: 1.5;
  margin: 0;
}

.ug-flow-connector {
  position: relative;
  flex: 0 0 60px;
  height: 2px;
  margin-top: 45px;
  background: linear-gradient(90deg, rgba(39, 50, 103, 0.15), rgba(227, 27, 50, 0.15));
  overflow: visible;
}
.ug-flow-connector-pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ug-red-accent);
  box-shadow: 0 0 10px var(--ug-red-accent);
  transform: translateY(-50%);
  animation: ugFlowPulse 2.2s ease-in-out infinite;
}
@keyframes ugFlowPulse {
  0% { left: 0; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: calc(100% - 8px); opacity: 0; }
}

/* ----- Pestañas selectoras ----- */
.ug-device-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ug-device-tab {
  background: #ffffff;
  border: 1.5px solid rgba(39, 50, 103, 0.14);
  color: var(--ug-blue-primary);
  padding: 11px 26px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.ug-device-tab:hover { border-color: var(--ug-blue-primary); }
.ug-device-tab.is-active {
  background: var(--ug-blue-primary);
  border-color: var(--ug-blue-primary);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(39, 50, 103, 0.25);
}

/* ----- Panel principal ----- */
.ug-device-panel {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(39, 50, 103, 0.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(39, 50, 103, 0.08);
}

/* ----- Foto real del equipo ----- */
.ug-device-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ug-bg-soft);
}
.ug-device-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ug-device-visual:hover .ug-device-img { transform: scale(1.05); }

.ug-device-scanline {
  position: absolute;
  top: 0; left: -20%;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(34, 197, 94, 0.8), transparent);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
  animation: ugScanMove 3.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes ugScanMove {
  0%, 100% { left: -5%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  50% { left: 100%; }
}

.ug-device-live-tag {
  position: absolute;
  z-index: 3;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(12, 17, 48, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 9999px;
}

.ug-device-img.is-fading { opacity: 0; }

/* ----- Columna de información ----- */
.ug-device-info-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--ug-blue-primary);
  margin: 0 0 12px;
}
.ug-device-info-desc {
  font-size: var(--ug-text-lg, 16px);
  color: var(--ug-text-gray);
  line-height: 1.65;
  margin: 0 0 28px;
}
.ug-device-specs {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(39, 50, 103, 0.08);
}
.ug-device-spec { display: flex; flex-direction: column; }
.ug-device-spec-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--ug-blue-primary);
  font-variant-numeric: tabular-nums;
}
.ug-device-spec-label { font-size: 11.5px; color: var(--ug-text-gray); margin-top: 2px; }
.ug-device-usecase {
  display: inline-block;
  font-size: 13px;
  color: var(--ug-red-accent);
  font-weight: 600;
  margin-bottom: 26px;
}
.ug-device-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ug-red-accent);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 8px 20px rgba(227, 27, 50, 0.25);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.ug-device-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(227, 27, 50, 0.35), 0 0 40px rgba(227, 27, 50, 0.22);
}
.ug-device-btn .ug-hero-v3-arrow { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.ug-device-btn:hover .ug-hero-v3-arrow { transform: translateX(4px); }

@media (max-width: 900px) {
  .ug-device-panel { grid-template-columns: 1fr; padding: 28px 24px; gap: 28px; text-align: center; }
  .ug-device-specs { justify-content: center; }
}
@media (max-width: 768px) {
  .ug-flow-steps { flex-direction: column; align-items: center; gap: 20px; }
  .ug-flow-step { max-width: 280px; width: 100%; box-sizing: border-box; }
  .ug-flow-connector {
    width: 2px;
    height: 30px;
    flex: 0 0 30px;
    margin-top: 0;
    background: linear-gradient(180deg, rgba(39, 50, 103, 0.15), rgba(227, 27, 50, 0.15));
  }
  .ug-flow-connector-pulse {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    animation: ugFlowPulseVertical 2.2s ease-in-out infinite;
  }
}
@keyframes ugFlowPulseVertical {
  0% { top: 0; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: calc(100% - 8px); opacity: 0; }
}
@media (max-width: 560px) {
  .ug-device-section { margin: 60px auto; }
  .ug-device-title { font-size: 24px; }
  .ug-device-tab { padding: 9px 18px; font-size: 13px; }
}