.elementor-2565 .elementor-element.elementor-element-5fe37d6{--display:flex;}/* Start custom CSS */:root {
  --fx-red: #d71920;
  --fx-red-dark: #a90f15;
  --fx-red-light: #fff1f1;

  --fx-text: #18181b;
  --fx-muted: #6b7280;
  --fx-border: #e5e7eb;

  --fx-background: #ffffff;
  --fx-background-soft: #f8f8f9;

  --fx-shadow:
    0 30px 80px rgba(24, 24, 27, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
}

.fxhub,
.fxhub * {
  box-sizing: border-box;
}

.fxhub {
  width: 100%;
  overflow: hidden;

  color: var(--fx-text);
  background: var(--fx-background);

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.fxhub a {
  color: inherit;
  text-decoration: none;
}

.fxhub button {
  font: inherit;
}


/* ==========================================================
   ENCABEZADO
========================================================== */

.fxhub-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;

  width: 100%;
  min-height: 84px;
  padding: 0 clamp(24px, 6vw, 100px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.fxhub-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.fxhub-brand-mark {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--fx-red),
      var(--fx-red-dark)
    );

  font-size: 20px;
  font-weight: 900;

  box-shadow:
    0 12px 26px rgba(215, 25, 32, 0.25);
}

.fxhub-brand-text {
  display: flex;
  flex-direction: column;
}

.fxhub-brand-text strong {
  color: #18181b;
  font-size: 15px;
  line-height: 1.1;
}

.fxhub-brand-text small {
  margin-top: 3px;

  color: #9ca3af;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fxhub-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.fxhub-nav a {
  position: relative;

  color: #52525b;

  font-size: 13px;
  font-weight: 700;
}

.fxhub-nav a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;

  height: 2px;

  border-radius: 999px;
  background: var(--fx-red);

  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.fxhub-nav a:hover::after {
  transform: scaleX(1);
}


/* ==========================================================
   HERO
========================================================== */

.fxhub-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  min-height: 100svh;
  padding:
    150px
    clamp(24px, 8vw, 140px)
    110px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #ffffff 55%,
      #fff6f6 100%
    );
}

.fxhub-hero::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -4;

  opacity: 0.45;

  background-image:
    linear-gradient(
      rgba(215, 25, 32, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(215, 25, 32, 0.04) 1px,
      transparent 1px
    );

  background-size: 58px 58px;

  mask-image:
    radial-gradient(
      circle at center,
      black 5%,
      transparent 75%
    );
}

.fxhub-hero-content {
  position: relative;
  z-index: 2;

  width: min(1000px, 100%);
  margin: 0 auto;

  text-align: center;
}

.fxhub-kicker,
.fxhub-product-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 9px 14px;

  border: 1px solid rgba(215, 25, 32, 0.14);
  border-radius: 999px;

  color: var(--fx-red);
  background: rgba(215, 25, 32, 0.045);

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.fxhub-kicker::before,
.fxhub-product-label::before {
  content: "";

  width: 7px;
  height: 7px;

  border-radius: 50%;
  background: var(--fx-red);

  box-shadow:
    0 0 0 5px rgba(215, 25, 32, 0.08);
}

.fxhub-hero h1 {
  max-width: 1000px;
  margin: 30px auto 28px;

  color: #18181b;

  font-size: clamp(55px, 7.5vw, 112px);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.fxhub-hero h1 span {
  display: block;

  color: transparent;

  background:
    linear-gradient(
      90deg,
      var(--fx-red-dark),
      var(--fx-red),
      #ef4444
    );

  background-clip: text;
  -webkit-background-clip: text;
}

.fxhub-hero p {
  max-width: 740px;
  margin: 0 auto 42px;

  color: var(--fx-muted);

  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.75;
}

.fxhub-scroll-button {
  min-height: 58px;
  padding: 8px 9px 8px 25px;

  display: inline-flex;
  align-items: center;
  gap: 22px;

  border-radius: 17px;

  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--fx-red),
      var(--fx-red-dark)
    );

  font-size: 14px;
  font-weight: 800;

  box-shadow:
    0 18px 40px rgba(215, 25, 32, 0.24);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.fxhub-scroll-button:hover {
  transform: translateY(-4px);

  box-shadow:
    0 24px 55px rgba(215, 25, 32, 0.32);
}

.fxhub-scroll-arrow {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);

  font-size: 19px;

  animation:
    fxhub-arrow-bounce 1.8s ease-in-out infinite;
}

.fxhub-hero-decoration {
  position: absolute;
  z-index: -2;

  border-radius: 50%;

  filter: blur(2px);

  animation:
    fxhub-decoration-float 8s ease-in-out infinite;
}

.fxhub-hero-decoration--one {
  width: 420px;
  height: 420px;
  top: -170px;
  right: -100px;

  border:
    70px solid rgba(215, 25, 32, 0.045);
}

.fxhub-hero-decoration--two {
  width: 280px;
  height: 280px;
  bottom: -120px;
  left: -80px;

  background:
    radial-gradient(
      circle,
      rgba(215, 25, 32, 0.09),
      transparent 68%
    );

  animation-direction: reverse;
}

.fxhub-hero-badge {
  position: absolute;
  right: clamp(24px, 6vw, 100px);
  bottom: 38px;

  padding: 11px 15px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  border: 1px solid var(--fx-border);
  border-radius: 999px;

  color: #52525b;
  background: rgba(255, 255, 255, 0.88);

  font-size: 10px;
  font-weight: 700;

  box-shadow:
    0 15px 35px rgba(24, 24, 27, 0.08);

  backdrop-filter: blur(14px);
}

.fxhub-badge-dot,
.fxhub-live-indicator {
  width: 7px;
  height: 7px;

  border-radius: 50%;
  background: #22c55e;

  box-shadow:
    0 0 0 5px rgba(34, 197, 94, 0.1);

  animation:
    fxhub-pulse 1.7s ease-in-out infinite;
}


/* ==========================================================
   SECCIONES DE PRODUCTOS
========================================================== */

.fxhub-product {
  position: relative;
  isolation: isolate;

  min-height: 100svh;
  padding:
    130px
    clamp(24px, 7vw, 120px);

  display: flex;
  align-items: center;
}

.fxhub-product--flag {
  background:
    linear-gradient(
      135deg,
      #ffffff,
      #fafafa
    );
}

.fxhub-product--color {
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #fffafa 0%,
      #ffffff 48%,
      #f8f8f9 100%
    );
}

.fxhub-product-number {
  position: absolute;
  top: 70px;
  right: clamp(24px, 7vw, 120px);

  color: rgba(215, 25, 32, 0.055);

  font-size: clamp(120px, 16vw, 270px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.fxhub-product-number--color {
  right: auto;
  left: clamp(24px, 7vw, 120px);
}

.fxhub-product-grid {
  position: relative;
  z-index: 5;

  width: min(1440px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(350px, 0.78fr)
    minmax(600px, 1.22fr);

  align-items: center;

  gap: clamp(70px, 8vw, 140px);
}

.fxhub-product-grid--reverse {
  grid-template-columns:
    minmax(600px, 1.22fr)
    minmax(350px, 0.78fr);
}

.fxhub-product-copy {
  position: relative;
  z-index: 10;
}

.fxhub-product-copy h2 {
  margin: 26px 0 25px;

  color: #18181b;

  font-size: clamp(58px, 6vw, 94px);
  font-weight: 850;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.fxhub-product-copy h2 span {
  display: block;
  color: var(--fx-red);
}

.fxhub-product-description {
  max-width: 600px;
  margin: 0 0 38px;

  color: var(--fx-muted);

  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.75;
}


/* ==========================================================
   BENEFICIOS
========================================================== */

.fxhub-benefits {
  margin-bottom: 42px;

  display: grid;
  gap: 20px;
}

.fxhub-benefit {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.fxhub-benefit-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(215, 25, 32, 0.13);
  border-radius: 13px;

  color: var(--fx-red);
  background: var(--fx-red-light);

  font-size: 10px;
  font-weight: 900;
}

.fxhub-benefit strong {
  display: block;
  margin: 1px 0 5px;

  color: #27272a;

  font-size: 14px;
}

.fxhub-benefit p {
  max-width: 520px;
  margin: 0;

  color: #7c7c85;

  font-size: 13px;
  line-height: 1.55;
}


/* ==========================================================
   BOTÓN PRINCIPAL
========================================================== */

.fxhub-primary-button {
  position: relative;
  overflow: hidden;

  min-height: 60px;
  width: fit-content;
  padding: 8px 9px 8px 25px;

  display: inline-flex;
  align-items: center;
  gap: 25px;

  border-radius: 17px;

  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--fx-red),
      var(--fx-red-dark)
    );

  font-size: 14px;
  font-weight: 800;

  box-shadow:
    0 18px 42px rgba(215, 25, 32, 0.24);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.fxhub-primary-button::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      110deg,
      transparent 20%,
      rgba(255, 255, 255, 0.28) 48%,
      transparent 74%
    );

  transform: translateX(-140%);

  transition:
    transform 0.65s ease;
}

.fxhub-primary-button:hover {
  color: #ffffff;

  transform: translateY(-4px);

  box-shadow:
    0 25px 60px rgba(215, 25, 32, 0.34);
}

.fxhub-primary-button:hover::before {
  transform: translateX(140%);
}

.fxhub-button-icon {
  position: relative;
  z-index: 2;

  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);

  font-size: 21px;

  transition:
    transform 0.3s ease;
}

