/* =========================================================
   REQUISA Catálogo 2026
   Misma línea visual del landing: dark premium, glass, azul REQUISA,
   tipografía fuerte, pills, brillos suaves y microinteracciones.
   ========================================================= */

:root {
  --rqs-bg: #272727;
  --rqs-bg-deep: #1f1f1f;
  --rqs-surface: #343434;
  --rqs-surface-2: #2d2d2d;
  --rqs-text: #ffffff;
  --rqs-muted: #a6a6a6;
  --rqs-muted-2: #777777;
  --rqs-border: rgba(255, 255, 255, 0.11);
  --rqs-border-strong: rgba(255, 255, 255, 0.18);
  --rqs-accent: #55acee;
  --rqs-accent-2: #8bd0ff;
  --rqs-green: #58d68d;
  --rqs-radius-xl: 30px;
  --rqs-radius-lg: 22px;
  --rqs-radius-md: 16px;
  --rqs-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
  --rqs-shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.22);
  --rqs-font:
    Poppins, Work Sans, Inter, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.rqs-catalogo {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(85, 172, 238, 0.12),
      transparent 28rem
    ),
    radial-gradient(
      circle at 90% 12%,
      rgba(255, 255, 255, 0.06),
      transparent 22rem
    ),
    linear-gradient(180deg, #202020 0%, var(--rqs-bg) 42%, #232323 100%);
  color: var(--rqs-text);
  font-family: var(--rqs-font);
  overflow-x: hidden;
}

body.rqs-catalogo::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 80%);
}

.rqs-page-glow {
  position: fixed;
  inset: auto -8rem 12% auto;
  width: 24rem;
  height: 24rem;
  background: rgba(85, 172, 238, 0.12);
  filter: blur(70px);
  border-radius: 50%;
  z-index: -1;
}

.rqs-catalogo a {
  color: inherit;
  text-decoration: none;
}

.rqs-catalogo img {
  max-width: 100%;
}

/* Preloader liviano */
.rqs-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: #202020;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.rqs-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.rqs-preloader__inner {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.rqs-preloader__inner img {
  width: 92px;
  height: auto;
  filter: brightness(0) invert(1);
}

.rqs-preloader__inner span {
  width: 120px;
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
}

.rqs-preloader__inner span::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent,
    var(--rqs-accent),
    transparent
  );
  animation: rqs-loader 1s linear infinite;
}

@keyframes rqs-loader {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(280%);
  }
}

/* Header */
.rqs-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
}

.rqs-topbar {
  background: rgba(32, 32, 32, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.rqs-topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.rqs-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1;
}

.rqs-topbar__item span {
  color: var(--rqs-accent);
}

.rqs-topbar__social {
  display: inline-flex;
  gap: 8px;
}

.rqs-topbar__social a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.rqs-topbar__social a:hover {
  color: #fff;
  border-color: rgba(85, 172, 238, 0.55);
  box-shadow: 0 0 22px rgba(85, 172, 238, 0.18);
}

.rqs-navbar {
  background: rgba(39, 39, 39, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.16);
}

.rqs-navbar__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.rqs-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.rqs-brand img,
.rqs-footer img {
  width: 86px;
  height: auto;
  filter: brightness(0) invert(1);
}

.rqs-nav-panel {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}

.rqs-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0 auto;
}

.rqs-nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.rqs-nav-list a:hover,
.rqs-nav-list a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 0 1px rgba(85, 172, 238, 0.26),
    0 0 28px rgba(85, 172, 238, 0.12);
}

.rqs-nav-list a.is-active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--rqs-accent),
    transparent
  );
}

.rqs-header-search {
  width: min(250px, 100%);
  height: 42px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.rqs-header-search input {
  min-width: 0;
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 0 0 0 16px;
  font-size: 13px;
}

.rqs-header-search input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.rqs-header-search button {
  width: 44px;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--rqs-accent);
  font-weight: 900;
}

.rqs-header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--rqs-accent), #377fc0);
  box-shadow: 0 14px 32px rgba(85, 172, 238, 0.2);
}

.rqs-header-cta span {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
}

.rqs-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
}

.rqs-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #fff;
}

/* Hero */
.rqs-catalog-hero {
  position: relative;
  padding: 108px 0 70px;
  overflow: hidden;
}

.rqs-catalog-hero::before,
.rqs-catalog-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(55px);
  pointer-events: none;
}

.rqs-catalog-hero::before {
  width: 18rem;
  height: 18rem;
  left: -6rem;
  top: 16%;
  background: rgba(85, 172, 238, 0.13);
}

.rqs-catalog-hero::after {
  width: 22rem;
  height: 22rem;
  right: -8rem;
  top: 0;
  background: rgba(255, 255, 255, 0.07);
}

.rqs-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--rqs-accent-2);
  background: rgba(85, 172, 238, 0.14);
  border: 1px solid rgba(85, 172, 238, 0.32);
  box-shadow: 0 0 26px rgba(85, 172, 238, 0.12);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rqs-catalog-hero h1 {
  max-width: 780px;
  margin: 22px 0 18px;
  color: #fff;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.rqs-catalog-hero h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 0 38px rgba(85, 172, 238, 0.18);
}

.rqs-catalog-hero p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.8;
}

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

.rqs-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
  cursor: pointer;
}

.rqs-btn:hover {
  transform: translateY(-2px);
}

.rqs-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rqs-accent), #357ec3);
  box-shadow: 0 20px 46px rgba(85, 172, 238, 0.22);
}

.rqs-btn--primary:hover {
  color: #fff;
  box-shadow: 0 26px 60px rgba(85, 172, 238, 0.28);
}

.rqs-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.rqs-btn--ghost:hover {
  color: #fff;
  border-color: rgba(85, 172, 238, 0.42);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.rqs-hero-panel {
  position: relative;
  padding: 28px;
  border-radius: var(--rqs-radius-xl);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.045)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--rqs-shadow);
  overflow: hidden;
}

.rqs-hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px auto auto -1px;
  width: 44%;
  height: 3px;
  background: linear-gradient(90deg, var(--rqs-accent), transparent);
}

.rqs-hero-panel::after {
  content: "";
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: rgba(85, 172, 238, 0.14);
  filter: blur(10px);
}

.rqs-hero-panel__label {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--rqs-accent-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rqs-hero-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin: 0 0 22px;
  color: #fff;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.rqs-hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.rqs-hero-stats div {
  padding: 16px 12px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rqs-hero-stats strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.rqs-hero-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Sections */
.rqs-catalog-section {
  padding: 28px 0 80px;
}

.rqs-section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.rqs-section-head h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.rqs-section-head p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

/* Filters */
.rqs-filter-shell {
  position: relative;
  z-index: 5;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: var(--rqs-radius-xl);
  background: rgba(52, 52, 52, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--rqs-shadow-soft);
  backdrop-filter: blur(20px);
}

.rqs-filter-shell .form-label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rqs-filter-shell .form-control,
.rqs-filter-shell .form-select {
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background-color: rgba(39, 39, 39, 0.88);
  color: #fff;
  box-shadow: none;
}

.rqs-filter-shell .form-control::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.rqs-filter-shell .form-control:focus,
.rqs-filter-shell .form-select:focus {
  border-color: rgba(85, 172, 238, 0.75);
  box-shadow: 0 0 0 4px rgba(85, 172, 238, 0.13);
}

.rqs-filter-shell select option {
  color: #fff;
  background: #272727;
}

.rqs-filter-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rqs-meta {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.rqs-meta strong {
  color: #fff;
}

.rqs-filter-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.rqs-mini-btn {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.rqs-mini-btn:hover {
  color: #fff;
  border-color: rgba(85, 172, 238, 0.55);
  box-shadow: 0 0 26px rgba(85, 172, 238, 0.12);
}

.rqs-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.rqs-chip {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.rqs-chip:hover,
.rqs-chip.is-active {
  color: #fff;
  border-color: rgba(85, 172, 238, 0.55);
  background: rgba(85, 172, 238, 0.14);
}

/* Products */
.rqs-products-grid {
  align-items: stretch;
}

.rqs-product-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.105),
    rgba(255, 255, 255, 0.045)
  );
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.26s ease,
    border-color 0.26s ease,
    box-shadow 0.26s ease;
}

.rqs-product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(85, 172, 238, 0.48);
  box-shadow:
    0 30px 76px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(85, 172, 238, 0.1);
}

