/* ═══════════════════════════════════════════
   VARIABLES — San Francisco system font stack
═══════════════════════════════════════════ */
:root {
  --bg:           #080808;
  --bg-2:         #0e0e0e;
  --bg-3:         #161616;
  --text:         #f2ede8;
  --text-muted:   #5a5550;
  --text-dim:     #8a8480;
  --accent:       #007AFF;
  --accent-glow:  rgba(0,122,255,.15);
  --border:       rgba(255,255,255,.07);
  --radius:       4px;
  --radius-lg:    18px;
  --nav-h:        66px;
  --ease-out:     cubic-bezier(.16,1,.3,1);
  --ease-spring:  cubic-bezier(.34,1.56,.64,1);
  --ease-fast:    cubic-bezier(.4,0,.2,1);

  /* San Francisco — usa SF Pro en Apple, system-ui en todo lo demás */
  --font-ui: -apple-system,'SF Pro Display','SF Pro Text',
             BlinkMacSystemFont,'Helvetica Neue',system-ui,sans-serif;
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;
     -moz-osx-font-smoothing:grayscale}
body{font-family:var(--font-ui);background:var(--bg);color:var(--text);
     line-height:1.55;overflow-x:hidden}
img{display:block;width:100%;height:100%;object-fit:cover}
a{text-decoration:none;color:inherit}
button{font-family:var(--font-ui);background:none;border:none;cursor:pointer}

/* Grain cinematográfico (muy sutil) */
body::after{
  content:'';position:fixed;inset:0;pointer-events:none;z-index:9999;
  opacity:.018;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════
   UTILIDADES
═══════════════════════════════════════════ */
.container{max-width:1120px;margin:0 auto;padding:0 40px}

.eyebrow{
  display:block;font-size:11px;font-weight:600;
  letter-spacing:3px;text-transform:uppercase;
  color:var(--accent);margin-bottom:18px;
}
.section-title{
  font-size:clamp(30px,4vw,50px);font-weight:700;
  line-height:1.1;letter-spacing:-.022em;color:var(--text);
}
.section-header{margin-bottom:56px}

/* ═══════════════════════════════════════════
   BOTONES
═══════════════════════════════════════════ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:8px;padding:13px 28px;font-size:15px;font-weight:500;
  letter-spacing:-.01em;border-radius:100px;border:none;cursor:pointer;
  transition:transform .2s var(--ease-fast),background .2s,box-shadow .2s;
  white-space:nowrap;
}
.btn-accent{background:var(--accent);color:#080808}
.btn-accent:hover{background:#3395FF;transform:translateY(-1px);
  box-shadow:0 8px 28px rgba(0,122,255,.38)}
.btn-ghost{
  background:rgba(255,255,255,.08);color:var(--text);
  border:1px solid rgba(255,255,255,.18);backdrop-filter:blur(10px);
}
.btn-ghost:hover{background:rgba(255,255,255,.15)}
.btn-nav{padding:9px 20px;font-size:13px}
.btn-full{width:100%}
.btn-large{padding:17px 44px;font-size:16px}

/* ═══════════════════════════════════════════
   ANIMACIONES
═══════════════════════════════════════════ */
.reveal{
  opacity:0;transform:translateY(28px);
  transition:opacity .85s var(--ease-out),transform .85s var(--ease-out);
}
.reveal.visible{opacity:1;transform:translateY(0)}

/* Hero: fade de entrada */
.fade-up{
  opacity:0;transform:translateY(20px);
  animation:fadeUp .9s var(--ease-out) forwards;
}
.fade-up:nth-child(1){animation-delay:.08s}
.fade-up:nth-child(2){animation-delay:.28s}
.fade-up:nth-child(3){animation-delay:.46s}
.fade-up:nth-child(4){animation-delay:.64s}
@keyframes fadeUp{to{opacity:1;transform:translateY(0)}}

/* Word-reveal para statement sections */
.word{
  display:inline-block;opacity:0;transform:translateY(16px);
  transition:opacity .55s var(--ease-out),transform .55s var(--ease-out);
  transition-delay:calc(var(--wi,0) * .04s + .1s);
}
.reveal.visible .word{opacity:1;transform:translateY(0)}

/* Stagger de cards */
.reactions-grid .reveal:nth-child(2){transition-delay:.09s}
.reactions-grid .reveal:nth-child(3){transition-delay:.18s}
.reactions-grid .reveal:nth-child(4){transition-delay:.27s}
.process-steps .reveal:nth-child(3){transition-delay:.1s}
.process-steps .reveal:nth-child(5){transition-delay:.2s}

/* ═══════════════════════════════════════════
   NAVEGACIÓN
═══════════════════════════════════════════ */
.nav{
  position:fixed;inset-block-start:0;inset-inline:0;z-index:100;
  height:var(--nav-h);display:flex;align-items:center;
  padding:0 40px;gap:32px;
  transition:background .5s var(--ease-out),backdrop-filter .5s;
}
.nav.scrolled{
  background:rgba(8,8,8,.85);
  backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px);
  border-bottom:1px solid var(--border);
}
.nav-logo{
  display:inline-flex;
  align-items:center;
  gap:9px;

  font-size:18px;
  font-weight:600;
  letter-spacing:-.02em;
  flex-shrink:0;
  color:var(--text);

  transition:color .2s ease, opacity .2s ease;
}

.nav-medical-icon{
  width:19px;
  height:19px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  opacity:.95;

  transition:transform .25s ease, opacity .25s ease;
}

.nav-logo:hover .nav-medical-icon{
  transform:translateY(-1px);
  opacity:1;
}
.nav-links{display:flex;gap:28px;margin-left:auto}
.nav-links a{font-size:14px;font-weight:400;color:rgba(242,237,232,.55);
  transition:color .2s;letter-spacing:-.01em}
.nav-links a:hover{color:var(--text)}

.nav-toggle{display:none;flex-direction:column;gap:5px;
  padding:6px;margin-left:auto}
.nav-toggle span{display:block;width:22px;height:1.5px;background:var(--text);
  transition:transform .3s var(--ease-fast),opacity .3s;transform-origin:center}
.nav-toggle.open span:nth-child(1){transform:rotate(45deg) translate(3px,4px)}
.nav-toggle.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.nav-toggle.open span:nth-child(3){transform:rotate(-45deg) translate(3px,-4px)}

/* ═══════════════════════════════════════════
   MENÚ MÓVIL
═══════════════════════════════════════════ */
.mobile-menu{
  position:fixed;inset:0;z-index:99;background:var(--bg);
  display:flex;flex-direction:column;align-items:center;
  justify-content:center;gap:32px;
  opacity:0;pointer-events:none;transition:opacity .3s var(--ease-fast);
}
.mobile-menu.open{opacity:1;pointer-events:all}
.mobile-link{font-size:36px;font-weight:700;letter-spacing:-.025em;
  color:var(--text);transition:color .2s}
.mobile-link:hover{color:var(--accent)}
.mobile-cta{margin-top:8px}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero{
  position:relative;height:100svh;min-height:600px;
  display:flex;align-items:center;justify-content:center;
  text-align:center;overflow:hidden;
}
.hero-img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center 18%;
  transform:scale(1.1);transform-origin:center top;
  will-change:transform;
  /* Difuminar ligeramente la imagen de fondo */
  filter:blur(1.5px) brightness(.82);
}
.hero-overlay{
  position:absolute;inset:0;
  /* Overlay más uniforme y opaco para mejor legibilidad */
  background:
    linear-gradient(to bottom,
      rgba(8,8,8,.35)  0%,
      rgba(8,8,8,.52)  40%,
      rgba(8,8,8,.78) 100%);
}
.hero-content{position:relative;z-index:1;max-width:820px;padding:0 32px}

.hero-eyebrow{
  font-size:12px;font-weight:600;letter-spacing:4px;text-transform:uppercase;
  color:var(--accent);margin-bottom:20px;
}
.hero-title{
  font-size:clamp(52px,9.5vw,112px);font-weight:700;
  line-height:1.0;letter-spacing:-.03em;margin-bottom:20px;
}
.hero-title em{font-style:normal;color:var(--accent);font-weight:300}

.hero-sub{
  font-size:16px;font-weight:400;letter-spacing:-.01em;
  color:rgba(242,237,232,.6);margin-bottom:44px;
}
.hero-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

.hero-scroll{position:absolute;bottom:40px;right:44px;z-index:1}
.scroll-line{
  display:block;width:1px;height:60px;
  background:linear-gradient(to bottom,var(--accent),transparent);
  animation:scrollPulse 2.3s ease-in-out infinite;
}
@keyframes scrollPulse{
  0%,100%{opacity:.25;transform:scaleY(1)}
  50%{opacity:.85;transform:scaleY(1.1)}
}

/* ═══════════════════════════════════════════
   STATEMENT SECTIONS (billboard Apple-style)
═══════════════════════════════════════════ */
.statement{
  min-height:100vh;display:flex;align-items:center;
  justify-content:center;text-align:center;
  padding:100px 40px;background:var(--bg);
}
.statement--alt{background:var(--bg-2)}

.statement-inner{max-width:860px}

.statement-title{
  font-size:clamp(38px,7vw,92px);
  font-weight:700;line-height:1.08;
  letter-spacing:-.03em;color:var(--text);
}
.statement-title .word:nth-child(3n+1){color:var(--accent)}

/* ═══════════════════════════════════════════
   COMPARACIÓN INTERACTIVA (Before/After)
═══════════════════════════════════════════ */
.comparison-section{
  padding:90px 0 80px;
  background:var(--bg-2);
}
.comp-head{margin-bottom:40px}
.comp-head .section-title{margin-bottom:12px}
.comp-hint{
  font-size:13px;color:var(--text-muted);letter-spacing:-.01em;margin-top:12px;
}

/* Wrapper centrado */
.comp-stage-wrap{
  display:flex;justify-content:center;padding:0 40px;
  margin-bottom:24px;
}

