*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: oklch(0.82 0 0);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none
}

img {
  display: block;
  max-width: 100%
}

/* ── VARIABLES ── */
:root {
  --font-title: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --lime: oklch(0.75 0.15 70);
  --lime-10: oklch(0.75 0.15 70 / .10);
  --lime-20: oklch(0.75 0.15 70 / .20);
  --gold-gradient: linear-gradient(135deg, oklch(0.92 0.08 85), oklch(0.75 0.15 70));

  --bg: #060608;
  --bg2: #0d0d11;
  --bg3: #131317;

  --line: rgba(255, 255, 255, 0.04);
  --line2: rgba(255, 255, 255, 0.08);

  --hi: oklch(0.96 0 0);
  --mid: oklch(0.65 0 0);
  --low: oklch(0.40 0 0);

  --r: 12px;
  --r-sm: 7px;
  --r-full: 100px;
  --max: 1140px;
  /* Gold refinado â€” mÃ¡s cerca del metal que del amarillo */
  --gold: #C9A84C;
  --gold-hi: #E8C97A;
  --gold-lo: #8C6A2A;
  --gold-line: rgba(201, 168, 76, .18);
  --gold-dim: rgba(201, 168, 76, .06);

  /* Gradiente de texto */
  --gold-text: linear-gradient(128deg,
      #8C6A2A 0%,
      #C9A84C 28%,
      #E8C97A 50%,
      #C9A84C 72%,
      #8C6A2A 100%);
  /* Backgrounds del hero */
  --hero-bg: #060608;
}

/* â”€â”€ BARRA DE PROGRESO â”€â”€ */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--gold-gradient);
  z-index: 9999;
  transition: width .08s linear;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   MOUSE TRAIL
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â”€â”€ REVEAL â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease
}

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

.reveal-d1 {
  transition-delay: .08s
}

.reveal-d2 {
  transition-delay: .16s
}

.reveal-d3 {
  transition-delay: .24s
}

.reveal.reveal-left {
  transform: translateX(-44px);
}

.reveal.reveal-left.visible {
  transform: translateX(0);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   NAV
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background .3s, border-color .3s, padding .3s;
}

#navbar.scrolled {
  background: rgba(6, 6, 8, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: .6rem 2.5rem;
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--hi);
  justify-self: start;
  position: relative;
  display: flex;
  align-items: center;
  width: 220px;
  /* Aumentado para dar margen */
  height: 44px;
  /* El header se mantiene delgado */
}

.brand-logo-img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  height: 100px;
  /* ¡Súper presencia de marca! */
  width: auto;
  max-width: none;
  object-fit: contain;
  border-radius: 6px;
}

.brand-logo-img--footer {
  height: 52px;
}

.nav-logo span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  justify-self: center;
}

.nav-links a {
  font-size: .84rem;
  font-weight: 400;
  color: var(--mid);
  transition: color .3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--gold-text);
  transition: width .3s ease, left .3s ease;
}

.nav-links a:hover {
  color: var(--hi);
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold-text);
  background-size: 200% 100%;
  color: #07070B;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: .8rem;
  padding: .55rem 1.25rem;
  border-radius: 3px;
  transition: opacity .2s, transform .2s;
  justify-self: end;
}

.nav-cta:hover {
  opacity: .9;
  transform: translateY(-2px);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SECCIONES â€” base
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
section {
  padding: 3.8rem 2.5rem;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

section+section {
  margin-top: 0;
  padding-top: 4.75rem;
  border-top: none;
  box-shadow: none;
}

section+section::before,
section+section::after {
  display: none;
  content: none;
}

/* ── SEPARADORES DE CURVA ENTRE SECCIONES ── */
.curve-sep {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
  position: relative;
  z-index: 2;
}

.curve-sep svg {
  display: block;
  width: 100%;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%
}

section>.container {
  position: relative;
  z-index: 1;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SEPARADOR: una sola lÃ­nea con gradiente
   Sutil. Elegante. Sin efectos.
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, .06) 15%,
      rgba(255, 255, 255, .08) 50%,
      rgba(255, 255, 255, .06) 85%,
      transparent 100%);
  border: none;
  margin: 0;
}

.sec-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: .85rem;
}

.sec-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--hi);
  margin-bottom: .9rem;
}


.sec-head {
  margin-bottom: 2.75rem
}

.sec-head.centered {
  text-align: center
}

.sec-head.centered .sec-sub {
  margin: 0 auto
}

/* Pills de secciÃ³n */
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: .3rem .9rem;
  background: color-mix(in oklab, var(--gold) 8%, transparent);
  border: 1px solid color-mix(in oklab, var(--gold) 20%, transparent);
  color: var(--gold-hi);
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
}

.section-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.section-title-tight {
  letter-spacing: -.035em
}

.section-title-accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: italic;
  font-weight: 400
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   BOTONES
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: var(--bg2);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: .9rem;
  padding: .9rem 1.85rem;
  border-radius: var(--r-full);
  transition: opacity .2s, transform .2s;
  border: none;
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1
}

.btn-primary:hover {
  opacity: .88;
  transform: translateY(-1px)
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: .95rem;
  padding: .95rem 2rem;
  border-radius: var(--r-full);
  transition: opacity .2s, transform .2s;
}

.btn-wa:hover {
  opacity: .9;
  transform: translateY(-1px)
}

/* â”€â”€â”€ HERO â”€â”€â”€ */
#hero {
  background: #07070B;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 2.5rem 0;
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
  isolation: isolate;
}

/* Separador inferior */
#hero .hero-separator {
  display: none;
}

/* â”€â”€ Layout â”€â”€ */
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  position: relative;
  z-index: 5;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

/* â”€â”€ EYEBROW â”€â”€ */
#hero-eyebrow,
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  padding: .38rem 1.05rem;
  border-radius: 3px;
  /* Esquinas cuadradas â€” mÃ¡s tÃ©cnico que pill */
  margin-bottom: 1.75rem;
}