.fxhub-primary-button:hover .fxhub-button-icon {
  transform: translateX(3px);
}


/* ==========================================================
   VENTANA GENERAL DE APLICACIONES
========================================================== */

.fxhub-app-showcase {
  position: relative;
  min-width: 0;

  perspective: 1600px;
}

.fxhub-app-window,
.fxhub-color-window {
  position: relative;
  z-index: 3;

  overflow: hidden;

  width: 100%;

  border:
    1px solid rgba(24, 24, 27, 0.09);

  border-radius: 25px;

  background: #ffffff;

  box-shadow:
    0 45px 110px rgba(24, 24, 27, 0.16),
    0 10px 30px rgba(24, 24, 27, 0.06);

  transform:
    rotateY(-4deg)
    rotateX(1.5deg);

  animation:
    fxhub-window-float 7s ease-in-out infinite;
}

.fxhub-app-window::after,
.fxhub-color-window::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      110deg,
      transparent 25%,
      rgba(255, 255, 255, 0.42) 45%,
      transparent 65%
    );

  transform: translateX(-140%);

  animation:
    fxhub-window-shine 8s ease-in-out infinite;
}

.fxhub-window-bar {
  min-height: 55px;
  padding: 0 18px;

  display: grid;
  grid-template-columns: 90px 1fr 90px;
  align-items: center;

  border-bottom: 1px solid #ececef;
  background: #fafafa;
}

.fxhub-window-dots {
  display: flex;
  gap: 7px;
}

.fxhub-window-dots span {
  width: 8px;
  height: 8px;

  border-radius: 50%;
}

.fxhub-window-dots span:nth-child(1) {
  background: #ef4444;
}

.fxhub-window-dots span:nth-child(2) {
  background: #f59e0b;
}

.fxhub-window-dots span:nth-child(3) {
  background: #22c55e;
}

.fxhub-window-title {
  justify-self: center;

  color: #71717a;

  font-size: 10px;
  font-weight: 700;
}

.fxhub-window-user {
  justify-self: end;

  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  color: #ffffff;
  background: var(--fx-red);

  font-size: 9px;
  font-weight: 800;
}


/* ==========================================================
   TARJETAS FLOTANTES
========================================================== */

.fxhub-float-card,
.fxhub-color-float {
  position: absolute;
  z-index: 8;

  padding: 13px 16px;

  display: flex;
  align-items: center;
  gap: 11px;

  border:
    1px solid rgba(24, 24, 27, 0.08);

  border-radius: 15px;

  background:
    rgba(255, 255, 255, 0.9);

  box-shadow:
    0 20px 50px rgba(24, 24, 27, 0.13);

  backdrop-filter: blur(14px);

  animation:
    fxhub-card-float 5s ease-in-out infinite;
}

.fxhub-float-card small,
.fxhub-float-card strong,
.fxhub-color-float small,
.fxhub-color-float strong {
  display: block;
}

.fxhub-float-card small,
.fxhub-color-float small {
  margin-bottom: 3px;

  color: #9ca3af;

  font-size: 8px;
}

.fxhub-float-card strong,
.fxhub-color-float strong {
  color: #27272a;

  font-size: 10px;
}

.fxhub-float-card--top {
  top: -30px;
  right: 45px;
}

.fxhub-float-card--bottom {
  bottom: 35px;
  left: -35px;

  animation-direction: reverse;
}

.fxhub-float-number {
  color: var(--fx-red);

  font-size: 24px;
  font-weight: 900;
}


/* ==========================================================
   FLAG TRACK DASHBOARD
========================================================== */

.fxhub-flag-dashboard {
  min-height: 480px;

  display: grid;
  grid-template-columns: 150px 1fr;
}

.fxhub-sidebar {
  padding: 20px 14px;

  display: flex;
  flex-direction: column;
  gap: 8px;

  border-right: 1px solid #ededf0;

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #fafafa
    );
}

.fxhub-sidebar-logo {
  width: 38px;
  height: 38px;
  margin: 0 auto 19px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  color: #ffffff;
  background: var(--fx-red);

  font-size: 17px;
  font-weight: 900;

  box-shadow:
    0 10px 22px rgba(215, 25, 32, 0.24);
}

.fxhub-sidebar-link {
  min-height: 38px;
  padding: 0 11px;

  display: flex;
  align-items: center;
  gap: 9px;

  border-radius: 10px;

  color: #84848d;

  font-size: 9px;
  font-weight: 700;
}

.fxhub-sidebar-link--active {
  color: var(--fx-red);
  background: var(--fx-red-light);
}

.fxhub-sidebar-icon {
  width: 18px;
  height: 18px;

  display: grid;
  place-items: center;

  font-size: 10px;
}

.fxhub-dashboard-content {
  min-width: 0;
  padding: 25px;
  background: #f7f7f8;
}

.fxhub-dashboard-header {
  margin-bottom: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fxhub-dashboard-header small,
.fxhub-dashboard-header h3 {
  display: block;
}

.fxhub-dashboard-header small {
  margin-bottom: 5px;

  color: #a1a1aa;

  font-size: 8px;
}

.fxhub-dashboard-header h3 {
  margin: 0;

  color: #27272a;

  font-size: 17px;
}

.fxhub-date-chip {
  padding: 7px 10px;

  border: 1px solid #e5e7eb;
  border-radius: 999px;

  color: #71717a;
  background: #ffffff;

  font-size: 8px;
  font-weight: 700;
}

.fxhub-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.fxhub-stat {
  padding: 15px;

  border: 1px solid #ebebee;
  border-radius: 14px;

  background: #ffffff;
}

.fxhub-stat-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #8b8b94;

  font-size: 8px;
}

.fxhub-stat-heading i {
  width: 24px;
  height: 24px;

  display: grid;
  place-items: center;

  border-radius: 8px;

  color: var(--fx-red);
  background: var(--fx-red-light);

  font-style: normal;
}

.fxhub-stat > strong {
  display: block;
  margin: 8px 0 4px;

  color: #27272a;

  font-size: 24px;
}

.fxhub-stat > small {
  color: #a1a1aa;
  font-size: 8px;
}

.fxhub-dashboard-panels {
  margin-top: 12px;

  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 12px;
}

.fxhub-report-panel,
.fxhub-chart-panel {
  padding: 16px;

  border: 1px solid #ebebee;
  border-radius: 14px;

  background: #ffffff;
}

