/* ============================================
   BIT&MÁS — Landing Page
   Aesthetic: Sophisticated tech with geometric energy
   Brand: Mauve Shadow + Ocean Mist + Sunflower Gold + Hot Rose
   ============================================ */

:root {
  /* Brand */
  --mauve: #593C52;
  --mauve-2: #3D2839;
  --mauve-deep: #2A1B27;
  --teal: #00B19D;
  --teal-soft: #5FCBBE;
  --gold: #FBAF16;
  --gold-soft: #FDCE6E;
  --rose: #BE377E;
  --rose-soft: #D86FA4;

  /* Neutrals */
  --cream: #FAF6F2;
  --paper: #F4EEE7;
  --ink: #1A1015;
  --line: rgba(89, 60, 82, 0.14);
  --line-soft: rgba(89, 60, 82, 0.07);
  --line-light: rgba(255, 255, 255, 0.14);

  /* Type */
  --f-display: 'Montserrat', system-ui, sans-serif;
  --f-body: 'Manrope', system-ui, sans-serif;
  --f-serif: 'Fraunces', Georgia, serif;

  /* Layout */
  --container: 1280px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

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

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

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--mauve-deep); }

/* ============ Custom cursor (desktop only) ============ */
.cursor, .cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  .cursor {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 38px; height: 38px;
    border: 1.5px solid var(--mauve);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .25s var(--ease-out), height .25s var(--ease-out), background .25s, border-color .25s, opacity .2s;
    mix-blend-mode: difference;
    backdrop-filter: invert(1);
  }
  .cursor-dot {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
  }
  .cursor.is-link {
    width: 70px; height: 70px;
    background: var(--gold);
    border-color: var(--gold);
    mix-blend-mode: normal;
  }
}

/* ============ Scroll progress ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--rose));
  z-index: 9998;
  transition: width .08s linear;
}

/* ============ Grain overlay ============ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: .04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
}

/* ============ Container ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}

/* ============ Navigation ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem var(--pad);
  transition: padding .35s var(--ease-out), background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 0.6rem var(--pad);
  background: rgba(250, 246, 242, 0.85);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom-color: var(--line);
}
.nav.is-dark.is-scrolled {
  background: rgba(42, 27, 39, 0.82);
  border-bottom-color: var(--line-light);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  letter-spacing: 0.04em;
}
.nav__logo {
  width: 38px; height: 38px;
  object-fit: contain;
  transition: transform .4s var(--ease-bounce);
}
.nav__brand:hover .nav__logo { transform: rotate(-8deg) scale(1.08); }
.nav__brand-text {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--mauve);
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav.is-dark .nav__brand-text { color: var(--cream); }
.nav__brand-text em {
  font-style: normal;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  opacity: .7;
  text-transform: uppercase;
}
.amp { color: var(--gold); font-weight: 900; }
.amp-w { color: var(--gold); }

.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-left: auto;
  font-size: 0.93rem;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  color: var(--mauve);
  opacity: .8;
  transition: opacity .2s;
}
.nav.is-dark .nav__links a { color: var(--cream); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--gold);
  transition: width .35s var(--ease-out);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mauve);
  color: var(--cream);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background .25s, transform .25s var(--ease-out);
}
.nav__cta:hover { background: var(--ink); transform: translateX(-2px); }
.nav__cta svg { transition: transform .3s; }
.nav__cta:hover svg { transform: translateX(3px); }
.nav.is-dark .nav__cta { background: var(--gold); color: var(--mauve-deep); }
.nav.is-dark .nav__cta:hover { background: var(--cream); }

.nav__burger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--mauve);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav.is-dark .nav__burger span { background: var(--cream); }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(ellipse at 30% 0%, var(--mauve-2) 0%, var(--mauve-deep) 55%, var(--ink) 100%);
  color: var(--cream);
  padding: 9rem var(--pad) 0;
  overflow: hidden;
  isolation: isolate;
}

/* hero block layers (parallax) — behind text, dimmed enough to not compete */
.hero__blocks {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .55;
}
/* Mask blocks behind text on desktop for guaranteed readability */
@media (min-width: 900px) {
  .hero__blocks::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
      rgba(42, 27, 39, 0.75) 0%,
      rgba(42, 27, 39, 0.55) 30%,
      transparent 65%,
      transparent 100%);
    z-index: 2;
    pointer-events: none;
  }
}
.hero__block-grid { position: absolute; inset: 0; }
.hb {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 14%;
}
.hb--mauve { background: linear-gradient(140deg, var(--mauve), var(--mauve-2)); box-shadow: 0 20px 60px -20px rgba(89, 60, 82, 0.6); }
.hb--teal { background: linear-gradient(140deg, var(--teal), #00897a); box-shadow: 0 20px 60px -20px rgba(0, 177, 157, 0.5); }
.hb--gold { background: linear-gradient(140deg, var(--gold), #d99511); box-shadow: 0 20px 60px -20px rgba(251, 175, 22, 0.5); }
.hb--rose { background: linear-gradient(140deg, var(--rose), #95265f); box-shadow: 0 20px 60px -20px rgba(190, 55, 126, 0.5); }
.hb--ghost { background: rgba(255, 255, 255, 0.025); border: 1px solid rgba(255, 255, 255, 0.05); }

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem 0 5rem;
}

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 246, 242, 0.85);
  font-weight: 500;
  margin-bottom: 2.4rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot--teal { background: var(--teal); box-shadow: 0 0 0 0 rgba(0, 177, 157, .5); animation: pulse 2.2s infinite; }
.dot--gold { background: var(--gold); }
.dot--rose { background: var(--rose); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 177, 157, .5); }
  50% { box-shadow: 0 0 0 8px rgba(0, 177, 157, 0); }
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 8.2vw, 7.6rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin-bottom: 2.2rem;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .word {
  display: inline-block;
}
.hero__title .ital {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  color: rgba(250, 246, 242, 0.78);
}
.hero__title .accent-teal { color: var(--teal); }
.hero__title .accent-gold { color: var(--gold); }

.hero__sub {
  max-width: 600px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(250, 246, 242, 0.78);
  margin-bottom: 2.5rem;
}
.hero__sub strong { color: var(--cream); font-weight: 600; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 4rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform .25s var(--ease-out), background .3s, border-color .3s, color .3s;
  border: 1.5px solid transparent;
}
.btn svg { transition: transform .35s var(--ease-out); }
.btn--primary {
  background: var(--gold);
  color: var(--mauve-deep);
  box-shadow: 0 18px 50px -20px rgba(251, 175, 22, 0.7);
}
.btn--primary:hover { background: var(--cream); transform: translateY(-2px); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost {
  border-color: var(--line-light);
  color: var(--cream);
  background: transparent;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 1.6rem 0;
  max-width: 760px;
}
.meta-card {
  padding: 0.4rem 1.4rem 0.4rem 0;
  border-right: 1px solid var(--line-light);
}
.meta-card:last-child { border-right: none; }
.meta-card__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.meta-card:nth-child(2) .meta-card__num { color: var(--teal); }
.meta-card:nth-child(3) .meta-card__num { color: var(--rose); font-family: var(--f-display); font-size: clamp(1.4rem, 2vw, 1.7rem); }
.meta-card:nth-child(4) .meta-card__num { color: var(--cream); }
.meta-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 246, 242, 0.55);
  font-weight: 500;
}

/* hero marquee */
.hero__marquee {
  position: relative;
  z-index: 2;
  margin: 0 calc(-1 * var(--pad));
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-light);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}
.marquee {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: scroll-x 35s linear infinite;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  letter-spacing: -0.01em;
  color: rgba(250, 246, 242, 0.4);
}
.marquee span { display: inline-block; }
.dot-sep { color: var(--gold); }
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

/* ============ Section heads ============ */
.section-head {
  margin-bottom: 3.5rem;
  max-width: 800px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mauve);
  margin-bottom: 1.4rem;
}
.eyebrow i {
  display: inline-block;
  width: 26px; height: 1px;
  background: var(--mauve);
}
.eyebrow--light { color: rgba(250, 246, 242, 0.7); }
.eyebrow--light i { background: rgba(250, 246, 242, 0.5); }

