@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --home-max-width: min(1240px, 92vw);
}

.home-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.home-orbs__item {
  position: absolute;
  top: -30%;
  left: var(--left, 50%);
  width: var(--size, 240px);
  height: var(--size, 240px);
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    hsla(var(--hue, 210), 85%, 72%, 0.65) 0%,
    hsla(var(--hue, 210), 80%, 52%, 0.22) 55%,
    transparent 85%
  );
  box-shadow: 0 30px 80px hsla(var(--hue, 210), 85%, 35%, 0.18);
  opacity: 0;
  filter: saturate(1.15);
  animation: homeOrbFloat var(--duration, 28s) linear infinite;
  animation-delay: var(--delay, 0s);
}

@media (max-width: 1024px) {
  .home-orbs {
    display: none;
  }
}

@keyframes homeOrbFloat {
  0% {
    transform: translate3d(var(--shift-start, 0), -120%, 0);
    opacity: 0;
  }
  15% {
    opacity: 0.45;
  }
  50% {
    transform: translate3d(var(--shift-mid, 0), 25vh, 0);
    opacity: 0.6;
  }
  85% {
    opacity: 0.35;
  }
  100% {
    transform: translate3d(var(--shift-end, 0), 140vh, 0);
    opacity: 0;
  }
}

.home-cinematic {
  width: var(--home-max-width);
  margin: clamp(4rem, 7vw, 5.6rem) auto clamp(3rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.6rem, 5vw, 3.6rem);
  position: relative;
  align-items: start;
}

.home-cinematic__viewport {
  position: sticky;
  top: clamp(5rem, 9vw, 7rem);
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: clamp(1.4rem, 3vw, 2rem);
  overflow: hidden;
  box-shadow: 0 48px 82px rgba(8, 18, 67, 0.22);
  background: #050c21;
}

.home-cinematic__viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.06);
  transition: opacity 0.45s ease, transform 0.6s ease;
}

.home-cinematic__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(5, 11, 28, 0.82) 0%,
    rgba(8, 18, 67, 0.55) 42%,
    rgba(10, 24, 77, 0.12) 100%
  );
  mix-blend-mode: multiply;
}

.home-cinematic__overlay {
  position: absolute;
  inset: 0;
  padding: clamp(2.2rem, 3.8vw, 3.6rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.1rem;
  color: #ffffff;
}

.home-cinematic__pill {
  align-self: flex-start;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  font-weight: 600;
}

.home-cinematic__title {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  line-height: 1;
  max-width: 20ch;
  font-weight: 600;
}

.home-cinematic__caption {
  max-width: 52ch;
  font-size: clamp(.8rem, 1.5vw, 1rem);
  color: rgba(235, 242, 255, 0.9);
}

.home-cinematic__timeline {
  display: grid;
  gap: clamp(2.6rem, 4vw, 3.4rem);
}

.home-cinematic__slide {
  position: relative;
  padding-left: clamp(1.6rem, 3vw, 2.2rem);
  padding-right: clamp(1rem, 2vw, 1.6rem);
  display: grid;
  gap: 0.85rem;
  color: #0d1f51;
  transition: transform 0.3s ease, color 0.3s ease;
  isolation: isolate;
}

.home-cinematic__slide::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 6%;
  bottom: 14%;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--cine-accent, #ff7b1a) 80%, transparent) 0%,
    transparent 90%
  );
  opacity: 0.45;
  transition: opacity 0.3s ease, width 0.3s ease;
  z-index: -1;
}

.home-cinematic__slide::after {
  content: "";
  position: absolute;
  inset: -28% -22% -22% 10%;
  background: radial-gradient(
    circle at 35% 35%,
    color-mix(in srgb, var(--cine-accent, #ff7b1a) 32%, transparent) 0%,
    rgba(255, 255, 255, 0.32) 52%,
    transparent 78%
  );
  filter: blur(42px);
  opacity: 0.28;
  transition: opacity 0.45s ease, transform 0.45s ease;
  z-index: -2;
}

.home-cinematic__slide.is-active {
  transform: translateX(6px);
}

.home-cinematic__slide.is-active::before {
  opacity: 1;
  width: 6px;
}

.home-cinematic__slide.is-active::after {
  opacity: 0.46;
  transform: translate3d(0, -12px, 0);
}

.home-cinematic__index {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(12, 31, 99, 0.55);
}

.home-cinematic__slide h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  margin: 0;
  font-weight: 700;
  color: color-mix(in srgb, var(--cine-accent, #ff7b1a) 35%, #0d1f51);
}

.home-cinematic__slide p {
  margin: 0;
  font-size: 1rem;
  color: rgba(8, 18, 67, 0.78);
}

.home-cinematic__progress {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  grid-column: 1 / -1;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.6rem, 3.2vw, 2.4rem);
}

.home-cinematic__progress-bar {
  position: relative;
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(12, 31, 99, 0.12);
  overflow: hidden;
}

.home-cinematic__progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(var(--cine-progress, 0.25));
  transform-origin: left center;
  background: linear-gradient(
    90deg,
    var(--lenis-accent, #ff7b1a),
    rgba(255, 255, 255, 0.95)
  );
  transition: transform 0.35s ease;
}

.home-cinematic__hint {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(8, 18, 67, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.home-cinematic__hint i {
  color: var(--lenis-accent, #ff7b1a);
}

.home-cinematic__header {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.home-cinematic__header > div {
  display: grid;
  gap: 0.4rem;
}

.home-cinematic__lead {
  margin: 0.75rem 0 0;
  line-height: 1.65;
  font-size: 1.02rem;
  color: rgba(8, 18, 67, 0.68);
  max-width: 45ch;
}

.home-cinematic__chips {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.home-cinematic__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.2rem;
  border-radius: 1rem 1.2rem 1.2rem 1rem;
  background: linear-gradient(
    115deg,
    color-mix(
        in srgb,
        var(--cine-accent, #ff7b1a) 18%,
        rgba(255, 255, 255, 0.28)
      )
      0%,
    rgba(255, 255, 255, 0.72) 100%
  );
  color: rgba(8, 18, 67, 0.78);
  font-size: 0.96rem;
  line-height: 1.55;
  box-shadow: 0 20px 38px rgba(12, 31, 99, 0.08);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.home-cinematic__chip::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: color-mix(
    in srgb,
    var(--cine-accent, #ff7b1a) 45%,
    rgba(255, 255, 255, 0.35)
  );
  box-shadow: 0 0 12px
    color-mix(
      in srgb,
      var(--cine-accent, #ff7b1a) 65%,
      rgba(255, 255, 255, 0.45)
    );
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .home-cinematic__header {
    flex-direction: column;
    gap: 0.8rem;
  }

  .home-cinematic__lead {
    max-width: 100%;
  }

  .home-cinematic__chips {
    gap: 0.8rem;
  }
}

.home-b2b {
  --lenis-accent: #ff7b1a;
  --home-bg: linear-gradient(135deg, #f8fbff 0%, #eef1ff 32%, #fbf2ff 100%);
  position: relative;
  z-index: 1;
  padding-bottom: 6rem;
  color: #081243;
}

.home-b2b__hero {
  padding: clamp(4rem, 7vw, 6rem) 0 4rem;
  background: var(--home-bg);
}

.home-b2b__grid {
  width: var(--home-max-width);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.home-b2b__visual {
  position: sticky;
  top: clamp(5rem, 12vw, 7rem);
  min-height: clamp(480px, 50vw, 640px);
  border-radius: clamp(1.75rem, 4vw, 2.75rem);
  overflow: hidden;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.65),
      rgba(15, 23, 42, 0.15)
    ),
    #0d1f51;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 40px 80px rgba(8, 18, 67, 0.22);
}

.home-b2b__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  transition: opacity 0.8s ease, transform 1.2s ease;
  transform: scale(1.02);
  mix-blend-mode: lighten;
  -webkit-mask-image: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.46) 62%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.46) 62%,
    transparent 100%
  );
  filter: saturate(1.05);
}

.home-b2b__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 60% 30%,
    color-mix(in srgb, var(--lenis-accent) 40%, transparent) 0%,
    transparent 60%
  );
  mix-blend-mode: screen;
  pointer-events: none;
  transition: background 0.8s ease;
}

.home-b2b__texture {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      125deg,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 45%
    ),
    linear-gradient(45deg, rgba(12, 31, 99, 0.4) 0%, transparent 55%);
  mix-blend-mode: multiply;
  opacity: 0.6;
  pointer-events: none;
}

.home-b2b__dot {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--lenis-accent) 60%, rgba(255, 255, 255, 0.7)) 0%,
    transparent 65%
  );
  filter: blur(0.5px);
}

.home-b2b__dot--xl {
  width: clamp(220px, 28vw, 280px);
  height: clamp(220px, 28vw, 280px);
  bottom: -70px;
  left: clamp(-60px, -8vw, -16px);
}

.home-b2b__dot--md {
  width: clamp(140px, 22vw, 200px);
  height: clamp(140px, 22vw, 200px);
  top: clamp(40px, 10vw, 90px);
  right: clamp(-50px, -4vw, 24px);
}

.home-b2b__dot--sm {
  width: clamp(90px, 14vw, 140px);
  height: clamp(90px, 14vw, 140px);
  top: 22%;
  left: 18%;
}