.rqs-product-card.is-selected {
  border-color: rgba(85, 172, 238, 0.78);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(85, 172, 238, 0.26),
    0 0 44px rgba(85, 172, 238, 0.16);
}

.rqs-product-card__media {
  position: relative;
  display: grid;
  place-items: center;
  height: 220px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.4) 38%,
      rgba(255, 255, 255, 0.08) 72%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.04)
    );
}

.rqs-product-card__media::after {
  content: "";
  position: absolute;
  inset: auto 16% 14px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  filter: blur(14px);
}

.rqs-product-card__media img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 178px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.rqs-product-card:hover .rqs-product-card__media img {
  transform: scale(1.045);
}

.rqs-product-card__select {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 16px;
}

.rqs-product-card__select input {
  width: 26px;
  height: 26px;
  margin: 0;
  cursor: pointer;
  border-color: rgba(255, 255, 255, 0.22);
  background-color: rgba(39, 39, 39, 0.72);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.rqs-product-card__select input:checked {
  background-color: var(--rqs-accent);
  border-color: var(--rqs-accent);
}

.rqs-featured-pill {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 3;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(39, 39, 39, 0.78);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.rqs-product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.rqs-product-card__badges {
  min-height: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.rqs-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(85, 172, 238, 0.14);
  color: var(--rqs-accent-2);
  border: 1px solid rgba(85, 172, 238, 0.2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rqs-product-card h3 {
  min-height: 58px;
  margin: 0 0 10px;
  color: #fff;
  font-size: 21px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.028em;
}

.rqs-product-card__info {
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

.rqs-product-card__info strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}

.rqs-product-card__desc {
  flex: 1;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.68;
}

.rqs-product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: auto;
}

.rqs-card-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.22s ease;
}

.rqs-card-btn:hover {
  color: #fff;
  border-color: rgba(85, 172, 238, 0.44);
  background: rgba(85, 172, 238, 0.12);
}

.rqs-card-btn--accent {
  border-color: transparent;
  background: linear-gradient(135deg, var(--rqs-accent), #377fc0);
  box-shadow: 0 14px 34px rgba(85, 172, 238, 0.18);
}

.rqs-card-btn--accent:hover {
  background: linear-gradient(135deg, #67baff, #3b86cc);
}

/* Loading */
.rqs-skeleton-card {
  height: 420px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.rqs-skeleton-card::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  animation: rqs-shimmer 1.25s infinite;
}

@keyframes rqs-shimmer {
  to {
    transform: translateX(100%);
  }
}

/* Pagination */
.rqs-pagination-wrap {
  margin-top: 34px;
}

.rqs-pagination-wrap .page-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 4px;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.rqs-pagination-wrap .page-item.active .page-link,
.rqs-pagination-wrap .page-link:hover {
  border-color: rgba(85, 172, 238, 0.55);
  background: rgba(85, 172, 238, 0.16);
  color: #fff;
}

.rqs-pagination-wrap .page-item.disabled .page-link {
  opacity: 0.42;
}

/* Empty */
.rqs-empty-state {
  margin: 36px auto 0;
  max-width: 460px;
  padding: 40px 22px;
  text-align: center;
  border-radius: var(--rqs-radius-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rqs-empty-state__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(85, 172, 238, 0.13);
  color: var(--rqs-accent-2);
  font-size: 28px;
}

.rqs-empty-state h3 {
  color: #fff;
  margin: 0 0 8px;
  font-weight: 900;
}

.rqs-empty-state p {
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 20px;
}

/* CTA + Footer */
.rqs-catalog-cta {
  padding: 0 0 78px;
}

.rqs-catalog-cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px;
  border-radius: var(--rqs-radius-xl);
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(85, 172, 238, 0.16),
      transparent 22rem
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.045)
    );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--rqs-shadow-soft);
}

.rqs-catalog-cta__card h2 {
  margin: 12px 0 8px;
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.rqs-catalog-cta__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.rqs-footer {
  padding: 38px 0;
  background: rgba(25, 25, 25, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rqs-footer__inner {
  display: flex;
  align-items: center;
  gap: 22px;
}

.rqs-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.rqs-footer__links {
  margin-left: auto;
  display: flex;
  gap: 16px;
}

.rqs-footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rqs-footer__links a:hover {
  color: var(--rqs-accent-2);
}

/* Selection bar */
.rqs-selection-bar {
  position: fixed;
  z-index: 1100;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 14px 14px 20px;
  border-radius: 24px;
  background: rgba(33, 33, 33, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.rqs-selection-bar strong {
  color: #fff;
  display: block;
}

.rqs-selection-bar small {
  color: rgba(255, 255, 255, 0.58);
}

/* Modal */
.rqs-product-modal .modal-content {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: #2b2b2b;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--rqs-shadow);
}

.rqs-modal-close {
  position: absolute;
  z-index: 5;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.rqs-modal-product {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.1fr;
  gap: 26px;
  align-items: center;
}

.rqs-modal-product__image {
  display: grid;
  place-items: center;
  min-height: 340px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
}

.rqs-modal-product__image img {
  max-height: 300px;
  object-fit: contain;
}

.rqs-modal-product h3 {
  margin: 14px 0 12px;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.rqs-modal-product p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.72;
}

.rqs-modal-product__meta {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.rqs-modal-product__meta strong {
  color: #fff;
}

/* Utilities */
.d-none {
  display: none !important;
}

/* Responsive */
@media (max-width: 1199px) {
  .rqs-header-search {
    width: 210px;
  }
}

@media (max-width: 991px) {
  .rqs-navbar__inner {
    min-height: 72px;
  }

  .rqs-nav-toggle {
    display: inline-block;
  }

  .rqs-nav-panel {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(32, 32, 32, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--rqs-shadow);
  }

  .rqs-nav-panel.is-open {
    display: flex;
  }

  .rqs-nav-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .rqs-nav-list a {
    justify-content: center;
  }

  .rqs-header-search {
    width: 100%;
  }

  .rqs-header-cta {
    justify-content: center;
    width: 100%;
  }

  .rqs-catalog-hero {
    padding: 72px 0 48px;
  }

  .rqs-section-head,
  .rqs-catalog-cta__card,
  .rqs-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .rqs-section-head p {
    max-width: 100%;
  }

  .rqs-footer__links {
    margin-left: 0;
  }

  .rqs-modal-product {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .rqs-topbar__inner {
    gap: 12px;
  }

  .rqs-catalog-hero h1 {
    font-size: clamp(40px, 14vw, 64px);
  }

  .rqs-hero-stats {
    grid-template-columns: 1fr;
  }

  .rqs-filter-footer,
  .rqs-selection-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .rqs-filter-actions {
    justify-content: flex-start;
  }

  .rqs-product-card__media {
    height: 205px;
  }

  .rqs-product-card__actions {
    grid-template-columns: 1fr;
  }

  .rqs-catalog-cta__card {
    padding: 26px;
  }

  .rqs-footer__links {
    flex-wrap: wrap;
  }

  .rqs-selection-bar {
    bottom: 12px;
  }
}

@media (max-width: 575px) {
  .rqs-brand img,
  .rqs-footer img {
    width: 74px;
  }

  .rqs-catalog-hero {
    padding-top: 54px;
  }

  .rqs-filter-shell {
    padding: 16px;
    border-radius: 24px;
  }

  .rqs-product-card {
    border-radius: 24px;
  }
}

/* =========================================================
   Catálogo REQUISA 2026 - Pulido final de cards
   ========================================================= */

.rqs-product-card {
  isolation: isolate;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.105),
      rgba(255, 255, 255, 0.045)
    ),
    radial-gradient(circle at 50% 0%, rgba(85, 172, 238, 0.08), transparent 42%);
}

.rqs-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 26%),
    radial-gradient(
      circle at 85% 12%,
      rgba(85, 172, 238, 0.14),
      transparent 28%
    );
  opacity: 0.55;
}

.rqs-product-card > * {
  position: relative;
  z-index: 1;
}

.rqs-product-card.is-selected {
  transform: translateY(-5px);
}

.rqs-product-card.is-selected::after {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 0;
  pointer-events: none;
  border-radius: 22px;
  border: 1px solid rgba(85, 172, 238, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 38px rgba(85, 172, 238, 0.18);
}

/* Imagen premium */
.rqs-product-card__media {
  height: 246px;
  margin: 14px 14px 0;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(
      circle at 50% 28%,
      rgba(255, 255, 255, 0.98),
      rgba(255, 255, 255, 0.68) 34%,
      rgba(255, 255, 255, 0.2) 66%,
      rgba(255, 255, 255, 0.08) 100%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.95),
      rgba(218, 228, 236, 0.72)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -34px 52px rgba(0, 0, 0, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.rqs-product-card__media::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 46%),
    radial-gradient(
      circle at 78% 18%,
      rgba(85, 172, 238, 0.15),
      transparent 34%
    );
  pointer-events: none;
}

.rqs-product-card__media::after {
  inset: auto 20% 24px;
  height: 18px;
  background: rgba(0, 0, 0, 0.26);
  filter: blur(16px);
  opacity: 0.55;
}

.rqs-product-card__media img {
  z-index: 2;
  max-width: 96%;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.22));
  transition:
    transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.34s ease,
    opacity 0.34s ease;
}

.rqs-product-card:hover .rqs-product-card__media img {
  transform: translateY(-5px) scale(1.055);
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.3));
}

/* Selector moderno */
.rqs-product-card__select {
  top: 24px;
  right: 24px;
  z-index: 8;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(
    180deg,
    rgba(39, 39, 39, 0.76),
    rgba(23, 23, 23, 0.72)
  );
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.rqs-product-card__select::before {
  content: "✓";
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  transform: scale(0.65);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.rqs-product-card__select::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  opacity: 0.72;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.rqs-product-card__select:hover {
  transform: translateY(-2px);
  border-color: rgba(85, 172, 238, 0.62);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(85, 172, 238, 0.16);
}

.rqs-product-card__select input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}

.rqs-product-card.is-selected .rqs-product-card__select {
  background: linear-gradient(135deg, var(--rqs-accent), var(--rqs-accent-2));
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(85, 172, 238, 0.32);
}

.rqs-product-card.is-selected .rqs-product-card__select::before {
  opacity: 1;
  transform: scale(1);
}

.rqs-product-card.is-selected .rqs-product-card__select::after {
  opacity: 0;
  transform: scale(1.35);
}

/* Destacado premium */
.rqs-featured-pill {
  top: 24px;
  left: 24px;
  z-index: 8;
  min-height: 36px;
  padding: 0 14px;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96),
    rgba(211, 232, 248, 0.86)
  );
  color: #202020;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.rqs-featured-pill::before {
  content: "★";
  color: var(--rqs-accent);
  font-size: 12px;
}

/* Modal más premium */
.rqs-product-modal .modal-dialog {
  max-width: 980px;
}

.rqs-product-modal .modal-content {
  background:
    radial-gradient(circle at 0% 0%, rgba(85, 172, 238, 0.16), transparent 34%),
    linear-gradient(180deg, #303030, #242424);
}

.rqs-modal-product__image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(
      circle at 50% 34%,
      rgba(255, 255, 255, 0.96),
      rgba(255, 255, 255, 0.7) 38%,
      rgba(255, 255, 255, 0.18) 76%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(218, 228, 236, 0.72)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 -38px 60px rgba(0, 0, 0, 0.08);
}

.rqs-modal-product__image img {
  max-width: 92%;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.28));
}