.fxhub-panel-heading {
  margin-bottom: 13px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fxhub-panel-heading small,
.fxhub-panel-heading strong {
  display: block;
}

.fxhub-panel-heading small {
  margin-bottom: 4px;

  color: #a1a1aa;

  font-size: 7px;
}

.fxhub-panel-heading strong {
  color: #3f3f46;

  font-size: 10px;
}

.fxhub-panel-heading button {
  padding: 5px 8px;

  border: 0;
  border-radius: 7px;

  color: var(--fx-red);
  background: var(--fx-red-light);

  font-size: 7px;
  font-weight: 700;
}

.fxhub-report-row {
  min-height: 56px;
  padding: 8px 0;

  display: grid;
  grid-template-columns: 29px 1fr auto;
  align-items: center;
  gap: 9px;

  border-bottom: 1px solid #f0f0f2;
}

.fxhub-report-row:last-child {
  border-bottom: 0;
}

.fxhub-report-alert,
.fxhub-report-check {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border-radius: 9px;

  font-size: 10px;
  font-weight: 900;
}

.fxhub-report-alert {
  color: var(--fx-red);
  background: var(--fx-red-light);
}

.fxhub-report-check {
  color: #15803d;
  background: #ecfdf3;
}

.fxhub-report-data strong,
.fxhub-report-data small {
  display: block;
}

.fxhub-report-data strong {
  color: #52525b;

  font-size: 8px;
}

.fxhub-report-data small {
  margin-top: 3px;

  color: #a1a1aa;

  font-size: 7px;
}

.fxhub-status-badge {
  padding: 5px 7px;

  border-radius: 999px;

  font-size: 6px;
  font-weight: 800;
}

.fxhub-status-badge--new {
  color: var(--fx-red);
  background: var(--fx-red-light);
}

.fxhub-status-badge--follow {
  color: #a16207;
  background: #fef9c3;
}

.fxhub-status-badge--done {
  color: #15803d;
  background: #dcfce7;
}

.fxhub-mini-chart {
  height: 128px;
  padding-top: 12px;

  display: flex;
  align-items: end;
  gap: 8px;

  border-bottom: 1px solid #eeeeef;

  background:
    repeating-linear-gradient(
      to bottom,
      rgba(24, 24, 27, 0.04),
      rgba(24, 24, 27, 0.04) 1px,
      transparent 1px,
      transparent 32px
    );
}

.fxhub-mini-chart span {
  width: 100%;
  height: var(--height);

  border-radius: 5px 5px 1px 1px;

  background:
    linear-gradient(
      to top,
      var(--fx-red-dark),
      #ef4444
    );

  transform-origin: bottom;

  animation:
    fxhub-bar-move 2.7s ease-in-out infinite alternate;
}

.fxhub-mini-chart span:nth-child(2) {
  animation-delay: 0.12s;
}

.fxhub-mini-chart span:nth-child(3) {
  animation-delay: 0.24s;
}

.fxhub-mini-chart span:nth-child(4) {
  animation-delay: 0.36s;
}

.fxhub-mini-chart span:nth-child(5) {
  animation-delay: 0.48s;
}

.fxhub-mini-chart span:nth-child(6) {
  animation-delay: 0.6s;
}

.fxhub-mini-chart span:nth-child(7) {
  animation-delay: 0.72s;
}

.fxhub-chart-labels {
  padding-top: 8px;

  display: flex;
  justify-content: space-around;

  color: #a1a1aa;

  font-size: 7px;
}


/* ==========================================================
   MANCHAS DE PINTURA
========================================================== */

.fxhub-paint {
  position: absolute;
  z-index: -2;

  border-radius:
    62% 38% 57% 43%
    / 45% 55% 45% 55%;

  filter: blur(0.2px);

  animation:
    fxhub-paint-float 9s ease-in-out infinite;
}

.fxhub-paint::before,
.fxhub-paint::after {
  content: "";

  position: absolute;

  border-radius: 50%;
  background: inherit;
}

.fxhub-paint::before {
  width: 28%;
  height: 28%;
  top: -7%;
  left: 12%;
}

.fxhub-paint::after {
  width: 17%;
  height: 17%;
  right: -7%;
  bottom: 16%;
}

.fxhub-paint--red-one {
  width: 370px;
  height: 270px;

  top: 2%;
  left: -150px;

  opacity: 0.13;

  background:
    linear-gradient(
      135deg,
      var(--fx-red),
      #ff4d55
    );
}

.fxhub-paint--red-two {
  width: 330px;
  height: 260px;

  right: -150px;
  bottom: 1%;

  opacity: 0.09;

  background:
    linear-gradient(
      135deg,
      #9d0d14,
      var(--fx-red)
    );

  animation-direction: reverse;
}

.fxhub-paint--pink {
  width: 190px;
  height: 145px;

  top: 16%;
  right: 9%;

  opacity: 0.08;

  background: #ff6f75;

  animation-delay: -2s;
}

.fxhub-paint--blue {
  width: 150px;
  height: 120px;

  left: 45%;
  bottom: 6%;

  opacity: 0.055;

  background: #2563eb;

  animation-delay: -4s;
}

.fxhub-paint-drop {
  position: absolute;
  z-index: -1;

  border-radius: 50%;

  background: rgba(215, 25, 32, 0.13);

  animation:
    fxhub-drop-float 6s ease-in-out infinite;
}

.fxhub-paint-drop--one {
  width: 20px;
  height: 20px;

  top: 23%;
  left: 5%;
}

.fxhub-paint-drop--two {
  width: 11px;
  height: 11px;

  top: 17%;
  left: 9%;

  animation-delay: -1.5s;
}

.fxhub-paint-drop--three {
  width: 14px;
  height: 14px;

  right: 7%;
  bottom: 17%;

  animation-delay: -3s;
}


/* ==========================================================
   COLOR LAB
========================================================== */

.fxhub-app-showcase--color {
  perspective: 1600px;
}

.fxhub-color-window {
  transform:
    rotateY(4deg)
    rotateX(1deg);

  animation-direction: reverse;
}

.fxhub-color-window-header {
  min-height: 65px;
  padding: 0 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid #ececef;

  background: #ffffff;
}

.fxhub-color-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fxhub-color-brand > span {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  color: #ffffff;
  background: var(--fx-red);

  font-size: 15px;
  font-weight: 900;
}

.fxhub-color-brand strong,
.fxhub-color-brand small {
  display: block;
}

.fxhub-color-brand strong {
  color: #27272a;

  font-size: 11px;
}

.fxhub-color-brand small {
  margin-top: 3px;

  color: #a1a1aa;

  font-size: 7px;
}

.fxhub-color-user {
  padding: 7px 10px;

  border: 1px solid #ececef;
  border-radius: 999px;

  color: #71717a;

  font-size: 8px;
  font-weight: 700;
}

.fxhub-color-layout {
  min-height: 465px;

  display: grid;
  grid-template-columns: 145px 1fr;

  background: #f7f7f8;
}

.fxhub-color-sidebar {
  padding: 22px 13px;

  display: flex;
  flex-direction: column;
  gap: 8px;

  border-right: 1px solid #e8e8eb;

  background: #ffffff;
}

.fxhub-color-nav-item {
  min-height: 39px;
  padding: 0 10px;

  display: flex;
  align-items: center;
  gap: 9px;

  border-radius: 10px;

  color: #8a8a93;

  font-size: 8px;
  font-weight: 700;
}

.fxhub-color-nav-item--active {
  color: var(--fx-red);
  background: var(--fx-red-light);
}

.fxhub-color-content {
  min-width: 0;
  padding: 24px;
}

.fxhub-color-heading {
  margin-bottom: 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fxhub-color-heading small {
  display: block;
  margin-bottom: 4px;

  color: #a1a1aa;

  font-size: 8px;
}

.fxhub-color-heading h3 {
  margin: 0;

  color: #27272a;

  font-size: 17px;
}

.fxhub-version-chip {
  padding: 7px 10px;

  border: 1px solid rgba(215, 25, 32, 0.13);
  border-radius: 999px;

  color: var(--fx-red);
  background: var(--fx-red-light);

  font-size: 8px;
  font-weight: 800;
}

.fxhub-color-main-card {
  min-height: 355px;
  padding: 22px;

  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: center;

  border: 1px solid #e9e9ec;
  border-radius: 18px;

  background: #ffffff;

  box-shadow:
    0 18px 38px rgba(24, 24, 27, 0.06);
}

.fxhub-mix-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fxhub-mix-orbit {
  position: relative;

  width: 240px;
  height: 240px;

  display: grid;
  place-items: center;

  border:
    1px dashed rgba(215, 25, 32, 0.22);

  border-radius: 50%;

  animation:
    fxhub-orbit-spin 18s linear infinite;
}

.fxhub-mix-orbit::before {
  content: "";

  position: absolute;
  inset: 18px;

  border:
    1px solid rgba(215, 25, 32, 0.08);

  border-radius: 50%;
}

.fxhub-mix-circle {
  position: relative;

  width: 170px;
  height: 170px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    conic-gradient(
      from 210deg,
      #9d0d14,
      #d71920,
      #ff5b60,
      #d71920,
      #8f0c12,
      #9d0d14
    );

  box-shadow:
    0 24px 52px rgba(215, 25, 32, 0.24),
    inset 0 0 28px rgba(255, 255, 255, 0.19);

  animation:
    fxhub-color-pulse 4s ease-in-out infinite;
}

.fxhub-mix-circle::before {
  content: "";

  position: absolute;
  inset: 12px;

  border:
    1px solid rgba(255, 255, 255, 0.3);

  border-radius: 50%;
}

.fxhub-mix-center {
  position: relative;
  z-index: 2;

  width: 106px;
  height: 106px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border:
    7px solid rgba(255, 255, 255, 0.34);

  border-radius: 50%;

  color: #ffffff;
  background: rgba(126, 7, 12, 0.52);

  box-shadow:
    inset 0 0 24px rgba(0, 0, 0, 0.15);

  backdrop-filter: blur(8px);
}

.fxhub-mix-center small {
  margin-bottom: 5px;

  font-size: 8px;
  opacity: 0.78;
}

.fxhub-mix-center strong {
  font-size: 15px;
}

.fxhub-mix-bubble {
  position: absolute;
  z-index: 3;

  border:
    5px solid #ffffff;

  border-radius: 50%;

  box-shadow:
    0 9px 22px rgba(24, 24, 27, 0.14);
}

.fxhub-mix-bubble--one {
  width: 37px;
  height: 37px;

  top: 2px;
  left: 50%;

  background: #d71920;

  transform: translateX(-50%);
}

.fxhub-mix-bubble--two {
  width: 31px;
  height: 31px;

  top: 50%;
  right: 5px;

  background: #f6e6dc;

  transform: translateY(-50%);
}

.fxhub-mix-bubble--three {
  width: 34px;
  height: 34px;

  bottom: 5px;
  left: 25%;

  background: #7d1117;
}

.fxhub-mix-total {
  margin-top: 20px;
  text-align: center;
}

.fxhub-mix-total span,
.fxhub-mix-total strong {
  display: block;
}

.fxhub-mix-total span {
  margin-bottom: 4px;

  color: #a1a1aa;

  font-size: 8px;
}

.fxhub-mix-total strong {
  color: #27272a;

  font-size: 18px;
}

.fxhub-formula-area {
  padding: 18px;

  border: 1px solid #ececef;
  border-radius: 15px;

  background: #fafafa;
}

.fxhub-formula-title {
  padding-bottom: 13px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid #e7e7ea;
}

.fxhub-formula-title small,
.fxhub-formula-title strong {
  display: block;
}

.fxhub-formula-title small {
  margin-bottom: 4px;

  color: #a1a1aa;

  font-size: 7px;
}

.fxhub-formula-title strong {
  color: #3f3f46;

  font-size: 10px;
}

.fxhub-formula-title > span {
  color: var(--fx-red);

  font-size: 16px;
  font-weight: 900;
}

.fxhub-formula-component {
  min-height: 55px;

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;

  border-bottom: 1px solid #ededf0;
}

.fxhub-formula-component:last-child {
  border-bottom: 0;
}

.fxhub-formula-component > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.fxhub-component-color {
  width: 16px;
  height: 16px;

  flex: 0 0 auto;

  border:
    1px solid rgba(24, 24, 27, 0.08);

  border-radius: 5px;

  background:
    var(--component-color);

  box-shadow:
    0 4px 8px rgba(24, 24, 27, 0.08);
}

.fxhub-formula-component strong,
.fxhub-formula-component small {
  display: block;
}

.fxhub-formula-component strong {
  color: #52525b;

  font-size: 8px;
}

.fxhub-formula-component small {
  margin-top: 3px;

  color: #a1a1aa;

  font-size: 6px;
}

.fxhub-formula-component > span {
  color: #3f3f46;

  font-size: 9px;
  font-weight: 900;
}

.fxhub-color-float--top {
  top: -28px;
  left: 35px;
}

.fxhub-color-float--bottom {
  right: -25px;
  bottom: 38px;

  display: block;

  text-align: center;

  animation-direction: reverse;
}

.fxhub-color-float--bottom strong {
  color: var(--fx-red);

  font-size: 23px;
}

.fxhub-color-dot {
  width: 28px;
  height: 28px;

  border:
    5px solid #ffffff;

  border-radius: 50%;

  background: var(--fx-red);

  box-shadow:
    0 8px 18px rgba(215, 25, 32, 0.2);
}


/* ==========================================================
   PIE DE PÁGINA
========================================================== */

.fxhub-footer {
  min-height: 160px;
  padding: 35px clamp(24px, 7vw, 120px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  border-top: 1px solid #ececef;

  background: #ffffff;
}

.fxhub-footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.fxhub-footer-brand > span {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  color: #ffffff;
  background: var(--fx-red);

  font-weight: 900;
}

.fxhub-footer-brand strong,
.fxhub-footer-brand small {
  display: block;
}

.fxhub-footer-brand strong {
  color: #27272a;

  font-size: 14px;
}

.fxhub-footer-brand small {
  margin-top: 3px;

  color: #a1a1aa;

  font-size: 8px;
}

.fxhub-footer p {
  margin: 0;

  color: #8a8a93;

  font-size: 12px;
}


/* ==========================================================
   ANIMACIONES
========================================================== */

@keyframes fxhub-decoration-float {
  0%,
  100% {
    transform:
      translate3d(0, 0, 0)
      rotate(0deg);
  }

  50% {
    transform:
      translate3d(15px, 22px, 0)
      rotate(5deg);
  }
}

@keyframes fxhub-arrow-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

@keyframes fxhub-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.82);
  }
}