.home-b2b__dot--ring {
  width: clamp(180px, 24vw, 240px);
  height: clamp(180px, 24vw, 240px);
  right: 14%;
  bottom: 18%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  box-shadow: 0 0 140px rgba(255, 255, 255, 0.22) inset;
}

.home-b2b__badge {
  position: absolute;
  left: clamp(24px, 6vw, 48px);
  top: clamp(24px, 7vw, 60px);
  display: inline-flex;
  flex-direction: column;
  padding: 12px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  gap: 2px;
  box-shadow: 0 18px 32px rgba(9, 14, 64, 0.2);
}

.home-b2b__timeline {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3.5vw, 3rem);
}

.home-b2b__timeline-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-b2b__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.12);
  color: color-mix(in srgb, var(--lenis-accent) 60%, #0b1f63);
  transition: background 0.4s ease, color 0.4s ease;
}

.home-b2b__title {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 800;
  color: #081243;
}

.home-b2b__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(8, 18, 67, 0.75);
  max-width: 46ch;
}

.home-b2b__panels {
  display: grid;
  gap: clamp(1.4rem, 2vw, 1.8rem);
}

.home-panel {
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.92),
    rgba(243, 245, 255, 0.75)
  );
  border: 1px solid rgba(12, 31, 99, 0.08);
  border-radius: 1.6rem;
  padding: clamp(1.6rem, 2.8vw, 2rem);
  display: grid;
  gap: 1rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  transition: border 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  position: relative;
  isolation: isolate;
}

.home-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 15% 15%,
    color-mix(in srgb, var(--lenis-accent) 18%, transparent) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: -1;
}

.home-panel.is-active {
  border-color: color-mix(
    in srgb,
    var(--lenis-accent) 35%,
    rgba(12, 31, 99, 0.2)
  );
  box-shadow: 0 22px 55px rgba(12, 31, 99, 0.14);
  transform: translateY(-3px);
}

.home-panel.is-active::after {
  opacity: 1;
}

.home-panel__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(8, 18, 67, 0.64);
}

.home-panel__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(12, 31, 99, 0.08);
  font-weight: 700;
}

.home-panel__tag {
  font-weight: 600;
}

.home-panel__title {
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  line-height: 1.3;
  color: #101c54;
  font-weight: 700;
}

.home-panel__copy {
  font-size: 1rem;
  color: rgba(8, 18, 67, 0.78);
}

.home-panel__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: rgba(8, 18, 67, 0.78);
}

.home-panel__bullets i {
  color: color-mix(in srgb, var(--lenis-accent) 65%, #0b1f63);
  margin-right: 0.75rem;
}

.home-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  background: linear-gradient(
    120deg,
    color-mix(in srgb, var(--lenis-accent) 78%, #ffffff 22%),
    var(--lenis-accent)
  );
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(12, 31, 99, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-panel__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(12, 31, 99, 0.18);
}

.home-panel__cta i {
  font-size: 0.95rem;
}

.home-b2b__timeline-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-b2b__progress {
  flex: 1;
  min-width: 160px;
  height: 6px;
  border-radius: 999px;
  background: rgba(12, 31, 99, 0.12);
  overflow: hidden;
  position: relative;
}

.home-b2b__progress-bar {
  position: absolute;
  inset: 0;
  transform: scaleX(var(--progress, 0.08));
  transform-origin: left center;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95),
    var(--lenis-accent)
  );
  transition: transform 0.25s ease, background 0.45s ease;
}

.home-b2b__hint {
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(8, 18, 67, 0.7);
}

.home-b2b__hint i {
  color: color-mix(in srgb, var(--lenis-accent) 70%, #0b1f63);
}

.home-b2b__pillars {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #f6f8ff4d 0%, #ffffff66 58%);
}

.home-section__inner {
  width: var(--home-max-width);
  margin: 0 auto;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.home-pillar {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 1.5rem;
  padding: clamp(1.8rem, 3vw, 2.2rem);
  border: 1px solid rgba(12, 31, 99, 0.08);
  box-shadow: 0 12px 32px rgba(12, 31, 99, 0.08);
  display: grid;
  gap: 1rem;
  text-align: left;
}

.home-pillar__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(12, 31, 99, 0.08);
  display: grid;
  place-items: center;
  color: #0b1f63;
  font-size: 1.6rem;
}

.home-pillar h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.home-pillar p {
  margin: 0;
  color: rgba(8, 18, 67, 0.72);
  font-size: 0.95rem;
}

.home-collection {
  padding: 4.5rem 0;
  background: #ffffff;
}

.home-collection--alternate {
  background: linear-gradient(180deg, #fafdff 0%, #ffffff 100%);
}

.home-section__header {
  width: var(--home-max-width);
  margin: 0 auto 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.home-section__header--center {
  justify-content: center;
  text-align: center;
}

.home-section__header--center > div {
  max-width: 64ch;
}

.home-section__header--split {
  align-items: center;
}

.home-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(12, 31, 99, 0.08);
  color: #0d1f51;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-chip--light {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.home-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  background: var(--lenis-accent);
  color: #fff;
  border: none;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(187, 8, 17, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(12, 31, 99, 0.26);
}

.home-button--light {
  background: #fff;
  color: #0d1f51;
  box-shadow: 0 18px 36px rgba(12, 31, 99, 0.18);
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0d1f51;
  font-weight: 600;
  text-decoration: none;
}

.home-link i {
  transition: transform 0.25s ease;
}

.home-link:hover i {
  transform: translateX(4px);
}

.home-section__grid {
  width: var(--home-max-width);
  margin: 0 auto;
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.home-showcase {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #fff 0%, rgba(240, 244, 255, 0.7) 100%);
}

.home-showcase__inner {
  width: var(--home-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.home-showcase__cards {
  display: grid;
  gap: 1.4rem;
}

.home-showcase__card {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(12, 31, 99, 0.07);
  box-shadow: 0 18px 42px rgba(12, 31, 99, 0.08);
  display: grid;
  gap: 1rem;
  transition: border 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-showcase__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top left,
    rgba(99, 102, 241, 0.12),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.home-showcase__card.is-active {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 26px 52px rgba(12, 31, 99, 0.16);
  transform: translateY(-4px);
}

.home-showcase__card.is-active::after {
  opacity: 1;
}

.home-showcase__card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-showcase__index {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(12, 31, 99, 0.1);
  font-weight: 700;
  color: #0d1f51;
}

.home-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  background: rgba(12, 31, 99, 0.08);
  color: #0d1f51;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-showcase__card.is-active .home-showcase__cta {
  background: linear-gradient(
    120deg,
    rgba(99, 102, 241, 0.32),
    rgba(37, 99, 235, 0.48)
  );
  color: #ffffff;
}

.home-showcase__cta:hover {
  transform: translateX(4px);
}

.home-showcase__media {
  display: grid;
  gap: 1.5rem;
}

.home-showcase__frame {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 16 / 8.5;
  background: linear-gradient(
    160deg,
    rgba(12, 31, 99, 0.85),
    rgba(15, 76, 129, 0.6)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 64px rgba(12, 31, 99, 0.2);
}

.home-showcase__frame img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  mix-blend-mode: lighten;
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.home-showcase__halo {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(99, 102, 241, 0.38),
    transparent 60%
  );
  mix-blend-mode: screen;
  transition: background 0.45s ease;
}

.home-showcase__glimmer {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.18),
    transparent 70%
  );
  opacity: 0.7;
}

.home-showcase__stats {
  display: grid;
  gap: 1rem;
}

.home-stat {
  padding: 1.25rem 1.4rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 31, 99, 0.08);
  box-shadow: 0 18px 36px rgba(12, 31, 99, 0.12);
  display: grid;
  gap: 0.35rem;
}

.home-stat strong {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b1f63;
}

.home-stat__hint {
  font-size: 0.85rem;
  color: rgba(8, 18, 67, 0.65);
}

.home-club {
  padding: 4.5rem 0;
  background: linear-gradient(120deg, #0c1f63be 0%, #0a3194d3 50%, #0451b596 100%);
  color: #ffffff;
}

.home-club__card {
  width: var(--home-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.home-club__copy {
  display: grid;
  gap: 1.4rem;
}

.home-club__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.home-club__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.home-club__benefits i {
  color: #facc15;
  margin-right: 0.6rem;
}

.home-club__visual {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.8rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.2);
}

.home-club__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.home-brands {
  padding: 4.5rem 0;
  background: #ffffff;
}

.home-brands__swiper {
  width: var(--home-max-width);
  margin: 0 auto;
  padding: 1.2rem 0;
}

.home-brand__logo {
  background: rgba(12, 31, 99, 0.05);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(12, 31, 99, 0.06);
}

.home-brand__logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(12, 31, 99, 0.18);
}

.home-brand__logo img {
  width: min(180px, 100%);
  height: auto;
  object-fit: contain;
  filter: saturate(1.1);
}

.home-insights {
  padding: 4.5rem 0;
  background: linear-gradient(
    180deg,
    rgba(239, 244, 255, 0.65) 0%,
    #ffffff 100%
  );
}

.home-insights__timeline {
  width: var(--home-max-width);
  margin: 0 auto;
  display: grid;
  gap: 2.4rem;
}

.home-insights__rail {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(12, 31, 99, 0.12);
  overflow: hidden;
}

.home-insights__track {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(56, 189, 248, 0.85),
    var(--lenis-accent)
  );
  transform-origin: left center;
  transform: scaleX(var(--roadmap-progress, 0.25));
  transition: transform 0.3s ease, background 0.3s ease;
}

.home-insights__cards {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.home-insight {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 31, 99, 0.08);
  box-shadow: 0 16px 38px rgba(12, 31, 99, 0.1);
  display: grid;
  gap: 0.9rem;
  transition: border 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-insight.is-active {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 24px 48px rgba(12, 31, 99, 0.16);
  transform: translateY(-4px);
}

.home-insight__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  background: rgba(12, 31, 99, 0.08);
  font-size: 0.8rem;
  font-weight: 600;
}

.home-insight__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  background: rgba(12, 31, 99, 0.08);
  color: #0d1f51;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-insight.is-active .home-insight__cta {
  background: linear-gradient(
    120deg,
    rgba(56, 189, 248, 0.22),
    rgba(14, 165, 233, 0.38)
  );
  color: #05264a;
}

.home-insight__cta:hover {
  transform: translateX(4px);
}

.home-values {
  padding: 4.5rem 0 5.5rem;
  background: linear-gradient(180deg, #f7f9ff 0%, #eef3ff 45%, #ffffff 100%);
}

.home-values__grid {
  width: var(--home-max-width);
  margin: 2rem auto 0;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.home-value {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1.5rem;
  padding: 1.8rem;
  border: 1px solid rgba(12, 31, 99, 0.08);
  display: grid;
  gap: 1rem;
  box-shadow: 0 16px 32px rgba(12, 31, 99, 0.12);
}

.home-value__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(12, 31, 99, 0.1);
  display: grid;
  place-items: center;
  color: #0b1f63;
  font-size: 1.4rem;
}

.home-value h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.home-value p {
  margin: 0;
  color: rgba(8, 18, 67, 0.72);
  font-size: 0.95rem;
}

.home-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.home-modal.is-open {
  display: block;
}

.home-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 15, 40, 0.55);
  backdrop-filter: blur(3px);
}

.home-modal__dialog {
  position: relative;
  max-width: 520px;
  width: calc(100% - 2.5rem);
  margin: 8vh auto 0;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 1.8rem;
  padding: 2.2rem;
  box-shadow: 0 32px 82px rgba(8, 18, 67, 0.22);
  border: 1px solid rgba(12, 31, 99, 0.08);
  animation: modalIn 0.35s ease;
}

.home-modal__close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: #0b1f63;
  cursor: pointer;
}