.rqs-detail-featured {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(39, 39, 39, 0.82);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.rqs-modal-product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

/* =========================================================
   REQUISA Catálogo 2026 - Cards y modal refinados
   ========================================================= */

.rqs-products-grid > [class*="col-"] {
  display: flex;
}

.rqs-product-card {
  width: 100%;
  min-height: 560px;
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(85, 172, 238, 0.13),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.105),
      rgba(255, 255, 255, 0.045)
    );
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rqs-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(85, 172, 238, 0.5);
  box-shadow:
    0 34px 82px rgba(0, 0, 0, 0.34),
    0 0 44px rgba(85, 172, 238, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.rqs-product-card.is-selected {
  border-color: rgba(85, 172, 238, 0.86);
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(85, 172, 238, 0.38),
    0 0 52px rgba(85, 172, 238, 0.2);
}

.rqs-product-card::before {
  opacity: 0.42;
}

.rqs-product-card__media {
  height: 240px;
  margin: 16px 16px 0;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(255, 255, 255, 0.98),
      rgba(242, 248, 252, 0.9) 34%,
      rgba(215, 229, 239, 0.62) 63%,
      rgba(255, 255, 255, 0.13) 100%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(218, 228, 236, 0.74)
    );
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -34px 54px rgba(0, 0, 0, 0.09),
    0 20px 48px rgba(0, 0, 0, 0.24);
}

.rqs-product-card__media::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 45%),
    radial-gradient(
      circle at 82% 18%,
      rgba(85, 172, 238, 0.16),
      transparent 34%
    );
  pointer-events: none;
}

.rqs-product-card__media::after {
  inset: auto 22% 24px;
  height: 18px;
  background: rgba(0, 0, 0, 0.28);
  filter: blur(16px);
  opacity: 0.58;
}

.rqs-product-card__media img {
  z-index: 2;
  max-width: 92%;
  max-height: 168px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.25));
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.35s ease;
}

.rqs-product-card:hover .rqs-product-card__media img {
  transform: translateY(-6px) scale(1.055);
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.34));
}

.rqs-featured-pill {
  top: 26px !important;
  left: 26px !important;
  right: auto !important;
  width: auto !important;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(215, 235, 250, 0.9)
  );
  color: #252525;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.rqs-featured-pill::before {
  content: "★";
  margin-right: 7px;
  color: var(--rqs-accent);
}

.rqs-product-card__select {
  position: absolute !important;
  top: 26px !important;
  right: 26px !important;
  left: auto !important;
  z-index: 12;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(
    180deg,
    rgba(38, 38, 38, 0.82),
    rgba(18, 18, 18, 0.74)
  );
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.rqs-product-card__select input {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}

.rqs-product-card__select::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.76);
  opacity: 0.8;
}

.rqs-product-card__select::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.rqs-product-card.is-selected .rqs-product-card__select {
  background: linear-gradient(135deg, var(--rqs-accent), var(--rqs-accent-2));
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(85, 172, 238, 0.36);
}

.rqs-product-card.is-selected .rqs-product-card__select::before {
  opacity: 0;
}

.rqs-product-card.is-selected .rqs-product-card__select::after {
  opacity: 1;
  transform: scale(1);
}

.rqs-product-card__body {
  padding: 22px;
}

.rqs-product-card h3 {
  min-height: auto;
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.12;
}