#hero-eyebrow::before,
.hero-eyebrow::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 1px;
  animation: blink 2.4s infinite;
}

/* â”€â”€ TÃTULO â€” dominante â”€â”€ */
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3.05rem, 4.95vw, 4.9rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.03;
  margin-bottom: 1.15rem;
  color: #fff;
}

.title-mask {
  display: block;
  overflow: clip;
  line-height: 1.06;
}

.line {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  will-change: transform;
}

#line1 {
  white-space: normal;
}

/* Acento: gradiente metÃ¡lico con lustre real */
.line-accent {
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Opcional: mover el gradiente para dar shimmer estÃ¡tico */
  background-size: 200% 100%;
}

/* â”€â”€ SUBTÃTULO â”€â”€ */
.hero-sub {
  font-size: 1.05rem;
  color: rgba(200, 196, 188, .62);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: .5rem;
}

.hero-price {
  display: inline-block;
  font-family: var(--font-title);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--gold-hi);
  margin: 0 0 1.1rem;
}

/* â”€â”€ ACCIONES â”€â”€ */
.hero-actions {
  display: flex;
  gap: .85rem;
  align-items: center;
  flex-wrap: wrap;
}

/* CTA primario: metal oscuro con borde dorado */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--gold-hi);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: .9rem;
  padding: .9rem 2rem;
  border-radius: 3px;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: color .25s, border-color .25s;
}

/* Fill animado al hover */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, .12), rgba(232, 201, 122, .06));
  opacity: 0;
  transition: opacity .25s;
}

.btn-primary:hover {
  border-color: var(--gold-hi);
  color: #fff
}

.btn-primary:hover::before {
  opacity: 1
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1
}

/* â”€â”€ TICKER â”€â”€ */
.hero-mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 520px;
  perspective: 1800px;
  margin-top: -2rem;
  z-index: 1;
  isolation: isolate;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

/* Glow de foco detrÃ¡s del ticker */
.hero-mockup-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%,
      rgba(201, 168, 76, .06) 0%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-framescape-ticker {
  position: relative;
  width: 115%;
  margin-left: -7.5%;
  height: 100%;
  transform: rotateY(-8deg) rotateX(2deg);
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  /* Fade lateral muy limpio */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 14%,
      black 86%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 14%,
      black 86%,
      transparent 100%);
}

/* Fade top/bottom */
.hero-framescape-ticker::before,
.hero-framescape-ticker::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 90px;
  pointer-events: none;
  z-index: 2;
}

.hero-framescape-ticker::before {
  top: 0;
  background: linear-gradient(to bottom, var(--hero-bg) 20%, transparent);
}

.hero-framescape-ticker::after {
  bottom: 0;
  background: linear-gradient(to top, var(--hero-bg) 20%, transparent);
}

.ticker-track {
  display: flex;
  gap: 14px;
  align-items: center;
  width: max-content;
  animation: tickerScroll 36s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused
}

.ticker-item {
  width: 307px;
  height: 410px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  opacity: .32;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: opacity .4s ease, transform .4s ease, border-color .4s ease;
}

/* Elemento central mÃ¡s brillante â€” efecto spotlight */
.ticker-item:nth-child(3),
.ticker-item:nth-child(9) {
  opacity: .68;
  border-color: rgba(201, 168, 76, .2);
}

.ticker-item:hover {
  opacity: .9;
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(201, 168, 76, .35);
}

@keyframes tickerScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(calc(-50% - 7px))
  }
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1024px) {
  #hero {
    min-height: auto;
    justify-content: flex-start;
    /* Empuja todo desde arriba hacia abajo */
    padding-top: 8.5rem;
    /* Da espacio al navbar */
    padding-bottom: 4rem;
    overflow: visible;
  }


  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 100%;
    max-width: var(--max);
    min-width: 0;
  }

  .hero-left {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  /* FAIL-SAFE ABSOLUTO: Asegura que el texto sea 100% visible independientemente de GSAP o lag en mÃ³viles */
  /* 2. LIBERAMOS A LOS ELEMENTOS DE CUALQUIER PRISIÃ“N DE GSAP */
  #hero-title,
  #hero-title .line,
  #hero-eyebrow,
  #hero-sub,
  #hero-price,
  #hero-actions {
    opacity: 1;
    visibility: visible;
    transform: none;
    /* Cancela cualquier yPercent: 105 */
  }


  .hero-mockup-wrap {
    height: 360px;
    margin-top: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    /* Evita que el ticker tape tape el texto en pantallas verticales */
  }

  .ticker-item {
    width: 236px;
    height: 315px
  }

  .title-mask {
    overflow: visible;
  }

  .hero-title {
    text-align: left;
    font-size: 2.5rem;
    /* Fallback estándar */
    font-size: clamp(2.3rem, 8vw, 4rem)
  }

  #line1 {
    white-space: normal;
  }

  .hero-sub {
    margin: 0 0 1.5rem;
    text-align: left;
    max-width: 620px;
  }

  .hero-price {
    display: block;
    margin: 0 0 1.55rem;
  }

  .hero-actions {
    justify-content: flex-start;
  }

}

@media (max-width: 600px) {
  .hero-mockup-wrap {
    height: 260px
  }

  .ticker-item {
    width: 183px;
    height: 245px;
    border-radius: 8px
  }

  #hero {
    padding: 6rem 1.5rem 4rem
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   MARQUEE
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.marquee-section {
  border-top: none;
  border-bottom: none;
  padding: 1.25rem 0;
  margin-top: 0;
  overflow: hidden;
  position: relative;
  z-index: 4;
  background: var(--bg);
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 20%, transparent)
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg) 20%, transparent)
}

.marquee-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2.5rem;
}