/* Stage principal */
.comp-stage{
  position:relative;overflow:hidden;
  border-radius:var(--radius-lg);
  width:100%;max-width:640px;
  aspect-ratio:2/3;max-height:74vh;
  cursor:col-resize;
  box-shadow:0 40px 100px rgba(0,0,0,.65);
  user-select:none;-webkit-user-select:none;
}

/* Ambos lados comparten el mismo espacio */
.cs-side{
  position:absolute;inset:0;
  overflow:hidden;
}

/* Después (fondo, editado — muestra la foto tal como está) */
.cs-after{z-index:1}
.cs-after img{
  width:100%;height:100%;object-fit:cover;
  transition:opacity .35s ease;
}

/* Antes (encima con clip-path, sin editar) */
.cs-before{
  z-index:2;
  clip-path:inset(0 50% 0 0);
}
.cs-before img{
  width:100%;height:100%;object-fit:cover;
  /* Simula foto sin editar: más plana, menos contraste, desaturada */
  filter:brightness(1.22) contrast(.68) saturate(.3) hue-rotate(3deg);
  transition:opacity .35s ease;
}

/* Labels de cada lado */
.cs-label{
  position:absolute;top:18px;
  background:rgba(0,0,0,.55);backdrop-filter:blur(8px);
  color:rgba(255,255,255,.9);
  font-size:11px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;
  padding:5px 12px;border-radius:100px;pointer-events:none;
  transition:opacity .2s;
}
.cs-label-l{left:16px}
.cs-label-r{right:16px}

/* Handle deslizable */
.cs-handle{
  position:absolute;top:0;bottom:0;left:50%;
  transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;
  z-index:10;pointer-events:none;width:2px;
}
/* Las barras superiores e inferiores */
.cs-bar{flex:1;width:2px;background:rgba(255,255,255,.92);
  box-shadow:0 0 8px rgba(0,0,0,.5)}
/* Círculo del handle */
.cs-knob{
  width:50px;height:50px;border-radius:50%;
  background:#fff;color:#080808;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;pointer-events:all;cursor:col-resize;
  box-shadow:0 2px 20px rgba(0,0,0,.4),0 0 0 1px rgba(255,255,255,.15);
  transition:transform .2s var(--ease-spring),box-shadow .2s;
}
.cs-knob:hover{transform:scale(1.1)}
.cs-knob svg{flex-shrink:0}

/* Transition cuando se cambia foto */
.cs-side img.fading{opacity:0}

/* ── FILMSTRIP ─────────────────────────────── */
.filmstrip{
  display:flex;justify-content:center;align-items:center;
  gap:10px;padding:16px 40px 0;
  overflow-x:auto;scrollbar-width:none;
}
.filmstrip::-webkit-scrollbar{display:none}

.film-item{
  width:68px;height:86px;border-radius:10px;overflow:hidden;
  flex-shrink:0;cursor:pointer;padding:0;
  opacity:.45;
  outline:2.5px solid transparent;outline-offset:3px;
  transition:opacity .3s var(--ease-fast),outline-color .3s,transform .25s var(--ease-spring);
}
.film-item img{
  width:100%;height:100%;object-fit:cover;
  pointer-events:none;
}
.film-item.active{
  opacity:1;outline-color:var(--accent);transform:scale(1.06);
}
.film-item:hover:not(.active){opacity:.75;transform:scale(1.03)}

.film-active-label{
  text-align:center;font-size:13px;color:var(--text-muted);
  letter-spacing:-.01em;margin-top:16px;height:18px;
  transition:opacity .25s;
}

/* ═══════════════════════════════════════════
   VIDEO — ESTOS SON LOS PEQUEÑOS DETALLES
═══════════════════════════════════════════ */
.video-section{
  padding:48px 0 110px;
  background:var(--bg);
}

.video-head{
  margin-bottom:58px;
  text-align:center;
}

.video-wrap{
  position:relative;
  max-width:820px;margin:0 auto;padding:0 40px;
  border-radius:var(--radius-lg);overflow:hidden;
}
.video-wrap video{
  display:block;width:100%;border-radius:var(--radius-lg);
  box-shadow:0 40px 100px rgba(0,0,0,.75);
}

/* Gradiente sutil — solo borde inferior */
.video-overlay-gradient{
  position:absolute;
  inset-inline:40px;bottom:0;height:14%;border-radius:0 0 var(--radius-lg) var(--radius-lg);
  background:linear-gradient(
    to top,
    rgba(0,0,0,.45) 0%,
    transparent 100%
  );
  pointer-events:none;z-index:1;
}

/* Características debajo del video */
.video-features{
  margin-top:56px;text-align:center;
  max-width:540px;margin-left:auto;margin-right:auto;
  padding:0 40px;
}
.video-features-title{
  display:block;font-size:11px;font-weight:700;
  letter-spacing:3.5px;text-transform:uppercase;
  color:var(--accent);margin-bottom:24px;
}
.video-feature-list{
  list-style:none;display:flex;flex-direction:column;gap:16px;
}
.video-feature-list li{
  display:flex;align-items:flex-start;gap:14px;
  font-size:clamp(14px,1.8vw,17px);font-weight:300;
  color:rgba(242,237,232,.82);letter-spacing:-.01em;line-height:1.55;
  text-align:left;
}
.video-feature-list .check{
  color:var(--accent);font-size:15px;flex-shrink:0;margin-top:2px;
}

/* Compat. JS — vtoLines vacías no generan error */
.vto-line{opacity:0;transition:opacity .7s var(--ease-out)}
.vto-line.show{opacity:1}

/* ═══════════════════════════════════════════
   DECLARACIÓN
═══════════════════════════════════════════ */
.declaration{padding:130px 0;background:var(--bg-2)}
.declaration-inner{
  max-width:700px;padding-left:44px;
  border-left:1px solid var(--accent);
}

.declaration-text{
  font-size:clamp(20px,2.5vw,28px);
  font-weight:300;
  line-height:1.72;
  letter-spacing:-.015em;
  color:var(--text);
  margin-bottom:28px;

  text-align:justify;
  text-align-last:left;
  hyphens:auto;
}

.declaration-byline{font-size:13px;color:var(--text-muted);letter-spacing:.3px}

/* ═══════════════════════════════════════════
   PORTAFOLIO — GRID EDITORIAL
═══════════════════════════════════════════ */
.portfolio{padding:110px 0 0;background:var(--bg)}
.portfolio .container{margin-bottom:52px}

.photo-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:4px;
}
.grid-item{
  position:relative;overflow:hidden;
  cursor:pointer;aspect-ratio:3/4;
}
.grid-item img{
  width:100%;height:100%;object-fit:cover;
  /* Difuminar ligeramente en hover */
  transition:transform .7s var(--ease-out),filter .4s;
  filter:brightness(.92);
}
.grid-item:hover img{transform:scale(1.04);filter:brightness(1)}
.grid-item:hover figcaption{opacity:1}
.grid-item figcaption{
  position:absolute;bottom:0;left:0;right:0;
  padding:20px 14px 12px;
  background:linear-gradient(to top,rgba(0,0,0,.72),transparent);
  font-size:12px;letter-spacing:.4px;color:rgba(255,255,255,.85);
  opacity:0;transition:opacity .25s;
}
/* CAMI ocupa 2 columnas */
.grid-item.wide{
  grid-column:span 2;
  aspect-ratio:3/2;
}
.grid-item.wide img{object-position:center top}

/* ═══════════════════════════════════════════
   REACCIONES
═══════════════════════════════════════════ */
.reactions{padding:110px 0;background:var(--bg-2)}
.reactions-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(255px,1fr));
  gap:16px;
}
.reaction-card{
  background:var(--bg-3);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:22px;
}
.reaction-top{display:flex;align-items:center;gap:11px;margin-bottom:14px}
.avatar{
  width:40px;height:40px;border-radius:50%;
  background:rgba(0,122,255,.1);border:1px solid rgba(0,122,255,.25);
  display:flex;align-items:center;justify-content:center;
  font-size:16px;font-weight:600;color:var(--accent);flex-shrink:0;
}
.reaction-info{flex:1;min-width:0}
.reaction-name{font-size:14px;font-weight:500;letter-spacing:-.01em;color:var(--text)}
.reaction-detail{font-size:11px;color:var(--text-muted);margin-top:2px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.platform{
  font-size:10px;letter-spacing:1px;text-transform:uppercase;
  color:var(--text-muted);background:rgba(255,255,255,.04);
  border:1px solid var(--border);padding:3px 8px;border-radius:4px;flex-shrink:0;
}
.reaction-text{font-size:15px;line-height:1.62;
  color:rgba(242,237,232,.78);font-style:italic;letter-spacing:-.01em}

/* ═══════════════════════════════════════════
   PROCESO
═══════════════════════════════════════════ */
.process{padding:110px 0;background:var(--bg)}
.process-steps{display:flex;align-items:flex-start}
.process-step{flex:1;padding:0 28px}
.process-step:first-child{padding-left:0}
.process-step:last-child{padding-right:0}
.process-divider{
  width:1px;height:44px;flex-shrink:0;
  background:linear-gradient(to bottom,var(--accent),transparent);
  opacity:.4;margin-top:64px;
}
.step-num{
  display:block;
  font-size:68px;
  font-weight:700;
  line-height:1;
  letter-spacing:-.04em;
  color:#2f9cff;
  opacity:.50;
  margin-bottom:14px;
}
.step-title{
  font-size:26px;font-weight:700;letter-spacing:-.02em;
  color:var(--text);margin-bottom:12px;
}
.step-desc{font-size:15px;line-height:1.72;color:var(--text-muted);letter-spacing:-.01em}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing{padding:110px 0;background:var(--bg-2)}
.pricing-wrapper{display:flex;justify-content:center;margin-bottom:60px}
.pricing-card{
  background:var(--bg-3);border:1px solid var(--accent);
  border-radius:var(--radius-lg);padding:48px 40px;
  max-width:450px;width:100%;position:relative;
}
.pricing-badge{
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  background:var(--accent);color:#fff;
  font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;
  padding:5px 16px;border-radius:100px;white-space:nowrap;
}
.pricing-name{font-size:28px;font-weight:700;letter-spacing:-.02em;
  color:var(--text);margin-bottom:24px}
.pricing-price{display:flex;align-items:flex-start;gap:4px;margin-bottom:36px}
.price-q{font-size:24px;font-weight:300;color:var(--accent);margin-top:10px}
.price-num{
  font-size:88px;font-weight:700;line-height:1;
  letter-spacing:-.04em;color:var(--text);
}
.pricing-list{
  list-style:none;display:flex;flex-direction:column;
  gap:13px;margin-bottom:30px;padding-bottom:30px;
  border-bottom:1px solid var(--border);
}
.pricing-list li{display:flex;align-items:center;gap:11px;
  font-size:15px;letter-spacing:-.01em;color:rgba(242,237,232,.82)}
.check{color:var(--accent);font-size:14px;flex-shrink:0}
.pricing-extras{display:flex;flex-direction:column;gap:8px;margin-bottom:30px}
.pricing-extras p{font-size:13px;color:var(--text-muted);line-height:1.5}
.pricing-extras strong{color:var(--text)}
.pricing-note{text-align:center;font-size:12px;color:var(--text-muted);margin-top:14px}

/* ── PRICING MULTI-TIER ──────────────────── */
.pricing-note-global{
  font-size:15px;color:var(--text-muted);line-height:1.68;
  text-align:center;max-width:640px;margin:0 auto 48px;
  letter-spacing:-.01em;padding:0 20px;
}
.pricing-note-global strong{color:var(--text)}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;margin-bottom:28px;
}
.pricing-card-sm{
  background:var(--bg-3);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:28px 22px;
  position:relative;display:flex;flex-direction:column;
  transition:border-color .25s var(--ease-fast),
             box-shadow .25s var(--ease-fast);
}
.pricing-card-sm:hover{box-shadow:0 12px 40px rgba(0,0,0,.4)}
.pricing-card-sm.featured{border-color:var(--accent);
  box-shadow:0 0 0 1px rgba(0,122,255,.25)}