.rqs-product-card__info {
  padding: 12px 0;
  margin-bottom: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.rqs-product-card__desc {
  display: -webkit-box;
  min-height: 66px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.rqs-product-card__actions {
  gap: 10px;
}

.rqs-card-btn {
  min-height: 44px;
  border-radius: 999px;
}

.rqs-card-btn:hover {
  transform: translateY(-2px);
}

.rqs-card-btn--accent {
  box-shadow: 0 16px 36px rgba(85, 172, 238, 0.24);
}

/* Modal detalle */
.rqs-product-modal {
  z-index: 2200;
}

.modal-backdrop {
  z-index: 2190;
}

.rqs-product-modal .modal-dialog {
  max-width: 1040px;
}

.rqs-product-modal .modal-content {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 0% 0%, rgba(85, 172, 238, 0.18), transparent 34%),
    radial-gradient(
      circle at 100% 10%,
      rgba(255, 255, 255, 0.07),
      transparent 30%
    ),
    linear-gradient(180deg, #303030, #222);
  color: #fff;
  box-shadow: 0 38px 95px rgba(0, 0, 0, 0.5);
}

.rqs-product-modal .modal-body {
  padding: 32px;
}

.rqs-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 30;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.rqs-modal-product {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) 1.05fr;
  gap: 32px;
  align-items: stretch;
}

.rqs-modal-product__image {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 50% 36%,
      rgba(255, 255, 255, 0.98),
      rgba(242, 248, 252, 0.86) 38%,
      rgba(210, 225, 236, 0.48) 74%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(217, 229, 238, 0.76)
    );
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -42px 64px rgba(0, 0, 0, 0.09);
}

.rqs-modal-product__image img {
  max-width: 88%;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 30px 36px rgba(0, 0, 0, 0.32));
}

.rqs-modal-product__content {
  padding: 12px 8px;
}

.rqs-modal-product__content h3 {
  margin: 12px 0 16px;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.rqs-modal-product__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.rqs-modal-product__meta div {
  padding: 15px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.rqs-modal-product__meta span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rqs-modal-product__meta strong {
  color: #fff;
  font-size: 12px;
}

.rqs-modal-product__content p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.75;
}

.rqs-modal-product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.rqs-detail-featured {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(35, 35, 35, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

@media (max-width: 767px) {
  .rqs-product-card {
    min-height: auto;
  }

  .rqs-product-card__media {
    height: 214px;
    margin: 12px 12px 0;
    padding: 18px;
  }

  .rqs-product-card__media img {
    max-height: 148px;
  }

  .rqs-product-card__actions {
    grid-template-columns: 1fr;
  }

  .rqs-product-modal .modal-body {
    padding: 22px;
  }

  .rqs-modal-product {
    grid-template-columns: 1fr;
  }

  .rqs-modal-product__image {
    min-height: 280px;
  }

  .rqs-modal-product__image img {
    max-height: 220px;
  }

  .rqs-modal-product__meta {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   REQUISA Catálogo 2026 - Capa final de pulido visual
   Productos + Modal
   ========================================================= */

/* Cards más balanceadas */
.rqs-products-grid {
  row-gap: 28px;
}

.rqs-products-grid > [class*="col-"] {
  display: flex;
}

.rqs-product-card {
  width: 100%;
  min-height: 535px;
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(85, 172, 238, 0.12),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.095),
      rgba(255, 255, 255, 0.04)
    );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rqs-product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(85, 172, 238, 0.5);
  box-shadow:
    0 34px 82px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(85, 172, 238, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.rqs-product-card.is-selected {
  border-color: rgba(85, 172, 238, 0.88);
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(85, 172, 238, 0.38),
    0 0 54px rgba(85, 172, 238, 0.2);
}

/* Imagen más limpia y menos pesada */
.rqs-product-card__media {
  height: 224px;
  margin: 16px 16px 0;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(255, 255, 255, 0.98),
      rgba(243, 248, 252, 0.9) 34%,
      rgba(216, 229, 238, 0.58) 63%,
      rgba(255, 255, 255, 0.12) 100%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(218, 228, 236, 0.74)
    );
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -30px 48px rgba(0, 0, 0, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.rqs-product-card__media::before {
  inset: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 45%),
    radial-gradient(
      circle at 82% 18%,
      rgba(85, 172, 238, 0.14),
      transparent 34%
    );
}

.rqs-product-card__media::after {
  inset: auto 24% 22px;
  height: 16px;
  background: rgba(0, 0, 0, 0.24);
  filter: blur(15px);
  opacity: 0.52;
}

.rqs-product-card__media img {
  max-width: 91%;
  max-height: 158px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.24));
}

.rqs-product-card:hover .rqs-product-card__media img {
  transform: translateY(-5px) scale(1.045);
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.32));
}

/* Destacado más fino */
.rqs-featured-pill {
  top: 24px !important;
  left: 24px !important;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(216, 235, 249, 0.9)
  );
  color: #252525;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 9px;
  letter-spacing: 0.13em;
}

/* Selector más integrado */
.rqs-product-card__select {
  top: 24px !important;
  right: 24px !important;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(
    180deg,
    rgba(38, 38, 38, 0.82),
    rgba(18, 18, 18, 0.74)
  );
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.rqs-product-card__select::before {
  inset: 10px;
}

.rqs-product-card__select::after {
  font-size: 16px;
}

/* Contenido de la card */
.rqs-product-card__body {
  padding: 21px;
}

.rqs-product-card__badges {
  min-height: 26px;
  margin-bottom: 11px;
}

.rqs-product-card h3 {
  min-height: 50px;
  margin-bottom: 13px;
  font-size: 21px;
  line-height: 1.16;
}

.rqs-product-card__info {
  padding: 11px 0;
  margin-bottom: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.rqs-product-card__desc {
  display: -webkit-box;
  min-height: 64px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.rqs-card-btn {
  min-height: 43px;
}

.rqs-card-btn:hover {
  transform: translateY(-2px);
}

/* Modal detalle más elegante */
.rqs-product-modal {
  z-index: 2200;
}

.modal-backdrop {
  z-index: 2190;
  background-color: #080808;
}

.modal-backdrop.show {
  opacity: 0.72;
}

.rqs-product-modal .modal-dialog {
  width: min(1040px, calc(100% - 28px));
  max-width: 1040px;
}

.rqs-product-modal .modal-content {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 0% 0%, rgba(85, 172, 238, 0.18), transparent 34%),
    radial-gradient(
      circle at 100% 10%,
      rgba(255, 255, 255, 0.07),
      transparent 30%
    ),
    linear-gradient(180deg, #303030, #222);
  color: #fff;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rqs-product-modal .modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 28%),
    radial-gradient(
      circle at 78% 12%,
      rgba(85, 172, 238, 0.12),
      transparent 28%
    );
  opacity: 0.7;
}

.rqs-product-modal .modal-body {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.rqs-product-modal .modal-content > .rqs-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 30;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.32);
  color: transparent;
  font-size: 0;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.rqs-product-modal .modal-content > .rqs-modal-close::before,
.rqs-product-modal .modal-content > .rqs-modal-close::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.rqs-product-modal .modal-content > .rqs-modal-close::before {
  transform: rotate(45deg);
}

.rqs-product-modal .modal-content > .rqs-modal-close::after {
  transform: rotate(-45deg);
}

.rqs-product-modal .modal-content > .rqs-modal-close:hover {
  transform: translateY(-2px);
  border-color: rgba(85, 172, 238, 0.48);
  background: rgba(85, 172, 238, 0.16);
}

.rqs-modal-product {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) 1.05fr;
  gap: 32px;
  align-items: stretch;
}

.rqs-modal-product__image {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 50% 36%,
      rgba(255, 255, 255, 0.98),
      rgba(243, 248, 252, 0.88) 38%,
      rgba(210, 225, 236, 0.5) 74%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(217, 229, 238, 0.76)
    );
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -42px 64px rgba(0, 0, 0, 0.09);
}

.rqs-modal-product__image::after {
  content: "";
  position: absolute;
  inset: auto 24% 38px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  filter: blur(18px);
}

.rqs-modal-product__image img {
  position: relative;
  z-index: 2;
  max-width: 88%;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 30px 36px rgba(0, 0, 0, 0.32));
}

.rqs-modal-product__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 10px 12px;
}