.section-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--mauve-deep);
  margin-bottom: 1.4rem;
}
.section-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--gold); }

.section-lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: rgba(26, 16, 21, 0.7);
  max-width: 620px;
  font-weight: 300;
}
.section-lead--light { color: rgba(250, 246, 242, 0.75); }
.section-lead strong { color: var(--mauve-deep); font-weight: 600; }
.section-lead--light strong { color: var(--cream); }

/* ============ PILARES ============ */
.pilares {
  padding: 7rem var(--pad);
  background: var(--cream);
  position: relative;
}
.pilares__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.pilar {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2.4rem 2rem 2.2rem;
  transition: transform .45s var(--ease-out), box-shadow .45s, border-color .45s;
  isolation: isolate;
  overflow: hidden;
}
.pilar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, transparent 60%, rgba(251, 175, 22, 0.06) 100%);
  opacity: 0;
  transition: opacity .5s;
  z-index: -1;
}
.pilar:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px -30px rgba(89, 60, 82, 0.25);
  border-color: rgba(89, 60, 82, 0.25);
}
.pilar:hover::before { opacity: 1; }
.pilar--featured {
  background: var(--mauve-deep);
  color: var(--cream);
  border-color: var(--mauve);
}
.pilar--featured::before {
  background: linear-gradient(140deg, transparent 50%, rgba(251, 175, 22, 0.12) 100%);
}
.pilar__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--mauve);
  opacity: .6;
  margin-bottom: 1.6rem;
}
.pilar--featured .pilar__num { color: var(--gold); opacity: 1; }
.pilar__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
  margin-bottom: 1.6rem;
  color: var(--mauve);
  border: 1px solid var(--line);
}
.pilar--featured .pilar__icon {
  background: rgba(255, 255, 255, 0.07);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.1);
}
.pilar__icon svg { width: 36px; height: 36px; }
.pilar h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.9rem;
  color: var(--mauve-deep);
}
.pilar--featured h3 { color: var(--cream); }
.pilar p {
  font-size: 0.97rem;
  line-height: 1.55;
  color: rgba(26, 16, 21, 0.7);
  margin-bottom: 1.6rem;
}
.pilar--featured p { color: rgba(250, 246, 242, 0.78); }
.pilar p strong { color: var(--mauve-deep); font-weight: 600; }
.pilar--featured p strong { color: var(--cream); }
.pilar__tag {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(89, 60, 82, 0.08);
  color: var(--mauve);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.pilar--featured .pilar__tag {
  background: rgba(251, 175, 22, 0.15);
  color: var(--gold);
}

@media (max-width: 900px) {
  .pilares__grid { grid-template-columns: 1fr; }
}

/* ============ MANIFIESTO STRIP ============ */
.manifest {
  padding: 5rem var(--pad) 4rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.manifest__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: end;
}
.manifest__sentence {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--mauve-deep);
  margin-top: 1.2rem;
}
.manifest__sentence em {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--rose);
}
.manifest__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 1rem;
}
.ms {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 0 0;
  border-top: 1.5px solid var(--mauve-deep);
}
.ms__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--mauve-deep);
}
.ms:nth-child(1) .ms__num { color: var(--teal); }
.ms:nth-child(2) .ms__num { color: var(--rose); }
.ms:nth-child(3) .ms__num { color: var(--gold); }
.ms:nth-child(4) .ms__num { color: var(--mauve); }
.ms__lbl {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 16, 21, 0.55);
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .manifest__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .manifest__stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* ============ ASESORES ============ */
.asesores {
  padding: 7rem var(--pad);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.asesores::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 55, 126, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.asesores__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
}
.asesores__intro .section-title { margin-bottom: 2rem; }
.asesores__badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem 1rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  margin-top: 0.5rem;
}
.asesores__badge img { width: 36px; height: 36px; }
.asesores__badge strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--mauve-deep);
  line-height: 1;
  margin-bottom: 3px;
}
.asesores__badge em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 16, 21, 0.55);
}
.asesores__intro .section-title .muted {
  font-family: var(--f-display);
  font-weight: 400;
  color: rgba(89, 60, 82, 0.45);
  font-size: 0.7em;
  letter-spacing: -0.01em;
  display: inline-block;
  margin-top: 0.4rem;
}
.asesores__lead {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.65vw, 1.4rem);
  line-height: 1.45;
  color: var(--mauve-deep);
  margin-bottom: 1.6rem;
  font-weight: 400;
}
.asesores__body p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(26, 16, 21, 0.72);
  margin-bottom: 2rem;
}
.asesores__body p strong {
  color: var(--mauve-deep);
  font-weight: 600;
  background: linear-gradient(180deg, transparent 60%, rgba(251, 175, 22, 0.3) 60%);
  padding: 0 2px;
}
.asesores__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.asesores__bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}
.asesores__bullets li:first-child { border-top: none; padding-top: 0; }
.ab__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--rose);
  padding-top: 4px;
}
.asesores__bullets h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--mauve-deep);
  margin-bottom: 0.25rem;
}
.asesores__bullets p {
  font-size: 0.92rem;
  margin-bottom: 0;
  color: rgba(26, 16, 21, 0.62);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .asesores__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============ SERVICIOS ============ */
.servicios {
  padding: 7rem var(--pad);
  background: var(--cream);
  position: relative;
}
.servicios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.serv {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s, background .4s;
  overflow: hidden;
}
.serv:hover {
  transform: translateY(-5px);
  border-color: rgba(89, 60, 82, 0.3);
  box-shadow: 0 30px 70px -30px rgba(89, 60, 82, 0.25);
}
.serv--featured {
  background: var(--mauve-deep);
  color: var(--cream);
  border-color: var(--mauve-deep);
}
.serv--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(251, 175, 22, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.serv__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
  position: relative;
}
.serv__id {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--mauve);
  opacity: .55;
}
.serv--featured .serv__id { color: var(--gold); opacity: 1; }
.serv__chip {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(89, 60, 82, 0.08);
  color: var(--mauve);
}
.serv--featured .serv__chip {
  background: rgba(251, 175, 22, 0.18);
  color: var(--gold);
}
.serv__ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--cream);
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  color: var(--mauve-deep);
  border: 1px solid var(--line);
  position: relative;
}
.serv--featured .serv__ico {
  background: rgba(255, 255, 255, 0.07);
  color: var(--gold);
  border-color: rgba(255, 255, 255, 0.12);
}
.serv__ico svg { width: 28px; height: 28px; }
.serv h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  color: var(--mauve-deep);
  position: relative;
}
.serv--featured h3 { color: var(--cream); }
.serv > p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(26, 16, 21, 0.7);
  margin-bottom: 1.4rem;
  flex: 1;
  position: relative;
}
.serv--featured > p { color: rgba(250, 246, 242, 0.78); }
.serv__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--line);
  position: relative;
}
.serv--featured .serv__list { border-top-color: rgba(255, 255, 255, 0.15); }
.serv__list li {
  font-size: 0.85rem;
  color: rgba(26, 16, 21, 0.65);
  position: relative;
  padding-left: 1.1rem;
}
.serv--featured .serv__list li { color: rgba(250, 246, 242, 0.7); }
.serv__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.serv--featured .serv__list li::before { background: var(--gold); }