@keyframes fxhub-window-float {
  0%,
  100% {
    transform:
      rotateY(-4deg)
      rotateX(1.5deg)
      translateY(0);
  }

  50% {
    transform:
      rotateY(-2deg)
      rotateX(0.5deg)
      translateY(-12px);
  }
}

@keyframes fxhub-window-shine {
  0%,
  62% {
    transform: translateX(-140%);
  }

  82%,
  100% {
    transform: translateX(140%);
  }
}

@keyframes fxhub-card-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes fxhub-bar-move {
  from {
    opacity: 0.7;
    transform: scaleY(0.74);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes fxhub-paint-float {
  0%,
  100% {
    transform:
      translate3d(0, 0, 0)
      rotate(-3deg)
      scale(1);
  }

  50% {
    transform:
      translate3d(18px, -14px, 0)
      rotate(3deg)
      scale(1.04);
  }
}

@keyframes fxhub-drop-float {
  0%,
  100% {
    transform:
      translateY(0)
      scale(1);
  }

  50% {
    transform:
      translateY(-13px)
      scale(1.1);
  }
}

@keyframes fxhub-orbit-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fxhub-color-pulse {
  0%,
  100% {
    filter: saturate(1);
    transform: scale(1);
  }

  50% {
    filter: saturate(1.15);
    transform: scale(1.035);
  }
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1150px) {
  .fxhub-product {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 140px;
  }

  .fxhub-product-grid,
  .fxhub-product-grid--reverse {
    grid-template-columns: 1fr;
    gap: 85px;
  }

  .fxhub-product-grid--reverse .fxhub-app-showcase {
    order: 2;
  }

  .fxhub-product-grid--reverse .fxhub-product-copy {
    order: 1;
  }

  .fxhub-product-copy {
    max-width: 760px;
  }

  .fxhub-app-showcase {
    width: min(850px, 100%);
    margin: 0 auto;
  }

  .fxhub-product-copy h2 {
    font-size: clamp(58px, 10vw, 96px);
  }

  .fxhub-product-number {
    top: 70px;
  }
}


/* ==========================================================
   CELULAR
========================================================== */

@media (max-width: 720px) {
  .fxhub-header {
    min-height: 70px;
    padding: 0 20px;
  }

  .fxhub-nav {
    display: none;
  }

  .fxhub-brand-mark {
    width: 37px;
    height: 37px;
  }

  .fxhub-hero {
    min-height: 100svh;

    padding:
      125px
      20px
      100px;
  }

  .fxhub-hero h1 {
    font-size:
      clamp(48px, 15vw, 72px);
  }

  .fxhub-hero p {
    font-size: 15px;
  }

  .fxhub-hero-badge {
    right: 20px;
    bottom: 22px;
  }

  .fxhub-product {
    padding:
      105px
      20px
      125px;
  }

  .fxhub-product-grid,
  .fxhub-product-grid--reverse {
    gap: 65px;
  }

  .fxhub-product-copy h2 {
    font-size:
      clamp(50px, 15vw, 72px);
  }

  .fxhub-product-description {
    font-size: 15px;
  }

  .fxhub-primary-button {
    width: 100%;
    justify-content: space-between;

    padding-left: 19px;
  }

  .fxhub-app-window,
  .fxhub-color-window {
    border-radius: 19px;

    transform: none;
  }

  .fxhub-window-bar {
    min-height: 47px;
    padding: 0 12px;

    grid-template-columns: 65px 1fr 40px;
  }

  .fxhub-window-title {
    font-size: 8px;
  }

  .fxhub-flag-dashboard {
    min-height: 390px;

    grid-template-columns: 45px 1fr;
  }

  .fxhub-sidebar {
    padding: 13px 6px;
  }

  .fxhub-sidebar-logo {
    width: 29px;
    height: 29px;

    font-size: 13px;
  }

  .fxhub-sidebar-link {
    min-height: 31px;
    padding: 0;

    justify-content: center;
  }

  .fxhub-sidebar-link span:last-child {
    display: none;
  }

  .fxhub-dashboard-content {
    padding: 14px 11px;
  }

  .fxhub-dashboard-header h3 {
    font-size: 13px;
  }

  .fxhub-date-chip {
    display: none;
  }

  .fxhub-stats {
    gap: 6px;
  }

  .fxhub-stat {
    padding: 9px 7px;
  }

  .fxhub-stat-heading span {
    font-size: 6px;
  }

  .fxhub-stat-heading i {
    width: 19px;
    height: 19px;
  }

  .fxhub-stat > strong {
    font-size: 18px;
  }

  .fxhub-dashboard-panels {
    grid-template-columns: 1fr;
  }

  .fxhub-chart-panel {
    display: none;
  }

  .fxhub-float-card--top {
    right: 10px;
  }

  .fxhub-float-card--bottom {
    display: none;
  }

  .fxhub-color-layout {
    min-height: 390px;

    grid-template-columns: 44px 1fr;
  }

  .fxhub-color-sidebar {
    padding: 13px 5px;
  }

  .fxhub-color-nav-item {
    min-height: 34px;
    padding: 0;

    justify-content: center;

    font-size: 0;
  }

  .fxhub-color-nav-item span {
    font-size: 11px;
  }

  .fxhub-color-content {
    padding: 14px 10px;
  }

  .fxhub-color-heading h3 {
    font-size: 13px;
  }

  .fxhub-color-main-card {
    min-height: 0;
    padding: 17px 12px;

    grid-template-columns: 1fr;
  }

  .fxhub-mix-orbit {
    width: 200px;
    height: 200px;
  }

  .fxhub-mix-circle {
    width: 142px;
    height: 142px;
  }

  .fxhub-mix-center {
    width: 88px;
    height: 88px;
  }

  .fxhub-formula-area {
    width: 100%;
  }

  .fxhub-color-float--top {
    top: -28px;
    left: 12px;
  }

  .fxhub-color-float--bottom {
    display: none;
  }

  .fxhub-footer {
    padding: 35px 20px;

    flex-direction: column;
    align-items: flex-start;
  }
}


/* ==========================================================
   REDUCIR MOVIMIENTO
========================================================== */

@media (prefers-reduced-motion: reduce) {
  .fxhub *,
  .fxhub *::before,
  .fxhub *::after {
    scroll-behavior: auto !important;

    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ==========================================================
   TOQUES FINALES: FONDOS PARALLAX Y SECCIONES CONTRASTANTES
   Pegar al final de style.css
========================================================== */


/* ==========================================================
   ENCABEZADO FLOTANTE
========================================================== */

.fxhub-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;

  width: 100%;
  min-height: 76px;

  padding:
    0
    clamp(22px, 6vw, 100px);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.09);

  background:
    rgba(8, 8, 10, 0.858);

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.16);

  backdrop-filter:
    blur(18px)
    saturate(140%);

  -webkit-backdrop-filter:
    blur(18px)
    saturate(140%);
}

.fxhub-header::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(215, 25, 32, 0.9),
      transparent
    );
}