.pricing-group-label{
  font-size:11px;font-weight:600;text-transform:uppercase;
  letter-spacing:1.5px;color:var(--text-muted);margin-bottom:2px;
}
.pricing-per{
  font-size:11px;color:var(--text-muted);font-style:italic;
  margin-bottom:14px;
}
.price-num-sm{
  font-size:clamp(46px,5.5vw,70px);font-weight:700;
  line-height:1;letter-spacing:-.04em;color:var(--text);
}
.pricing-card-sm .pricing-price{margin-bottom:16px}
.pricing-divider{height:1px;background:var(--border);margin:14px 0}
.pricing-extra-note{
  font-size:12px;color:var(--text-muted);
  line-height:1.5;margin-bottom:14px;
}
.pricing-extra-note strong{color:var(--text)}

.pricing-premium{
  padding:13px 14px;
  background:rgba(0,122,255,.05);
  border:1px solid rgba(0,122,255,.18);
  border-radius:10px;flex:1;
}
.pricing-premium-label{
  font-size:10px;font-weight:700;letter-spacing:2.5px;
  text-transform:uppercase;color:var(--accent);margin-bottom:5px;
  display:flex;align-items:center;gap:5px;
}
.pricing-premium-desc{
  font-size:12px;color:var(--text-muted);line-height:1.5;
}
.pricing-card-sm .btn{margin-top:16px}
.pricing-card-sm .pricing-list{
  margin-bottom:12px;padding-bottom:0;
  border-bottom:none;gap:8px;
}
.pricing-card-sm .pricing-list li{
  font-size:13px;gap:8px;
  color:rgba(242,237,232,.72);
}

/* Individual wrapper */
.pricing-individual-wrap{
  display:flex;justify-content:center;margin-bottom:52px;
}

.hospitals{
  text-align:center;
}

.hospitals-label{
  font-size:11px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--text-muted);
  margin-bottom:22px;
}

.hospitals-tags{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px 28px;
}

.hospitals-tags span{
  font-size:11px;
  font-weight:500;
  letter-spacing:2.2px;
  text-transform:uppercase;
  color:var(--text-muted);
  line-height:1.6;

  background:none;
  border:none;
  box-shadow:none;
  padding:0;
  border-radius:0;
  cursor:pointer;

  transition:
    color .22s ease,
    opacity .22s ease;
}

