
/* Fractal Glass Footer Effect */
.site-footer {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-footer .footer-inner,
.site-footer .footer-cta-row,
.site-footer .footer-bottom {
  position: relative;
  z-index: 5;
}

#footer-glass-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  filter: url(#displacementFilter) blur(7px);
}

.cell {
  background-size: 130% auto; /* Zoom sutil sin deformar */
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.cell .shimmer {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 72.63%,
    rgba(255, 255, 255, 0.08) 99%,
    rgba(255, 255, 255, 0.6) 100%
  );
  pointer-events: none;
}

/* ── Footer tipo band ── */
.footer-tipo-band {
  background: #FF7F0A;
  overflow: hidden;
  padding: 4px 0;
}

.footer-tipo-inner {
  display: flex;
  width: max-content;
  animation: footer-tipo-scroll 28s linear infinite;
}

.footer-tipo-track {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding-right: 14px;
}

.footer-tipo-logo {
  height: 9px;
  width: auto;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
  display: block;
}

.footer-tipo-sep {
  color: rgba(255, 255, 255, 0.55);
  font-size: 7px;
  flex-shrink: 0;
  line-height: 1;
}

@keyframes footer-tipo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