.rqs-modal-product__content h3 {
  margin: 12px 0 15px;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.rqs-modal-product__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.rqs-modal-product__meta div {
  padding: 15px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.rqs-modal-product__meta span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rqs-modal-product__meta strong {
  color: #fff;
  font-size: 12px;
}

.rqs-modal-product__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.75;
}

.rqs-modal-product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.rqs-detail-close {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.rqs-detail-close:hover {
  color: #fff;
  border-color: rgba(85, 172, 238, 0.42);
  background: rgba(85, 172, 238, 0.12);
}

.rqs-detail-featured {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(35, 35, 35, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

/* Ajustes móviles */
@media (max-width: 767px) {
  .rqs-product-card {
    min-height: auto;
  }

  .rqs-product-card__media {
    height: 206px;
    margin: 12px 12px 0;
    padding: 18px;
  }

  .rqs-product-card__media img {
    max-height: 145px;
  }

  .rqs-product-card h3 {
    min-height: auto;
  }

  .rqs-product-card__actions {
    grid-template-columns: 1fr;
  }

  .rqs-product-modal .modal-body {
    padding: 22px;
  }

  .rqs-modal-product {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .rqs-modal-product__image {
    min-height: 270px;
  }

  .rqs-modal-product__image img {
    max-height: 210px;
  }

  .rqs-modal-product__meta {
    grid-template-columns: 1fr;
  }

  .rqs-modal-product__content h3 {
    font-size: 32px;
  }
}

/* =========================================================
   REQUISA Catálogo - Íconos sociales alineados al landing
   ========================================================= */

.rqs-topbar__social a {
  font-size: 0;
}

.rqs-topbar__social a svg {
  width: 15px;
  height: 15px;
  display: block;
}

.rqs-topbar__social a:hover svg {
  transform: translateY(-1px);
}

.rqs-topbar__social a svg path {
  transition: fill 0.22s ease;
}

/* =========================================================
   REQUISA Catálogo - Hamburguesa animada igual al landing
   ========================================================= */

.rqs-nav-toggle {
  position: relative;
  overflow: hidden;
}

.rqs-nav-toggle span {
  transform-origin: center;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease,
    background-color 0.24s ease;
}

.rqs-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.rqs-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.rqs-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.rqs-nav-toggle.is-open {
  border-color: rgba(85, 172, 238, 0.42);
  background:
    radial-gradient(
      circle at 30% 18%,
      rgba(255, 255, 255, 0.16),
      transparent 34%
    ),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(85, 172, 238, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* =========================================================
   REQUISA Catálogo - header alineado visualmente al landing
   ========================================================= */
.rqs-site-header--landing {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  pointer-events: none;
}

.rqs-site-header--landing .container {
  max-width: 1060px;
}

.rqs-catalog-headerbar {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 16px;
  border-radius: 18px;
  pointer-events: auto;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(42, 55, 72, 0.78), rgba(31, 39, 52, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px);
}

.rqs-catalog-headerbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(85, 172, 238, 0.28),
    transparent 22%,
    transparent 78%,
    rgba(85, 172, 238, 0.14)
  );
  opacity: 0.8;
}

.rqs-catalog-headerbar > * {
  position: relative;
  z-index: 1;
}

.rqs-site-header--landing .rqs-brand img {
  width: 86px;
  max-height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.rqs-site-header--landing .rqs-nav-panel {
  min-width: 0;
  gap: 18px;
}

.rqs-site-header--landing .rqs-nav-list {
  gap: 6px;
}

.rqs-site-header--landing .rqs-nav-list a {
  min-height: 38px;
  padding: 0 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.rqs-site-header--landing .rqs-header-search {
  width: 210px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.rqs-header-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.rqs-header-socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.25s ease;
}

.rqs-header-socials a:hover {
  color: #fff;
  transform: translateY(-1px);
  border-color: rgba(85, 172, 238, 0.45);
  box-shadow: 0 0 26px rgba(85, 172, 238, 0.16);
}

.rqs-site-header--landing + main .rqs-catalog-hero {
  padding-top: 162px;
}

@media (max-width: 1199px) {
  .rqs-site-header--landing .container {
    max-width: calc(100% - 32px);
  }

  .rqs-site-header--landing .rqs-header-search {
    width: 180px;
  }
}

@media (max-width: 991px) {
  .rqs-site-header--landing {
    top: 12px;
  }

  .rqs-catalog-headerbar {
    min-height: 64px;
    border-radius: 18px;
  }

  .rqs-site-header--landing .rqs-nav-panel {
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    background:
      radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.12), transparent 32%),
      rgba(28, 36, 49, 0.98);
  }

  .rqs-site-header--landing .rqs-nav-list a {
    justify-content: center;
  }

  .rqs-site-header--landing .rqs-header-search {
    width: 100%;
  }

  .rqs-header-socials {
    display: none;
  }

  .rqs-site-header--landing + main .rqs-catalog-hero {
    padding-top: 128px;
  }
}

@media (max-width: 575px) {
  .rqs-site-header--landing .container {
    max-width: calc(100% - 20px);
  }

  .rqs-site-header--landing .rqs-brand img {
    width: 72px;
  }

  .rqs-site-header--landing + main .rqs-catalog-hero {
    padding-top: 118px;
  }
}


/* === RQS: header del catálogo sincronizado con landing === */
/* === RQS: header moderno 2026 === */
.header--modern {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 999;
  pointer-events: none;
}

.header--modern .container {
  pointer-events: none;
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 14px 18px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}

.header__logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.header__logo img {
  display: block;
  width: auto;
  max-height: 42px;
}

.header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.header__menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.header__menu li {
  margin: 0;
  padding: 0;
}

.header__menu li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.header__menu li a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.header__menu li.active a,
.header__menu li.current a,
.header__menu li a.active {
  color: #ffffff;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.24),
      transparent 34%
    ),
    linear-gradient(135deg, rgba(85, 172, 238, 0.22), rgba(47, 127, 197, 0.16));
  border: 1px solid rgba(85, 172, 238, 0.24);
  box-shadow:
    0 10px 24px rgba(85, 172, 238, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.header__menu li.active a::after,
.header__menu li.current a::after,
.header__menu li a.active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 34%,
    rgba(255, 255, 255, 0.35) 48%,
    transparent 62%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: rqsBrandShine 4.8s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

.header__socials {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease;
}

.header__socials a:hover {
  color: #ffffff;
  background: rgba(85, 172, 238, 0.14);
  border-color: rgba(85, 172, 238, 0.26);
  transform: translateY(-1px);
}

/* Ajuste visual para que no se pegue al borde */
@media (min-width: 1200px) {
  .header--modern .container {
    max-width: 1320px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .header--modern {
    top: 12px;
  }

  .header__bar {
    min-height: 72px;
    padding: 12px 14px;
    border-radius: 20px;
  }

  .header__logo img {
    max-height: 36px;
  }

  .header__menu {
    gap: 4px;
    padding: 4px;
  }

  .header__menu li a {
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .header__socials a {
    width: 36px;
    height: 36px;
  }
}

/* Móvil */
@media (max-width: 767px) {
  .header__bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 14px;
  }

  .header__nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .header__nav::-webkit-scrollbar {
    display: none;
  }

  .header__menu {
    width: max-content;
  }

  .header__socials {
    display: none;
  }
}

/* === RQS: indicador premium de sección activa en header === */
.header__menu li a {
  position: relative;
  overflow: hidden;
}

.header__menu li.is-current a,
.header__menu li.active a,
.header__menu li a[aria-current="page"] {
  color: #ffffff;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.24),
      transparent 34%
    ),
    linear-gradient(135deg, rgba(85, 172, 238, 0.24), rgba(47, 127, 197, 0.16));
  border: 1px solid rgba(85, 172, 238, 0.28);
  box-shadow:
    0 12px 28px rgba(85, 172, 238, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

/* Línea inferior elegante para indicar la sección actual */
.header__menu li a::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    #55acee,
    rgba(255, 255, 255, 0.9),
    #55acee,
    transparent
  );
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.header__menu li.is-current a::before,
.header__menu li.active a::before,
.header__menu li a[aria-current="page"]::before {
  transform: scaleX(1);
  opacity: 1;
}

/* Brillo premium sobre el item activo */
.header__menu li.is-current a::after,
.header__menu li.active a::after,
.header__menu li a[aria-current="page"]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 34%,
    rgba(255, 255, 255, 0.34) 48%,
    transparent 62%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: rqsBrandShine 4.8s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Asegura que el texto quede encima del fondo */
.header__menu li a {
  isolation: isolate;
}

/* Accesibilidad visual al navegar con teclado */
.header__menu li a:focus-visible {
  outline: 2px solid rgba(85, 172, 238, 0.65);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .header__menu li.is-current a::after,
  .header__menu li.active a::after,
  .header__menu li a[aria-current="page"]::after {
    animation: none;
    display: none;
  }
}

/* === RQS: scroll vertical natural solo en móvil === */
@media (max-width: 767px) {
  html,
  body {
    height: auto !important;
    min-height: 100%;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    touch-action: auto !important;
    scroll-behavior: smooth;
  }

  body.webpage--parallax,
  body.webpage--parallax .animsition,
  body.webpage--parallax main,
  body.webpage--parallax #pagepiling {
    height: auto !important;
    min-height: 100vh;
    overflow: visible !important;
    transform: none !important;
    touch-action: auto !important;
  }

  body.webpage--parallax #pagepiling {
    display: block;
  }

  body.webpage--parallax #pagepiling > .section {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 100svh;
    overflow: visible !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    scroll-margin-top: 118px;
  }

  body.webpage--parallax #pagepiling > .section .scroll-wrap {
    min-height: 100svh;
    height: auto !important;
    overflow: visible !important;
  }

  body.webpage--parallax .pp-table,
  body.webpage--parallax .pp-tableCell {
    display: block !important;
    height: auto !important;
  }

  body.webpage--parallax #pp-nav {
    display: none !important;
  }

  body.webpage--parallax .footer--fixed {
    position: relative;
    z-index: 2;
  }
}

/* =========================================================
   REQUISA - Scroll interno inteligente por sección
   Evita saltos cuando hay zoom o pantallas de menor altura
   ========================================================= */

#pagepiling > .section.pp-scrollable {
  overflow-x: hidden;
  overflow-y: auto;
  height: 100vh;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}

#pagepiling > .section.pp-scrollable .scroll-wrap {
  height: auto;
  min-height: 100%;
}