@media (max-width: 1000px) { .servicios__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .servicios__grid { grid-template-columns: 1fr; } }

/* ============ GALERIA ODOO ============ */
.galeria {
  padding: 7rem var(--pad);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.galeria__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.2rem;
}
.gal {
  position: relative;
  margin: 0;
  background: var(--cream);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease-out), box-shadow .5s;
  display: flex;
  flex-direction: column;
}
.gal:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px -25px rgba(89, 60, 82, 0.35);
}
.gal--main { grid-row: span 2; }
.gal--wide { grid-column: span 2; }
.gal__chip {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(42, 27, 39, 0.92);
  color: var(--cream);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.gal__chip .dot { width: 6px; height: 6px; }
.gal__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f0eee9;
}
.gal--main .gal__media { aspect-ratio: 4 / 5; }
.gal--wide .gal__media { aspect-ratio: 16 / 8; }
.gal__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1s var(--ease-out);
}
.gal:hover .gal__media img { transform: scale(1.04); }
.gal figcaption {
  padding: 1.2rem 1.4rem 1.4rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.gal figcaption h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  color: var(--mauve-deep);
  margin-bottom: 0.25rem;
}
.gal figcaption p {
  font-size: 0.85rem;
  color: rgba(26, 16, 21, 0.6);
  line-height: 1.45;
}
.galeria__pill {
  margin-top: 2.5rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  color: rgba(26, 16, 21, 0.75);
  margin-left: 50%;
  transform: translateX(-50%);
}
.galeria__pill strong {
  color: var(--mauve-deep);
  font-weight: 700;
}