.marquee-kicker {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.marquee-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 168, 76, .35);
  animation: marqueeDotPulse 2.2s ease-out infinite;
}

.marquee-kicker-label {
  font-family: var(--font-title);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.marquee-window {
  overflow: hidden;
  position: relative;
  min-width: 0
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: .8rem;
  animation: marq 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-title);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .62rem;
  padding: .45rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
  transition: border-color .3s ease, color .3s ease, background .3s ease;
}

.marquee-item::after {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .45);
}

.marquee-item:nth-child(5n + 1),
.marquee-item:nth-child(5n + 4) {
  color: rgba(255, 255, 255, .86);
  border-color: rgba(201, 168, 76, .24);
}

.marquee-window:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item:hover {
  color: #fff;
  border-color: rgba(201, 168, 76, .46);
  background: linear-gradient(180deg, rgba(201, 168, 76, .16), rgba(201, 168, 76, .05));
}

@keyframes marq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes marqueeDotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, .36);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(201, 168, 76, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SERVICES FLOW
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svcx-title-em {
  font-style: normal;
  background: linear-gradient(130deg, #f5f5f5, #9a9a9a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.svcx-title-accent {
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#services-flow {
  background: transparent;
  border-top: none;
}

.svcx-shell {
  max-width: 1460px;
  margin: 0 auto;
}

#services-flow .svcx-head {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 2.3rem;
}

#services-flow .svcx-head .sec-title {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
  text-wrap: balance;
}

.svcx-filters,
.svcx-filter {
  display: none;
}

/* ── GLOW CARDS ── */
.glow-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.6vw, 1.4rem);
}

.glow-card-wrap {
  position: relative;
  border-radius: 22px;
  padding: 2px;
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
}

.glow-card {
  position: relative;
  background: #0a0a0b;
  border-radius: 20px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 480px;
  height: 100%;
  overflow: hidden;
  cursor: default;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color .3s ease;
  z-index: 2;
}

.glow-card-wrap:hover {
  transform: translateY(-4px);
}

.glow-card-wrap:hover .glow-card {
  border-color: transparent;
}

/* ── BORDE GLOW ── */
.glow-card-border {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 2px;
  background: radial-gradient(400px circle at var(--mx) var(--my),
      rgba(201, 168, 76, 1) 0%,
      rgba(201, 168, 76, .4) 30%,
      transparent 65%);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: 1;
}

/* ── IMAGEN ── */
.glow-card-img {
  width: calc(100% + 84px);
  margin-left: -42px;
  margin-top: -42px;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 20px 20px 0 0;
  flex-shrink: 0;
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  filter: saturate(0.7) brightness(0.65);
  transition: filter .35s ease;
}

.glow-card-wrap:hover .glow-card-img {
  filter: saturate(0.9) brightness(0.8);
}

/* ── TEXTO ── */
.glow-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  position: relative;
  z-index: 3;
}

.glow-card-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
}

.glow-card-title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 2.1vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
}

.glow-card-desc {
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  max-width: 32ch;
}

.svcx-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.3rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .glow-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .glow-cards-grid {
    grid-template-columns: 1fr;
    gap: .9rem;
  }

  .glow-card {
    min-height: 400px;
    padding: 32px;
  }

  .glow-card-img {
    width: calc(100% + 64px);
    margin-left: -32px;
    margin-top: -32px;
  }
}

#process {
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(135, 110, 243, 0.05) 0%, transparent 65%), var(--bg);
  border-top: none;
  overflow: hidden;
  min-height: 100vh;
  /* Asegura que la secciÃ³n llene la pantalla completa */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#process .container {
  width: 100%;
  max-width: 80rem;
}

.process-head {
  max-width: 42rem;
  margin: 0 auto 2rem auto;
  /* Reducido para ahorrar espacio vertical */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#process .section-pill {
  margin-bottom: 1.45rem;
  padding: .24rem .78rem;
  background: color-mix(in oklab, var(--gold) 8%, transparent);
  border-color: color-mix(in oklab, var(--gold) 22%, transparent);
  color: var(--gold-hi);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#process .section-pill-dot {
  background: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--gold) 14%, transparent);
}

.process-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  font-weight: 500;
  margin-bottom: 0;
}

.process-steps {
  position: relative;
  width: 100%;
  max-width: 76rem;
  margin: 0 auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.proc-entry {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  display: block;
  padding-bottom: 0;
  position: relative;
}

.proc-dot-mobile {
  display: none !important;
}

.proc-content {
  position: relative;
  padding: 2.2rem 1.6rem 2.9rem;
  background: var(--bg);
  border: 1px solid color-mix(in oklab, var(--gold) 18%, var(--line2));
  border-radius: 1.1rem;
  min-height: 245px;
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.proc-entry:hover .proc-content {
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--gold) 34%, var(--line2));
  box-shadow: 0 28px 52px -14px rgba(0, 0, 0, 0.56);
  background: color-mix(in oklab, var(--bg) 90%, rgba(255, 255, 255, .03));
}

.proc-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, .46) 48%, transparent 100%);
  pointer-events: none;
  transform: scaleX(0.25);
  opacity: .45;
  transform-origin: center;
  transition: transform .6s ease, opacity .45s ease;
}

.proc-content::after {
  content: attr(data-step);
  position: absolute;
  right: .9rem;
  bottom: .3rem;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 3.8vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, .045);
  pointer-events: none;
  transform: translateY(8px);
  opacity: .15;
  transition: transform .55s ease, opacity .45s ease;
}

.proc-content>* {
  position: relative;
  z-index: 1;
}

.proc-entry--active .proc-content::before {
  transform: scaleX(1);
  opacity: .9;
}

.proc-entry--active .proc-content::after {
  transform: translateY(0);
  opacity: .9;
}