#pagepiling > .section.pp-scrollable.rqs-section-needs-scroll .scroll-wrap {
  justify-content: flex-start;
}

#pagepiling > .section.pp-scrollable.rqs-section-needs-scroll {
  scroll-padding-top: 96px;
}

@media (min-width: 768px) and (max-height: 820px) {
  #pagepiling > .section.pp-scrollable .scroll-wrap {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

@media (min-width: 768px) and (max-height: 700px) {
  #pagepiling > .section.pp-scrollable .scroll-wrap {
    padding-top: 82px;
    padding-bottom: 82px;
  }
}

@media (max-width: 767px) {
  #pagepiling > .section.pp-scrollable {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }
}

/* =========================================================
   REQUISA - Header móvil final alineado al catálogo
   ========================================================= */

.header__mobile-topbar,
.header__mobile-toggle {
  display: none;
}

@media (max-width: 991px) {
  .header--modern {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 5000 !important;
    pointer-events: none;
  }

  .header--modern > .container {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    pointer-events: auto;
  }

  .header__mobile-topbar {
    min-height: 38px;
    display: flex !important;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    background: rgba(32, 32, 32, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px);
  }

  .header__mobile-contact {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
  }

  .header__mobile-contact span {
    color: #55acee;
    font-size: 12px;
  }

  .header__mobile-socials {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .header__mobile-socials a {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    transition:
      color 0.22s ease,
      transform 0.22s ease,
      border-color 0.22s ease,
      box-shadow 0.22s ease;
  }

  .header__mobile-socials a:hover {
    color: #fff;
    transform: translateY(-1px);
    border-color: rgba(85, 172, 238, 0.55);
    box-shadow: 0 0 22px rgba(85, 172, 238, 0.18);
  }

  .header__mobile-socials svg {
    width: 15px;
    height: 15px;
    display: block;
  }

  .header__bar {
    position: relative !important;
    min-height: 76px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    padding: 0 18px !important;
    background: rgba(39, 39, 39, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.16) !important;
    backdrop-filter: blur(18px);
  }

  .header__logo {
    position: relative;
    z-index: 3;
    display: inline-flex !important;
    align-items: center;
    flex: 0 0 auto;
  }

  .header__logo img {
    width: 118px !important;
    max-width: 118px !important;
    height: auto !important;
  }

  .header__socials {
    display: none !important;
  }

  .header__mobile-toggle {
    position: relative;
    z-index: 4;
    width: 46px;
    height: 46px;
    display: inline-grid !important;
    place-items: center;
    flex: 0 0 auto;
    margin-left: auto;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    cursor: pointer;
  }

  .header__mobile-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #fff;
    transition:
      transform 0.24s ease,
      opacity 0.24s ease;
  }

  .header__mobile-toggle span + span {
    margin-top: 5px;
  }

  .header__mobile-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header__mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .header__mobile-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__nav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease;
  }

  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header__menu {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 12px !important;
    list-style: none !important;
    border-radius: 24px !important;
    background:
      radial-gradient(circle at 90% 0%, rgba(85, 172, 238, 0.16), transparent 40%),
      rgba(24, 24, 24, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.13) !important;
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(22px);
  }

  .header__menu li {
    width: 100% !important;
  }

  .header__menu li a {
    width: 100% !important;
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition:
      color 0.22s ease,
      background 0.22s ease,
      box-shadow 0.22s ease;
  }

  .header__menu li a:hover,
  .header__menu li.active a,
  .header__menu li.is-current a,
  .header__menu li a.active,
  .header__menu li a.is-active,
  .header__menu li a[aria-current="page"] {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.07) !important;
    box-shadow:
      inset 0 0 0 1px rgba(85, 172, 238, 0.26),
      0 0 28px rgba(85, 172, 238, 0.12) !important;
  }

  .header__menu li a::before,
  .header__menu li a::after {
    display: none !important;
  }

  .header--modern.is-menu-open .header__bar {
    border-color: rgba(85, 172, 238, 0.32) !important;
    box-shadow:
      0 28px 72px rgba(0, 0, 0, 0.42),
      0 0 36px rgba(85, 172, 238, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  }

  body.webpage--parallax #pagepiling > .section {
    scroll-margin-top: 124px;
  }

  .rqs-hero-modern .scroll-wrap,
  .rqs-general-modern .scroll-wrap,
  .rqs-featured-section .scroll-wrap,
  .rqs-products-modern .scroll-wrap,
  .rqs-contact-modern .scroll-wrap {
    padding-top: 128px !important;
  }
}

