	/*------------- Marquesina - Go POS------------- */	
.marquee-section {
    width: 100%;
    background-color: #1A1A1A;
    color: rgba(255, 255, 255, 0.7);
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.marquee-container {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.marquee-content span {
    display: inline-block;
    padding: 0 8px;
}

.marquee-content .separator {
    color: rgba(255, 31, 143, 0.6);
    padding: 0 16px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pausar al hacer hover (opcional) */
.marquee-section:hover .marquee-container {
    animation-play-state: paused;
}
	/*------------- Animación Hero - Go POS------------- */	
.invoice-visual {
  --iv-accent: #ffca1b;
  --iv-text: rgba(8, 8, 9, 0.82);
  --iv-muted: rgba(255, 255, 255, 0.68);
  --iv-border: rgba(255, 255, 255, 0.12);
  --iv-panel: rgba(8, 8, 9, 0.90);
  position: relative;
  width: min(100%, 568px);
  height: 400px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  color: var(--iv-text);
  font-family: var(--ont-family-primary);
  background:
  radial-gradient(circle at 18% 14%, rgba(250, 250, 250, 0.20), transparent 32%),    radial-gradient(circle at 82% 80%, rgba(250, 250, 255, 0.18), transparent 34%), linear-gradient(137deg, #e4e4e7, #e4e4e7 48%, #e4e4e7);
  box-sizing: border-box;
}

.invoice-visual *,
.invoice-visual *::before,
.invoice-visual *::after { box-sizing: border-box; }

.invoice-visual__ui {
  position: absolute;
  inset: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.invoice-visual__stack {
  display: flex;
  width: 100%;
  max-width: 520px;
  flex-direction: column;
}

.invoice-visual__glass {
  border: 1px solid rgb(212, 212, 216);
  border-radius: 12px;
  background: rgb(255, 255, 255);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.invoice-visual__kpi {
  position: relative;
  margin-bottom: 8px;
  padding: 16px;
  overflow: hidden;
}

.invoice-visual__kpi-label,
.invoice-visual__kpi-sub,
.invoice-visual__label {
  color: rgba(8, 8, 9, 0.82);
  font-size: 12px;
  line-height: 1.6;
}

.invoice-visual__kpi-label { margin-bottom: 6px; }
.invoice-visual__kpi-sub { margin-top: 4px; }

.invoice-visual__kpi-value {
  color: var(--iv-text);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.invoice-visual__growth {
  color: #059669;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

.invoice-visual__viewport {
  width: 100%;
  height: 176px;
  flex-shrink: 0;
  overflow: hidden;
}

.invoice-visual__feed {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.invoice-visual__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 16px;
}

.invoice-visual__icon {
  display: flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.70);
  background: rgba(8, 8, 9, 0.82);
}

.invoice-visual__body { min-width: 0; flex: 1; }

.invoice-visual__label,
.invoice-visual__amount {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(8, 8, 9, 0.82);
  font-weight: 600;
}

.invoice-visual__label { margin-bottom: 3px; }
.invoice-visual__amount { font-size: 14px; line-height: 1.6; }

.invoice-visual__chip {
  flex-shrink: 0;
  padding: 3px 10px;
  border: 1px solid #D1FAE5;
  border-radius: 999px;
  color: #059669;
  background: #ECFDF5;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.invoice-visual__connector {
  position: relative;
  display: flex;
  height: 24px;
  align-items: center;
}

.invoice-visual__connector::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 34px;
  width: 1px;
  content: "";
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.20) 0 3px,
    transparent 3px 7px
  );
}

.invoice-visual__time {
  position: relative;
  z-index: 1;
  margin-left: 54px;
  color: rgba(10, 10, 11, 0.90);
  font-size: 11px;
}

@keyframes invoice-visual-flash {
  0%, 100% { color: var(--iv-text); }
  35% { color: rgba(255, 255, 255, 0.82); }
}

.invoice-visual__total--flash {
  animation: invoice-visual-flash 0.4s ease-out;
}

@media (max-width: 520px) {
  .invoice-visual { height: 360px; }
  .invoice-visual__ui { inset: 16px; }
  .invoice-visual__row { gap: 10px; padding-inline: 12px; }
  .invoice-visual__chip { display: none; }
  .invoice-visual__kpi-value { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .invoice-visual__feed { transition-duration: 0.01ms !important; }
  .invoice-visual__total--flash { animation: none; }
}