.home-modal__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
  color: rgba(8, 18, 67, 0.78);
}

.home-modal__list i {
  margin-right: 0.6rem;
  color: rgba(12, 31, 99, 0.9);
}

.home-chip--modal {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: rgba(12, 31, 99, 0.1);
  color: #0d1f51;
  margin-bottom: 1rem;
}

body.is-modal-open {
  overflow: hidden;
}

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

@media (max-width: 1080px) {
  .home-cinematic {
    grid-template-columns: 1fr;
  }

  .home-cinematic__viewport {
    position: relative;
    top: 0;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .home-cinematic__timeline {
    gap: clamp(2rem, 4vw, 2.6rem);
  }

  .home-b2b__timeline-head {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .home-cinematic {
    margin: clamp(3rem, 9vw, 4rem) auto clamp(2.2rem, 6vw, 3rem);
  }

  .home-cinematic__slide {
    padding-left: 1.1rem;
  }

  .home-cinematic__slide::before {
    left: 0;
    top: 4%;
    bottom: 10%;
  }

  .home-cinematic__progress {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .home-section__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-b2b__title {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .home-b2b__subtitle {
    max-width: 100%;
  }

  .home-club__card {
    grid-template-columns: 1fr;
  }

  .home-section__grid {
    gap: 1.4rem;
  }

  .home-showcase__inner {
    grid-template-columns: 1fr;
  }

  .home-showcase__frame {
    aspect-ratio: 16 / 11;
  }

  .home-insights__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-cinematic {
    margin: clamp(2.4rem, 8vw, 3rem) auto clamp(1.8rem, 6vw, 2.4rem);
    gap: clamp(1.6rem, 6vw, 2.4rem);
  }

  .home-cinematic__viewport {
    border-radius: clamp(1.1rem, 4vw, 1.4rem);
  }

  .home-cinematic__overlay {
    padding: clamp(1.4rem, 5vw, 1.8rem);
    gap: 0.85rem;
  }

  .home-cinematic__title {
    font-size: clamp(.8rem, 5.5vw, 1rem);
  }

  .home-cinematic__caption {
    font-size: 0.8rem;
  }

  .home-cinematic__timeline {
    display: flex;
    gap: 1.4rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .home-cinematic__timeline::-webkit-scrollbar {
    height: 6px;
  }

  .home-cinematic__timeline::-webkit-scrollbar-thumb {
    background: rgba(12, 31, 99, 0.18);
    border-radius: 999px;
  }

  .home-cinematic__slide {
    min-width: min(78vw, 360px);
    scroll-snap-align: start;
    padding: 1.1rem 1.2rem 1.2rem 1.6rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 36px rgba(8, 18, 67, 0.08);
  }

  .home-cinematic__slide::before {
    top: 8%;
    bottom: 12%;
  }

  .home-cinematic__slide::after {
    inset: -18% -12% -18% 8%;
  }

  .home-cinematic__chips {
    display: grid;
    gap: 0.6rem;
  }

  .home-section__header,
  .home-section__inner,
  .home-section__grid,
  .home-showcase__inner,
  .home-insights__cards {
    width: min(100%, 96vw);
  }

  .home-section__header {
    margin-bottom: 1.8rem;
    gap: 1rem;
  }

  .home-section__grid {
    gap: 1.2rem;
  }

  .home-pillar {
    padding: clamp(1.3rem, 5vw, 1.6rem);
  }

  .home-button {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-b2b__visual::after,
  .home-b2b__glow,
  .home-b2b__progress-bar,
  .home-panel,
  .home-panel::after {
    transition-duration: 0s;
    animation: none;
  }

  .home-showcase__card,
  .home-showcase__halo,
  .home-insights__track,
  .home-modal__dialog {
    transition-duration: 0s;
    animation: none;
  }
}

.home-2026 {
  --lenis-accent: var(--sp-rojo);
  --home-ink: #061334;
  --home-ink-soft: rgba(6, 19, 52, 0.72);
  --home-accent: var(--sp-rojo);
  --home-accent-2: var(--sp-azul);
  --home-accent-3: var(--sp-amarillo);
  --home-surface: rgba(255, 255, 255, 0.9);
  --home-surface-strong: rgba(255, 255, 255, 0.96);
  --home-border: rgba(6, 19, 52, 0.12);
  --home-shadow: 0 36px 90px rgba(6, 16, 42, 0.16);
  --home-radius-xl: clamp(1.5rem, 3vw, 2.6rem);
  --home-radius-lg: clamp(1.1rem, 2.4vw, 1.8rem);
  color: var(--home-ink);
  font-family: "Manrope", "Inter", "Montserrat", sans-serif;
  position: relative;
  isolation: isolate;
  overflow-x: visible;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.home-2026 * {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  background: #f6f7fb;
}

body > div.fixed.inset-0.pointer-events-none {
  display: none;
}

.home-2026::before {
  content: none;
}

.home-2026::after {
  content: none;
}

.home-2026 h1,
.home-2026 h2,
.home-2026 h3,
.home-2026 h4,
.home-2026 h5,
.home-2026 h6 {
  font-family: "Space Grotesk", "Inter", "Montserrat", sans-serif;
  letter-spacing: -0.02em;
}

.home-2026 .home-chip {
  background: rgba(6, 19, 52, 0.08);
  border: 1px solid rgba(6, 19, 52, 0.12);
  color: var(--home-ink);
}

.home-2026 .home-chip--light {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.home-2026 .home-button {
  border-radius: 999px;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  box-shadow: 0 18px 36px rgba(6, 16, 42, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease,
    color 0.3s ease, border 0.3s ease;
}

.home-2026 .home-button--primary {
  background: linear-gradient(
    120deg,
    var(--home-accent),
    color-mix(in srgb, var(--home-accent) 60%, var(--home-accent-3))
  );
  color: #ffffff;
}

.home-2026 .home-button--ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--home-border);
  color: var(--home-ink);
  box-shadow: none;
}

.home-2026 .home-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(6, 16, 42, 0.2);
}

.home-2026 .home-hero.home-hero--market {
  padding: 0;
  position: relative;
  width: 100%;
  margin: 0;
  background: linear-gradient(135deg, #fff6d7 0%, #ffffff 55%, #eef4ff 100%);
}

.home-2026 .home-hero__inner {
  width: 100%;
  padding: 0;
}

.home-2026 .home-hero__banner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.home-2026 .home-hero__banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(120px, 18vw, 240px);
  background: linear-gradient(
    180deg,
    rgba(246, 247, 251, 0) 0%,
    #f6f7fb 100%
  );
  pointer-events: none;
  z-index: 1;
}

.home-2026 .home-hero__slide-copy {
  display: grid;
  gap: 1rem;
  max-width: 600px;
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .home-2026 .home-hero__slide-copy {
    padding: 2rem 2.5rem;
  }
}

.home-2026 .home-hero__slide-copy::before {
  content: "";
  position: absolute;
  inset: -1.6rem -1.8rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(6, 19, 52, 0.08);
  box-shadow: 0 24px 48px rgba(6, 16, 42, 0.12);
  z-index: -1;
}

.home-2026 .home-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: color-mix(in srgb, var(--hero-accent, var(--sp-rojo)) 70%, #4b5563);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(6, 19, 52, 0.12);
  width: fit-content;
}

.home-2026 .home-hero__headline {
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.1;
  color: var(--home-ink);
}

.home-2026 .home-hero__slide-copy p {
  margin: 0;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  color: var(--home-ink-soft);
}

.home-2026 .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  position: relative;
  z-index: 2;
}

.home-2026 .home-hero__actions .home-button {
  padding: 1rem 1.9rem;
  font-size: 0.95rem;
}

.home-2026 .home-hero__slide-media {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 100%;
  padding: 1rem;
}

.home-2026 .home-hero__slide-media img {
  max-width: 100%;
  height: auto;
  width: 100%;
  max-height: 400px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .home-2026 .home-hero__slide-media img {
    max-height: 480px;
  }
}

.home-2026 .home-hero__slide-media::before {
  content: "";
  position: absolute;
  inset: -16%;
  border-radius: 30% 70% 60% 40% / 40% 40% 60% 60%;
  background: radial-gradient(
    circle at 40% 35%,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  opacity: 0.6;
  filter: blur(2px);
  z-index: 0;
}

.home-2026 .home-hero__slide-media img {
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(6, 16, 42, 0.18));
  position: relative;
  z-index: 1;
}

.home-2026 .home-hero__nav {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(6, 19, 52, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: var(--home-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(6, 16, 42, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  backdrop-filter: blur(6px);
}

.home-2026 .home-hero__nav--prev {
  left: clamp(0.8rem, 2vw, 1.6rem);
}

.home-2026 .home-hero__nav--next {
  right: clamp(0.8rem, 2vw, 1.6rem);
}

.home-2026 .home-hero__nav:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 16px 32px rgba(6, 16, 42, 0.2);
}


.home-2026 .home-hero__quick {
  width: var(--home-max-width);
  margin: clamp(-2.4rem, -3vw, -1.6rem) auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.home-2026 .home-hero__quick-wrapper {
  width: 100%;
  background: var(--sp-fondo, #f8f9fa);
  padding: 2.5rem 0;
}

.home-2026 .home-hero__quick-inner {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .home-2026 .home-hero__quick-inner {
    width: min(1440px, calc(100% - 48px));
    gap: 1.25rem;
  }
}

.home-2026 .home-quick-card {
  background: #ffffff;
  border: 1px solid rgba(6, 19, 52, 0.08);
  border-radius: 1.2rem;
  padding: 1.2rem;
  display: grid;
  gap: 0.6rem;
  box-shadow: 0 16px 32px rgba(6, 16, 42, 0.08);
}

.home-2026 .home-quick-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(6, 19, 52, 0.08);
  color: var(--home-accent-2);
  font-size: 1.2rem;
}

.home-2026 .home-quick-card h3 {
  margin: 0;
  font-size: 1rem;
}

.home-2026 .home-quick-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--home-ink-soft);
}

.home-2026 .home-quick-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--home-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.home-2026 .home-quick-card__link::after {
  content: "\2192";
  font-size: 0.9rem;
}

.home-2026 .home-hero__banner {
  border-radius: 0;
  border-left: none;
  border-right: none;
}

.home-2026 .home-hero__slide {
  width: 100%;
  margin: 0;
  max-width: none;
}

.home-2026 .home-section__carousel {
  width: var(--home-max-width);
  margin: 0 auto;
  padding-bottom: 0.8rem;
  overflow: hidden;
}

.home-2026 .home-carousel .swiper-wrapper {
  transition-timing-function: linear !important;
}

.home-2026 .home-carousel .swiper-slide {
  width: clamp(220px, 28vw, 280px);
  height: auto;
}

.home-2026 .home-carousel__slide {
  height: 100%;
}

.home-2026 .home-carousel .glass-card {
  height: 100%;
}

@media (max-width: 640px) {
  .home-2026 .home-carousel .swiper-slide {
    width: min(86vw, 300px);
  }
}

.home-2026 .home-cinematic--board {
  width: var(--home-max-width);
  margin: clamp(2.4rem, 4vw, 3.2rem) auto clamp(2rem, 3.6vw, 2.8rem);
  display: block;
}

.home-2026 .home-cinematic--board .home-cinematic__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.6rem, 3vw, 2.6rem);
  align-items: stretch;
}

.home-2026 .home-cinematic--board .home-cinematic__left {
  display: grid;
  gap: 1.1rem;
}

.home-2026 .home-cinematic--board .home-cinematic__left h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
}

.home-2026 .home-cinematic--board .home-cinematic__left p {
  margin: 0;
  color: var(--home-ink-soft);
}

.home-2026 .home-cinematic--board .home-cinematic__tabs {
  display: grid;
  gap: 0.9rem;
}

.home-2026 .home-cinematic--board .home-cinematic__tab {
  background: #ffffff;
  border: 1px solid rgba(6, 19, 52, 0.08);
  border-radius: 1.1rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 16px 30px rgba(6, 16, 42, 0.08);
  transition: border 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.home-2026 .home-cinematic--board .home-cinematic__tab.is-active {
  border-color: color-mix(in srgb, var(--cine-accent, #ff7b1a) 40%, rgba(6, 19, 52, 0.2));
  box-shadow: 0 22px 40px rgba(6, 16, 42, 0.14);
  transform: translateY(-2px);
}

.home-2026 .home-cinematic--board .home-cinematic__tab-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}

.home-2026 .home-cinematic--board .home-cinematic__index {
  color: rgba(6, 19, 52, 0.55);
}

.home-2026 .home-cinematic--board .home-cinematic__lead {
  color: var(--home-ink-soft);
  font-size: 0.95rem;
}

.home-2026 .home-cinematic--board .home-cinematic__chips {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.6rem;
}

.home-2026 .home-cinematic--board .home-cinematic__chip {
  background: #f6f7fb;
  border: 1px solid rgba(6, 19, 52, 0.08);
  color: rgba(6, 19, 52, 0.75);
  box-shadow: none;
  padding: 0.45rem 0.6rem;
  border-radius: 0.75rem;
  font-size: 0.82rem;
}

.home-2026 .home-cinematic--board .home-cinematic__right {
  display: grid;
  gap: 0.9rem;
}

.home-2026 .home-cinematic--board .home-cinematic__viewport {
  position: relative;
  top: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: clamp(260px, 34vw, 420px);
  border-radius: clamp(1.2rem, 2.6vw, 1.8rem);
  overflow: hidden;
  background: #0b1f63;
  box-shadow: 0 32px 70px rgba(6, 16, 42, 0.2);
}

.home-2026 .home-cinematic--board .home-cinematic__gradient {
  background: linear-gradient(
    120deg,
    rgba(6, 16, 42, 0.55) 0%,
    rgba(6, 16, 42, 0.18) 60%,
    rgba(6, 16, 42, 0) 100%
  );
}

.home-2026 .home-cinematic--board .home-cinematic__panel {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 19, 52, 0.12);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  color: var(--home-ink);
  box-shadow: 0 18px 36px rgba(6, 16, 42, 0.2);
  display: grid;
  gap: 0.4rem;
  z-index: 2;
}

.home-2026 .home-cinematic--board .home-cinematic__pill {
  background: rgba(6, 19, 52, 0.08);
  color: var(--home-ink);
}

.home-2026 .home-cinematic--board .home-cinematic__title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--home-ink);
  max-width: none;
  margin: 0;
}

.home-2026 .home-cinematic--board .home-cinematic__caption {
  color: rgba(6, 19, 52, 0.7);
  margin: 0;
}

.home-2026 .home-cinematic--board .home-cinematic__statline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(6, 19, 52, 0.55);
}

.home-2026 .home-cinematic--board .home-cinematic__statline span {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(6, 19, 52, 0.08);
}

.home-2026 .home-cinematic--board .home-cinematic__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  justify-items: center;
}