@media (max-width: 575px) {
  .header__mobile-topbar {
    min-height: 36px;
    padding: 0 14px;
  }

  .header__bar {
    min-height: 72px !important;
    padding: 0 14px !important;
  }

  .header__logo img {
    width: 108px !important;
    max-width: 108px !important;
  }

  .header__mobile-toggle {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .rqs-hero-modern .scroll-wrap,
  .rqs-general-modern .scroll-wrap,
  .rqs-featured-section .scroll-wrap,
  .rqs-products-modern .scroll-wrap,
  .rqs-contact-modern .scroll-wrap {
    padding-top: 122px !important;
  }
}

/* Ajustes mínimos propios del catálogo */
.rqs-catalogo .header--modern {
  z-index: 5000;
}

.rqs-catalogo .header__logo img {
  width: 86px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.rqs-catalogo .rqs-catalog-hero {
  padding-top: 150px;
}

.rqs-catalogo .rqs-nav-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .rqs-catalogo .rqs-catalog-hero {
    padding-top: 132px;
  }
}

@media (max-width: 575px) {
  .rqs-catalogo .rqs-catalog-hero {
    padding-top: 124px;
  }
}

/* RQS catálogo: quitar acento azul del logo al hacer hover */
.rqs-catalogo .header--modern .header__logo,
.rqs-catalogo .header--modern .header__logo:hover,
.rqs-catalogo .header--modern .header__logo:focus-visible {
  box-shadow: none !important;
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.rqs-catalogo .header--modern .header__logo::before,
.rqs-catalogo .header--modern .header__logo::after,
.rqs-catalogo .header--modern .header__logo:hover::before,
.rqs-catalogo .header--modern .header__logo:hover::after,
.rqs-catalogo .header--modern .header__logo:focus-visible::before,
.rqs-catalogo .header--modern .header__logo:focus-visible::after {
  content: none !important;
  opacity: 0 !important;
  box-shadow: none !important;
}

.rqs-catalogo .header--modern .header__logo img,
.rqs-catalogo .header--modern .header__logo:hover img,
.rqs-catalogo .header--modern .header__logo:focus-visible img {
  transform: none !important;
  filter: brightness(0) invert(1);
}

/* =========================================================
   RQS catálogo: filtros y tarjetas alineadas al landing
   ========================================================= */

/* Encabezado de sección más integrado al look del landing */
.rqs-catalogo .rqs-section-head {
  position: relative;
  align-items: flex-end;
  margin-bottom: 26px;
}

.rqs-catalogo .rqs-section-head h2 {
  max-width: 680px;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
}

.rqs-catalogo .rqs-section-head p {
  color: rgba(255, 255, 255, 0.56);
}

/* Panel de filtros tipo glass premium, menos “formulario pesado” */
.rqs-catalogo .rqs-filter-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(85, 172, 238, 0.13), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(85, 172, 238, 0.09), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
}

.rqs-catalogo .rqs-filter-shell::before {
  content: "";
  position: absolute;
  inset: -1px auto auto -1px;
  width: 42%;
  height: 3px;
  background: linear-gradient(90deg, rgba(85, 172, 238, 0.95), transparent);
  opacity: 0.9;
}

.rqs-catalogo .rqs-filter-shell .form-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.rqs-catalogo .rqs-filter-shell .form-control,
.rqs-catalogo .rqs-filter-shell .form-select {
  height: 48px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(12, 18, 26, 0.64), rgba(12, 18, 26, 0.42));
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.rqs-catalogo .rqs-filter-shell .form-control:focus,
.rqs-catalogo .rqs-filter-shell .form-select:focus {
  background:
    linear-gradient(180deg, rgba(15, 23, 34, 0.78), rgba(15, 23, 34, 0.56));
  border-color: rgba(85, 172, 238, 0.72);
  box-shadow:
    0 0 0 4px rgba(85, 172, 238, 0.12),
    0 16px 34px rgba(0, 0, 0, 0.18);
}

/* Chips más similares a los pills del landing */
.rqs-catalogo .rqs-chip,
.rqs-catalogo .rqs-mini-btn {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
}

.rqs-catalogo .rqs-chip:hover,
.rqs-catalogo .rqs-chip.is-active,
.rqs-catalogo .rqs-mini-btn:hover {
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(85, 172, 238, 0.28), transparent 42%),
    rgba(85, 172, 238, 0.12);
  border-color: rgba(85, 172, 238, 0.48);
  box-shadow: 0 0 30px rgba(85, 172, 238, 0.14);
}