@media (min-width: 1101px) {
  .process-steps .proc-entry:not(:last-child)::after {
    content: '›';
    position: absolute;
    right: -.78rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.72rem;
    height: 1.72rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(232, 201, 122, .95);
    font-size: 1.06rem;
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012));
    border: 1px solid rgba(201, 168, 76, .36);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .34);
    z-index: 3;
    pointer-events: none;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
  }

  .process-steps .proc-entry:hover::after {
    transform: translateY(-50%) scale(1.04);
    color: rgba(255, 236, 184, .98);
    border-color: rgba(201, 168, 76, .52);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .4);
  }
}

.proc-day {
  margin-bottom: .8rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: .8rem;
  /* Ajustado para mejor proporciÃ³n */
  letter-spacing: .14em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--gold-hi) 80%, #fff 20%);
}

.proc-title {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  /* MÃ¡s compacto para que no se asfixie en el contenedor */
  line-height: 1.1;
  color: var(--hi);
  font-weight: 500;
  margin-bottom: .8rem;
  /* Menos margen inferior para ahorrar espacio */
}

.proc-title-highlight {
  color: var(--hi);
}

.proc-title-accent {
  color: var(--gold-hi);
}

.proc-desc {
  font-size: .98rem;
  /* Ajustado para legibilidad en tarjetas mÃ¡s chicas */
  line-height: 1.58;
  color: color-mix(in oklab, var(--hi) 66%, var(--mid) 34%);
  max-width: 28ch;
}

.proc-note {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--gold) 30%, transparent);
  background: color-mix(in oklab, var(--gold) 12%, transparent);
  color: var(--gold-hi);
  font-size: .85rem;
  letter-spacing: .06em;
}

.proc-note span {
  color: var(--gold-hi);
}

.proc-note-icon {
  flex-shrink: 0;
}

.proc-dot-desktop {
  display: none !important;
}

.proc-fill-line {
  display: none !important;
}

@media (max-width: 1100px) {
  #process {
    min-height: auto;
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .proc-content {
    padding: 1.7rem 1.25rem 2.45rem;
    aspect-ratio: auto;
    min-height: 220px;
  }
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
  }

  .proc-content {
    aspect-ratio: auto;
    padding: 1.5rem 1.1rem 2.3rem;
    min-height: 205px;
  }
}

@media (max-width: 680px) {
  #process {
    min-height: auto;
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
  }

  .process-head {
    margin-bottom: 1.4rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .proc-content {
    min-height: 0;
    padding: 1.35rem 1.05rem 2.05rem;
  }

  .proc-day,
  .proc-title,
  .proc-desc {
    max-width: none;
  }
}


#process {
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(135, 110, 243, 0.05) 0%, transparent 65%), var(--bg);
  overflow: hidden;
  /* evita overflow durante animaciones */
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* â”€â”€ Estado final visible (fallback si JS falla) â”€â”€ */
.no-js .proc-content {
  opacity: 1;
  transform: none;
  position: relative;
  /* para que no se apilen y tapen en fallback */
  margin-bottom: 2rem;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   DEMOS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#demos {
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.045) 0%, rgba(201, 168, 76, 0) 70%), var(--bg);
  border-top: none;
  overflow: hidden;
}

.demos-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 1.9rem;
}

.demos-header .reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.demos-header .section-title-tight {
  max-width: 21ch;
  margin: 0 auto;
  text-wrap: balance;
  letter-spacing: -0.03em;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   DEMOS: SEQUENTIAL CAROUSEL
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.demo-subtitle {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--hi);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.demo-subtitle-center {
  text-align: center;
  margin: 0 auto 1.5rem;
  max-width: 28ch;
  color: color-mix(in oklab, var(--hi) 88%, var(--mid) 12%);
}

.demo-subtitle-accent {
  color: var(--gold);
}

.sequential-carousel-wrapper {
  margin-bottom: 2.4rem;
  overflow: visible;
}

.sequential-carousel {
  position: relative;
  width: 100%;
  height: clamp(390px, 52vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  perspective: 1600px;
  perspective-origin: 50% 50%;
}

.seq-cards-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  transform-style: preserve-3d;
}

.seq-card {
  position: absolute;
  width: clamp(230px, 29vw, 334px);
  height: clamp(320px, 39vw, 430px);
  background: var(--bg2);
  border: 1px solid color-mix(in oklab, var(--line2) 78%, transparent);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 56px -18px rgba(0, 0, 0, 0.58);
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.seq-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 20, 0.06), rgba(14, 14, 20, 0.16));
  z-index: 2;
  pointer-events: none;
  opacity: .6;
  transition: opacity .5s ease;
}

.seq-card.active::before {
  opacity: 0;
}

.seq-card.active {
  border-color: color-mix(in oklab, var(--gold) 44%, var(--line2));
  box-shadow: 0 32px 70px -22px rgba(0, 0, 0, 0.66);
}

.seq-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1.1rem 1rem 1.15rem;
  text-align: center;
}

.seq-tag {
  font-size: .76rem;
  font-weight: 600;
  color: color-mix(in oklab, var(--hi) 88%, var(--mid) 12%);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: .36rem .72rem;
  border-radius: 999px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.seq-link {
  font-size: .78rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s, color .2s ease;
  font-weight: 600;
  letter-spacing: .01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}

.seq-link:hover {
  gap: 8px;
  color: #f2d78f;
}


.seq-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 14, 20, 0.6);
  backdrop-filter: blur(10px);
  color: var(--hi);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.seq-nav-btn:hover {
  background: rgba(14, 14, 20, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.seq-prev {
  left: 20px;
}

.seq-next {
  right: 20px;
}

.seq-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #111217;
  z-index: 1;
}

.seq-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0) 0%, rgba(10, 10, 15, 0.12) 58%, rgba(10, 10, 15, 0.32) 100%);
}

.sequential-carousel .demo-img::after {
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0) 0%, rgba(10, 10, 15, 0.12) 58%, rgba(10, 10, 15, 0.32) 100%);
}