.home-2026 .home-cinematic--board .home-cinematic__metric {
  position: relative;
  width: clamp(108px, 14vw, 150px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #f4f6fb 65%, #eef1f8 100%);
  border: 1px solid rgba(6, 19, 52, 0.08);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.9rem;
  box-shadow: 0 18px 40px rgba(6, 16, 42, 0.12);
  overflow: hidden;
  --metric-accent: var(--sp-rojo);
}

.home-2026 .home-cinematic--board .home-cinematic__metric:nth-child(2) {
  --metric-accent: var(--sp-azul);
}

.home-2026 .home-cinematic--board .home-cinematic__metric:nth-child(3) {
  --metric-accent: var(--sp-amarillo);
}

.home-2026 .home-cinematic--board .home-cinematic__metric::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: conic-gradient(
    from 120deg,
    color-mix(in srgb, var(--metric-accent) 75%, transparent),
    rgba(255, 255, 255, 0.2),
    color-mix(in srgb, var(--metric-accent) 55%, transparent),
    rgba(255, 255, 255, 0.2),
    color-mix(in srgb, var(--metric-accent) 75%, transparent)
  );
  opacity: 0.55;
  filter: blur(12px);
  z-index: 0;
}

.home-2026 .home-cinematic--board .home-cinematic__metric::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(6, 19, 52, 0.08);
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.home-2026 .home-cinematic--board .home-cinematic__metric strong {
  position: relative;
  z-index: 2;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  color: var(--home-ink);
  font-weight: 700;
}