/* Tarjetas de producto más premium y menos “bloque blanco” */
.rqs-catalogo .rqs-product-card {
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 100%, rgba(85, 172, 238, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(38, 49, 65, 0.82), rgba(24, 31, 43, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rqs-catalogo .rqs-product-card::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 3px;
  background: linear-gradient(90deg, rgba(85, 172, 238, 0.82), transparent 58%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.rqs-catalogo .rqs-product-card:hover::before,
.rqs-catalogo .rqs-product-card.is-selected::before {
  opacity: 1;
}

.rqs-catalogo .rqs-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(85, 172, 238, 0.48);
  box-shadow:
    0 38px 92px rgba(0, 0, 0, 0.36),
    0 0 46px rgba(85, 172, 238, 0.12);
}

/* Área de imagen más parecida a las tarjetas del landing */
.rqs-catalogo .rqs-product-card__media {
  height: 210px;
  margin: 12px 12px 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.55) 36%, rgba(255, 255, 255, 0.08) 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.rqs-catalogo .rqs-product-card__media img {
  max-height: 166px;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.26));
}

/* Badge destacado más limpio */
.rqs-catalogo .rqs-featured-pill {
  top: 22px;
  left: 22px;
  min-height: 26px;
  padding: 0 11px;
  background: rgba(11, 18, 28, 0.74);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

/* Checkbox selección como acción premium */
.rqs-catalogo .rqs-product-card__select {
  top: 22px;
  right: 22px;
}

.rqs-catalogo .rqs-product-card__select input {
  width: 28px;
  height: 28px;
  background-color: rgba(12, 18, 26, 0.74);
  border-color: rgba(255, 255, 255, 0.2);
}

.rqs-catalogo .rqs-product-card__select input:checked {
  background-color: #55acee;
  border-color: #55acee;
  box-shadow: 0 0 0 5px rgba(85, 172, 238, 0.16);
}

/* Cuerpo de tarjeta más parecido al lenguaje visual del landing */
.rqs-catalogo .rqs-product-card__body {
  padding: 20px 20px 22px;
}

.rqs-catalogo .rqs-product-card h3 {
  min-height: auto;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.rqs-catalogo .rqs-product-card__info {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.66);
}

.rqs-catalogo .rqs-product-card__info div {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.rqs-catalogo .rqs-product-card__info strong {
  color: rgba(255, 255, 255, 0.82);
}

.rqs-catalogo .rqs-product-card__desc {
  color: rgba(255, 255, 255, 0.62);
}

/* Botones de tarjeta alineados al estilo del landing */
.rqs-catalogo .rqs-card-btn {
  min-height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.13);
}

.rqs-catalogo .rqs-card-btn:hover {
  background: rgba(85, 172, 238, 0.13);
  border-color: rgba(85, 172, 238, 0.44);
}

.rqs-catalogo .rqs-card-btn--accent {
  background: linear-gradient(135deg, #55acee, #367dc1);
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(85, 172, 238, 0.2);
}

.rqs-catalogo .rqs-card-btn--accent:hover {
  background: linear-gradient(135deg, #65baff, #3d88cf);
  box-shadow: 0 20px 46px rgba(85, 172, 238, 0.26);
}

/* CTA inferior más parecido a una banda premium del landing */
.rqs-catalogo .rqs-catalog-cta__card {
  background:
    radial-gradient(circle at 100% 50%, rgba(85, 172, 238, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Footer con logo blanco igual al header */
.rqs-catalogo .rqs-footer img {
  filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
  .rqs-catalogo .rqs-filter-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .rqs-catalogo .rqs-product-card__media {
    height: 190px;
  }

  .rqs-catalogo .rqs-product-card__actions {
    grid-template-columns: 1fr;
  }
}

/* RQS catálogo: desplegable premium de categorías en el menú */
.rqs-catalogo .header--modern .header__menu-dropdown {
  position: relative;
}

.rqs-catalogo .header--modern .header__catalog-dropdown {
  position: relative;
}

.rqs-catalogo .header--modern .header__catalog-dropdown summary {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  list-style: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.rqs-catalogo .header--modern .header__catalog-dropdown summary::-webkit-details-marker {
  display: none;
}

.rqs-catalogo .header--modern .header__catalog-dropdown summary:hover,
.rqs-catalogo .header--modern .header__catalog-dropdown[open] summary,
.rqs-catalogo .header--modern .header__menu-dropdown.active summary,
.rqs-catalogo .header--modern .header__menu-dropdown.is-current summary {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(85, 172, 238, 0.32), transparent 58%),
    rgba(85, 172, 238, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(85, 172, 238, 0.28),
    0 0 30px rgba(85, 172, 238, 0.18);
}

.rqs-catalogo .header--modern .header__dropdown-arrow {
  font-size: 14px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 0.25s ease;
}

.rqs-catalogo .header--modern .header__catalog-dropdown[open] .header__dropdown-arrow {
  transform: translateY(-1px) rotate(180deg);
}

.rqs-catalogo .header--modern .header__submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(360px, 90vw);
  padding: 16px;
  border-radius: 22px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 18% 0%, rgba(85, 172, 238, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(39, 51, 68, 0.96), rgba(19, 25, 35, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
}

.rqs-catalogo .header--modern .header__submenu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(39, 51, 68, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rqs-catalogo .header--modern .header__submenu-title {
  display: block;
  margin-bottom: 10px;
  padding: 0 4px;
  color: #55acee;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rqs-catalogo .header--modern .header__submenu-item {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  margin: 3px 0;
  border-radius: 13px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.02em;
  cursor: default;
  transition: all 0.2s ease;
}

.rqs-catalogo .header--modern .header__submenu-item:hover {
  color: #fff;
  background: rgba(85, 172, 238, 0.11);
  border-color: rgba(85, 172, 238, 0.24);
  transform: translateX(3px);
}

@media (min-width: 992px) {
  .rqs-catalogo .header--modern .header__catalog-dropdown:not([open]) .header__submenu {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    pointer-events: none;
  }

  .rqs-catalogo .header--modern .header__catalog-dropdown[open] .header__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 991px) {
  .rqs-catalogo .header--modern .header__menu-dropdown {
    width: 100%;
  }

  .rqs-catalogo .header--modern .header__catalog-dropdown summary {
    width: 100%;
    justify-content: center;
  }

  .rqs-catalogo .header--modern .header__submenu {
    position: static;
    width: 100%;
    margin-top: 10px;
    transform: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .rqs-catalogo .header--modern .header__submenu::before {
    display: none;
  }
}

/* RQS catálogo: Catálogo con enlace independiente y flecha desplegable */
.rqs-catalogo .header--modern .header__catalog-dropdown {
  display: inline-flex;
  align-items: center;
  position: relative;
  min-height: 42px;
  border-radius: 999px;
}

.rqs-catalogo .header--modern .header__catalog-link {
  min-height: 42px;
  padding: 0 8px 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px 0 0 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rqs-catalogo .header--modern .header__dropdown-toggle {
  width: 34px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0 999px 999px 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.rqs-catalogo .header--modern .header__catalog-dropdown:hover,
.rqs-catalogo .header--modern .header__catalog-dropdown.is-open,
.rqs-catalogo .header--modern .header__menu-dropdown.active .header__catalog-dropdown,
.rqs-catalogo .header--modern .header__menu-dropdown.is-current .header__catalog-dropdown {
  background:
    radial-gradient(circle at 50% 0%, rgba(85, 172, 238, 0.32), transparent 58%),
    rgba(85, 172, 238, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(85, 172, 238, 0.28),
    0 0 30px rgba(85, 172, 238, 0.18);
}

.rqs-catalogo .header--modern .header__catalog-dropdown:hover .header__catalog-link,
.rqs-catalogo .header--modern .header__catalog-dropdown:hover .header__dropdown-toggle,
.rqs-catalogo .header--modern .header__catalog-dropdown.is-open .header__catalog-link,
.rqs-catalogo .header--modern .header__catalog-dropdown.is-open .header__dropdown-toggle,
.rqs-catalogo .header--modern .header__menu-dropdown.active .header__catalog-link,
.rqs-catalogo .header--modern .header__menu-dropdown.active .header__dropdown-toggle,
.rqs-catalogo .header--modern .header__menu-dropdown.is-current .header__catalog-link,
.rqs-catalogo .header--modern .header__menu-dropdown.is-current .header__dropdown-toggle {
  color: #fff;
}

.rqs-catalogo .header--modern .header__catalog-dropdown.is-open .header__dropdown-arrow {
  transform: translateY(-1px) rotate(180deg);
}

.rqs-catalogo .header--modern .header__submenu {
  width: min(330px, calc(100vw - 32px));
  max-height: min(500px, calc(100vh - 150px));
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(85, 172, 238, 0.55) rgba(255, 255, 255, 0.06);
  z-index: 7000;
}

@media (min-width: 992px) {
  .rqs-catalogo .header--modern .header__catalog-dropdown:not(.is-open) .header__submenu {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    pointer-events: none;
  }

  .rqs-catalogo .header--modern .header__catalog-dropdown.is-open .header__submenu,
  .rqs-catalogo .header--modern .header__menu-dropdown:hover .header__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 991px) {
  .rqs-catalogo .header--modern .header__catalog-dropdown {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .rqs-catalogo .header--modern .header__submenu {
    max-height: 360px;
    overflow-y: auto;
  }

  .rqs-catalogo .header--modern .header__catalog-dropdown:not(.is-open) .header__submenu {
    display: none;
  }

  .rqs-catalogo .header--modern .header__catalog-dropdown.is-open .header__submenu {
    display: block;
  }
}

/* =========================================================
   RQS catálogo móvil: dropdown de categorías compacto
   Solo afecta pantallas móviles/tablet
   ========================================================= */
@media (max-width: 991px) {
  .rqs-catalogo .header--modern .header__menu-dropdown {
    width: 100%;
  }

  .rqs-catalogo .header--modern .header__catalog-dropdown {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 46px;
    align-items: center;
    gap: 0;
    min-height: 48px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035) !important;
    box-shadow: inset 0 0 0 1px rgba(85, 172, 238, 0.16) !important;
    overflow: hidden;
  }

  .rqs-catalogo .header--modern .header__catalog-dropdown:hover,
  .rqs-catalogo .header--modern .header__catalog-dropdown.is-open,
  .rqs-catalogo .header--modern .header__menu-dropdown.active .header__catalog-dropdown,
  .rqs-catalogo .header--modern .header__menu-dropdown.is-current .header__catalog-dropdown {
    background: rgba(85, 172, 238, 0.08) !important;
    box-shadow: inset 0 0 0 1px rgba(85, 172, 238, 0.32) !important;
  }

  .rqs-catalogo .header--modern .header__catalog-dropdown::before,
  .rqs-catalogo .header--modern .header__catalog-dropdown::after,
  .rqs-catalogo .header--modern .header__catalog-link::before,
  .rqs-catalogo .header--modern .header__catalog-link::after,
  .rqs-catalogo .header--modern .header__dropdown-toggle::before,
  .rqs-catalogo .header--modern .header__dropdown-toggle::after,
  .rqs-catalogo .header--modern .header__submenu::before,
  .rqs-catalogo .header--modern .header__submenu::after {
    content: none !important;
    display: none !important;
  }

  .rqs-catalogo .header--modern .header__catalog-link {
    width: 100%;
    min-height: 48px;
    padding: 0 0 0 46px;
    justify-content: center;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
  }

  .rqs-catalogo .header--modern .header__dropdown-toggle {
    width: 46px;
    min-height: 48px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
  }

  .rqs-catalogo .header--modern .header__dropdown-arrow {
    font-size: 15px;
    transform: translateY(-1px);
  }

  .rqs-catalogo .header--modern .header__catalog-dropdown.is-open .header__dropdown-arrow {
    transform: translateY(-1px) rotate(180deg);
  }

  .rqs-catalogo .header--modern .header__catalog-dropdown:not(.is-open) .header__submenu {
    display: none !important;
  }

  .rqs-catalogo .header--modern .header__catalog-dropdown.is-open .header__submenu {
    display: block !important;
  }

  .rqs-catalogo .header--modern .header__submenu {
    grid-column: 1 / -1;
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-height: 280px;
    margin: 8px 0 0;
    padding: 14px;
    transform: none !important;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(24, 38, 54, 0.96), rgba(15, 22, 32, 0.96)) !important;
    border: 1px solid rgba(85, 172, 238, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    overflow-y: auto;
    pointer-events: auto;
  }

  .rqs-catalogo .header--modern .header__submenu-title {
    margin-bottom: 8px;
    text-align: left;
  }

  .rqs-catalogo .header--modern .header__submenu-item {
    min-height: 36px;
    padding: 0 12px;
    margin: 2px 0;
    justify-content: flex-start;
    font-size: 12px;
    text-align: left;
    border-radius: 12px;
  }

  .rqs-catalogo .header--modern .header__submenu-item:hover {
    transform: none;
  }
}