.fxhub-brand-text strong {
  color: #ffffff;
}

.fxhub-nav a {
  color: rgba(255, 255, 255, 0.76);

  transition:
    color 0.25s ease;
}

.fxhub-nav a:hover {
  color: #ffffff;
}

.fxhub-nav a::after {
  background:
    linear-gradient(
      90deg,
      #ff7378,
      #d71920
    );
}


/* Evita que el encabezado tape las secciones
   cuando usas los enlaces internos */
.fxhub-product,
.fxhub-hero {
  scroll-margin-top: 76px;
}


/* ==========================================================
   FLAG TRACK: FONDO NEGRO TECNOLÓGICO
========================================================== */

.fxhub-product--flag {
  position: relative;
  overflow: hidden;

  color: #ffffff;

  background-color: #070708;

  background-image:
    radial-gradient(
      circle at 18% 28%,
      rgba(215, 25, 32, 0.31),
      transparent 31%
    ),
    radial-gradient(
      circle at 84% 72%,
      rgba(215, 25, 32, 0.16),
      transparent 28%
    ),
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      135deg,
      #030303 0%,
      #111113 48%,
      #070708 100%
    );

  background-size:
    auto,
    auto,
    65px 65px,
    65px 65px,
    auto;

  /*
    Esta es la propiedad que produce el efecto
    de fondo fijo al desplazarte.
  */
  background-attachment:
    fixed,
    fixed,
    fixed,
    fixed,
    fixed;

  box-shadow:
    inset 0 -80px 120px rgba(0, 0, 0, 0.25);
}


/* Gran aro luminoso animado del fondo */
.fxhub-product--flag::before {
  content: "";

  position: absolute;
  z-index: 0;

  width: min(720px, 65vw);
  height: min(720px, 65vw);

  top: -290px;
  right: -250px;

  border:
    1px solid rgba(255, 65, 73, 0.13);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      transparent 52%,
      rgba(215, 25, 32, 0.07) 53%,
      rgba(215, 25, 32, 0.02) 69%,
      transparent 70%
    );

  box-shadow:
    0 0 100px rgba(215, 25, 32, 0.09),
    inset 0 0 90px rgba(215, 25, 32, 0.06);

  pointer-events: none;

  animation:
    fxhub-tech-ring 18s linear infinite;
}


/* Separación diagonal roja entre las dos plataformas */
.fxhub-product--flag::after {
  content: "";

  position: absolute;
  z-index: 1;

  right: 0;
  bottom: -1px;
  left: 0;

  height: clamp(75px, 9vw, 145px);

  background:
    linear-gradient(
      135deg,
      #a90f15,
      #d71920
    );

  clip-path:
    polygon(
      0 100%,
      100% 0,
      100% 100%
    );

  pointer-events: none;
}


/* Asegura que el contenido quede sobre los fondos */
.fxhub-product--flag .fxhub-product-grid {
  position: relative;
  z-index: 5;
}


/* Textos blancos dentro de Flag Track */
.fxhub-product--flag .fxhub-product-copy h2 {
  color: #ffffff;

  text-shadow:
    0 12px 35px rgba(0, 0, 0, 0.28);
}

.fxhub-product--flag .fxhub-product-copy h2 span {
  color: #ff3d45;

  background:
    linear-gradient(
      90deg,
      #ff777c,
      #d71920
    );

  background-clip: text;
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.fxhub-product--flag .fxhub-product-description {
  color: rgba(255, 255, 255, 0.7);
}

.fxhub-product--flag .fxhub-benefit strong {
  color: #ffffff;
}

.fxhub-product--flag .fxhub-benefit p {
  color: rgba(255, 255, 255, 0.62);
}


/* Cada beneficio se convierte en una tarjeta de cristal */
.fxhub-product--flag .fxhub-benefit {
  padding: 14px 16px;

  border:
    1px solid rgba(255, 255, 255, 0.085);

  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  backdrop-filter:
    blur(10px);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.fxhub-product--flag .fxhub-benefit:hover {
  border-color:
    rgba(255, 74, 82, 0.35);

  background:
    linear-gradient(
      135deg,
      rgba(215, 25, 32, 0.13),
      rgba(255, 255, 255, 0.035)
    );

  transform:
    translateX(7px);
}

.fxhub-product--flag .fxhub-benefit-icon {
  border-color:
    rgba(255, 88, 95, 0.3);

  color: #ff767b;

  background:
    rgba(215, 25, 32, 0.14);
}


/* Número 01 gigante */
.fxhub-product--flag .fxhub-product-number {
  color:
    rgba(255, 255, 255, 0.035);

  text-shadow:
    0 0 70px rgba(215, 25, 32, 0.18);
}


/* ==========================================================
   COLOR LAB: FONDO ROJO Y PINTURA
========================================================== */

.fxhub-product--color {
  position: relative;
  overflow: hidden;

  color: #ffffff;

  background-color: #b70e16;

  background-image:
    radial-gradient(
      circle at 12% 22%,
      rgba(255, 255, 255, 0.18),
      transparent 27%
    ),
    radial-gradient(
      circle at 86% 76%,
      rgba(74, 0, 5, 0.3),
      transparent 32%
    ),
    linear-gradient(
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      135deg,
      #8f0910 0%,
      #d71920 47%,
      #a90f15 100%
    );

  background-size:
    auto,
    auto,
    75px 75px,
    75px 75px,
    auto;

  background-attachment:
    fixed,
    fixed,
    fixed,
    fixed,
    fixed;

  box-shadow:
    inset 0 100px 130px rgba(81, 0, 4, 0.15),
    inset 0 -100px 130px rgba(81, 0, 4, 0.2);
}


/* Reflejo que cruza lentamente la sección */
.fxhub-product--color::before {
  content: "";

  position: absolute;
  z-index: 0;

  width: 170%;
  height: 65%;

  top: -15%;
  left: -150%;

  background:
    linear-gradient(
      110deg,
      transparent 34%,
      rgba(255, 255, 255, 0.09) 48%,
      transparent 62%
    );

  transform:
    rotate(-8deg);

  pointer-events: none;

  animation:
    fxhub-red-light-sweep 11s ease-in-out infinite;
}


/* Separación entre Color Lab y la sección final */
.fxhub-product--color::after {
  content: "";

  position: absolute;
  z-index: 1;

  right: 0;
  bottom: -1px;
  left: 0;

  height: clamp(75px, 9vw, 145px);

  background: #050506;

  clip-path:
    polygon(
      0 0,
      100% 100%,
      0 100%
    );

  pointer-events: none;
}

.fxhub-product--color .fxhub-product-grid {
  position: relative;
  z-index: 5;
}


/* Textos de Color Lab */
.fxhub-product--color .fxhub-product-copy h2 {
  color: #ffffff;

  text-shadow:
    0 14px 40px rgba(73, 0, 4, 0.26);
}

.fxhub-product--color .fxhub-product-copy h2 span {
  color: #ffffff;

  background: none;

  -webkit-text-fill-color: currentColor;
}

.fxhub-product--color .fxhub-product-description {
  color: rgba(255, 255, 255, 0.77);
}

.fxhub-product--color .fxhub-benefit strong {
  color: #ffffff;
}

.fxhub-product--color .fxhub-benefit p {
  color: rgba(255, 255, 255, 0.68);
}


/* Tarjetas de beneficios sobre el rojo */
.fxhub-product--color .fxhub-benefit {
  padding: 14px 16px;

  border:
    1px solid rgba(255, 255, 255, 0.16);

  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.065)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 35px rgba(83, 0, 4, 0.08);

  backdrop-filter:
    blur(12px);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.fxhub-product--color .fxhub-benefit:hover {
  border-color:
    rgba(255, 255, 255, 0.35);

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.09)
    );

  transform:
    translateX(7px);
}