.home-2026 .home-cinematic--board .home-cinematic__metric span {
  position: relative;
  z-index: 2;
  font-size: 0.62rem;
  color: rgba(6, 19, 52, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.2;
  max-width: 9ch;
  text-wrap: balance;
}

.home-2026 .home-b2b__pillars {
  padding: 2rem 0 2.4rem;
}

.home-2026 .home-section__inner {
  gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.home-2026 .home-pillar {
  padding: clamp(1.2rem, 2.2vw, 1.7rem);
}

.home-2026 .home-showcase {
  padding: 3rem 0;
}

.home-2026 .home-showcase__inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.6rem, 4vw, 2.6rem);
}

.home-2026 .home-showcase__cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.home-2026 .home-showcase__card {
  padding: 1.4rem;
}

.home-2026 .home-showcase__media {
  gap: 1rem;
}

.home-2026 .home-showcase__frame {
  aspect-ratio: 16 / 9;
}

.home-2026 .home-showcase__stats {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.home-2026 .home-stat {
  padding: 1rem 1.1rem;
}

@media (min-width: 900px) {
  .home-2026 .home-cinematic--board .home-cinematic__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.home-2026 .home-hero {
  padding: clamp(2.4rem, 6vw, 4.5rem) 0 clamp(2.6rem, 6vw, 4.2rem);
}

.home-2026 .home-hero__inner {
  width: var(--home-max-width);
  margin: 0 auto;
}

.home-2026 .home-hero__copy {
  display: grid;
  gap: 1.2rem;
  max-width: 560px;
}

.home-2026 .home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--home-accent);
  background: rgba(192, 0, 25, 0.1);
  border: 1px solid rgba(192, 0, 25, 0.2);
}

.home-2026 .home-hero__title {
  margin: 0;
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  line-height: 1.1;
  color: var(--home-ink);
}

.home-2026 .home-hero__lead {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--home-ink-soft);
  max-width: 52ch;
}

.home-2026 .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.home-2026 .home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.home-2026 .home-hero__stat {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--home-border);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  display: grid;
  gap: 0.25rem;
  box-shadow: 0 12px 24px rgba(6, 16, 42, 0.08);
}

.home-2026 .home-hero__stat span {
  font-weight: 700;
  font-size: 0.95rem;
}

.home-2026 .home-hero__stat small {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(6, 19, 52, 0.55);
}

.home-2026 .home-hero__visual {
  display: grid;
  gap: 1.2rem;
  position: relative;
}

.home-2026 .home-hero__frame {
  position: relative;
  border-radius: var(--home-radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.3),
      transparent 60%
    ),
    #0b1f63;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--home-shadow);
}

.home-2026 .home-hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(6, 19, 52, 0.35), transparent 62%);
  z-index: 1;
}

.home-2026 .home-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1);
  transform: scale(1.02);
  transition: transform 0.6s ease;
  position: relative;
  z-index: 0;
}

.home-2026 .home-hero__frame:hover img {
  transform: scale(1.05);
}

.home-2026 .home-hero__glass {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  background: rgba(6, 19, 52, 0.7);
  color: #ffffff;
  padding: 0.9rem 1.2rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 0.2rem;
  box-shadow: 0 18px 36px rgba(6, 16, 42, 0.35);
  z-index: 2;
  max-width: min(90%, 320px);
}

.home-2026 .home-hero__glass span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.85;
}

.home-2026 .home-hero__glass strong {
  font-size: 1rem;
  font-weight: 600;
}

.home-2026 .home-hero__glass em {
  font-size: 0.78rem;
  opacity: 0.82;
}

.home-2026 .home-hero__orbit {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  display: grid;
  gap: 0.6rem;
  justify-items: end;
  z-index: 2;
}

.home-2026 .home-hero__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.home-2026 .home-hero__rail {
  width: var(--home-max-width);
  margin: clamp(1.8rem, 5vw, 2.6rem) auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.home-2026 .home-hero__card {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-lg);
  padding: 1.1rem 1.2rem;
  display: grid;
  gap: 0.65rem;
  box-shadow: 0 16px 32px rgba(6, 16, 42, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-2026 .home-hero__card i {
  font-size: 1.4rem;
  color: color-mix(in srgb, var(--home-accent) 60%, var(--home-accent-2));
}

.home-2026 .home-hero__card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.home-2026 .home-hero__card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--home-ink-soft);
}

.home-2026 .home-hero__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(6, 16, 42, 0.16);
}

.home-2026 .home-cinematic {
  margin: clamp(3.5rem, 7vw, 5.5rem) auto clamp(3rem, 6vw, 4.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(2.2rem, 5vw, 3.4rem);
}

.home-2026 .home-cinematic__viewport {
  border-radius: var(--home-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 42px 80px rgba(6, 16, 42, 0.2);
}

.home-2026 .home-cinematic__overlay {
  color: #f8f9ff;
}

.home-2026 .home-cinematic__pill {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.home-2026 .home-cinematic__title {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
}

.home-2026 .home-cinematic__caption {
  color: rgba(240, 245, 255, 0.88);
}

.home-2026 .home-cinematic__slide {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-lg);
  padding: 1.6rem 1.8rem;
  box-shadow: 0 22px 44px rgba(6, 16, 42, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-2026 .home-cinematic__slide::before {
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 5px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--cine-accent) 85%, transparent),
    transparent
  );
}

.home-2026 .home-cinematic__slide::after {
  inset: -20% -18% -18% 12%;
  filter: blur(36px);
  opacity: 0.2;
}

.home-2026 .home-cinematic__slide.is-active {
  transform: translateY(-4px);
  box-shadow: 0 32px 68px rgba(6, 16, 42, 0.18);
}

.home-2026 .home-cinematic__slide h4 {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--cine-accent) 40%, #061334);
}

.home-2026 .home-cinematic__lead {
  color: var(--home-ink-soft);
}

.home-2026 .home-cinematic__chip {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(6, 19, 52, 0.08);
  box-shadow: 0 18px 32px rgba(6, 16, 42, 0.1);
}

.home-2026 .home-b2b__pillars {
  background: transparent;
}

.home-2026 .home-pillar {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-lg);
  box-shadow: 0 20px 40px rgba(6, 16, 42, 0.1);
}

.home-2026 .home-pillar__icon {
  background: rgba(6, 19, 52, 0.08);
  color: var(--home-accent-2);
}

.home-2026 .home-showcase {
  background: transparent;
}

.home-2026 .home-showcase__card {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-lg);
  box-shadow: 0 20px 40px rgba(6, 16, 42, 0.1);
}

.home-2026 .home-showcase__card.is-active {
  border-color: rgba(192, 0, 25, 0.35);
  box-shadow: 0 26px 54px rgba(6, 16, 42, 0.16);
}

.home-2026 .home-showcase__index {
  background: rgba(6, 19, 52, 0.08);
  color: var(--home-ink);
}

.home-2026 .home-showcase__cta {
  background: rgba(6, 19, 52, 0.08);
  color: var(--home-ink);
}

.home-2026 .home-showcase__card.is-active .home-showcase__cta {
  background: linear-gradient(
    120deg,
    rgba(192, 0, 25, 0.65),
    rgba(0, 37, 90, 0.65)
  );
  color: #ffffff;
}

.home-2026 .home-showcase__frame {
  border-radius: var(--home-radius-xl);
  background: linear-gradient(160deg, rgba(6, 19, 52, 0.85), rgba(0, 37, 90, 0.55));
}

.home-2026 .home-showcase__frame img {
  object-fit: contain;
  mix-blend-mode: normal;
}

.home-2026 .home-stat {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
}

.home-2026 .home-stat strong {
  color: var(--home-accent-2);
}

.home-2026 .home-collection {
  background: transparent;
}

.home-2026 .home-section__header {
  color: var(--home-ink);
}

.home-2026 .home-club {
  background: linear-gradient(120deg, #061334 0%, #00255a 45%, #c00019 100%);
}

.home-2026 .home-club__visual {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.home-2026 .home-brands {
  background: transparent;
}

.home-2026 .home-brand__logo {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  box-shadow: 0 16px 32px rgba(6, 16, 42, 0.12);
}

.home-2026 .home-insights {
  background: transparent;
}

.home-2026 .home-insight {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-lg);
  box-shadow: 0 18px 40px rgba(6, 16, 42, 0.12);
}

.home-2026 .home-insight__badge {
  background: rgba(6, 19, 52, 0.08);
}

.home-2026 .home-values {
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.8) 0%, #ffffff 100%);
}

.home-2026 .home-value {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-lg);
  box-shadow: 0 18px 36px rgba(6, 16, 42, 0.12);
}

.home-2026 .home-value__icon {
  background: rgba(6, 19, 52, 0.08);
  color: var(--home-accent-2);
}