.hospitals-tags span:hover{
  color:#fff;
  opacity:1;
  transform:none;
  background:none;
  border:none;
  box-shadow:none;
}
/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
.final-cta{position:relative;padding:160px 0;text-align:center;overflow:hidden}
.final-cta-img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;
  /* Difuminar la imagen de fondo del CTA */
  filter:blur(2px) brightness(.7);
}
.final-cta-overlay{
  position:absolute;inset:0;
  background:rgba(8,8,8,.68);
  backdrop-filter:blur(1px);
}
.final-cta-content{position:relative;z-index:1}
.final-cta-title{
  font-size:clamp(38px,6vw,74px);font-weight:700;
  line-height:1.08;letter-spacing:-.03em;color:var(--text);margin-bottom:22px;
}
.final-cta-title em{font-style:normal;color:var(--accent);font-weight:300}
.final-cta-sub{
  font-size:17px;font-weight:300;color:rgba(242,237,232,.6);
  max-width:440px;margin:0 auto 40px;line-height:1.72;letter-spacing:-.01em;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer{padding:44px 0 36px;background:var(--bg);border-top:1px solid var(--border)}
.footer-inner{display:flex;align-items:center;gap:28px;flex-wrap:wrap;margin-bottom:14px}
.footer-logo{font-size:18px;font-weight:600;letter-spacing:-.02em}
.footer-links{display:flex;gap:22px;margin-left:auto}
.footer-links a{font-size:14px;color:var(--text-muted);letter-spacing:-.01em;
  transition:color .2s}
.footer-links a:hover{color:var(--text)}
.footer-copy{font-size:12px;color:var(--text-muted);letter-spacing:-.01em}

/* Footer desktop — usuario centrado y resaltado */
@media (min-width:641px){
  .footer-inner{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:28px;
    flex-wrap:nowrap;
  }

  .footer-logo{
    justify-self:start;
  }

  .footer-links{
    display:contents;
    margin-left:0;
  }

.footer-links a:first-child:hover{
  color:#ff6b8a;
  text-shadow:
    0 0 10px rgba(255,77,109,.65),
    0 0 24px rgba(225,48,108,.45),
    0 0 42px rgba(255,0,80,.28);
}

  .footer-links a:nth-child(2){
    grid-column:3;
    justify-self:end;
  }
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOTANTE
═══════════════════════════════════════════ */
/* ── Float dock (WA + Just unificados) ── */
.float-dock{
  position:fixed;bottom:30px;right:30px;z-index:155;
  display:flex;align-items:center;
  background:var(--bg-3);
  border:1px solid rgba(255,255,255,.13);
  border-radius:100px;
  box-shadow:0 4px 24px rgba(0,0,0,.55);
  overflow:hidden;
  opacity:1;
  transform:translateY(0);
  transition:opacity .22s ease,transform .22s ease,box-shadow .2s;
  animation:justPulse 4s ease-in-out 3s infinite;
}
.float-dock:hover{box-shadow:0 8px 32px rgba(0,0,0,.68)}
.float-dock.hidden{
  opacity:0;pointer-events:none;transform:translateY(8px);
}
.dock-wa{
  display:flex;align-items:center;justify-content:center;
  width:48px;height:48px;
  color:#25D366;
  transition:background .18s;
  flex-shrink:0;
}
.dock-wa:hover{background:rgba(37,211,102,.1)}
.dock-sep{
  width:1px;height:22px;
  background:rgba(255,255,255,.1);
  flex-shrink:0;
}
.dock-just{
  display:flex;align-items:center;gap:7px;
  padding:0 18px 0 13px;height:48px;
  font-family:var(--font-ui);font-size:13px;font-weight:500;
  color:var(--text);
  transition:background .18s;
  flex-shrink:0;
}
.dock-just:hover{background:rgba(255,255,255,.05)}
.dock-icon{font-size:16px;line-height:1}

/* ═══════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════ */
.lightbox{
  position:fixed;inset:0;z-index:200;background:rgba(0,0,0,.96);
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .3s var(--ease-fast);
}
.lightbox.open{opacity:1;pointer-events:all}
.lightbox-inner img{
  max-width:90vw;max-height:90vh;
  width:auto;height:auto;object-fit:contain;border-radius:var(--radius);
}
.lightbox-close{
  position:absolute;top:22px;right:22px;width:46px;height:46px;
  background:rgba(255,255,255,.07);border:1px solid var(--border);
  border-radius:50%;color:var(--text);font-size:26px;line-height:1;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;
}
.lightbox-close:hover{background:rgba(255,255,255,.14)}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
═══════════════════════════════════════════ */
@media(max-width:900px){
  .photo-grid{grid-template-columns:repeat(2,1fr)}
  .grid-item.wide{grid-column:span 2;aspect-ratio:16/9}
  .pricing-grid{grid-template-columns:repeat(2,1fr)}

  .process-steps{flex-direction:column}
  .process-divider{
    width:1px;height:32px;margin:0 0 0 10px;
    background:linear-gradient(to bottom,var(--accent),transparent);
  }
  .process-step{padding:18px 0}
  .process-step:first-child,.process-step:last-child{padding:18px 0}

  .comp-stage{max-height:60vw;aspect-ratio:unset;height:60vw;min-height:320px}
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MÓVIL (≤ 640px)
═══════════════════════════════════════════ */
@media(max-width:640px){
  .container{padding:0 20px}
  .nav{padding:0 20px}
  .nav-links,.btn-nav{display:none}
  .nav-toggle{display:flex}

  .hero-content{padding:0 20px}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%}
  .hero-scroll{right:20px}

  .statement{padding:80px 24px;min-height:80vh}

  .comp-stage-wrap{padding:0 20px}
  .filmstrip{padding:16px 20px 0;justify-content:flex-start}
  .comp-stage{aspect-ratio:2/3;max-height:none;height:auto}

  .video-wrap{max-width:none;padding:0 20px}
  .video-overlay-gradient{inset-inline:20px}
  .video-features{padding:0 20px;margin-top:36px}
  .pricing-grid{grid-template-columns:1fr}

  .declaration{padding:80px 0}
  .declaration-inner{padding-left:22px}

  .photo-grid{grid-template-columns:1fr}
  .grid-item.wide{grid-column:span 1;aspect-ratio:3/4}

  .reactions-grid{grid-template-columns:1fr}
  .pricing-card{padding:36px 22px}
  .final-cta{padding:100px 0}
  .footer-links{margin-left:0}
  .float-dock{bottom:20px;right:20px}
  .hospital-bar{padding:12px 20px;gap:10px}
  .hospital-bar-label{display:none}
}

/* ═══════════════════════════════════════════
   HEARTBEAT — latido LED en "médico"
═══════════════════════════════════════════ */
@keyframes heartbeat-led {
  0%   { text-shadow: none; color: #fff; }
  3%   { text-shadow: 0 0 8px rgba(220,65,65,.92), 0 0 18px rgba(220,65,65,.32); color: #ff9090; }
  7%   { text-shadow: none; color: #fff; }
  15%  { text-shadow: 0 0 8px rgba(220,65,65,.92), 0 0 18px rgba(220,65,65,.32); color: #ff9090; }
  19%  { text-shadow: none; color: #fff; }
  100% { text-shadow: none; color: #fff; }
}
.heartbeat-word {
  color: #fff;
  display: inline;
  animation: none;
}

/* ═══════════════════════════════════════════
   HOSPITAL BAR — debajo del hero
═══════════════════════════════════════════ */
.hospital-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 13px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hospital-bar-label {
  font-size: 10px;font-weight: 700;
  letter-spacing: 2.5px;text-transform: uppercase;
  color: var(--text-muted);flex-shrink: 0;
}
.hospital-bar-items {
  display: flex;align-items: center;
  gap: 14px;flex-wrap: wrap;justify-content: center;
}
.hospital-bar-item {
  font-size: 11px;font-weight: 500;
  letter-spacing: 1.5px;text-transform: uppercase;
  color: var(--text-muted);transition: color .2s;white-space: nowrap;
}
.hospital-bar-item:hover { color: var(--text); }
.hospital-bar-sep {
  width: 3px;height: 3px;border-radius: 50%;
  background: var(--accent);opacity: .4;flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   SCROLL NAV — indicador lateral de secciones
═══════════════════════════════════════════ */
.scroll-nav {
  position: fixed;right: 20px;top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;flex-direction: column;
  align-items: flex-end;gap: 12px;
}
.scroll-nav-item {
  position: relative;
  display: flex;align-items: center;
  justify-content: flex-end;gap: 10px;cursor: pointer;
}
.scroll-nav-dot {
  width: 6px;height: 6px;border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: background .3s, transform .3s, box-shadow .3s;
  flex-shrink: 0;
}
.scroll-nav-item.active .scroll-nav-dot {
  background: var(--accent);
  transform: scale(1.6);
  box-shadow: 0 0 8px rgba(0,122,255,.5);
}
.scroll-nav-item[data-section="pacaman"] .scroll-nav-dot {
  background: rgba(52,168,83,.6);
  box-shadow: 0 0 5px rgba(52,168,83,.3);
}
.scroll-nav-item[data-section="pacaman"].active .scroll-nav-dot {
  background: #34A853;
  box-shadow: 0 0 8px rgba(52,168,83,.6);
}
.scroll-nav-label {
  position: absolute;right: 16px;
  font-size: 10px;font-weight: 600;
  letter-spacing: 1.5px;text-transform: uppercase;
  color: rgba(242,237,232,.85);
  background: rgba(8,8,8,.88);backdrop-filter: blur(8px);
  padding: 4px 10px;border-radius: 20px;
  white-space: nowrap;opacity: 0;pointer-events: none;
  transition: opacity .2s;border: 1px solid var(--border);
}
.scroll-nav-item:hover .scroll-nav-label { opacity: 1; }
@media(max-width:768px) { .scroll-nav { display: none; } }

/* ═══════════════════════════════════════════
   PACAMÁN — Comunidad · Inversión social
═══════════════════════════════════════════ */
.pacaman-section {
  background: #071812;
  border-top: 1px solid rgba(52,168,83,.12);
  padding: 110px 0 90px;position: relative;overflow: hidden;
}
.pacaman-section::before {
  content: '';position: absolute;
  top: 0;left: 50%;transform: translateX(-50%);
  width: 80%;height: 300px;
  background: radial-gradient(ellipse, rgba(52,168,83,.06) 0%, transparent 65%);
  pointer-events: none;
}
.pacaman-eyebrow {
  display: inline-flex;align-items: center;gap: 8px;
  font-size: 11px;font-weight: 700;letter-spacing: 3px;
  text-transform: uppercase;color: #34A853;margin-bottom: 16px;
}
.pacaman-title {
  font-size: clamp(28px,4vw,50px);font-weight: 700;
  line-height: 1.1;letter-spacing: -.022em;
  color: #f2ede8;margin-bottom: 8px;
}
.pacaman-subtitle {
  font-size: 14px;font-weight: 300;
  color: rgba(242,237,232,.42);
  letter-spacing: .5px;margin-bottom: 44px;
}
.pacaman-quote {
  border-left: 2px solid #34A853;
  padding: 18px 26px;margin-bottom: 60px;
  background: rgba(52,168,83,.04);
  border-radius: 0 12px 12px 0;max-width: 660px;
}
.pacaman-quote blockquote {
  font-size: clamp(14px,1.8vw,17px);
  font-weight: 300;font-style: italic;
  color: rgba(242,237,232,.75);
  line-height: 1.75;letter-spacing: -.01em;margin-bottom: 10px;
}
.pacaman-quote cite {
  font-size: 11px;font-weight: 700;
  letter-spacing: 2.5px;text-transform: uppercase;
  color: #34A853;font-style: normal;
}
.pacaman-stats-grid {
  display: grid;grid-template-columns: repeat(3,1fr);
  gap: 12px;margin-bottom: 36px;
}
.pacaman-stat-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(52,168,83,.14);
  border-radius: 14px;padding: 20px 18px;
}
.pacaman-stat-value {
  font-size: clamp(26px,3.5vw,44px);font-weight: 700;
  letter-spacing: -.03em;color: #34A853;
  line-height: 1;margin-bottom: 6px;
}
.pacaman-stat-label {
  font-size: 12px;font-weight: 400;
  color: rgba(242,237,232,.45);line-height: 1.4;
}
.pacaman-progress-wrap { margin-bottom: 52px; }
.pacaman-progress-header {
  display: flex;justify-content: space-between;
  align-items: flex-end;margin-bottom: 10px;
}
.pacaman-progress-title {
  font-size: 11px;font-weight: 700;
  letter-spacing: 2px;text-transform: uppercase;
  color: rgba(242,237,232,.48);
}
.pacaman-progress-meta {
  font-size: 14px;font-weight: 600;color: #34A853;
}
.pacaman-progress-track {
  height: 8px;background: rgba(255,255,255,.05);
  border-radius: 100px;overflow: hidden;margin-bottom: 8px;
}
.pacaman-progress-fill {
  height: 100%;border-radius: 100px;
  background: linear-gradient(to right,#1a7a3a,#34A853);
  width: 0%;
  transition: width 2s cubic-bezier(.16,1,.3,1);
}
.pacaman-progress-fill.animated { width: var(--fill-pct, 0%); }
.pacaman-progress-sub {
  font-size: 11px;color: rgba(242,237,232,.28);
  display: flex;justify-content: space-between;
}
.pacaman-layout {
  display: grid;grid-template-columns: 1fr 1fr;
  gap: 28px;margin-bottom: 48px;align-items: start;
}
.pacaman-gallery {
  display: grid;grid-template-columns: 1fr 1fr;gap: 8px;
}
.pacaman-photo {
  border-radius: 12px;overflow: hidden;
  aspect-ratio: 4/3;cursor: zoom-in;
}
.pacaman-photo img {
  width: 100%;height: 100%;object-fit: cover;
  filter: brightness(.85);
  transition: filter .4s, transform .6s var(--ease-out);
}
.pacaman-photo:hover img { filter: brightness(1);transform: scale(1.03); }
.pacaman-map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(52,168,83,.18);
  cursor: zoom-in;
}
.pacaman-map-wrap img { width: 100%;display: block; }
.pacaman-video-wrap {
  border-radius: 16px;overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  max-width: 680px;margin: 0 auto 0;
}
.pacaman-video-wrap video { display: block;width: 100%; }
.pacaman-desc {
  max-width: 560px;margin: 0 auto;text-align: center;
  font-size: clamp(14px,1.8vw,16px);font-weight: 300;
  color: rgba(242,237,232,.58);line-height: 1.75;
  letter-spacing: -.01em;margin-top: 36px;
}
@media(max-width:768px) {
  .pacaman-stats-grid{grid-template-columns:1fr 1fr}
  .pacaman-layout{grid-template-columns:1fr}
}
@media(max-width:480px) {
  .pacaman-stats-grid{grid-template-columns:1fr}
  .pacaman-gallery{grid-template-columns:1fr}
  .pac-mini-grid{grid-template-columns:1fr}
  .pac-uni-row{grid-template-columns:56px 50px 40px 1fr}
}

/* ═══════════════════════════════════════════
   PRIORITY TOGGLE — opción marcable +Q20
═══════════════════════════════════════════ */
.priority-label {
  display: block;cursor: pointer;margin-top: 12px;flex: 1;
}
.priority-label input[type="checkbox"] { display: none; }
.priority-box {
  display: flex;align-items: flex-start;gap: 10px;
  padding: 11px 13px;
  background: rgba(0,122,255,.04);
  border: 1px solid rgba(0,122,255,.14);
  border-radius: 10px;
  transition: background .18s, border-color .18s;
}
.priority-label.checked .priority-box {
  background: rgba(0,122,255,.11);
  border-color: var(--accent);
}
.priority-check-ui {
  width: 16px;height: 16px;
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: 4px;flex-shrink: 0;margin-top: 1px;
  display: flex;align-items: center;justify-content: center;
  transition: all .15s;color: #fff;font-size: 0;font-weight: 700;
}
.priority-check-ui::after { content: '✓'; }
.priority-label.checked .priority-check-ui {
  background: var(--accent);border-color: var(--accent);font-size: 11px;
}
.priority-info { flex: 1; }
.priority-name {
  font-size: 12px;font-weight: 600;
  color: rgba(242,237,232,.8);margin-bottom: 3px;
  display: flex;align-items: center;gap: 6px;
}
.priority-price { color: var(--accent);font-weight: 700; }
.priority-desc {
  font-size: 11px;color: rgba(242,237,232,.38);line-height: 1.4;
}
.pricing-delivery {
  font-size: 11px;color: rgba(242,237,232,.4);
  margin-top: 8px;margin-bottom: 8px;
}
.pricing-delivery strong { color: rgba(242,237,232,.65); }

/* ═══════════════════════════════════════════
   PACAMÁN — STATS SC2/SC3
═══════════════════════════════════════════ */
.pac-community-grid {
  display: grid;grid-template-columns: 1fr 1fr;
  gap: 12px;margin-bottom: 28px;
}
/* Tracker SC2 */
.pac-tracker {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(52,168,83,.14);
  border-radius: 16px;padding: 24px 24px 20px;
  margin-bottom: 16px;
}
.pac-tracker-head {
  display: flex;justify-content: space-between;
  align-items: flex-start;margin-bottom: 18px;
  flex-wrap: wrap;gap: 10px;
}
.pac-tracker-title {
  font-size: 17px;font-weight: 700;color: #f2ede8;
  letter-spacing: -.015em;margin-bottom: 4px;
}
.pac-tracker-period {
  font-size: 12px;color: rgba(242,237,232,.38);
}
.pac-tracker-badge {
  background: rgba(52,168,83,.12);
  border: 1px solid rgba(52,168,83,.28);
  color: #34A853;font-size: 11px;font-weight: 700;
  padding: 4px 12px;border-radius: 100px;letter-spacing: .5px;
  white-space: nowrap;align-self: flex-start;
}
.pac-mini-grid {
  display: grid;grid-template-columns: repeat(3,1fr);
  gap: 10px;margin-bottom: 20px;
}
.pac-mini-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;padding: 14px 14px 12px;
}
.pac-mini-lbl {
  font-size: 11px;color: rgba(242,237,232,.4);
  margin-bottom: 6px;
}
.pac-mini-val {
  font-size: clamp(18px,2.5vw,26px);font-weight: 700;
  color: #f2ede8;letter-spacing: -.025em;line-height: 1;margin-bottom: 4px;
}
.pac-mini-sub { font-size: 11px;color: rgba(242,237,232,.32); }
.pac-prog-section { margin-bottom: 20px; }
.pac-prog-header {
  display: flex;justify-content: space-between;
  align-items: center;margin-bottom: 8px;
  font-size: 12px;color: rgba(242,237,232,.5);font-weight: 600;
}
.pac-prog-pct { color: #34A853; }
.pac-prog-track {
  height: 8px;background: rgba(255,255,255,.05);
  border-radius: 100px;overflow: hidden;
}
.pac-prog-fill {
  height: 100%;border-radius: 100px;
  background: linear-gradient(to right,#1a7a3a,#34A853);
  width: 0%;transition: width 2s cubic-bezier(.16,1,.3,1);
}
.pac-prog-fill.animated { width: var(--fill-pct, 0%); }
.pac-chart-section { padding-top: 4px; }
.pac-chart-title {
  font-size: 12px;font-weight: 600;
  color: rgba(242,237,232,.45);margin-bottom: 12px;letter-spacing: -.01em;
}
.pac-month-chart {
  display: flex;align-items: flex-end;gap: 6px;height: 90px;
}
.pac-month-bar-col {
  flex: 1;display: flex;flex-direction: column;
  align-items: center;gap: 5px;height: 100%;justify-content: flex-end;
}
.pac-month-bar {
  width: 100%;background: rgba(52,168,83,.28);
  border-radius: 3px 3px 0 0;
  height: calc(var(--h, 0) * 75px);min-height: 3px;
  transition: height 1.5s cubic-bezier(.16,1,.3,1);
}
.pac-month-bar-col span {
  font-size: 9px;color: rgba(242,237,232,.3);font-weight: 500;
}
/* Unis SC3 */
.pac-unis {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(52,168,83,.14);
  border-radius: 16px;padding: 24px;margin-bottom: 32px;
}
.pac-unis-title {
  font-size: 17px;font-weight: 700;color: #f2ede8;
  letter-spacing: -.015em;margin-bottom: 20px;
  display: flex;align-items: center;gap: 8px;
}
.pac-uni-list {
  display: flex;flex-direction: column;gap: 13px;margin-bottom: 20px;
}
.pac-uni-row {
  display: grid;grid-template-columns: 62px 58px 46px 1fr;
  align-items: center;gap: 12px;
}
.pac-uni-badge {
  font-size: 11px;font-weight: 700;padding: 4px 8px;
  border-radius: 6px;text-align: center;letter-spacing: .5px;
}
/* UDV — celeste */
.pac-udv  { background:rgba(14,165,233,.14);color:#38bdf8;border:1px solid rgba(14,165,233,.32) }
/* UMG — amarillo */
.pac-ugm  { background:rgba(234,179,8,.14);color:#facc15;border:1px solid rgba(234,179,8,.32) }
/* URL — azul */
.pac-url  { background:rgba(59,130,246,.14);color:#60a5fa;border:1px solid rgba(59,130,246,.32) }
/* USAC — gris */
.pac-usac { background:rgba(148,163,184,.12);color:#94a3b8;border:1px solid rgba(148,163,184,.28) }
/* UPANA — lila/morado */
.pac-upana{ background:rgba(167,139,250,.14);color:#a78bfa;border:1px solid rgba(167,139,250,.32) }
/* UFM — rojo */
.pac-ufm  { background:rgba(239,68,68,.14);color:#f87171;border:1px solid rgba(239,68,68,.32) }
.pac-uni-q {
  font-size: 14px;font-weight: 600;color: #f2ede8;
  font-variant-numeric: tabular-nums;
}
.pac-uni-pct {
  font-size: 12px;color: rgba(242,237,232,.38);
  font-variant-numeric: tabular-nums;
}
.pac-uni-bar-wrap {
  height: 7px;background: rgba(255,255,255,.05);
  border-radius: 100px;overflow: hidden;
}
.pac-uni-bar {
  height: 100%;background: rgba(52,168,83,.4);
  border-radius: 100px;min-width: 3px;
  transition: width 1.5s cubic-bezier(.16,1,.3,1);
}
.pac-uni-chart {
  margin-top: 16px;padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.pac-uni-chart-bars {
  display: flex;gap: 8px;height: 70px;align-items: flex-end;
}
.pac-uni-chart-col {
  flex: 1;display: flex;flex-direction: column;
  align-items: center;gap: 5px;height: 100%;justify-content: flex-end;
}
.pac-uni-chart-bar {
  width: 100%;border-radius: 3px 3px 0 0;height: 3px;
}
.pac-udv-bar  { background:rgba(14,165,233,.5) }   /* celeste */
.pac-ugm-bar  { background:rgba(234,179,8,.5) }    /* amarillo */
.pac-url-bar  { background:rgba(59,130,246,.5) }   /* azul */
.pac-usac-bar { background:rgba(148,163,184,.45) } /* gris */
.pac-upana-bar{ background:rgba(167,139,250,.5) }  /* lila */
.pac-ufm-bar  { background:rgba(239,68,68,.5) }    /* rojo */
.pac-uni-chart-col span {
  font-size: 10px;color: rgba(242,237,232,.32);font-weight: 500;
}
.pac-disclaimer {
  margin-top: 18px;padding: 12px 14px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 8px;font-size: 10.5px;
  color: rgba(242,237,232,.28);line-height: 1.55;font-style: italic;
}
@media(max-width:768px){
  .pac-community-grid{grid-template-columns:1fr}
  .pac-mini-grid{grid-template-columns:1fr 1fr}
}

/* ═══════════════════════════════════════════
   DECLARACIÓN — palabras con acento
═══════════════════════════════════════════ */
.decl-accent { color: var(--accent); font-weight: 500; }
.declaration-signature {
  font-size: 14px;font-weight: 600;font-style: italic;
  color: var(--text-muted);margin-top: 18px;letter-spacing: .3px;
}

/* ═══════════════════════════════════════════
   VIDEO — título acento + texto impacto
═══════════════════════════════════════════ */
.video-head .section-title {
  color: var(--accent);
  font-size: clamp(46px,6.2vw,88px);
  line-height:.95;
  text-align:center;
  margin:0 auto;
}

.video-clean-lead {
  font-size: clamp(16px,2.2vw,22px);font-weight: 500;
  color: rgba(242,237,232,.92);letter-spacing: -.015em;
  margin-bottom: 16px;line-height: 1.45;
}
.vf-accent { color: var(--accent); }
.video-clean-body {
  font-size: clamp(14px,1.7vw,16px);font-weight: 300;
  color: rgba(242,237,232,.55);line-height: 1.75;
  letter-spacing: -.01em;margin-bottom: 26px;
}
.video-clean-cta {
  font-size: clamp(20px,3.2vw,38px);font-weight: 800;
  letter-spacing: -.025em;color: var(--accent);line-height: 1;
}

/* ═══════════════════════════════════════════
   PRICING — updates
═══════════════════════════════════════════ */
.pricing-list-note {
  font-size: 10px;color: rgba(242,237,232,.28);
  font-style: italic;margin-top: -2px;margin-bottom: 8px;
}
.pricing-group-label {
  font-size: 12px !important;font-weight: 700 !important;text-transform: uppercase;
  letter-spacing: 1.5px;color: rgba(242,237,232,.78) !important;margin-bottom: 4px;
}

/* ── PAQUETE FUNDADORES ─────────────────── */
.founders-trigger {
  text-align: center;margin-bottom: 24px;
  padding: 22px 28px;
  border: 1px dashed rgba(0,122,255,.28);
  border-radius: 16px;background: rgba(0,122,255,.03);
  cursor: pointer;
}
.founders-hint {
  font-size: 14px;color: rgba(242,237,232,.45);margin-bottom: 6px;
}
.founders-exclusive {
  font-size: clamp(14px,2vw,18px);font-weight: 700;
  color: var(--text);letter-spacing: .5px;margin-bottom: 16px;
}
.founders-exclusive strong { color: var(--accent); }
.btn-founders {
  background: linear-gradient(135deg,var(--accent),#0044cc);
  color: #fff;font-weight: 700;padding: 14px 32px;
  border-radius: 100px;font-size: 15px;border: none;
  cursor: pointer;letter-spacing: .3px;
  box-shadow: 0 8px 28px rgba(0,122,255,.32);
  transition: transform .2s, box-shadow .2s;
}
.btn-founders:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,122,255,.45);
}
.founders-panel {
  max-height: 0;overflow: hidden;opacity: 0;
  transition: max-height .7s cubic-bezier(.16,1,.3,1), opacity .35s;
}
.founders-panel.open { max-height: 3000px;opacity: 1; }
.founders-panel-inner {
  padding: 28px 0 8px;margin-bottom: 24px;
}
.founders-header {
  text-align: center;margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,122,255,.15);
}
.founders-badge {
  display: inline-block;background: var(--accent);color: #fff;
  font-size: 11px;font-weight: 700;padding: 4px 14px;
  border-radius: 100px;letter-spacing: 1.5px;
  text-transform: uppercase;margin-bottom: 10px;
}
.founders-header h3 {
  font-size: clamp(22px,3vw,32px);font-weight: 700;
  color: var(--text);letter-spacing: -.022em;margin-bottom: 6px;
}
.founders-header p { font-size: 13px;color: var(--text-muted); }
.founders-close { text-align: center;padding: 18px 0 8px; }
.btn-close-founders {
  background: none;border: 1px solid var(--border);
  color: var(--text-muted);padding: 8px 22px;
  border-radius: 100px;font-size: 13px;cursor: pointer;
  transition: all .2s;
}
.btn-close-founders:hover { border-color: rgba(255,255,255,.4);color: var(--text); }

/* ── PACAMÁN — quote accent ─────────────── */
.pac-quote-accent {
  color: #34A853;font-weight: 600;font-style: normal;
}

/* ── FOUNDERS trigger — button overrides ── */
.founders-trigger-wrap { margin-bottom: 32px; }
.founders-trigger {
  display: block;width: 100%;
  background: rgba(0,122,255,.03);
  border: 1px dashed rgba(0,122,255,.28);
  border-radius: 16px;padding: 22px 28px;
  cursor: pointer;font-family: inherit;
  color: var(--text);text-align: center;
  transition: background .2s, border-color .2s;
  font-size: clamp(14px,1.8vw,16px);line-height: 1.5;
}
.founders-trigger:hover {
  background: rgba(0,122,255,.07);
  border-color: rgba(0,122,255,.5);
}
.founders-trigger.open {
  border-color: var(--accent);
  background: rgba(0,122,255,.06);
}
.founders-arrow {
  display: inline-block;margin-left: 8px;
  font-size: 14px;transition: transform .3s;
  color: var(--accent);
}
.founders-trigger.open .founders-arrow { transform: rotate(180deg); }
.founders-close {
  display: inline-flex;align-items: center;gap: 6px;
  background: none;border: 1px solid var(--border);
  color: var(--text-muted);padding: 8px 20px;
  border-radius: 100px;font-size: 12px;cursor: pointer;
  font-family: inherit;transition: all .2s;margin-top: 10px;
}
.founders-close:hover { border-color: rgba(255,255,255,.3);color: var(--text); }
.founders-grid { margin-top: 0; }

/* ═══════════════════════════════════════════
   VIDEO TEXT — slide-up entrance + scroll fade
═══════════════════════════════════════════ */
/* Parent container: bypass standard reveal (children animate) */
.video-features.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
/* Children start below, hidden */
.video-features .video-clean-lead,
.video-features .video-clean-body,
.video-features .video-clean-cta {
  opacity: 0;
  transform: translateY(64px);
  transition: opacity .85s cubic-bezier(.16,1,.3,1),
              transform .85s cubic-bezier(.16,1,.3,1);
}
/* Staggered entrance when parent becomes visible */
.video-features.visible .video-clean-lead {
  opacity: 1; transform: translateY(0); transition-delay: 0s;
}
.video-features.visible .video-clean-body {
  opacity: 1; transform: translateY(0); transition-delay: .18s;
}
.video-features.visible .video-clean-cta {
  opacity: 1; transform: translateY(0); transition-delay: .38s;
}

/* ═══════════════════════════════════════════
   FOUNDERS BUTTON — golden pulse (overrides previous blue)
═══════════════════════════════════════════ */
.founders-outer-label {
  text-align: center;font-size: 11px;font-weight: 700;
  letter-spacing: 2.5px;text-transform: uppercase;
  color: rgba(242,237,232,.35);margin-bottom: 12px;
}
/* Full override of founders-trigger to golden */
.founders-trigger {
  display: block;width: 100%;
  background: linear-gradient(135deg,#c9a227,#9a7b0e);
  border: none;color: #fff;
  border-radius: 14px;padding: 18px 28px;
  cursor: pointer;font-family: inherit;
  font-size: clamp(13px,1.8vw,15px);font-weight: 700;
  letter-spacing: .3px;line-height: 1.4;text-align: center;
  animation: founders-glow 2.2s ease-in-out infinite;
  transition: transform .2s;margin-bottom: 0;
}
.founders-trigger:hover { transform: translateY(-1px); }
.founders-trigger:hover,
.founders-trigger.open { animation-play-state: paused; }
@keyframes founders-glow {
  0%, 65%, 100% { box-shadow: 0 4px 18px rgba(201,162,39,.28); }
  35% {
    box-shadow: 0 4px 32px rgba(201,162,39,.72),
                0 0 0 5px rgba(201,162,39,.12);
  }
}

/* ═══════════════════════════════════════════
   FOUNDERS PRICE ANIMATION — crossed old, gold new
═══════════════════════════════════════════ */
.founders-price-anim {
  display: flex;flex-direction: column;
  align-items: center;gap: 4px;margin: 8px 0 12px;
}
.founders-orig-price {
  position: relative;display: flex;align-items: baseline;
  gap: 2px;line-height: 1;
}
.price-q-old {
  font-size: 12px;color: rgba(242,237,232,.25);font-weight: 600;
}
.price-num-old {
  font-size: 26px;font-weight: 700;
  color: rgba(242,237,232,.25);letter-spacing: -.02em;
}
.founders-slash-line {
  position: absolute;top: 50%;left: -5%;
  width: 0%;height: 2px;
  background: rgba(242,237,232,.4);
  transform: translateY(-50%) rotate(-10deg);
  transform-origin: left center;
  transition: width .45s ease-out .35s;
}
.founders-panel.open .founders-slash-line { width: 115%; }
.founders-new-price {
  display: flex;align-items: baseline;gap: 2px;
  opacity: 0;transform: translateY(6px);
  transition: opacity .4s ease-out .85s,
              transform .5s cubic-bezier(.16,1,.3,1) .85s;
}
.founders-panel.open .founders-new-price {
  opacity: 1;transform: translateY(0);
}
.founders-new-price .price-q  { color: rgba(255,215,100,.6); font-size: 12px; }
.founders-new-price .price-num-sm { color: rgba(255,215,100,.82); }

/* ═══════════════════════════════════════════
   FOUNDERS — precio en las cards existentes
═══════════════════════════════════════════ */
.pricing-price-wrap {
  display: flex;flex-direction: column;gap: 2px;
}
/* The existing pricing-price needs position:relative for the slash */
.pricing-price-wrap .pricing-price {
  position: relative;display: inline-flex;align-items: baseline;
}

/* Slash — starts invisible, expands on founders-active */
.pricing-price-wrap .founders-slash-line {
  position: absolute;top: 50%;left: -4%;
  width: 0;height: 2.5px;
  background: rgba(255,48,48,.85);
  transform: translateY(-50%) rotate(-10deg);
  transform-origin: left center;
  transition: width .45s ease-out;
  border-radius: 2px;
}
/* New price — hidden until founders-active */
.pricing-price-wrap .founders-new-price {
  opacity: 0;transform: translateY(5px);
  transition: opacity .4s ease-out, transform .4s cubic-bezier(.16,1,.3,1);
  display: inline-flex;align-items: baseline;gap: 2px;
}

/* When grid has founders-active class, animate in order */
.pricing-grid.founders-active .pricing-price .price-q,
.pricing-grid.founders-active .pricing-price .price-num-sm {
  color: rgba(242,237,232,.22);
  transition: color .35s ease;
}
/* Staggered slash per card */
.pricing-grid.founders-active .pricing-card-sm:nth-child(1) .founders-slash-line { width:112%; transition-delay:0s; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(2) .founders-slash-line { width:112%; transition-delay:.1s; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(3) .founders-slash-line { width:112%; transition-delay:.2s; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(4) .founders-slash-line { width:112%; transition-delay:.3s; }
/* Staggered new price reveal */
.pricing-grid.founders-active .pricing-card-sm:nth-child(1) .founders-new-price { opacity:1;transform:translateY(0);transition-delay:.5s; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(2) .founders-new-price { opacity:1;transform:translateY(0);transition-delay:.62s; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(3) .founders-new-price { opacity:1;transform:translateY(0);transition-delay:.74s; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(4) .founders-new-price { opacity:1;transform:translateY(0);transition-delay:.86s; }

/* ═══════════════════════════════════════════
   FOUNDERS BUTTON — bright premium yellow + pulse glow
═══════════════════════════════════════════ */
.founders-btn-wrap { display: block; }

/* Override previous founders-trigger to bright yellow with pulse */
.founders-trigger {
  display: block;width: 100%;
  background: linear-gradient(135deg, #FFD700, #FFC400);
  border: none;
  color: #1a0c00;
  border-radius: 14px;
  padding: 11px 20px;
  cursor: pointer;font-family: inherit;
  font-size: clamp(13px,1.8vw,15px);
  font-weight: 800;
  letter-spacing: .3px;
  line-height: 1.4;
  text-align: center;
  width: auto;
  animation: founders-glow 2.2s ease-in-out infinite;
  transition: background .25s, transform .2s;
}
/* Hover: warm amber that complements yellow */
.founders-trigger:hover {
  background: linear-gradient(135deg, #FFAA00, #FF8A00);
  animation-play-state: paused;
  transform: translateY(-1px);
}
.founders-trigger.open {
  background: linear-gradient(135deg, #FFAA00, #FF8A00);
  animation-play-state: paused;
}
/* Arrow rotation */
.founders-trigger .founders-arrow { transition: transform .3s; display: inline-block; margin-left: 6px; }
.founders-trigger.open .founders-arrow { transform: rotate(180deg); }

/* Center button (auto width) */
.founders-btn-wrap { display: flex; justify-content: center; }

/* ── Slash ONLY on the number (price-num-wrap) ── */
.price-num-wrap {
  position: relative;
  display: inline-block;
}
.price-num-wrap .founders-slash-line {
  position: absolute;
  top: 50%; left: -4%;
  width: 0; height: 2.5px;
  background: rgba(255,40,40,.9);
  transform: translateY(-50%) rotate(-10deg);
  transform-origin: left center;
  border-radius: 2px;
  transition: width .42s ease-out;
  display: block;
}
/* Override previous slash rules (were on .pricing-price-wrap .pricing-price) */
.pricing-price-wrap .pricing-price { position: static; }
.pricing-price-wrap .founders-slash-line { display: none; } /* hide any leftover */
/* Staggered slash activation */
.pricing-grid.founders-active .pricing-card-sm:nth-child(1) .price-num-wrap .founders-slash-line { width:108%; transition-delay:0s; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(2) .price-num-wrap .founders-slash-line { width:108%; transition-delay:.12s; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(3) .price-num-wrap .founders-slash-line { width:108%; transition-delay:.24s; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(4) .price-num-wrap .founders-slash-line { width:108%; transition-delay:.36s; }

/* ── New price: white flash → gold ── */
@keyframes flash-to-gold {
  0%, 50% { color: #ffffff; }
  100%    { color: rgba(255,215,100,.85); }
}
@keyframes flash-q-gold {
  0%, 50% { color: rgba(255,255,255,.7); }
  100%    { color: rgba(255,215,100,.62); }
}
/* Staggered per card — 1s animation so white lasts exactly 0.5s */
.pricing-grid.founders-active .pricing-card-sm:nth-child(1) .founders-new-price .price-num-sm { animation: flash-to-gold 1s ease-out .5s both; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(2) .founders-new-price .price-num-sm { animation: flash-to-gold 1s ease-out .62s both; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(3) .founders-new-price .price-num-sm { animation: flash-to-gold 1s ease-out .74s both; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(4) .founders-new-price .price-num-sm { animation: flash-to-gold 1s ease-out .86s both; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(1) .founders-new-price .price-q { animation: flash-q-gold 1s ease-out .5s both; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(2) .founders-new-price .price-q { animation: flash-q-gold 1s ease-out .62s both; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(3) .founders-new-price .price-q { animation: flash-q-gold 1s ease-out .74s both; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(4) .founders-new-price .price-q { animation: flash-q-gold 1s ease-out .86s both; }

/* ═══════════════════════════════════════════
   PRICING — gift hint subtitle
═══════════════════════════════════════════ */
.pricing-gift-hint {
  font-size: 15px;color: rgba(242,237,232,.5);
  margin-top: 8px;letter-spacing: .2px;
}

/* ═══════════════════════════════════════════
   COMPARATIVA VS COMPETENCIA
═══════════════════════════════════════════ */
.vs-section {
  padding: 80px 0;
  background: rgba(255,255,255,.015);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.vs-head { text-align:center; margin-bottom:52px; }
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.vs-col {
  border-radius: 18px;
  padding: 30px 28px;
}
.vs-them {
  background: rgba(239,68,68,.04);
  border: 1px solid rgba(239,68,68,.14);
}
.vs-us {
  background: rgba(52,199,89,.04);
  border: 1px solid rgba(52,199,89,.18);
}
.vs-col-label {
  font-size: 11px;font-weight: 700;
  text-transform: uppercase;letter-spacing: 1.4px;
  margin-bottom: 22px;
}
.vs-them .vs-col-label { color: rgba(239,68,68,.65); }
.vs-us  .vs-col-label  { color: rgba(52,199,89,.75); }
.vs-list {
  list-style: none;padding: 0;margin: 0;
  display: flex;flex-direction: column;gap: 13px;
}
.vs-list li {
  display: flex;align-items: flex-start;gap: 11px;
  font-size: 13.5px;line-height: 1.5;
  color: rgba(242,237,232,.75);
}
.vs-x {
  color: rgba(239,68,68,.9);
  font-weight: 700;font-size: 15px;
  flex-shrink: 0;margin-top: 1px;
}
.vs-check {
  color: rgba(52,199,89,.9);
  font-weight: 700;font-size: 15px;
  flex-shrink: 0;margin-top: 1px;
}
/* ═══════════════════════════════════════════
   PRICING CARDS — compact + "Ver más" toggle
═══════════════════════════════════════════ */
.pricing-toggle-btn {
  width: 100%;margin-top: 10px;
  background: none;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(242,237,232,.45);
  padding: 7px 12px;border-radius: 8px;
  cursor: pointer;font-family: inherit;
  font-size: 12px;letter-spacing: .4px;
  transition: border-color .2s, color .2s;
  display: flex;align-items: center;justify-content: center;gap: 5px;
}
.pricing-toggle-btn:hover,
.pricing-toggle-btn.open {
  border-color: rgba(255,255,255,.25);color: var(--text);
}
.ptb-arrow { transition: transform .3s; display: inline-block; }

.pricing-details {
  max-height: 0;overflow: hidden;opacity: 0;
  transition: max-height .5s cubic-bezier(.16,1,.3,1), opacity .3s ease;
}
.pricing-details.open { max-height: 900px;opacity: 1; }

/* ── Founders: price side-by-side layout ── */
.pricing-grid.founders-active .pricing-price-wrap {
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
}
/* Shrink + grey the original price */
.pricing-grid.founders-active .pricing-price-wrap .pricing-price {
  opacity: .45;
  font-size: .62em;
  transition: opacity .4s, font-size .3s;
}
/* New price stays prominent on the right */
.pricing-grid.founders-active .founders-new-price {
  flex-shrink: 0;
}

@media(max-width:640px) {
  .vs-grid { grid-template-columns: 1fr; }
  .vs-col  { padding: 22px 18px; }
}

/* ═══════════════════════════════════════════
   FOUNDERS V2 — shrink + X + side reveal
   (overrides all previous founders price rules)
═══════════════════════════════════════════ */

/* ── 1. Force row layout ALWAYS — no height shift ── */
.pricing-price-wrap {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0 !important;
}

/* ── 2. Kill the old span slash — replaced by ::after ── */
.price-num-wrap .founders-slash-line { display: none !important; }
.pricing-grid.founders-active .pricing-card-sm:nth-child(1) .price-num-wrap .founders-slash-line,
.pricing-grid.founders-active .pricing-card-sm:nth-child(2) .price-num-wrap .founders-slash-line,
.pricing-grid.founders-active .pricing-card-sm:nth-child(3) .price-num-wrap .founders-slash-line,
.pricing-grid.founders-active .pricing-card-sm:nth-child(4) .price-num-wrap .founders-slash-line { width: 0 !important; }

/* ── 3. Red ✕ overlay that pops in over the old number ── */
.price-num-wrap {
  position: relative;
  display: inline-block;
}
.price-num-wrap::after {
  content: '✕';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: .95em;
  font-weight: 900;
  line-height: 1;
  transform: scale(0.1);
  pointer-events: none;
  transition: color .2s ease, transform .38s cubic-bezier(.34, 1.56, .64, 1);
}
/* Staggered pop-in per card */
.pricing-grid.founders-active .pricing-card-sm:nth-child(1) .price-num-wrap::after {
  color: rgba(255, 38, 38, .9); transform: scale(1.15); transition-delay: .22s;
}
.pricing-grid.founders-active .pricing-card-sm:nth-child(2) .price-num-wrap::after {
  color: rgba(255, 38, 38, .9); transform: scale(1.15); transition-delay: .36s;
}
.pricing-grid.founders-active .pricing-card-sm:nth-child(3) .price-num-wrap::after {
  color: rgba(255, 38, 38, .9); transform: scale(1.15); transition-delay: .50s;
}
.pricing-grid.founders-active .pricing-card-sm:nth-child(4) .price-num-wrap::after {
  color: rgba(255, 38, 38, .9); transform: scale(1.15); transition-delay: .64s;
}

/* ── 4. Shrink + dim the old price IN-PLACE (no layout shift) ── */
.pricing-grid.founders-active .pricing-price .price-num-sm {
  font-size: clamp(14px, 1.6vw, 18px) !important;
  color: rgba(242, 237, 232, .28) !important;
  transition: font-size .35s ease, color .35s ease;
}
.pricing-grid.founders-active .pricing-price .price-q {
  font-size: 9px !important;
  color: rgba(242, 237, 232, .28) !important;
  transition: font-size .35s ease, color .35s ease;
}
/* Override the old .62em rule */
.pricing-grid.founders-active .pricing-price-wrap .pricing-price {
  opacity: 1 !important;
  font-size: 1em !important;
}

/* ── 5. New price: reveal from right via max-width trick ── */
.pricing-price-wrap .founders-new-price {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  display: inline-flex !important;
  align-items: baseline;
  gap: 2px;
  margin-left: 0;
  padding-left: 0;
  transform: none !important; /* clear old translateY(5px) */
}
/* Staggered reveal per card (includes transition with delay inline) */
.pricing-grid.founders-active .pricing-card-sm:nth-child(1) .founders-new-price {
  max-width: 180px; opacity: 1; margin-left: 10px;
  transition: max-width .48s cubic-bezier(.16,1,.3,1) .32s, opacity .3s ease .32s, margin-left .35s ease .32s;
}
.pricing-grid.founders-active .pricing-card-sm:nth-child(2) .founders-new-price {
  max-width: 180px; opacity: 1; margin-left: 10px;
  transition: max-width .48s cubic-bezier(.16,1,.3,1) .46s, opacity .3s ease .46s, margin-left .35s ease .46s;
}
.pricing-grid.founders-active .pricing-card-sm:nth-child(3) .founders-new-price {
  max-width: 180px; opacity: 1; margin-left: 10px;
  transition: max-width .48s cubic-bezier(.16,1,.3,1) .60s, opacity .3s ease .60s, margin-left .35s ease .60s;
}
.pricing-grid.founders-active .pricing-card-sm:nth-child(4) .founders-new-price {
  max-width: 180px; opacity: 1; margin-left: 10px;
  transition: max-width .48s cubic-bezier(.16,1,.3,1) .74s, opacity .3s ease .74s, margin-left .35s ease .74s;
}

/* ═══════════════════════════════════════════
   JUST CHAT — Asistente virtual
═══════════════════════════════════════════ */



@keyframes justPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(0,0,0,.55); }
  50%      { box-shadow: 0 4px 28px rgba(0,122,255,.22), 0 0 0 5px rgba(0,122,255,.07); }
}

/* — Panel — */
.just-panel {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 156;
  width: 360px;
  max-height: 520px;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  box-shadow: 0 28px 72px rgba(0,0,0,.72);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px) scale(.96);
  pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .32s var(--ease-out);
}
.just-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* — Header — */
.just-header {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
  background: var(--bg-3);
}
.just-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0;
}
.just-header-info { flex: 1; min-width: 0; }
.just-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.just-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 3px;
}
.just-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34C759;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(52,199,89,.6);
}
.just-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s;
  flex-shrink: 0;
  font-family: var(--font-ui);
}
.just-close:hover { background: rgba(255,255,255,.11); color: var(--text); }

/* — Messages — */
.just-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}
.just-messages::-webkit-scrollbar { width: 3px; }
.just-messages::-webkit-scrollbar-track { background: transparent; }
.just-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,.09); border-radius: 2px; }

/* — Bubble — */
.just-bubble {
  display: flex;
  align-items: flex-end;
  gap: 0;
  animation: bubbleIn .28s var(--ease-out) both;
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: translateY(0); }
}
.just-bubble-text {
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px 14px 14px 3px;
  padding: 9px 13px;
  font-size: 13px;
  line-height: 1.52;
  color: var(--text);
  max-width: 280px;
}
.just-bubble-text strong { color: var(--accent); font-weight: 600; }

.just-bubble.user { flex-direction: row-reverse; }
.just-bubble.user .just-bubble-text {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  border-radius: 14px 14px 3px 14px;
}
.just-bubble.user .just-bubble-text strong { color: #fff; }

/* — Typing indicator — */
.just-typing { animation: bubbleIn .28s var(--ease-out) both; }
.just-typing-dots {
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px 14px 14px 3px;
  padding: 11px 15px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.just-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typingDot 1.1s ease-in-out infinite;
}
.just-typing-dots span:nth-child(2) { animation-delay: .18s; }
.just-typing-dots span:nth-child(3) { animation-delay: .36s; }
@keyframes typingDot {
  0%,60%,100% { transform: translateY(0); opacity: .35; }
  30%          { transform: translateY(-5px); opacity: 1; }
}

/* — Chips — */
.just-chips-wrap {
  padding: 10px 14px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,.05);
  min-height: 54px;
}
.just-chip {
  padding: 7px 13px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s, border-color .18s, transform .15s var(--ease-spring);
}
.just-chip:hover {
  background: rgba(0,122,255,.14);
  border-color: rgba(0,122,255,.38);
  transform: translateY(-1px);
}
.just-chip.wa-chip {
  background: rgba(37,211,102,.09);
  border-color: rgba(37,211,102,.28);
  color: #34C759;
}
.just-chip.wa-chip:hover {
  background: rgba(37,211,102,.18);
  border-color: rgba(37,211,102,.5);
  transform: translateY(-1px);
}

/* — Avatar foto — */
.just-avatar-photo {
  padding: 0;
  overflow: hidden;
  background: transparent;
}
.just-avatar-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
}

/* — Mobile — */
@media (max-width: 520px) {
  .float-dock { bottom: 20px; right: 20px; }
  .dock-just-text { display: none; }
  .dock-just { padding: 0 14px; }
  .just-panel {
    bottom: 0; right: 0; left: 0;
    width: 100%; max-height: 72vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(24px) scale(1);
  }
  .just-panel.open { transform: translateY(0) scale(1); }
}

/* ═══════════════════════════════════════════
   FIX GENERAL MOBILE — evita descuadres horizontales
═══════════════════════════════════════════ */
html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

main,
section{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

img,
video{
  max-width:100%;
}

/* Mobile fino */
@media(max-width:640px){

  .container{
    width:100%;
    max-width:100%;
    padding-left:24px;
    padding-right:24px;
  }

  .section-header{
    margin-bottom:42px;
  }

  .section-title{
    max-width:100%;
    font-size:clamp(34px, 11vw, 48px);
    line-height:1.08;
    overflow-wrap:break-word;
  }

  .eyebrow{
    max-width:100%;
    overflow-wrap:break-word;
  }

  /* Reacciones / testimonios */
  .reactions{
    padding:90px 0;
  }

  .reactions-grid{
    grid-template-columns:minmax(0, 1fr);
    width:100%;
    max-width:100%;
  }

  .reaction-card{
    width:100%;
    max-width:100%;
    padding:24px 20px;
  }

  .reaction-top{
    display:grid;
    grid-template-columns:44px minmax(0, 1fr) auto;
    align-items:center;
    gap:12px;
  }

  .avatar{
    width:44px;
    height:44px;
  }

  .reaction-info{
    min-width:0;
  }

  .reaction-detail{
    max-width:100%;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .platform{
    max-width:96px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size:9px;
    letter-spacing:1.6px;
  }

  .reaction-text{
    font-size:clamp(16px, 4.5vw, 18px);
    line-height:1.72;
  }

  /* Chat flotante para que no empuje ni se salga */
  .float-dock{
    right:16px;
    bottom:16px;
    max-width:calc(100vw - 32px);
  }

  /* Footer mobile — Instagram glow */
  .footer-inner{
    justify-content:center;
    text-align:center;
  }

  .footer-logo{
    width:100%;
    text-align:center;
  }

  .footer-links{
    width:100%;
    justify-content:center;
    margin-left:0;
  }

  .footer-links a:first-child{
    color:#ff4d6d;
    font-weight:700;
    text-shadow:
      0 0 8px rgba(255,77,109,.65),
      0 0 18px rgba(225,48,108,.45),
      0 0 34px rgba(255,0,80,.32);
  }

  .footer-links a:first-child:hover{
    color:#ff6b8a;
    text-shadow:
      0 0 10px rgba(255,77,109,.85),
      0 0 24px rgba(225,48,108,.55),
      0 0 44px rgba(255,0,80,.38);
  }
}

@media(max-width:420px){

  .container{
    padding-left:18px;
    padding-right:18px;
  }

  .reaction-card{
    padding:22px 18px;
  }

  .reaction-top{
    grid-template-columns:42px minmax(0, 1fr);
  }

  .platform{
    grid-column:2;
    justify-self:start;
    margin-top:4px;
  }

  .float-dock{
    right:14px;
    bottom:14px;
  }

  .dock-just-text{
    display:none;
  }

  .dock-just{
    padding:0 14px;
  }

  /* Footer más compacto en teléfonos pequeños */
  .footer-links{
    flex-direction:column;
    align-items:center;
    gap:10px;
  }

  .footer-links a:first-child{
    font-size:14px;
    color:#ff4d6d;
    text-shadow:
      0 0 8px rgba(255,77,109,.75),
      0 0 18px rgba(225,48,108,.50),
      0 0 34px rgba(255,0,80,.34);
  }
}

/* ═══════════════════════════════════════════
   FOOTER MOBILE — ordenado, centrado y visible
═══════════════════════════════════════════ */
@media(max-width:640px){

  .footer{
    padding:20px 0 70px;
    background:
      radial-gradient(circle at center top, rgba(0,122,255,.10), transparent 38%),
      var(--bg);
  }

  .footer-inner{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:22px;
    text-align:center;
    margin-bottom:0;
  }

  .footer-logo{
    width:100%;
    font-size:24px;
    font-weight:700;
    letter-spacing:-.03em;
    color:#fff;
    text-align:center;
  }

  .footer-links{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-left:0;
  }

  .footer-links a:first-child{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    color:#ff4d6d;
    font-size:18px;
    font-weight:700;
    letter-spacing:.01em;

    padding:8px 18px;
    border-radius:999px;
    background:rgba(255,77,109,.06);
    border:1px solid rgba(255,77,109,.14);

    text-shadow:
      0 0 8px rgba(255,77,109,.70),
      0 0 20px rgba(225,48,108,.50),
      0 0 38px rgba(255,0,80,.34);

    box-shadow:
      0 0 24px rgba(225,48,108,.16);
  }

  .footer-links a:nth-child(2){
    display:none;
  }

  .footer-copy{
    width:100%;
    max-width:310px;
    margin:8px auto 0;

    font-size:13px;
    line-height:1.8;
    letter-spacing:.01em;
    text-align:center;
    color:rgba(255,255,255,.42);

    overflow-wrap:break-word;
  }
}

@media(max-width:420px){

  .footer{
    padding-bottom:50px;
  }

  .footer-logo{
    font-size:23px;
  }

  .footer-links a:first-child{
    font-size:17px;
    padding:8px 16px;
  }

  .footer-copy{
    max-width:280px;
    font-size:12.5px;
    line-height:1.85;
  }
}