.seq-overlay-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  pointer-events: none;
}

.seq-card-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 0.9rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.seq-card.active .seq-card-title {
  transform: scale(1.05);
}

.seq-card-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  pointer-events: auto;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.seq-card-cta:hover {
  transform: scale(1.06);
}

.seq-cta-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.seq-cta-icon {
  width: 34px;
  height: 34px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0e0e14;
  /* Dark icon like screenshot */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.seq-card-cta:hover .seq-cta-icon {
  transform: translateX(3px);
  background: #f5f5f5;
}


/* ── DEMOS: FRAMER 3D REFINEMENT ── */
.demos-header .section-title-tight {
  max-width: 21ch;
  margin: 0 auto;
  text-wrap: balance;
  letter-spacing: -0.03em;
}

.demo-subtitle-center {
  margin: 0 auto 1.5rem;
  max-width: 28ch;
  text-align: center;
  color: color-mix(in oklab, var(--hi) 88%, var(--mid) 12%);
}

.sequential-carousel {
  height: clamp(390px, 52vw, 520px);
  perspective: 1600px;
  perspective-origin: 50% 50%;
}

.seq-cards-container {
  transform-style: preserve-3d;
}

.seq-card {
  width: clamp(230px, 29vw, 334px);
  height: clamp(320px, 39vw, 430px);
  border: 1px solid color-mix(in oklab, var(--line2) 78%, transparent);
  border-radius: 14px;
  box-shadow: 0 24px 56px -18px rgba(0, 0, 0, 0.58);
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.seq-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 20, 0.06), rgba(14, 14, 20, 0.16));
  z-index: 2;
  pointer-events: none;
  opacity: .6;
  transition: opacity .5s ease;
}

.seq-card.active::before {
  opacity: 0;
}

.seq-card.active {
  border-color: color-mix(in oklab, var(--gold) 44%, var(--line2));
  box-shadow: 0 32px 70px -22px rgba(0, 0, 0, 0.66);
}

.seq-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1.1rem 1rem 1.15rem;
  text-align: center;
}

.seq-tag {
  font-size: .76rem;
  font-weight: 600;
  color: color-mix(in oklab, var(--hi) 88%, var(--mid) 12%);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: .36rem .72rem;
  border-radius: 999px;
  white-space: nowrap;
}

.seq-link {
  font-size: .78rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s, color .2s ease;
  font-weight: 600;
  letter-spacing: .01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}

.seq-link:hover {
  gap: 8px;
  color: #f2d78f;
}

.seq-nav-btn {
  width: 36px;
  height: 36px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(4px);
}

.seq-nav-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%) scale(1.06);
}

#demos {
  overflow: visible;
}

.sequential-carousel {
  height: clamp(520px, 62vw, 680px);
  perspective: 2200px;
  overflow: visible;
}

.sequential-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 168, 76, .12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.seq-cards-container {
  overflow: visible;
  transform-style: preserve-3d;
}

.seq-card {
  width: clamp(260px, 33vw, 390px);
  height: clamp(360px, 45vw, 520px);
  transform-style: preserve-3d;
  transform-origin: center center;
}

.seq-img::after {
  background: linear-gradient(to top, rgba(0, 0, 0, .42), rgba(0, 0, 0, .08));
}

.seq-prev {
  left: 12%;
}

.seq-next {
  right: 12%;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   DEMOS: MOTION SLIDESHOW
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.motion-slideshow-wrapper {
  position: relative;
}

.motion-slideshow {
  position: relative;
  width: 100%;
  height: clamp(400px, 60vh, 650px);
  border-radius: var(--r);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg2);
}

.ms-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ms-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ms-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  /* Escala inicial para el Ken Burns */
  will-change: transform;
}

.ms-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 20, 0.9) 0%, transparent 60%);
}

.ms-img--man {
  background-image: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?w=1200&q=80');
}

.ms-img--woman {
  background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=1200&q=80');
}

.ms-img--beauty {
  background-image: url('https://images.unsplash.com/photo-1580489944761-15a19d654956?w=1200&q=80');
}

.ms-img--doctor {
  background-image: url('https://images.unsplash.com/photo-1622253692010-333f2da6031d?w=1200&q=80');
}

.ms-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  max-width: 480px;
  z-index: 10;
  pointer-events: none;
}

.ms-testimonial {
  background: rgba(10, 10, 15, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1.1rem;
  /* MÃ¡s compacto */
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
  pointer-events: auto;
}

.ms-author-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ms-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.ms-avatar--man {
  background-image: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?w=150&q=80');
}

.ms-avatar--woman {
  background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=150&q=80');
}

.ms-avatar--beauty {
  background-image: url('https://images.unsplash.com/photo-1580489944761-15a19d654956?w=150&q=80');
}

.ms-avatar--doctor {
  background-image: url('https://images.unsplash.com/photo-1622253692010-333f2da6031d?w=150&q=80');
}

.ms-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ms-author {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  color: var(--hi);
  line-height: 1.2;
}

.ms-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .ms-overlay {
    bottom: 5.5rem;
    /* Ajuste para no tapar los controles de navegaciÃ³n del slideshow */
    left: 1rem;
    right: 1rem;
    max-width: calc(100% - 2rem);
  }

  .ms-testimonial {
    padding: 1rem;
  }
}