.fxhub-product--color .fxhub-benefit-icon {
  border-color:
    rgba(255, 255, 255, 0.25);

  color: #d71920;

  background: #ffffff;

  box-shadow:
    0 9px 20px rgba(91, 0, 5, 0.15);
}


/* Número 02 gigante */
.fxhub-product--color .fxhub-product-number {
  color:
    rgba(255, 255, 255, 0.075);

  text-shadow:
    0 0 70px rgba(255, 255, 255, 0.12);
}


/* Botón negro para diferenciarlo del fondo rojo */
.fxhub-product--color .fxhub-primary-button {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #151517,
      #050506
    );

  box-shadow:
    0 20px 45px rgba(72, 0, 4, 0.32);
}

.fxhub-product--color .fxhub-primary-button:hover {
  box-shadow:
    0 26px 62px rgba(72, 0, 4, 0.43);
}

.fxhub-product--color .fxhub-button-icon {
  color: #ffffff;

  background:
    rgba(215, 25, 32, 0.72);
}


/* ==========================================================
   MANCHAS DE PINTURA SOBRE EL FONDO ROJO
========================================================== */

/* Mancha blanca grande */
.fxhub-product--color .fxhub-paint--red-one {
  opacity: 0.14;

  background:
    linear-gradient(
      135deg,
      #ffffff,
      #ffd9da
    );

  mix-blend-mode: screen;
}


/* Mancha oscura */
.fxhub-product--color .fxhub-paint--red-two {
  opacity: 0.22;

  background:
    linear-gradient(
      135deg,
      #360004,
      #71070d
    );

  mix-blend-mode: multiply;
}


/* Mancha rosada */
.fxhub-product--color .fxhub-paint--pink {
  opacity: 0.18;

  background:
    linear-gradient(
      135deg,
      #ffffff,
      #ff9fa3
    );

  mix-blend-mode: screen;
}


/* Mancha oscura secundaria */
.fxhub-product--color .fxhub-paint--blue {
  opacity: 0.15;

  background:
    linear-gradient(
      135deg,
      #1b0002,
      #5c0005
    );

  mix-blend-mode: multiply;
}


/* Gotas blancas y rosadas */
.fxhub-product--color .fxhub-paint-drop {
  background:
    rgba(255, 255, 255, 0.3);

  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.14);
}

.fxhub-product--color .fxhub-paint-drop--two {
  background:
    rgba(255, 185, 188, 0.42);
}


/* ==========================================================
   INTERACCIÓN CON LAS VENTANAS
========================================================== */

.fxhub-app-window,
.fxhub-color-window {
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s ease,
    border-color 0.4s ease;
}


/* Al pasar el cursor la ventana se endereza y se acerca */
.fxhub-app-showcase:hover .fxhub-app-window,
.fxhub-app-showcase:hover .fxhub-color-window {
  animation-play-state: paused;

  border-color:
    rgba(215, 25, 32, 0.25);

  transform:
    rotateY(0deg)
    rotateX(0deg)
    translateY(-12px)
    scale(1.015);

  box-shadow:
    0 55px 120px rgba(0, 0, 0, 0.27),
    0 18px 45px rgba(215, 25, 32, 0.12);
}


/* Tarjetas flotantes un poco más marcadas */
.fxhub-float-card,
.fxhub-color-float {
  border-color:
    rgba(215, 25, 32, 0.15);

  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.2);
}


/* ==========================================================
   SECCIÓN FINAL
========================================================== */

.fxhub-hero {
  position: relative;
  overflow: hidden;

  min-height: 78svh;

  color: #ffffff;

  background-color: #050506;

  background-image:
    radial-gradient(
      circle at 25% 25%,
      rgba(215, 25, 32, 0.28),
      transparent 31%
    ),
    radial-gradient(
      circle at 82% 76%,
      rgba(215, 25, 32, 0.13),
      transparent 28%
    ),
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      135deg,
      #030303,
      #111113
    );

  background-size:
    auto,
    auto,
    70px 70px,
    70px 70px,
    auto;

  background-attachment:
    fixed,
    fixed,
    fixed,
    fixed,
    fixed;
}

.fxhub-hero::before {
  opacity: 0.6;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
}

.fxhub-hero h1 {
  color: #ffffff;

  text-shadow:
    0 18px 50px rgba(0, 0, 0, 0.32);
}

.fxhub-hero h1 span {
  background:
    linear-gradient(
      90deg,
      #ff6c72,
      #d71920,
      #ff3f47
    );

  background-clip: text;
  -webkit-background-clip: text;
}

.fxhub-hero p {
  color:
    rgba(255, 255, 255, 0.68);
}


/* Botón blanco de la sección final */
.fxhub-hero .fxhub-scroll-button {
  color: #18181b;

  background:
    linear-gradient(
      135deg,
      #ffffff,
      #f2f2f3
    );

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.28);
}

.fxhub-hero .fxhub-scroll-button:hover {
  box-shadow:
    0 26px 65px rgba(0, 0, 0, 0.38);
}


/* ==========================================================
   PIE DE PÁGINA OSCURO
========================================================== */

.fxhub-footer {
  color: #ffffff;

  border-top:
    1px solid rgba(255, 255, 255, 0.08);

  background: #050506;
}

.fxhub-footer-brand strong {
  color: #ffffff;
}

.fxhub-footer p {
  color:
    rgba(255, 255, 255, 0.5);
}


/* ==========================================================
   ANIMACIONES NUEVAS
========================================================== */

@keyframes fxhub-tech-ring {
  from {
    transform:
      rotate(0deg)
      scale(1);
  }

  50% {
    transform:
      rotate(180deg)
      scale(1.08);
  }

  to {
    transform:
      rotate(360deg)
      scale(1);
  }
}

@keyframes fxhub-red-light-sweep {
  0%,
  18% {
    left: -150%;
    opacity: 0;
  }

  36% {
    opacity: 1;
  }

  64% {
    opacity: 0.75;
  }

  82%,
  100% {
    left: 95%;
    opacity: 0;
  }
}


/* ==========================================================
   CELULAR Y TABLET
========================================================== */

@media (max-width: 900px) {

  /*
    background-attachment: fixed suele tener problemas
    en algunos celulares, especialmente iPhone.
  */
  .fxhub-product--flag,
  .fxhub-product--color,
  .fxhub-hero {
    background-attachment:
      scroll,
      scroll,
      scroll,
      scroll,
      scroll;
  }

  .fxhub-product--flag::before {
    width: 520px;
    height: 520px;

    top: -210px;
    right: -280px;
  }

  .fxhub-product--flag .fxhub-benefit:hover,
  .fxhub-product--color .fxhub-benefit:hover {
    transform: none;
  }

  .fxhub-app-showcase:hover .fxhub-app-window,
  .fxhub-app-showcase:hover .fxhub-color-window {
    transform: none;
  }
}


/* ==========================================================
   USUARIOS QUE PREFIEREN MENOS MOVIMIENTO
========================================================== */

@media (prefers-reduced-motion: reduce) {

  .fxhub-product--flag,
  .fxhub-product--color,
  .fxhub-hero {
    background-attachment:
      scroll,
      scroll,
      scroll,
      scroll,
      scroll;
  }

  .fxhub-product--flag::before,
  .fxhub-product--color::before {
    animation: none;
  }
}

.fxhub-header-logo {
  display: block;

  width: clamp(150px, 15vw, 230px);
  max-height: 52px;

  object-fit: contain;
  object-position: left center;
}

.fxhub-logo{
    display: flex;
}

.fxhub-product-logo-box {
  width: fit-content;
  max-width: 100%;

  margin-bottom: 24px;
  padding: 12px 17px;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.96);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(12px);
}

.fxhub-product-logo {
  display: block;

  width: min(280px, 65vw);
  max-height: 90px;

  object-fit: contain;
  object-position: left center;
}

/* ==========================================================
   AJUSTE FINAL DE LOGOS
   Navegación, títulos de producto y pie de página
========================================================== */

/* ---------- Accesos de la navegación ---------- */
.fxhub-nav {
  gap: 12px;
}

.fxhub-nav-card {
  position: relative;
  overflow: hidden;

  min-height: 54px;
  padding: 7px 14px 7px 8px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;

  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.045)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 28px rgba(0, 0, 0, 0.12);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

/* Quita la rayita inferior de los enlaces antiguos. */
.fxhub-nav-card::after {
  display: none;
}