.home-2026 .home-modal__dialog {
  background: var(--home-surface-strong);
  border: 1px solid var(--home-border);
  box-shadow: 0 32px 80px rgba(6, 16, 42, 0.2);
}

.home-2026 [data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.home-2026.is-reveal-ready [data-reveal] {
  opacity: 0;
  --reveal-shift: 16px;
  transform: translate3d(
    0,
    calc(var(--reveal-shift) + var(--parallax-y, 0px)),
    0
  );
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.home-2026.is-reveal-ready [data-reveal].is-visible {
  opacity: 1;
  --reveal-shift: 0px;
}

@media (max-width: 980px) {
  .home-2026 .home-hero__inner {
    grid-template-columns: 1fr;
  }

  .home-2026 .home-hero__visual {
    order: -1;
  }

  .home-2026 .home-hero__orbit {
    left: clamp(1rem, 4vw, 1.5rem);
    right: clamp(1rem, 4vw, 1.5rem);
    top: clamp(1rem, 4vw, 1.5rem);
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-start;
  }

  .home-2026 .home-hero__frame {
    aspect-ratio: 16 / 11;
  }

  .home-2026 .home-hero__rail {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .home-2026 .home-hero__slide {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .home-2026 .home-hero__slide-media {
    order: -1;
  }

  .home-2026 .home-hero__nav {
    width: 40px;
    height: 40px;
  }

  .home-2026 .home-hero__quick-wrapper {
    padding: 2rem 0;
  }

  .home-2026 .home-hero__quick-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .home-2026 .home-cinematic {
    grid-template-columns: 1fr;
  }

  .home-2026 .home-showcase__inner {
    grid-template-columns: 1fr;
  }

  .home-2026 .home-showcase__cards {
    grid-template-columns: 1fr;
  }

  .home-2026 .home-cinematic--board .home-cinematic__shell {
    grid-template-columns: 1fr;
  }

  .home-2026 .home-cinematic--board .home-cinematic__right {
    order: -1;
  }

  .home-2026 .home-cinematic--board .home-cinematic__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-2026 .home-hero__actions {
    width: 100%;
  }

  .home-2026 .home-hero__actions .home-button {
    width: 100%;
    justify-content: center;
  }

  .home-2026 .home-hero__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-2026 .home-hero__glass {
    left: 1rem;
    right: 1rem;
  }

  .home-2026 .home-hero__orbit {
    align-items: flex-start;
  }

  .home-2026 .home-hero__rail {
    grid-template-columns: 1fr;
  }

  .home-2026 .home-hero__slide {
    padding: 1.6rem;
  }

  .home-2026 .home-hero__slide-copy::before {
    inset: -1rem;
  }

  .home-2026 .home-hero__nav {
    top: auto;
    bottom: 1rem;
    transform: none;
  }

  .home-2026 .home-hero__nav:hover {
    transform: none;
  }

  .home-2026 .home-hero__actions .home-button {
    width: 100%;
    justify-content: center;
  }

  .home-2026 .home-hero__quick {
    grid-template-columns: 1fr;
    margin-top: 1.2rem;
  }

  .home-2026 .home-cinematic--board .home-cinematic__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .home-2026 .home-cinematic--board .home-cinematic__metric {
    width: clamp(92px, 28vw, 120px);
  }

  .home-2026 .home-cinematic--board .home-cinematic__metric span {
    font-size: 0.6rem;
  }

  .home-2026 .home-cinematic--board .home-cinematic__tab {
    padding: 0.95rem 1rem;
  }

  .home-2026 .home-cinematic--board .home-cinematic__chips {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-2026.is-reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-2026 [data-parallax] {
    transform: none;
  }
}

/* =========================================
   NUEVO HOME - REDISEÑO 2026
   ========================================= */

/* Variables adicionales para el nuevo home */
:root {
  --home-azul: #082B63;
  --home-azul-dark: #061B3A;
  --home-rojo: #C8102E;
  --home-rojo-hover: #A40D25;
  --home-fondo: #F5F7FB;
  --home-surface: #FFFFFF;
  --home-text: #0F172A;
  --home-text-muted: #64748B;
  --home-border: #D9E2EF;
  --home-success: #15803D;
  --home-warning: #D97706;
}

/* Wrapper general */
.home-new-section {
  max-width: min(1240px, 92vw);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .home-new-section {
    padding: 0 1.5rem;
  }
}

/* ===== HERO PRINCIPAL ===== */
.home-hero {
  position: relative;
  background: linear-gradient(135deg, #F8FAFC 0%, #EEF2F7 100%);
  padding: 3rem 1rem 4rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .home-hero {
    padding: 4rem 2rem 5rem;
  }
}

.home-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(8, 43, 99, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.home-hero-content {
  position: relative;
  max-width: min(1240px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .home-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.home-hero-text h1 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--home-text);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.home-hero-text h1 span {
  color: var(--home-rojo);
}

.home-hero-text p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--home-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

/* Buscador del hero */
.home-hero-search {
  max-width: 500px;
  margin-bottom: 1.5rem;
}

.home-hero-search form {
  display: flex;
  gap: 0.5rem;
}

.home-hero-search input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  border: 2px solid var(--home-border);
  border-radius: 12px;
  background: var(--home-surface);
  color: var(--home-text);
  transition: all 0.2s ease;
  min-height: 52px;
}

.home-hero-search input:focus {
  outline: none;
  border-color: var(--home-azul);
  box-shadow: 0 0 0 4px rgba(8, 43, 99, 0.1);
}

.home-hero-search input::placeholder {
  color: var(--home-text-muted);
}

.home-hero-search button {
  padding: 0 1.5rem;
  background: var(--home-rojo);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 52px;
  white-space: nowrap;
}

.home-hero-search button:hover {
  background: var(--home-rojo-hover);
  transform: translateY(-1px);
}

/* CTAs del hero */
.home-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--home-rojo);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.home-cta-primary:hover {
  background: var(--home-rojo-hover);
  transform: translateY(-1px);
  color: #fff;
}

.home-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--home-surface);
  color: var(--home-azul);
  border: 2px solid var(--home-border);
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.home-cta-secondary:hover {
  border-color: var(--home-azul);
  background: var(--home-azul);
  color: #fff;
}

/* Texto de confianza */
.home-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--home-text-muted);
}

.home-hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.home-hero-trust i {
  color: var(--home-success);
}

/* Lado visual del hero */
.home-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-hero-banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 480px;
}

.home-hero-banner {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(8, 43, 99, 0.12);
  transition: transform 0.3s ease;
}

.home-hero-banner:hover {
  transform: translateY(-4px);
}

.home-hero-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.home-hero-banner:first-child {
  grid-column: 1 / -1;
}

/* Mini cards flotantes */
.home-hero-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.home-hero-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--home-surface);
  border-radius: 12px;
  border: 1px solid var(--home-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.home-hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.home-hero-card i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--home-fondo);
  border-radius: 10px;
  color: var(--home-azul);
  font-size: 1rem;
}

.home-hero-card span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--home-text);
}

/* ===== BARRA DE CONFIANZA ===== */
.home-trust-strip {
  background: var(--home-surface);
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
  padding: 1.25rem 1rem;
}

.home-trust-strip-inner {
  max-width: min(1240px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
}

.home-trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--home-text-muted);
}

.home-trust-item i {
  color: var(--home-azul);
  font-size: 1.125rem;
}

/* ===== CATEGORÍAS DESTACADAS ===== */
.home-categories {
  padding: 4rem 1rem;
  background: var(--home-fondo);
}

.home-categories-inner {
  max-width: min(1240px, 92vw);
  margin: 0 auto;
}

.home-categories h2 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--home-text);
  margin-bottom: 2rem;
  text-align: center;
}

.home-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .home-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .home-categories-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.home-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  background: var(--home-surface);
  border-radius: 16px;
  border: 1px solid var(--home-border);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.home-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(8, 43, 99, 0.1);
  border-color: var(--home-azul);
}

.home-category-card i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--home-fondo) 0%, #E2E8F0 100%);
  border-radius: 12px;
  color: var(--home-azul);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.home-category-card span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--home-text);
  text-align: center;
}

/* ===== MARCAS MARQUEE ===== */
.home-brands {
  padding: 3rem 0;
  background: var(--home-surface);
  overflow: hidden;
}

.home-brands h2 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--home-text);
  text-align: center;
  margin-bottom: 1.5rem;
}

.home-brands-track {
  display: flex;
  animation: brandMarquee 30s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .home-brands-track {
    animation: none;
  }
}

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

.home-brand-item {
  flex-shrink: 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-brand-item img {
  max-height: 40px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.home-brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== SECCIÓN PASOS ===== */
.home-steps {
  padding: 4rem 1rem;
  background: var(--home-fondo);
}

.home-steps-inner {
  max-width: min(900px, 92vw);
  margin: 0 auto;
}

.home-steps h2 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--home-text);
  text-align: center;
  margin-bottom: 2.5rem;
}

.home-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .home-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.home-step {
  text-align: center;
}

.home-step-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--home-azul);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 0.75rem;
}

.home-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--home-text);
  margin-bottom: 0.375rem;
}

.home-step p {
  font-size: 0.8125rem;
  color: var(--home-text-muted);
  line-height: 1.5;
}