@media (max-width: 1000px) {
  .galeria__grid { grid-template-columns: 1fr 1fr; }
  .gal--main, .gal--wide { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 600px) {
  .galeria__grid { grid-template-columns: 1fr; }
  .gal--main, .gal--wide { grid-column: span 1; }
  .galeria__pill { margin-left: 0; transform: none; }
}

/* ============ SISTEMA / BENTO ============ */
.sistema {
  position: relative;
  padding: 7rem var(--pad);
  background: linear-gradient(180deg, var(--mauve-deep) 0%, var(--ink) 100%);
  color: var(--cream);
  overflow: hidden;
}
.sistema__bg {
  position: absolute;
  inset: -20%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 177, 157, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(190, 55, 126, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(251, 175, 22, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.bento__cell {
  background: rgba(250, 246, 242, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out), border-color .4s, background .4s;
  backdrop-filter: blur(10px);
}
.bento__cell:hover {
  transform: translateY(-4px);
  background: rgba(250, 246, 242, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}
.bento__cell--lg { grid-column: span 2; grid-row: span 2; }
.bento__cell--wide { grid-column: span 2; }
.bento__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}
.bento__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.bento__tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 242, 0.5);
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}
.bento__cell h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
  line-height: 1.1;
}
.bento__cell--lg h3 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.bento__cell h3 em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.bento__cell p {
  font-size: 0.92rem;
  color: rgba(250, 246, 242, 0.7);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.bento__cell p strong { color: var(--cream); font-weight: 600; }

/* POS mock */
.pos-mock {
  background: var(--cream);
  color: var(--mauve-deep);
  border-radius: 14px;
  padding: 1rem 1.2rem 1.2rem;
  margin-top: auto;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
  font-family: var(--f-body);
}
.pos-mock__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed rgba(89, 60, 82, 0.2);
  margin-bottom: 0.8rem;
}
.pos-mock__title {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mauve);
}
.pos-mock__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.45rem 0;
  font-weight: 400;
}
.pos-mock__row--total {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.05rem;
  border-top: 1px dashed rgba(89, 60, 82, 0.2);
  padding-top: 0.6rem;
  margin-top: 0.4rem;
  color: var(--mauve-deep);
}
.pos-mock__chip {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 177, 157, 0.12);
  color: #008070;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Bars chart */
.bars {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  height: 110px;
  margin-top: auto;
}
.bar {
  flex: 1;
  background: var(--c);
  height: 0;
  border-radius: 6px 6px 2px 2px;
  transition: height 1.2s var(--ease-out);
  opacity: .85;
}
.bento__cell.is-visible .bar { height: var(--h); }

/* Ledger */
.ledger { margin-top: auto; }
.ledger__row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 400;
  color: rgba(250, 246, 242, 0.7);
}
.t-teal { color: var(--teal); font-weight: 700; font-family: var(--f-display); }
.t-gold { color: var(--gold); font-weight: 700; font-family: var(--f-display); }
.t-rose { color: var(--rose); font-weight: 700; font-family: var(--f-display); }
.ledger__bar {
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 0.9rem;
  overflow: hidden;
}
.ledger__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transition: width 1.5s var(--ease-out);
  border-radius: 4px;
}
.bento__cell.is-visible .ledger__bar span { width: var(--w); }

/* FEL mock */
.fel-mock {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.2rem;
  margin-top: auto;
  align-items: center;
}
.fel-mock__doc {
  background: var(--cream);
  color: var(--mauve);
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
}
.fel-mock__head {
  grid-column: 1 / -1;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--mauve-deep);
  margin-bottom: 0.4rem;
}
.fel-mock__lines { display: flex; flex-direction: column; gap: 0.4rem; }
.fel-mock__lines span {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(89, 60, 82, 0.25), rgba(89, 60, 82, 0.08));
}
.fel-mock__lines span.short { width: 50%; }
.fel-mock__qr {
  width: 52px; height: 52px;
  color: var(--mauve-deep);
}
.fel-mock__status {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.fel-mock__status strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--teal);
  font-size: 1rem;
}
.fel-mock__status em {
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(250, 246, 242, 0.6);
}
.pulse {
  width: 12px; height: 12px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--teal);
  animation: pulseRing 1.8s infinite;
  flex: none;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(0, 177, 157, 0.5); }
  100% { box-shadow: 0 0 0 14px rgba(0, 177, 157, 0); }
}

/* Devices */
.devices {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  margin-top: auto;
  height: 110px;
}
.device {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
}
.device::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--teal), var(--rose));
  opacity: .3;
}
.device--desk { width: 120px; height: 80px; }
.device--tab { width: 56px; height: 80px; border-radius: 10px; }
.device--phone { width: 36px; height: 70px; border-radius: 10px; }

/* Open source tags */
.opensource {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}
.os-tag {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .bento__cell--lg, .bento__cell--wide { grid-column: span 1; grid-row: span 1; }
  .fel-mock { grid-template-columns: 1fr; }
}

/* ============ SECTORES ============ */
.sectores {
  padding: 7rem var(--pad);
  background: var(--cream);
}
.sectores__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.sector-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.8rem 1.4rem;
  transition: transform .4s var(--ease-out), background .4s, border-color .4s, color .4s;
  position: relative;
  overflow: hidden;
}
.sector-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--mauve-deep);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .5s var(--ease-out);
  z-index: 0;
}
.sector-card:hover { color: var(--cream); border-color: var(--mauve-deep); transform: translateY(-4px); }
.sector-card:hover::before { transform: scaleY(1); }
.sector-card > * { position: relative; z-index: 1; }
.sector-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: rgba(89, 60, 82, 0.08);
  color: var(--mauve);
  transition: background .4s, color .4s;
}
.sector-card:hover .sector-card__icon { background: var(--gold); color: var(--mauve-deep); }
.sector-card__icon svg { width: 26px; height: 26px; }
.sector-card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  color: var(--mauve-deep);
  transition: color .4s;
}
.sector-card:hover h3 { color: var(--cream); }
.sector-card p {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(26, 16, 21, 0.65);
  transition: color .4s;
}
.sector-card:hover p { color: rgba(250, 246, 242, 0.75); }

@media (max-width: 1000px) {
  .sectores__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .sectores__grid { grid-template-columns: 1fr 1fr; }
}