.fxhub-nav-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      110deg,
      transparent 25%,
      rgba(255, 255, 255, 0.16) 48%,
      transparent 70%
    );

  transform: translateX(-135%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.fxhub-nav-card:hover {
  color: #ffffff;
  border-color: rgba(255, 88, 94, 0.46);

  background:
    linear-gradient(
      135deg,
      rgba(215, 25, 32, 0.22),
      rgba(255, 255, 255, 0.07)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 15px 34px rgba(0, 0, 0, 0.2);

  transform: translateY(-3px);
}

.fxhub-nav-card:hover::before {
  transform: translateX(135%);
}

.fxhub-nav-logo-box {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;

  display: grid;
  place-items: center;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;

  background: rgba(255, 255, 255, 0.96);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.16);
}

.fxhub-nav-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fxhub-nav-logo--flag {
  padding: 5px;
}

.fxhub-nav-logo-box--color {
  width: 58px;
  flex-basis: 58px;
}

.fxhub-nav-logo--color {
  padding: 3px;
  object-fit: contain;
}

.fxhub-nav-card-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.08;
}

.fxhub-nav-card-text small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fxhub-nav-card-text strong {
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

/* ---------- Título de Flexo Flag Track ---------- */
.fxhub-flag-title {
  margin-bottom: 25px;

  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 25px);
}

.fxhub-flag-title-icon-box {
  width: clamp(74px, 7vw, 104px);
  height: clamp(74px, 7vw, 104px);
  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(245, 245, 247, 0.94)
    );

  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transform: rotate(-3deg);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.fxhub-flag-title:hover .fxhub-flag-title-icon-box {
  transform: rotate(0deg) translateY(-4px);

  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.3),
    0 0 36px rgba(215, 25, 32, 0.14);
}