/* ===== FAQ ACORDEÓN ===== */
.home-faq {
  padding: 4rem 1rem;
  background: var(--home-surface);
}

.home-faq-inner {
  max-width: min(800px, 92vw);
  margin: 0 auto;
}

.home-faq h2 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--home-text);
  text-align: center;
  margin-bottom: 2rem;
}

.home-faq details {
  margin-bottom: 0.75rem;
  border: 1px solid var(--home-border);
  border-radius: 12px;
  overflow: hidden;
}

.home-faq summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--home-text);
  cursor: pointer;
  background: var(--home-fondo);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s ease;
}

.home-faq summary:hover {
  background: #E2E8F0;
}

.home-faq summary::-webkit-details-marker {
  display: none;
}

.home-faq summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--home-text-muted);
  transition: transform 0.2s ease;
}

.home-faq details[open] summary::after {
  transform: rotate(45deg);
}

.home-faq div {
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--home-text-muted);
  line-height: 1.6;
  background: var(--home-surface);
}

/* ===== CTA FINAL ===== */
.home-cta-final {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, var(--home-azul) 0%, var(--home-azul-dark) 100%);
  text-align: center;
}

.home-cta-final-inner {
  max-width: min(600px, 92vw);
  margin: 0 auto;
}

.home-cta-final h2 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.home-cta-final p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.home-cta-final-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.home-cta-final-btns .home-cta-primary {
  background: #fff;
  color: var(--home-azul);
}

.home-cta-final-btns .home-cta-primary:hover {
  background: var(--home-fondo);
}

.home-cta-final-btns .home-cta-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.home-cta-final-btns .home-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Floating animation for cards */
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.floating-card {
  animation: floatCard 3s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  animation-delay: 0.5s;
}

.floating-card:nth-child(3) {
  animation-delay: 1s;
}

.floating-card:nth-child(4) {
  animation-delay: 1.5s;
}

@media (prefers-reduced-motion: reduce) {
  .floating-card {
    animation: none;
  }
}

/* ===== FAQ SECTION ===== */
.home-faq {
  padding: 4rem 1.5rem;
  background: var(--sp-fondo, #f8f9fa);
}

.home-faq .home-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.home-faq .home-chip {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.home-faq__grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.home-faq__item {
  border: 1px solid rgba(8, 43, 99, 0.12);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-faq__item:hover {
  border-color: rgba(8, 43, 99, 0.25);
  box-shadow: 0 4px 16px rgba(8, 43, 99, 0.08);
}

.home-faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sp-azul, #082B63);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.home-faq__trigger:hover {
  color: var(--sp-rojo, #C8102E);
}

.home-faq__trigger i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
  color: var(--sp-rojo, #C8102E);
}

.home-faq__trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.home-faq__content {
  padding: 0 1.5rem 1.25rem;
  color: #4a5568;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.home-faq__content p {
  margin: 0;
}

.home-faq__content:not([hidden]) {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .home-faq {
    padding: 6rem 2rem;
  }

  .home-faq__grid {
    gap: 1.25rem;
  }
}

/* ===== CTA SECTION ===== */
.home-cta {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--sp-azul, #082B63) 0%, #0d3d8a 100%);
  position: relative;
  overflow: hidden;
}

.home-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200, 16, 46, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.home-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.home-cta__content {
  color: #fff;
}

.home-cta .home-chip--light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  margin-bottom: 1rem;
}

.home-cta__content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.home-cta__content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.home-button--light {
  background: #fff;
  color: var(--sp-azul, #082B63);
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-button--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.home-button--outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.home-button--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.home-cta__visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.home-cta__card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, background 0.3s ease;
}

.home-cta__card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.home-cta__card i {
  font-size: 1.75rem;
  color: var(--sp-rojo, #C8102E);
  margin-bottom: 0.75rem;
  display: block;
}

.home-cta__card span {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.home-cta__card small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 768px) {
  .home-cta {
    padding: 6rem 2rem;
  }

  .home-cta__inner {
    grid-template-columns: 1.2fr 1fr;
  }

  .home-cta__content h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .home-cta__visual {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .home-cta__actions {
    flex-direction: column;
  }

  .home-cta__actions .home-button--light,
  .home-cta__actions .home-button--outline-light {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-faq__item,
  .home-faq__trigger,
  .home-cta__card,
  .home-button--light,
  .home-button--outline-light {
    transition: none;
  }

  .home-faq__trigger[aria-expanded="true"] i {
    transform: none;
  }
}

/* ============================================
   SUPER PAPELERA PREMIUM HOME
   ============================================ */

/* Container reutilizable */
.sp-container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

/* ============================================
   HERO PREMIUM
   ============================================ */
.sp-home {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.sp-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, #00255a 0%, #0d3d8a 50%, #1a5bb8 100%);
  overflow: hidden;
}

.sp-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200, 16, 46, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.sp-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.03) 100%);
}

.sp-hero__content {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .sp-hero__content {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
  }
}

.sp-hero__copy {
  color: #ffffff;
}

.sp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.sp-hero__title {
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.sp-hero__title-accent {
  background: linear-gradient(135deg, #f7a800 0%, #ffb700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sp-hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2rem;
  max-width: 520px;
}

.sp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.sp-btn--primary {
  background: #c00019;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.35);
}

.sp-btn--primary:hover {
  background: #a30016;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.4);
}

.sp-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.sp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.sp-btn--outline {
  background: transparent;
  color: #00255a;
  border: 2px solid #00255a;
}

.sp-btn--outline:hover {
  background: #00255a;
  color: #ffffff;
}

.sp-btn--white {
  background: #ffffff;
  color: #00255a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.sp-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.sp-btn--outline-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.sp-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.sp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.sp-hero__trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sp-hero__trust i {
  color: #f7a800;
}

.sp-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.sp-hero__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  font-weight: 600;
  color: #00255a;
  animation: sp-float 4s ease-in-out infinite;
}

.sp-hero__card i {
  font-size: 1.25rem;
  color: #c00019;
}

.sp-hero__card--1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.sp-hero__card--2 {
  top: 50%;
  right: 5%;
  animation-delay: 1s;
}

.sp-hero__card--3 {
  bottom: 15%;
  right: 15%;
  animation-delay: 2s;
}

@keyframes sp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 767px) {
  .sp-hero__visual {
    display: none;
  }
}

/* ============================================
   BRANDS MARQUEE
   ============================================ */
.sp-brands {
  padding: 2rem 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 37, 90, 0.08);
}

.sp-brands__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.sp-brands__header h2 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b0b8c1;
  margin: 0;
}

.sp-brands__track {
  position: relative;
  overflow: hidden;
}

.sp-brands__carousel {
  overflow: visible;
}

.sp-brands__carousel .swiper-wrapper {
  transition-timing-function: linear;
}

.sp-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0.5rem 2rem;
}

.sp-brands__item img {
  max-height: 48px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.sp-brands__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.sp-brands__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.sp-brands__item:hover .sp-brands__label {
  color: #00255a;
}

/* ============================================
   CATEGORÍAS
   ============================================ */
.sp-categories {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #f8fafc;
}

.sp-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.sp-section-badge {
  display: inline-block;
  padding: 0.4rem 0.875rem;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.1) 0%, rgba(192, 0, 25, 0.05) 100%);
  color: #c00019;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}

.sp-section-header h2 {
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #00255a;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.sp-section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #c00019;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.sp-section-link:hover {
  text-decoration: underline;
}

.sp-categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .sp-categories__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .sp-categories__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.sp-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(0, 37, 90, 0.08);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.sp-category-card:hover {
  border-color: #00255a;
  box-shadow: 0 8px 24px rgba(0, 37, 90, 0.1);
  transform: translateY(-4px);
}

.sp-category-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 37, 90, 0.08) 0%, rgba(0, 37, 90, 0.04) 100%);
  border-radius: 14px;
  margin-bottom: 0.875rem;
  font-size: 1.5rem;
  color: #00255a;
  transition: all 0.25s ease;
}

.sp-category-card:hover .sp-category-card__icon {
  background: #00255a;
  color: #ffffff;
}

.sp-category-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #00255a;
  margin: 0 0 0.25rem;
}

.sp-category-card p {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
}

.sp-category-card--more .sp-category-card__icon {
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.1) 0%, rgba(200, 16, 46, 0.05) 100%);
  color: #c00019;
}

.sp-category-card--more:hover .sp-category-card__icon {
  background: #c00019;
  color: #ffffff;
}

/* ============================================
   PRODUCTOS
   ============================================ */
.sp-products {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
  border-top: 1px solid rgba(0, 28, 100, 0.06);
}

.sp-products--brand {
  background: linear-gradient(180deg, #f8fbff 0%, #fffaf2 100%);
}

.sp-products__carousel {
  margin: 0 -1rem;
  padding: 0.75rem 1rem 0.9rem;
}

.sp-products__carousel .swiper-slide {
  width: 286px;
}

/* ============================================
   CLUB AKIO
   ============================================ */
.sp-club {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, #00255a 0%, #0d3d8a 100%);
}

.sp-club__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .sp-club__content {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
  }
}

.sp-club__copy {
  color: #ffffff;
}

.sp-club__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(247, 168, 0, 0.2);
  border: 1px solid rgba(247, 168, 0, 0.4);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f7a800;
  margin-bottom: 1.25rem;
}