.ms-nav {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 20;
  background: rgba(14, 14, 20, 0.5);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ms-btn {
  background: none;
  border: none;
  color: var(--hi);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.ms-btn:hover {
  opacity: 1;
}

.ms-dots {
  display: flex;
  gap: 0.6rem;
}

.ms-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.ms-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   TESTIMONIOS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#testimonials {
  background: radial-gradient(circle at 50% 40%, rgba(201, 168, 76, 0.025) 0%, transparent 60%), var(--bg);
  border-top: none;
  overflow: hidden;
}

.testimonials-shell {
  margin-bottom: 1.6rem;
}

.testi-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.testi-kicker {
  margin-bottom: 1rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #C9A84C;
}

.testi-title {
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.04;
  color: var(--hi);
  font-weight: 500;
}

.testi-title em {
  font-style: italic;
}

.testi-rating {
  display: none;
  align-items: center;
  gap: .55rem;
  font-size: .92rem;
  color: var(--mid);
}

.testi-rating-stars,
.tcard-stars {
  display: flex;
  gap: .18rem;
}

.testi-rating-stars {
  color: #C9A84C;
}

.testi-track-wrap {
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
  margin: -1.5rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 60px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 60px, #000 calc(100% - 60px), transparent 100%);
}

.testi-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.tcard {
  width: 340px;
  flex-shrink: 0;
  margin: 0 .75rem;
  background: color-mix(in oklab, var(--bg2) 72%, transparent);
  border: 1px solid color-mix(in oklab, var(--line2) 70%, transparent);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), border-color .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.tcard:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--line2) 70%, transparent);
  box-shadow: none;
}

.tcard-stars {
  color: #C9A84C;
  font-size: .9rem;
  line-height: 1;
}

.tcard-text {
  margin-top: 1.25rem;
  font-size: .95rem;
  color: color-mix(in oklab, var(--hi) 90%, transparent);
  line-height: 1.7;
}

.tcard-foot {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in oklab, var(--line2) 65%, transparent);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.tcard-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: color-mix(in oklab, #C9A84C 15%, transparent);
  color: #E8C97A;
  font-family: var(--font-title);
  font-size: 1rem;
}

.tcard-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  flex-shrink: 0;
}

.tcard-name {
  font-size: .92rem;
  color: var(--hi);
}

.tcard-biz {
  margin-top: .1rem;
  font-size: .78rem;
  color: var(--mid);
}

@media (min-width: 640px) {
  .testi-rating {
    display: flex;
  }

  .tcard {
    width: 380px;
  }
}

#jump-cta .jump-cta-link {
  display: block;
  text-decoration: none;
  padding: .9rem 0;
}

#jump-cta .jump-cta-title {
  margin: 0;
  max-width: 12ch;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CONTACTO
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

#contact {
  position: relative;
  border-top: none;
  padding: 3.6rem 0;
  background: radial-gradient(circle at 50% 30%, rgba(201, 168, 76, 0.05) 0%, rgba(201, 168, 76, 0) 75%), var(--bg);
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(232, 201, 122, 0.08), transparent 78%);
  opacity: .55;
  filter: blur(18px);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-info {
  padding-top: 1.5rem
}

.contact-sub {
  font-size: 1.05rem;
  color: rgba(200, 196, 188, .62);
  line-height: 1.7;
  max-width: 600px;
}

.contact-why {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background .3s, border-color .3s;
}

.why-item-center {
  align-items: center;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(201, 168, 76, 0.15);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-hi);
  flex-shrink: 0;
}

.why-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2px
}

.why-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem
}

.why-desc {
  font-size: .85rem;
  color: rgba(200, 196, 188, .62);
  line-height: 1.6;
  font-weight: 300
}

/* Formulario Premium */
.form-wrap {
  background: rgba(7, 7, 11, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top-color: rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.form-wrap-glow {
  display: block;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.form-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.75rem;
}

.form-title--layered {
  position: relative;
  z-index: 1
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem
}

.field {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.field label {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(200, 196, 188, .8);
  letter-spacing: .02em
}

.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: .85rem 1rem;
  font-size: .9rem;
  font-family: 'DM Sans', sans-serif;
  color: #fff;
  outline: none;
  -webkit-appearance: none;
  resize: vertical;
  transition: border-color .3s, background .3s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.25)
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' fill='none'%3E%3Cpath d='M1 1l4.5 4L10 1' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.field select option {
  background: var(--hero-bg);
  color: #fff;
}

.field textarea {
  min-height: 110px
}

.form-submit {
  width: 100%;
  padding: 1rem;
  border-radius: 4px;
  background: linear-gradient(135deg, #C9A84C, #E8C97A);
  color: #07070B;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: .5rem;
  transition: transform .2s, box-shadow .2s;
  border: none;
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.15);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(201, 168, 76, 0.25);
}

.form-note {
  font-size: .75rem;
  color: rgba(200, 196, 188, .5);
  text-align: center;
  margin-top: .5rem;
  position: relative;
  z-index: 1;
}

.form-success {
  display: none;
  text-align: center;
  padding: 1.75rem;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}

.success-icon {
  width: 52px;
  height: 52px;
  background: var(--lime-10);
  border: 1px solid var(--lime-20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  color: var(--lime)
}

.success-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--hi)
}

.success-sub {
  font-size: .875rem;
  color: var(--mid);
  line-height: 1.65
}

.btn-wa--success {
  margin-top: .25rem
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   JUMP CTA
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FAQ
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#faq {
  background: radial-gradient(circle at 50% 40%, rgba(135, 110, 243, 0.04) 0%, rgba(135, 110, 243, 0) 70%), var(--bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
  margin: 0 auto
}

.faq-list {
  display: flex;
  flex-direction: column
}

.faq-title {
  text-align: center
}

.faq-item {
  border-bottom: 1px solid var(--line)
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  text-align: left;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: .92rem;
  color: var(--hi);
  gap: 1rem;
  transition: color .2s;
}

.faq-q:hover {
  color: var(--lime)
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--line2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--mid);
  transition: all .25s;
}

.faq-item.open .faq-icon {
  background: var(--lime-10);
  border-color: var(--lime-20);
  color: var(--lime);
  transform: rotate(45deg)
}

.faq-ans {
  height: 0;
  overflow: hidden;
  will-change: height
}

.faq-ans--open {
  height: auto
}