.fxhub-flag-title-icon {
  display: block;
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.fxhub-flag-title h2 {
  margin: 0;
  font-size: clamp(50px, 5.6vw, 88px);
}

/* ---------- Logo principal de Flexo Color Lab ---------- */
.fxhub-color-main-logo-box {
  width: min(100%, 500px);
  min-height: clamp(135px, 14vw, 205px);
  margin-bottom: 34px;
  padding: clamp(18px, 2.5vw, 32px);

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.97),
      rgba(255, 244, 244, 0.9)
    );

  box-shadow:
    0 30px 70px rgba(70, 0, 4, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transform: rotate(-1.5deg);

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.fxhub-color-main-logo-box:hover {
  transform: rotate(0deg) translateY(-7px) scale(1.015);

  box-shadow:
    0 38px 85px rgba(70, 0, 4, 0.38),
    0 0 48px rgba(255, 255, 255, 0.13);
}

.fxhub-color-main-logo {
  display: block;
  width: 100%;
  max-width: 440px;
  max-height: 145px;
  object-fit: contain;
}

/* ---------- Logo del pie de página ---------- */
.fxhub-footer-brand {
  width: fit-content;
  min-height: 64px;
  padding: 9px 16px;

  display: inline-flex;
  align-items: center;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 34px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.fxhub-footer-brand:hover {
  border-color: rgba(215, 25, 32, 0.42);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.fxhub-footer-logo {
  display: block;
  width: clamp(165px, 15vw, 225px);
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

/* ---------- Adaptación de logos en tablet y celular ---------- */
@media (max-width: 980px) {
  .fxhub-nav-card {
    padding-right: 9px;
  }

  .fxhub-nav-card-text {
    display: none;
  }

  .fxhub-nav-logo-box,
  .fxhub-nav-logo-box--color {
    width: 40px;
    flex-basis: 40px;
  }

  .fxhub-nav-logo--color {
    object-fit: contain;
  }
}

@media (max-width: 720px) {
  /* El CSS anterior ocultaba toda la navegación en celular. Aquí la recuperamos. */
  .fxhub-nav {
    display: flex;
    gap: 7px;
  }

  .fxhub-nav-card {
    min-height: 43px;
    padding: 4px;
    border-radius: 12px;
  }

  .fxhub-nav-logo-box,
  .fxhub-nav-logo-box--color {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 9px;
  }

  .fxhub-header-logo {
    width: clamp(115px, 36vw, 155px);
    max-height: 43px;
  }

  .fxhub-flag-title {
    align-items: center;
    gap: 14px;
  }

  .fxhub-flag-title-icon-box {
    width: 66px;
    height: 66px;
    border-radius: 19px;
  }

  .fxhub-flag-title h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .fxhub-color-main-logo-box {
    min-height: 125px;
    margin-bottom: 28px;
    padding: 19px;
    border-radius: 22px;
  }

  .fxhub-color-main-logo {
    max-height: 105px;
  }

  .fxhub-footer {
    align-items: center;
    text-align: center;
  }

  .fxhub-footer-logo {
    width: min(210px, 65vw);
  }
}

@media (max-width: 430px) {
  .fxhub-header {
    padding-right: 12px;
    padding-left: 12px;
    gap: 8px;
  }

  .fxhub-header-logo {
    width: 108px;
  }


  .fxhub-flag-title {
    align-items: flex-start;
  }

  .fxhub-flag-title-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .fxhub-flag-title h2 {
    font-size: clamp(38px, 11vw, 50px);
  }
}

/* ==========================================================
   AJUSTES SOLICITADOS: NAVBAR BLANCA, FOTOGRAFÍAS Y ESLOGAN
   Este bloque está al final para sobrescribir estilos previos.
========================================================== */

/* ---------- Barra blanca y distribución de tres zonas ---------- */
.fxhub-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;

  width: 100%;
  min-height: 78px;
  padding: 0 clamp(18px, 4vw, 72px);

  display: grid;
  grid-template-columns: auto minmax(300px, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.6vw, 42px);

  border-bottom: 1px solid rgba(215, 25, 32, 0.22);
  background: rgba(255, 255, 255, 0.96);

  box-shadow:
    0 12px 34px rgba(17, 24, 39, 0.1);

  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.fxhub-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(215, 25, 32, 0.15) 15%,
      rgba(215, 25, 32, 0.92) 50%,
      rgba(215, 25, 32, 0.15) 85%,
      transparent 100%
    );
}

.fxhub-brand {
  min-width: 0;
}

.fxhub-header-logo {
  width: clamp(132px, 12vw, 190px);
  max-height: 53px;
  object-fit: contain;
  object-position: left center;
}

/* ---------- Enlaces editables del centro ---------- */
.fxhub-main-menu {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 2vw, 34px);
}

.fxhub-main-menu a {
  position: relative;
  padding: 29px 0 25px;

  color: #3f3f46;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.025em;
  white-space: nowrap;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.fxhub-main-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;

  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff5960, #d71920);

  transform: scaleX(0.16);
  transform-origin: center;
  opacity: 0.45;

  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
}

.fxhub-main-menu a:hover,
.fxhub-main-menu a:focus-visible {
  color: #d71920;
  transform: translateY(-1px);
}

.fxhub-main-menu a:hover::after,
.fxhub-main-menu a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

/* ---------- Tarjetas de acceso del lado derecho ---------- */
.fxhub-nav-apps {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.fxhub-nav-apps .fxhub-nav-card {
  min-height: 49px;
  padding: 5px 11px 5px 5px;

  border: 1px solid rgba(24, 24, 27, 0.12);
  border-radius: 14px;
  background: linear-gradient(145deg, #202024, #101012);

  box-shadow:
    0 10px 23px rgba(24, 24, 27, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.fxhub-nav-apps .fxhub-nav-card:hover {
  border-color: rgba(215, 25, 32, 0.42);
  transform: translateY(-3px);
  box-shadow:
    0 15px 31px rgba(24, 24, 27, 0.22),
    0 0 0 1px rgba(215, 25, 32, 0.08);
}

.fxhub-nav-apps .fxhub-nav-card-text small {
  color: rgba(255, 255, 255, 0.52);
}

.fxhub-nav-apps .fxhub-nav-card-text strong {
  color: #ffffff;
}

/* Da espacio para la barra fija */
.fxhub-product:first-of-type {
  padding-top: max(145px, calc(78px + 5vw));
}

.fxhub-product,
.fxhub-hero {
  scroll-margin-top: 78px;
}

/* ---------- Galería de dos fotografías Flag Track ---------- */
.fxhub-flag-gallery {
  width: min(100%, 620px);
  margin: 4px 0 30px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fxhub-flag-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  aspect-ratio: 4 / 3;
  margin: 0;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);

  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);

  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.fxhub-flag-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background:
    linear-gradient(
      135deg,
      rgba(215, 25, 32, 0.2),
      transparent 36%,
      transparent 65%,
      rgba(0, 0, 0, 0.3)
    );
}

.fxhub-flag-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: saturate(0.92) contrast(1.04);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease;
}

.fxhub-flag-photo-accent {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;

  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7378, #d71920);
  box-shadow: 0 0 18px rgba(215, 25, 32, 0.65);
}

.fxhub-flag-photo:hover {
  border-color: rgba(255, 82, 90, 0.4);
  transform: translateY(-6px);
  box-shadow:
    0 27px 55px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(215, 25, 32, 0.1);
}

.fxhub-flag-photo:hover img {
  transform: scale(1.075);
  filter: saturate(1.08) contrast(1.06);
}

/* ---------- Eslogan sobre el dashboard ---------- */
.fxhub-showcase-slogan {
  width: min(100%, 760px);
  margin: 0 auto 46px;
  padding: 0 18px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
  text-transform: uppercase;
  line-height: 0.98;

  filter: drop-shadow(0 14px 25px rgba(0, 0, 0, 0.24));
}

.fxhub-showcase-slogan-top,
.fxhub-showcase-slogan-and {
  display: block;
  color: #ffffff;
  font-weight: 950;
  letter-spacing: 0.025em;
  text-wrap: balance;
}

.fxhub-showcase-slogan-top {
  font-size: clamp(24px, 2.75vw, 43px);
}

.fxhub-showcase-slogan-and {
  margin: 4px 0 6px;
  font-size: clamp(22px, 2.4vw, 37px);
}

.fxhub-showcase-slogan-bottom {
  display: block;
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 950;
  letter-spacing: 0.015em;
  line-height: 0.98;
  text-wrap: balance;

  color: transparent;
  background:
    linear-gradient(
      90deg,
      #fff8a8 0%,
      #ffd84d 42%,
      #ffad00 100%
    );

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 9px 26px rgba(255, 181, 0, 0.12);
}

.fxhub-app-stage {
  position: relative;
  min-width: 0;
}

/* El texto superior necesita un poco más de espacio que antes */
.fxhub-product--flag .fxhub-product-grid {
  align-items: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .fxhub-header {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .fxhub-main-menu {
    gap: 18px;
  }

  .fxhub-main-menu a {
    font-size: 11px;
  }
}

@media (max-width: 1080px) {
  .fxhub-header {
    grid-template-columns: auto 1fr;
  }

  .fxhub-main-menu {
    display: none;
  }

  .fxhub-nav-apps {
    justify-self: end;
  }

  .fxhub-showcase-slogan {
    margin-bottom: 42px;
  }
}

@media (max-width: 720px) {
  .fxhub-header {
    min-height: 70px;
    padding-right: 14px;
    padding-left: 14px;
    gap: 10px;
  }

  .fxhub-header-logo {
    width: clamp(102px, 30vw, 135px);
    max-height: 43px;
  }

  .fxhub-nav-apps {
    gap: 6px;
  }

  .fxhub-nav-apps .fxhub-nav-card {
    min-height: 42px;
    padding: 4px;
  }

  .fxhub-product:first-of-type {
    padding-top: 112px;
  }

  .fxhub-flag-gallery {
    margin-bottom: 26px;
    gap: 10px;
  }

  .fxhub-flag-photo {
    border-radius: 14px;
  }

  .fxhub-showcase-slogan {
    margin-bottom: 34px;
    padding: 0 5px;
  }

  .fxhub-showcase-slogan-top {
    font-size: clamp(21px, 6.7vw, 32px);
  }

  .fxhub-showcase-slogan-and {
    font-size: clamp(19px, 5.8vw, 28px);
  }

  .fxhub-showcase-slogan-bottom {
    font-size: clamp(21px, 6.7vw, 32px);
  }
}

@media (max-width: 480px) {
  .fxhub-flag-gallery {
    grid-template-columns: 1fr;
  }

  .fxhub-flag-photo {
    aspect-ratio: 16 / 10;
  }

  .fxhub-showcase-slogan {
    margin-bottom: 30px;
  }
}

/* ==========================================================
   CORRECCIÓN DE INTEGRACIÓN CON WORDPRESS
   Mantiene el diseño a ancho completo y evita que el tema
   comprima, desplace o parta la barra de navegación.
========================================================== */

/* El bloque sale del ancho limitado que suelen aplicar los temas. */
.fxhub.alignfull,
.fxhub {
  position: relative;
  width: 100vw !important;
  max-width: none !important;
  margin-right: calc(50% - 50vw) !important;
  margin-left: calc(50% - 50vw) !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  overflow-x: clip;
}

/* Libera específicamente el bloque HTML y los contenedores comunes
   de WordPress solo en la página que contiene .fxhub. */
body:has(.fxhub) .wp-block-post-content,
body:has(.fxhub) .entry-content,
body:has(.fxhub) .site-content,
body:has(.fxhub) .content-area,
body:has(.fxhub) main.site-main {
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  overflow: visible !important;
}

body:has(.fxhub) .wp-block-post-content > .wp-block-html,
body:has(.fxhub) .entry-content > .wp-block-html,
body:has(.fxhub) .wp-block-html:has(> .fxhub) {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Evita espacios agregados por los estilos globales de bloques. */
.fxhub :where(header, nav, section, footer, figure, h1, h2, h3, p) {
  max-width: none;
}

.fxhub figure,
.fxhub p,
.fxhub h1,
.fxhub h2,
.fxhub h3 {
  margin-block-start: 0;
}

.fxhub img {
  max-width: 100%;
}

/* La cabecera siempre toma como referencia la ventana completa,
   no la columna angosta de contenido de WordPress. */
.fxhub-header {
  box-sizing: border-box !important;
  width: 100vw !important;
  max-width: none !important;
  min-height: 78px !important;
  margin: 0 !important;
  padding-right: clamp(14px, 2.5vw, 48px) !important;
  padding-left: clamp(14px, 2.5vw, 48px) !important;

  grid-template-columns:
    clamp(120px, 9vw, 165px)
    minmax(0, 1fr)
    auto !important;

  gap: clamp(10px, 1.4vw, 24px) !important;
}

.fxhub-brand,
.fxhub-main-menu,
.fxhub-nav-apps {
  min-width: 0 !important;
}

.fxhub-header-logo {
  width: clamp(112px, 8.5vw, 160px) !important;
  max-width: 100% !important;
}

/* Menú central compacto para que los seis enlaces no empujen
   las tarjetas de acceso a una segunda fila. */
.fxhub-main-menu {
  overflow: hidden;
  gap: clamp(9px, 1.05vw, 20px) !important;
  flex-wrap: nowrap !important;
}

.fxhub-main-menu a {
  min-width: 0;
  padding-right: 0 !important;
  padding-left: 0 !important;
  font-size: clamp(9px, 0.62vw, 12px) !important;
  letter-spacing: 0.01em !important;
}

/* Las tarjetas del lado derecho nunca se parten ni saltan de fila. */
.fxhub-nav-apps {
  justify-self: end;
  flex: 0 0 auto;
  flex-wrap: nowrap !important;
  gap: 8px !important;
}

.fxhub-nav-apps .fxhub-nav-card {
  width: auto !important;
  min-width: 0 !important;
  max-width: 170px;
  flex: 0 0 auto;
}

.fxhub-nav-apps .fxhub-nav-logo-box,
.fxhub-nav-apps .fxhub-nav-logo-box--color {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

/* Compensa la barra negra de administración cuando el usuario
   ha iniciado sesión en WordPress. */
body.admin-bar .fxhub-header {
  top: 32px !important;
}

/* En pantallas medianas se conservan todos los enlaces, pero las
   tarjetas muestran solo sus logos para evitar una cabecera alta. */
@media (max-width: 1600px) {
  .fxhub-header {
    grid-template-columns:
      clamp(112px, 9vw, 150px)
      minmax(0, 1fr)
      auto !important;
  }

  .fxhub-main-menu {
    gap: clamp(8px, 0.85vw, 15px) !important;
  }

  .fxhub-main-menu a {
    font-size: clamp(8.5px, 0.62vw, 10.5px) !important;
  }

  .fxhub-nav-apps .fxhub-nav-card-text {
    display: none !important;
  }

  .fxhub-nav-apps .fxhub-nav-card {
    padding: 5px !important;
  }
}

/* Si el ancho ya no permite mostrar cómodamente el menú completo,
   se oculta solo el menú central; logo y accesos permanecen visibles. */
@media (max-width: 1180px) {
  .fxhub-header {
    grid-template-columns: auto 1fr !important;
  }

  .fxhub-main-menu {
    display: none !important;
  }

  .fxhub-nav-apps {
    display: flex !important;
    justify-self: end;
  }
}

@media (max-width: 782px) {
  body.admin-bar .fxhub-header {
    top: 46px !important;
  }
}

@media (max-width: 720px) {
  .fxhub-header {
    width: 100vw !important;
    min-height: 70px !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .fxhub-header-logo {
    width: clamp(100px, 30vw, 132px) !important;
  }

  .fxhub-nav-apps {
    gap: 6px !important;
  }

  .fxhub-nav-apps .fxhub-nav-card {
    min-height: 42px !important;
    padding: 4px !important;
  }

  .fxhub-nav-apps .fxhub-nav-logo-box,
  .fxhub-nav-apps .fxhub-nav-logo-box--color {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }
}

/* Fallback para temas que todavía limitan directamente el bloque. */
@supports not body.elementor-page-2565(body:has(.fxhub)) {
  .wp-block-html > .fxhub {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
  }
}/* End custom CSS */