.sp-club__badge i {
  color: #f7a800;
}

.sp-club__copy h2 {
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.sp-club__copy > p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.5rem;
}

.sp-club__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.sp-club__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.sp-club__features i {
  color: #f7a800;
  font-size: 1rem;
}

.sp-club__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.sp-club__visual {
  position: relative;
}

.sp-club__visual img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

/* ============================================
   VALORES
   ============================================ */
.sp-values {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #f8fafc;
}

.sp-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .sp-values__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.sp-value {
  text-align: center;
  padding: 1.5rem 1rem;
}

.sp-value__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(0, 37, 90, 0.08);
  border-radius: 16px;
  font-size: 1.5rem;
  color: #c00019;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sp-value h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #00255a;
  margin: 0 0 0.5rem;
}

.sp-value p {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   CTA FINAL
   ============================================ */
.sp-cta {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, #c00019 0%, #8a0012 100%);
  text-align: center;
}

.sp-cta__content h2 {
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem;
}

.sp-cta__content > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem;
}

.sp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================
   RESPONSIVE POLISH
   ============================================ */
@media (max-width: 767px) {
  .sp-hero__trust {
    flex-direction: column;
    gap: 0.5rem;
  }

  .sp-club__features {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sp-hero__card,
  .sp-category-card,
  .sp-btn {
    animation: none;
    transition: none;
  }
}

/* ============================================
   HOME 2026 PREMIUM (WHITE FIRST)
   ============================================ */
.sp-home26 {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 36%, #ffffff 100%);
  color: var(--sp-azul, #001c64);
}

.sp-home26 .sp-container {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}

.sp-home26-hero {
  background: #ffffff;
  padding: 0 0 2rem;
}

.sp-home26-hero__shell {
  width: 100%;
  margin-inline: auto;
}

.sp-home26-hero__slider {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 22px 48px rgba(0, 28, 100, 0.14);
}

.sp-home26-hero__slide {
  position: relative;
  min-height: clamp(360px, 53vw, 590px);
  display: flex;
  align-items: flex-end;
}

.sp-home26-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-home26-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 28, 100, 0.8) 0%, rgba(0, 28, 100, 0.5) 32%, rgba(0, 28, 100, 0.12) 65%, rgba(0, 28, 100, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.sp-home26-hero__content {
  position: relative;
  z-index: 2;
  width: min(630px, calc(100% - 40px));
  margin: 0 0 clamp(1.4rem, 4vw, 2.8rem) clamp(1.2rem, 4.5vw, 3.6rem);
  display: grid;
  gap: 0.9rem;
}

.sp-home26-hero__badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.sp-home26-hero__content h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.07;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.sp-home26-hero__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.55;
  max-width: 58ch;
}

.sp-home26-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.sp-home26-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.25rem;
  border-radius: 0.85rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: all 180ms ease;
  border: 1px solid transparent;
}

.sp-home26-btn--primary {
  background: var(--sp-naranja, #ffa400);
  color: var(--sp-azul, #001c64);
  box-shadow: 0 10px 22px rgba(255, 164, 0, 0.28);
}

.sp-home26-btn--primary:hover {
  background: #ffb423;
  transform: translateY(-1px);
}

.sp-home26-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.sp-home26-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.sp-home26-btn--ghost-dark {
  background: #ffffff;
  border-color: rgba(0, 28, 100, 0.16);
  color: var(--sp-azul, #001c64);
}

.sp-home26-btn--ghost-dark:hover {
  border-color: rgba(0, 28, 100, 0.28);
  background: #fffaf7;
}

.sp-home26-hero__nav {
  position: absolute;
  right: clamp(0.8rem, 2vw, 1.4rem);
  bottom: clamp(0.8rem, 2vw, 1.1rem);
  z-index: 4;
  display: flex;
  gap: 0.5rem;
}

.sp-home26-hero__arrow {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(0, 28, 100, 0.38);
  color: #ffffff;
}

.sp-home26-hero__arrow:hover {
  background: rgba(0, 28, 100, 0.62);
}

.sp-home26-hero__pagination {
  position: absolute;
  left: clamp(1.2rem, 4.5vw, 3.6rem) !important;
  bottom: clamp(0.85rem, 2vw, 1.2rem) !important;
  width: auto !important;
  z-index: 4;
}

.sp-home26-hero__pagination .swiper-pagination-bullet {
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.sp-home26-hero__pagination .swiper-pagination-bullet-active {
  background: var(--sp-naranja, #ffa400);
}

.sp-home26-section-head {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.sp-home26-section-head span {
  color: rgba(0, 28, 100, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-home26-section-head h2 {
  margin: 0;
  color: var(--sp-azul, #001c64);
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  font-weight: 800;
}

.sp-home26-brands {
  padding: 2.3rem 0;
  background: #ffffff;
}

.sp-home26-brands__track {
  overflow: hidden;
  border-radius: 1.1rem;
  border: 1px solid rgba(0, 28, 100, 0.09);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.sp-home26-brands__item {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.sp-home26-brands__item img {
  max-height: 52px;
  max-width: 146px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.74;
  transition: 220ms ease;
}

.sp-home26-brands__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.sp-home26-brands__label {
  font-size: 0.84rem;
  color: rgba(0, 28, 100, 0.68);
  font-weight: 700;
}

.sp-home26-categories {
  padding: 3rem 0 1.4rem;
  background: #ffffff;
}

.sp-home26-categories__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.sp-home26-cat {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 28, 100, 0.1);
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: 160ms ease;
}

.sp-home26-cat:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 28, 100, 0.2);
  box-shadow: 0 10px 22px rgba(0, 28, 100, 0.1);
}

.sp-home26-cat i {
  color: var(--sp-rojo, #bb0811);
  font-size: 1rem;
}

.sp-home26-cat h3 {
  margin: 0;
  color: var(--sp-azul, #001c64);
  font-size: 0.98rem;
  font-weight: 800;
}

.sp-home26-cat p {
  margin: 0;
  color: rgba(0, 28, 100, 0.62);
  font-size: 0.8rem;
  line-height: 1.35;
}

.sp-home26-cat--all {
  background: linear-gradient(135deg, rgba(0, 28, 100, 0.96) 0%, rgba(27, 65, 148, 0.96) 100%);
}

.sp-home26-cat--all i,
.sp-home26-cat--all h3,
.sp-home26-cat--all p {
  color: #ffffff;
}

.sp-home26-products {
  padding: 2.4rem 0;
  background: #ffffff;
}

.sp-home26-products--alt {
  background: #ffffff;
}

.sp-home26-products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.sp-home26-products__head span {
  color: rgba(0, 28, 100, 0.58);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.sp-home26-products__head h2 {
  margin: 0.35rem 0 0;
  color: var(--sp-azul, #001c64);
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  font-weight: 800;
}

.sp-home26-products__head a {
  color: var(--sp-rojo, #bb0811);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.sp-home26-products__head a:hover {
  text-decoration: underline;
}

.sp-home26 .sp-products__carousel {
  margin: 0;
  padding: 0.3rem 0 0.8rem;
}

.sp-home26 .sp-products__carousel .swiper-slide {
  width: 295px;
}

.sp-home26-club {
  padding: 2.5rem 0 2rem;
  background: #ffffff;
}

.sp-home26-club__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  border: 1px solid rgba(0, 28, 100, 0.11);
  border-radius: 1.2rem;
  background: linear-gradient(160deg, #eef3ff 0%, #ffffff 56%, #f8fbff 100%);
  padding: clamp(1rem, 3vw, 2rem);
}

.sp-home26-club__copy span {
  color: rgba(0, 28, 100, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-home26-club__copy h2 {
  margin: 0.45rem 0 0.75rem;
  color: var(--sp-azul, #001c64);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
  font-weight: 800;
}

.sp-home26-club__copy p {
  margin: 0;
  color: rgba(0, 28, 100, 0.72);
  line-height: 1.6;
}

.sp-home26-club__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.sp-home26-club__visual img {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(0, 28, 100, 0.1);
}

.sp-home26-values {
  background: #ffffff;
  padding: 1.8rem 0 3rem;
}

.sp-home26-values__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.sp-home26-values__grid article {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 28, 100, 0.1);
  background: #ffffff;
}

.sp-home26-values__grid i {
  color: var(--sp-rojo, #bb0811);
}

.sp-home26-values__grid h3 {
  margin: 0;
  color: var(--sp-azul, #001c64);
  font-size: 0.98rem;
  font-weight: 800;
}

.sp-home26-values__grid p {
  margin: 0;
  color: rgba(0, 28, 100, 0.65);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .sp-home26-categories__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .sp-home26-values__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sp-home26-club__panel {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .sp-home26-hero__slide {
    min-height: 420px;
  }

  .sp-home26-hero__overlay {
    background:
      linear-gradient(180deg, rgba(0, 28, 100, 0.65) 0%, rgba(0, 28, 100, 0.76) 70%, rgba(0, 28, 100, 0.85) 100%);
  }

  .sp-home26-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sp-home26-hero__nav {
    bottom: 0.7rem;
  }

  .sp-home26-products__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sp-home26-btn,
  .sp-home26-cat,
  .sp-home26-brands__item img {
    transition: none;
  }
}