.faq-ans-inner {
  padding: 0 0 1rem;
  color: var(--mid);
  line-height: 1.7;
  font-size: .9rem;
  font-weight: 300
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CTA FINAL
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#cta {
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 100%), var(--bg);
  border-top: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%,
      rgba(201, 168, 76, .06) 0%,
      transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-title);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.06;
  color: var(--hi);
  margin-bottom: 1.1rem;
}

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

.cta-label {
  display: block;
  margin-bottom: 1.1rem
}

.cta-brand-title {
  font-size: clamp(2.35rem, 7.5vw, 4rem);
  margin: 1.5rem 0;
  letter-spacing: -0.05em;
}

.cta-logo-img {
  display: block;
  margin: 2rem auto;
  height: clamp(60px, 12vw, 96px);
  width: auto;
  object-fit: contain;
  opacity: 0.98;
  filter: drop-shadow(0 10px 30px rgba(201, 168, 76, 0.16));
}

.cta-brand-accent {
  color: #FFD700;
}

.cta-socials {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 2rem);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.cta-social-link {
  color: #fff;
  opacity: .82;
  transition: opacity .3s ease, transform .3s ease;
  display: inline-flex;
}

.cta-social-link svg {
  width: clamp(34px, 7vw, 40px);
  height: clamp(34px, 7vw, 40px);
}

.cta-social-link-positive:hover {
  opacity: 1;
  transform: scale(1.12) rotate(5deg);
}

.cta-social-link-negative:hover {
  opacity: 1;
  transform: scale(1.12) rotate(-5deg);
}

.cta-main-action {
  display: inline-flex;
  width: auto;
  padding: 1rem 2rem;
  font-size: clamp(.95rem, 2.7vw, 1.1rem);
  text-decoration: none;
  font-weight: 600;
  justify-content: center;
  text-transform: uppercase;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FOOTER
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer {
  background: #05050A;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 2.25rem 2.5rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--hi);
  display: inline-flex;
  align-items: center;
}

.footer-logo span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap
}

.footer-links a {
  font-size: .8rem;
  color: var(--low);
  transition: color .2s
}

.footer-links a:hover {
  color: var(--mid)
}

.footer-copy {
  font-size: .75rem;
  color: var(--low)
}

@keyframes spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

/* ── UNIFICACIÓN TOTAL DE FONDO ── */
#services-flow {
  background: transparent;
  border-top: none;
}

#process {
  background: transparent;
  border-top: none;
  overflow: hidden;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 1100px) {
  #process {
    min-height: auto;
    justify-content: flex-start;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

#demos {
  background: transparent;
  border-top: none;
  overflow: hidden;
}

#testimonials {
  background: transparent;
  border-top: none;
  overflow: hidden;
}

#jump-cta {
  background: transparent;
}

#contact {
  position: relative;
  border-top: none;
  padding: 4.5rem 0;
  background: transparent;
}

#contact::before {
  display: none;
}

#faq {
  background: transparent;
}

#cta {
  background: transparent;
  border-top: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  display: none;
}

#hero {
  background: var(--hero-bg);
}

footer {
  background: #040406;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESPONSIVE (MEDIA QUERIES)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@media (max-width: 1024px) {

  /* Fallback robusto: asegura que el texto del hero no quede oculto por estilos inline de animaciÃ³n */
  #hero-title,
  #hero-eyebrow,
  #hero .line,
  #hero-sub,
  #hero-price,
  #hero-actions {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  #hero .title-mask {
    overflow: visible;
  }

  #hero {
    justify-content: flex-start;
    min-height: auto;
    overflow: visible;
    padding: 6.25rem 2rem 3.25rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
    text-align: left;
    gap: 2.5rem;
    width: 100%;
    min-width: 0;
  }

  .hero-left {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .hero-sub {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-mockup-wrap {
    margin-top: 0;
    z-index: 1;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .svcx-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .sequential-carousel {
    height: clamp(380px, 58vw, 450px);
  }

  .seq-card {
    width: clamp(240px, 40vw, 300px);
    height: clamp(330px, 52vw, 400px);
  }

  .demos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-deck {
    --deck-spread-scale: .78;
    height: clamp(420px, 70vw, 560px);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

}

@media (max-width: 768px) {
  #navbar {
    padding: 1rem 1.5rem;
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.25rem);
  }

  .hero-mockup-wrap {
    margin-top: 0;
  }

  .svcx-grid {
    grid-template-columns: 1fr;
    gap: .9rem;
  }

  .svcx-filters {
    display: none;
  }

  .svcx-filter {
    display: none;
  }

  .svcx-card {
    aspect-ratio: auto;
    min-height: 0;
    min-height: 520px;
    border-radius: 20px;
  }

  .svcx-card-copy {
    padding: 1.25rem 1.2rem 1.4rem;
  }

  #services-flow .svcx-head .sec-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .sequential-carousel-wrapper {
    margin-bottom: 2.8rem;
  }

  .sequential-carousel {
    height: clamp(350px, 105vw, 430px);
  }

  .seq-cards-container {
    overflow: hidden;
  }

  .seq-card {
    width: clamp(210px, 72vw, 270px);
    height: clamp(310px, 92vw, 380px);
    border-radius: 12px;
  }

  .seq-nav-btn {
    width: 40px;
    height: 40px;
    top: 54%;
  }

  .seq-prev {
    left: 6px;
  }

  .seq-next {
    right: 6px;
  }

  .seq-foot {
    padding: .9rem;
  }

  .seq-tag,
  .seq-link {
    font-size: .72rem;
  }

  .ms-nav {
    gap: .85rem;
    padding: .45rem .75rem;
    bottom: 1rem;
  }

  .ms-btn svg {
    width: 20px;
    height: 20px;
  }

  .tcard {
    width: min(84vw, 320px);
    padding: 1.35rem;
  }

  .demos-grid {
    grid-template-columns: 1fr;
  }

  .demo-deck {
    --deck-spread-scale: .56;
    --deck-spread-lift: .72;
    height: clamp(390px, 96vw, 500px);
  }

  .demo-card--wide {
    grid-column: span 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    padding: 1.4rem;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info .sec-title,
  .contact-sub.contact-sub {
    text-align: center;
  }

  .contact-why {
    text-align: left;
  }

  .cta-socials {
    margin-bottom: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-links {
    justify-content: center;
  }

  .marquee-section::before,
  .marquee-section::after {
    width: 48px;
  }

  .cta-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  #navbar {
    padding: .7rem 1rem;
  }

  .nav-logo {
    font-size: 1.05rem;
    width: 170px;
    height: 34px;
  }

  .brand-logo-img {
    height: 72px; /* Ajuste majestuoso pero proporcional */
    top: 55%; /* Bajado ligeramente para evitar tocar el techo */
    transform: translateY(-45%);
    left: -6px; /* Nudged a la izquierda para alinear visualmente */
  }

  .brand-logo-img--footer {
    height: 44px;
  }

  .nav-cta {
    padding: .45rem .8rem;
    font-size: .72rem;
  }

  section {
    padding: 3.2rem 1rem;
  }

  #hero {
    padding: 5.5rem 1rem 3.2rem;
  }

  .hero-title {
    font-size: clamp(2.1rem, 11.3vw, 2.8rem);
  }

  .hero-sub {
    font-size: .95rem;
    line-height: 1.65;
  }

  .hero-mockup-wrap {
    margin-top: 0;
  }

  .marquee-shell {
    padding: 0 1rem;
    gap: .8rem;
  }

  .marquee-kicker-label {
    display: none;
  }

  .marquee-item {
    font-size: .75rem;
    padding: .38rem .62rem;
  }

  .process-title {
    font-size: clamp(1.8rem, 10vw, 2.35rem);
  }

  .proc-content {
    padding: 1.7rem 1.15rem;
    min-height: 0;
  }

  .proc-title {
    font-size: clamp(1.05rem, 5.7vw, 1.35rem);
  }

  .proc-desc {
    font-size: .9rem;
    line-height: 1.62;
    max-width: 32ch;
  }

  .ms-overlay {
    left: .7rem;
    right: .7rem;
    max-width: none;
    bottom: 5.4rem;
  }

  .ms-testimonial {
    padding: .75rem .85rem;
  }

  #jump-cta .jump-cta-title {
    max-width: 100%;
    font-size: clamp(2rem, 12vw, 2.8rem);
    text-align: center;
  }

  .cta-brand-title {
    margin: 1rem 0 1.35rem;
  }

  .cta-main-action {
    width: 100%;
  }

  .footer-inner {
    gap: 1rem;
  }
}