/* ============ COMPARATIVA / OBJECIONES ============ */
.comparativa {
  padding: 7rem var(--pad);
  background: var(--paper);
  position: relative;
}
.objeciones {
  max-width: 900px;
  margin: 0 auto;
}
.obj {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.obj:first-child { border-top: 1px solid var(--line); }
.obj summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 0;
  transition: padding .3s;
}
.obj summary::-webkit-details-marker { display: none; }
.obj__quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: var(--mauve-deep);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.obj__chevron {
  font-family: var(--f-display);
  font-size: 1.8rem;
  color: var(--mauve);
  font-weight: 300;
  transition: transform .35s var(--ease-out);
  flex: none;
}
.obj[open] .obj__chevron { transform: rotate(45deg); }
.obj__body {
  padding: 0 0 1.8rem;
  max-width: 700px;
}
.obj__body p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(26, 16, 21, 0.72);
}

/* ============ PRECIOS ============ */
.precios {
  padding: 7rem var(--pad);
  background: linear-gradient(180deg, var(--mauve-deep) 0%, var(--mauve-2) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.precios::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 177, 157, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.precios__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  position: relative;
}
.precio {
  background: rgba(250, 246, 242, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 2.4rem 2.2rem;
  position: relative;
  backdrop-filter: blur(10px);
  transition: transform .4s var(--ease-out), border-color .4s;
}
.precio:hover { transform: translateY(-6px); }
.precio--featured {
  background: var(--cream);
  color: var(--mauve-deep);
  border-color: var(--cream);
  box-shadow: 0 30px 90px -20px rgba(0, 0, 0, 0.5);
}
.precio__badge {
  position: absolute;
  top: -12px; right: 1.6rem;
  background: var(--gold);
  color: var(--mauve-deep);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}
.precio__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 242, 0.6);
  font-weight: 600;
  margin-bottom: 1rem;
}
.precio--featured .precio__label { color: var(--mauve); }
.precio__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.6rem;
}
.precio__title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.precio--featured .precio__title em { color: var(--rose); }
.precio__range {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.precio--featured .precio__range { border-bottom-color: var(--line); }
.precio__from {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: rgba(250, 246, 242, 0.6);
}
.precio--featured .precio__from { color: var(--mauve); }
.precio__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.precio--featured .precio__num { color: var(--mauve-deep); }
.precio__sep {
  font-family: var(--f-display);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 400;
}
.precio__per {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: .7;
  margin-left: 0.4rem;
}
.precio__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.precio__list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 400;
}
.precio__list svg {
  width: 18px; height: 18px;
  flex: none;
  padding: 3px;
  background: rgba(0, 177, 157, 0.15);
  border-radius: 50%;
  color: var(--teal);
}
.precio--featured .precio__list svg {
  background: rgba(0, 177, 157, 0.12);
}
.precio__list li strong { font-weight: 700; }

.precios__note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: rgba(250, 246, 242, 0.5);
  letter-spacing: 0.04em;
}

@media (max-width: 800px) {
  .precios__grid { grid-template-columns: 1fr; }
}

/* ============ SaaS — PRODUCTO RECURRENTE ============ */
.saas {
  position: relative;
  padding: 7rem var(--pad);
  background: linear-gradient(180deg, var(--mauve-deep) 0%, var(--ink) 100%);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.saas::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(0, 177, 157, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.saas::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(251, 175, 22, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.saas__deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .6;
  pointer-events: none;
}
.saas__head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 4rem;
}
.saas__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}
.sf {
  background: rgba(250, 246, 242, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.8rem;
  backdrop-filter: blur(8px);
  transition: transform .4s var(--ease-out), background .4s, border-color .4s;
}
.sf:hover {
  transform: translateY(-4px);
  background: rgba(250, 246, 242, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}
.sf__ico {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(251, 175, 22, 0.15);
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.sf__ico svg { width: 22px; height: 22px; }
.sf:nth-child(2) .sf__ico { background: rgba(0, 177, 157, 0.15); color: var(--teal); }
.sf:nth-child(3) .sf__ico { background: rgba(190, 55, 126, 0.15); color: var(--rose); }
.sf:nth-child(4) .sf__ico { background: rgba(251, 175, 22, 0.15); color: var(--gold); }
.sf:nth-child(5) .sf__ico { background: rgba(0, 177, 157, 0.15); color: var(--teal); }
.sf:nth-child(6) .sf__ico { background: rgba(190, 55, 126, 0.15); color: var(--rose); }
.sf h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-bottom: 0.55rem;
}
.sf p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(250, 246, 242, 0.7);
}

.saas__cta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}
.saas__cta-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-right: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.saas__from {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 242, 0.55);
  font-weight: 600;
}
.saas__price {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
}
.saas__per {
  font-size: 0.95rem;
  color: rgba(250, 246, 242, 0.6);
  font-weight: 500;
}
.saas__cta-text strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-bottom: 4px;
}
.saas__cta-text em {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(250, 246, 242, 0.62);
}

@media (max-width: 1000px) { .saas__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) {
  .saas__grid { grid-template-columns: 1fr; }
  .saas__cta { grid-template-columns: 1fr; gap: 1.4rem; padding: 1.6rem; text-align: center; }
  .saas__cta-pricing { padding-right: 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); padding-bottom: 1.2rem; justify-content: center; }
}

/* ============ PROCESO ============ */
.proceso {
  padding: 7rem var(--pad);
  background: var(--cream);
}
.proceso__line {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  position: relative;
  counter-reset: step;
}
.proceso__line::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 4%; right: 4%;
  height: 1px;
  background: linear-gradient(90deg, var(--mauve) 0%, var(--gold) 33%, var(--teal) 66%, var(--rose) 100%);
  opacity: .3;
}
.proceso__step {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
}
.proceso__num {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--mauve-deep);
  color: var(--mauve-deep);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  transition: background .4s, color .4s, transform .4s var(--ease-bounce);
}
.proceso__step:hover .proceso__num { background: var(--mauve-deep); color: var(--gold); transform: scale(1.08); }
.proceso__step h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--mauve-deep);
  margin-bottom: 0.5rem;
}
.proceso__step p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(26, 16, 21, 0.65);
  margin-bottom: 0.9rem;
}
.proceso__time {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(89, 60, 82, 0.08);
  color: var(--mauve);
}

@media (max-width: 900px) {
  .proceso__line { grid-template-columns: 1fr; gap: 2rem; }
  .proceso__line::before { display: none; }
  .proceso__step { flex-direction: row; align-items: flex-start; }
  .proceso__step > div { flex: 1; padding-top: 0.4rem; }
}

/* ============ CTA ============ */
.cta {
  position: relative;
  padding: 8rem var(--pad);
  background: linear-gradient(135deg, var(--mauve-deep) 0%, var(--ink) 100%);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.cta__blocks {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .7;
}
/* Center vignette ensures CTA text stays clearly above blocks */
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(42, 27, 39, 0.55) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.cta__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 1.4rem 0;
}
.cta__title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.cta__sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(250, 246, 242, 0.75);
  margin-bottom: 3rem;
  max-width: 580px;
  margin-left: auto; margin-right: auto;
  line-height: 1.55;
}
.cta__channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.channel {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  border-radius: 20px;
  background: rgba(250, 246, 242, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  transition: background .35s, border-color .35s, transform .35s var(--ease-out);
}
.channel:hover {
  background: rgba(250, 246, 242, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}
.channel__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: none;
}
.channel--whatsapp .channel__icon {
  background: #25D366;
  color: white;
}
.channel--email .channel__icon {
  background: var(--gold);
  color: var(--mauve-deep);
}
.channel__icon svg { width: 24px; height: 24px; }
.channel__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: .55;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.channel__val {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
}
.channel__arrow {
  margin-left: auto;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform .3s;
}
.channel:hover .channel__arrow { transform: translateX(4px); }

.cta__loc {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(250, 246, 242, 0.55);
  letter-spacing: 0.05em;
}
.cta__loc svg { width: 16px; height: 16px; color: var(--gold); }

@media (max-width: 700px) {
  .cta__channels { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.footer {
  position: relative;
  padding: 5rem var(--pad) 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__brand img { width: 56px; height: 56px; }
.footer__brand strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}
.footer__brand em {
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  opacity: .55;
  text-transform: uppercase;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__nav h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: var(--gold);
}
.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__nav a, .footer__nav li {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(250, 246, 242, 0.65);
  transition: color .3s;
}
.footer__nav a:hover { color: var(--gold); }
.footer__bot {
  padding: 1.8rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(250, 246, 242, 0.4);
  letter-spacing: 0.04em;
}
.footer__giant {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(8rem, 24vw, 22rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(250, 246, 242, 0.07);
  text-align: center;
  margin: 0 calc(-1 * var(--pad)) -2vw;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.footer__giant span { color: rgba(251, 175, 22, 0.15); -webkit-text-stroke: 0; }

@media (max-width: 800px) {
  .footer__top { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
}

/* ============ FLOATING WHATSAPP BUTTON ============ */
.fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px; height: 64px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 50px -10px rgba(37, 211, 102, 0.6);
  z-index: 999;
  transition: transform .3s var(--ease-bounce), box-shadow .3s;
}
.fab svg { width: 32px; height: 32px; position: relative; z-index: 2; }
.fab:hover {
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 28px 60px -10px rgba(37, 211, 102, 0.8);
}
.fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: fabPulse 2.4s infinite;
}
@keyframes fabPulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.8); opacity: 0; }
}
.fab__tip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--mauve-deep);
  color: var(--cream);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.fab__tip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--mauve-deep);
}
.fab:hover .fab__tip { opacity: 1; transform: translateY(-50%) translateX(0); }

@media (max-width: 600px) {
  .fab { width: 56px; height: 56px; bottom: 20px; right: 20px; }
  .fab svg { width: 28px; height: 28px; }
}

/* ============ NAV PILL (link to subpage) ============ */
.nav__pill a, a.nav__pill {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem !important;
  border: 1px solid var(--mauve);
  border-radius: 999px;
  background: rgba(89, 60, 82, 0.06);
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  transition: background .25s, color .25s;
  opacity: 1 !important;
}
.nav__pill::after { display: none !important; }
.nav__pill span { color: var(--gold); transition: transform .3s; }
.nav__pill:hover { background: var(--mauve); color: var(--cream) !important; }
.nav__pill:hover span { transform: translateX(3px); }
.nav.is-dark .nav__pill {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}
.nav.is-dark .nav__pill:hover { background: var(--gold); color: var(--mauve-deep) !important; }
.nav.is-dark .nav__pill:hover span { color: var(--mauve-deep); }

/* ============ HERO SUBPAGE ============ */
.hero--sub { min-height: auto; padding-top: 7rem; padding-bottom: 0; }
.hero--sub .hero__inner { padding: 1rem 0 4rem; }
.hero--sub .hero__title { font-size: clamp(2.2rem, 6.4vw, 5.6rem); }
.hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(250, 246, 242, 0.55);
  margin-bottom: 1.6rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition: background .25s, color .25s;
}
.hero__back:hover { background: rgba(255, 255, 255, 0.06); color: var(--gold); }