/* ── SEQ CAROUSEL: FINAL AUTHORITATIVE OVERRIDES ── */
#seq-carousel.sequential-carousel {
  height: clamp(520px, 62vw, 680px) !important;
  perspective: 2200px !important;
  overflow: visible !important;
}

#seq-carousel .seq-cards-container {
  overflow: visible !important;
  transform-style: preserve-3d !important;
}

#seq-carousel .seq-card {
  width: clamp(260px, 33vw, 390px) !important;
  height: clamp(360px, 45vw, 520px) !important;
  transform-style: preserve-3d !important;
  transform-origin: center center !important;
}

#seq-carousel .seq-prev {
  left: 12% !important;
}

#seq-carousel .seq-next {
  right: 12% !important;
}

@media (max-width: 900px) {
  #seq-carousel.sequential-carousel {
    height: clamp(430px, 88vw, 560px) !important;
  }

  #seq-carousel .seq-card {
    width: clamp(220px, 64vw, 300px) !important;
    height: clamp(300px, 82vw, 420px) !important;
  }

  #seq-carousel .seq-prev {
    left: 4% !important;
  }

  #seq-carousel .seq-next {
    right: 4% !important;
  }
}



/* ── SCROLLABLE INTERNAL MOCKUP LOGIC ── */
.seq-scroll-wrapper {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
  background: #111217;
  scrollbar-width: none;
  /* Ocultar Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.seq-scroll-wrapper::-webkit-scrollbar {
  display: none;
  /* Ocultar Chrome/Safari/Opera */
  width: 0;
  height: 0;
}

.seq-mockup-img {
  display: block;
  width: 100%;
  height: auto !important;
  pointer-events: none;
}

.seq-scroll-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to bottom,
      rgba(14, 14, 20, 0) 0%,
      rgba(14, 14, 20, 0) 65%,
      rgba(14, 14, 20, 0.45) 100%);
}

/* ── MOBILE TOUCH & SCROLL HINT FOR DEMOS ── */
@media (max-width: 768px) {
  .seq-scroll-wrapper {
    position: relative;
  }

  .seq-scroll-wrapper::after {
    content: 'DESLIZAR';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 8;
    background: rgba(14, 14, 20, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--gold-hi);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.6rem 1.1rem 0.6rem 2.5rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
    pointer-events: none;
    opacity: 0.96;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    
    /* Elegant pointing hand SVG */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 11V6a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v0a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v5M18 11a2 2 0 0 0 2 2v0a2 2 0 0 0 2-2v-1.5a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2M12 11V3a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v8M10 11V9a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v7a7 7 0 0 0 7 7h1a7 7 0 0 0 7-7v-1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 16px;
    
    animation: seqTapRipple 2s infinite ease-in-out;
  }

  /* Permanently collapse when user performs interaction */
  .seq-scroll-wrapper.seq-is-scrolled::after {
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(0.85);
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@keyframes seqTapRipple {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.7), 0 8px 24px rgba(0, 0, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(201, 168, 76, 0), 0 8px 24px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0), 0 8px 24px rgba(0, 0, 0, 0.5);
  }
}