/* ============ TEASER ODOO ============ */
.odooteaser {
  padding: 5rem var(--pad);
  background: linear-gradient(140deg, var(--mauve-deep) 0%, var(--ink) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.odooteaser::before {
  content: '';
  position: absolute;
  top: -50%; left: 30%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 177, 157, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.odooteaser::after {
  content: '';
  position: absolute;
  bottom: -50%; right: 10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 175, 22, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.odooteaser__inner {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.odooteaser__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 1.2rem 0 1.2rem;
  color: var(--cream);
}
.odooteaser__title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.odooteaser p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(250, 246, 242, 0.78);
  line-height: 1.55;
  max-width: 660px;
}
@media (max-width: 900px) {
  .odooteaser__inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============ VERTICALES (main landing cards) ============ */
.sectores__verticales {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.vertical {
  display: flex;
  flex-direction: column;
  padding: 2.2rem 1.9rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  transition: transform .45s var(--ease-out), border-color .35s, box-shadow .35s;
  overflow: hidden;
  position: relative;
}
.vertical::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-from), transparent 50%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.vertical:hover {
  transform: translateY(-6px);
  border-color: var(--c-edge);
  box-shadow: 0 30px 70px -25px var(--c-shadow);
}
.vertical:hover::before { opacity: .25; }
.vertical--salud { --c-from: rgba(0, 177, 157, 0.18); --c-edge: var(--teal); --c-shadow: rgba(0, 177, 157, 0.35); }
.vertical--edu { --c-from: rgba(251, 175, 22, 0.2); --c-edge: var(--gold); --c-shadow: rgba(251, 175, 22, 0.4); }
.vertical--com { --c-from: rgba(190, 55, 126, 0.18); --c-edge: var(--rose); --c-shadow: rgba(190, 55, 126, 0.35); }
.vertical__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.vertical__chip {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(89, 60, 82, 0.08);
  color: var(--mauve);
}
.vertical--salud .vertical__chip { background: rgba(0, 177, 157, 0.12); color: #008070; }
.vertical--edu .vertical__chip { background: rgba(251, 175, 22, 0.15); color: #9a6809; }
.vertical--com .vertical__chip { background: rgba(190, 55, 126, 0.12); color: #962a62; }
.vertical__arrow {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--mauve);
  transition: transform .3s, color .3s;
}
.vertical:hover .vertical__arrow { transform: translateX(4px); color: var(--c-edge); }
.vertical__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--cream);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  color: var(--mauve-deep);
  border: 1px solid var(--line);
  transition: background .35s, color .35s, transform .4s var(--ease-bounce);
}
.vertical:hover .vertical__icon { background: var(--c-edge); color: var(--cream); transform: rotate(-5deg) scale(1.06); }
.vertical__icon svg { width: 30px; height: 30px; }
.vertical h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  letter-spacing: -0.02em;
  color: var(--mauve-deep);
  margin-bottom: 0.6rem;
}
.vertical > p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(26, 16, 21, 0.7);
  margin-bottom: 1.4rem;
}
.vertical__sub {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--line);
}
.vertical__sub li {
  font-size: 0.85rem;
  color: rgba(26, 16, 21, 0.62);
  font-weight: 500;
  padding-left: 1.1rem;
  position: relative;
}
.vertical__sub li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-edge);
}
.sectores__more {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(26, 16, 21, 0.65);
  font-style: italic;
}
.sectores__more strong { color: var(--mauve-deep); font-weight: 600; font-style: normal; }
@media (max-width: 1000px) { .sectores__verticales { grid-template-columns: 1fr; } }

/* ============ SERV LINK (CTA to subpage from service card) ============ */
.serv__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--rose);
  transition: gap .3s;
  position: relative;
}
.serv__link:hover { gap: 0.7rem; }
.serv--featured .serv__link {
  color: var(--gold);
  border-top-color: rgba(255, 255, 255, 0.15);
}
.serv__link span { color: inherit; }

/* ============ VERTICALES FULL (subpage) ============ */
.verticales-full {
  padding: 7rem var(--pad);
  background: var(--cream);
  position: relative;
}
.vfull {
  margin-top: 4rem;
  padding: 3rem;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.vfull--alt { background: var(--mauve-deep); color: var(--cream); border-color: var(--mauve); }
.vfull::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--vf-glow) 0%, transparent 65%);
  pointer-events: none;
}
.vfull--salud { --vf-glow: rgba(0, 177, 157, 0.12); }
.vfull--alt { --vf-glow: rgba(251, 175, 22, 0.16); }
.vfull--com { --vf-glow: rgba(190, 55, 126, 0.12); }
#salud { --vf-glow: rgba(0, 177, 157, 0.12); }
#educacion { --vf-glow: rgba(251, 175, 22, 0.16); }
#comercio { --vf-glow: rgba(190, 55, 126, 0.12); }
.vfull__head {
  position: relative;
  max-width: 760px;
  margin-bottom: 2.6rem;
}
.vfull__id {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.vfull__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--rose);
  opacity: .9;
}
.vfull--alt .vfull__num { color: var(--gold); }
.vfull__chip {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}
.vfull__chip--salud { background: rgba(0, 177, 157, 0.12); color: #008070; }
.vfull__chip--edu { background: rgba(251, 175, 22, 0.2); color: var(--gold); }
.vfull--alt .vfull__chip--edu { background: rgba(251, 175, 22, 0.18); color: var(--gold); }
.vfull__chip--com { background: rgba(190, 55, 126, 0.12); color: #962a62; }
.vfull__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--mauve-deep);
}
.vfull--alt .vfull__title { color: var(--cream); }
.vfull__title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}
.vfull--alt .vfull__title em { color: var(--gold); }
.vfull__lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(26, 16, 21, 0.7);
  max-width: 700px;
}
.vfull--alt .vfull__lead { color: rgba(250, 246, 242, 0.78); }
.vfull__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  position: relative;
  padding: 1.6rem 0 2rem;
  border-top: 1px solid var(--line);
}
.vfull--alt .vfull__grid { border-top-color: rgba(255, 255, 255, 0.12); }
.vfeat h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.005em;
  color: var(--mauve-deep);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.vfull--alt .vfeat h4 { color: var(--cream); }
.vfeat h4::before {
  content: '→';
  color: var(--rose);
  font-weight: 800;
}
.vfull--alt .vfeat h4::before { color: var(--gold); }
.vfeat p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(26, 16, 21, 0.65);
}
.vfull--alt .vfeat p { color: rgba(250, 246, 242, 0.7); }
.vfull__cta {
  margin-top: 1.5rem;
  position: relative;
}
@media (max-width: 900px) {
  .vfull { padding: 1.8rem; }
  .vfull__grid { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* ============ PLANES (subpage) ============ */
.planes {
  padding: 7rem var(--pad);
  background: var(--paper);
}
.planes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
}
.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(89, 60, 82, 0.3);
  box-shadow: 0 30px 70px -25px rgba(89, 60, 82, 0.25);
}
.plan--featured {
  background: var(--mauve-deep);
  color: var(--cream);
  border-color: var(--mauve-deep);
  transform: translateY(-12px);
  box-shadow: 0 40px 90px -25px rgba(0, 0, 0, 0.45);
}
.plan--featured:hover { transform: translateY(-16px); }
.plan__badge {
  position: absolute;
  top: -12px; right: 1.6rem;
  background: var(--gold);
  color: var(--mauve-deep);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}
.plan__head { margin-bottom: 1.4rem; }
.plan__chip {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(89, 60, 82, 0.08);
  color: var(--mauve);
}
.plan--featured .plan__chip { background: rgba(251, 175, 22, 0.18); color: var(--gold); }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
.plan__from {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 16, 21, 0.5);
  font-weight: 600;
}
.plan--featured .plan__from { color: rgba(250, 246, 242, 0.55); }
.plan__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--mauve-deep);
}
.plan--featured .plan__num { color: var(--gold); }
.plan__per {
  font-size: 0.95rem;
  color: rgba(26, 16, 21, 0.55);
  font-weight: 500;
}
.plan--featured .plan__per { color: rgba(250, 246, 242, 0.65); }
.plan__impl {
  font-size: 0.82rem;
  color: rgba(26, 16, 21, 0.55);
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px dashed var(--line);
  font-style: italic;
}
.plan--featured .plan__impl { color: rgba(250, 246, 242, 0.6); border-bottom-color: rgba(255, 255, 255, 0.14); }
.plan__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
  margin-bottom: 1.8rem;
}
.plan__list li {
  font-size: 0.92rem;
  color: rgba(26, 16, 21, 0.72);
  padding-left: 1.3rem;
  position: relative;
}
.plan--featured .plan__list li { color: rgba(250, 246, 242, 0.78); }
.plan__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.45em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.plan--featured .plan__list li::before { background: var(--gold); }
.plan__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  color: var(--mauve-deep);
  padding: 0.95rem 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  justify-content: center;
  transition: background .25s, color .25s;
}
.plan__cta:hover { background: var(--mauve-deep); color: var(--gold); border-color: var(--mauve-deep); }
.plan--featured .plan__cta {
  background: var(--gold);
  color: var(--mauve-deep);
  border-color: var(--gold);
}
.plan--featured .plan__cta:hover { background: var(--cream); color: var(--mauve-deep); }
.planes__note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: rgba(26, 16, 21, 0.5);
  font-style: italic;
}
@media (max-width: 900px) {
  .planes__grid { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-6px); }
}

/* ============ Animation utils ============
   Content is visible by default. Animation only enhances entrance
   when IntersectionObserver fires. Robust if JS/IO fails. */
.js [data-anim].is-visible {
  animation: lift-in 1s var(--ease-out) backwards;
  animation-delay: var(--anim-delay, 0s);
}
@keyframes lift-in {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero entrance — JS-gated so no-JS users see the title.
   anime.js drives these; default state remains visible if anime fails. */
.js .hero__title .word { animation: word-rise 1.1s cubic-bezier(.22,1,.36,1) backwards; }
.js .hero__title .word:nth-child(1) { animation-delay: .30s; }
.js .hero__title .word:nth-child(2) { animation-delay: .38s; }
.js .hero__title .word:nth-child(3) { animation-delay: .46s; }
.js .hero__title .word:nth-child(4) { animation-delay: .54s; }
.js .hero__title .line:nth-child(2) .word:nth-child(1) { animation-delay: .62s; }
.js .hero__title .line:nth-child(2) .word:nth-child(2) { animation-delay: .70s; }
.js .hero__title .line:nth-child(3) .word:nth-child(1) { animation-delay: .78s; }
.js .hero__title .line:nth-child(3) .word:nth-child(2) { animation-delay: .86s; }
@keyframes word-rise {
  from { opacity: 0; transform: translateY(110%); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero blocks — fade/scale in via CSS animation as fallback */
.js .hero__blocks .hb { animation: hb-in 1.2s cubic-bezier(.22,1,.36,1) backwards; }
.js .hero__block-grid:not(.hero__block-grid--back) .hb:nth-child(1) { animation-delay: .1s; }
.js .hero__block-grid:not(.hero__block-grid--back) .hb:nth-child(2) { animation-delay: .2s; }
.js .hero__block-grid:not(.hero__block-grid--back) .hb:nth-child(3) { animation-delay: .3s; }
.js .hero__block-grid:not(.hero__block-grid--back) .hb:nth-child(4) { animation-delay: .4s; }
.js .hero__block-grid:not(.hero__block-grid--back) .hb:nth-child(5) { animation-delay: .5s; }
.js .hero__block-grid:not(.hero__block-grid--back) .hb:nth-child(6) { animation-delay: .6s; }
.js .hero__block-grid:not(.hero__block-grid--back) .hb:nth-child(7) { animation-delay: .7s; }
.js .hero__block-grid:not(.hero__block-grid--back) .hb:nth-child(8) { animation-delay: .8s; }
@keyframes hb-in {
  from { opacity: 0; transform: translate3d(0, 30px, 0) scale(.6); }
  to   { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

/* Charts inside bento — render at correct values by default */
.bar { height: var(--h); }
.ledger__bar span { width: var(--w); }

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__title .word { opacity: 1; transform: none; }
}
