/* ============================================================
   Pymly · Design System
   v1.0 · 2026-05-18
   ============================================================ */

:root {
  /* Brand colors */
  --pymly-violet: #5B4FFF;
  --pymly-violet-dark: #4338CA;
  --pymly-violet-light: #A5A0FF;
  --pymly-yellow: #FFD84D;
  --pymly-pink: #FF6B9D;
  --pymly-lavender: #F5F3FF;
  --pymly-indigo: #1A1535;
  --pymly-gray-700: #374151;
  --pymly-gray-500: #6B7280;
  --pymly-gray-200: #E5E7EB;
  --pymly-gray-100: #F3F4F6;
  --pymly-bg: #FFFFFF;
  --pymly-success: #10B981;
  --pymly-error: #EF4444;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #5B4FFF 0%, #8B7FFF 100%);
  --gradient-cta: linear-gradient(135deg, #5B4FFF 0%, #7C3AED 100%);
  --gradient-soft: linear-gradient(180deg, #F5F3FF 0%, #FFFFFF 100%);

  /* Type scale */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 21, 53, 0.05);
  --shadow-md: 0 4px 12px rgba(26, 21, 53, 0.08);
  --shadow-lg: 0 12px 32px rgba(91, 79, 255, 0.15);
  --shadow-xl: 0 24px 48px rgba(91, 79, 255, 0.2);

  /* Transitions */
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   Reset & Base
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--pymly-indigo);
  background: var(--pymly-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============================================================
   Typography
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--pymly-indigo);
}

h1 { font-size: clamp(2rem, 5vw + 1rem, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw + 0.25rem, 1.75rem); }
h4 { font-size: 1.125rem; font-weight: 700; }

p { font-size: 1rem; color: var(--pymly-gray-700); }
.lead { font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.375rem); color: var(--pymly-gray-700); line-height: 1.5; }

.eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pymly-violet);
  margin-bottom: var(--space-4);
}

/* ============================================================
   Layout
   ============================================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

section {
  padding: var(--space-24) 0;
}

@media (max-width: 768px) {
  section { padding: var(--space-16) 0; }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-cta);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: white;
  color: var(--pymly-indigo);
  border: 2px solid var(--pymly-gray-200);
}

.btn-secondary:hover {
  border-color: var(--pymly-violet);
  color: var(--pymly-violet);
}

.btn-yellow {
  background: var(--pymly-yellow);
  color: var(--pymly-indigo);
}

.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 216, 77, 0.4);
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: 1.125rem;
}

/* ============================================================
   Header / Nav
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(91, 79, 255, 0.08);
  box-shadow: 0 1px 0 rgba(91, 79, 255, 0.04),
              0 8px 24px rgba(26, 21, 53, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links a {
  font-weight: 500;
  color: var(--pymly-gray-700);
  transition: var(--transition);
}

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

/* CTA del navbar: mantener contraste blanco sobre violeta */
.nav-links .btn-primary,
.nav-links .btn-primary:hover {
  color: white;
}

.nav-cta { margin-left: var(--space-4); }

/* ============================================================
   Mobile menu toggle (hamburger → X)
   ============================================================ */
.nav-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-md);
  position: relative;
  background: transparent;
  transition: background var(--transition);
}
.nav-mobile-toggle:hover { background: var(--pymly-lavender); }
.nav-mobile-toggle:active { transform: scale(0.94); }

.nav-mobile-toggle-bar {
  display: block;
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--pymly-indigo);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
              top 280ms cubic-bezier(0.4, 0, 0.2, 1),
              opacity 200ms ease;
}
.nav-mobile-toggle-bar:nth-child(1) { top: 14px; }
.nav-mobile-toggle-bar:nth-child(2) { top: 21px; }
.nav-mobile-toggle-bar:nth-child(3) { top: 28px; }

body.nav-drawer-open .nav-mobile-toggle-bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
body.nav-drawer-open .nav-mobile-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.nav-drawer-open .nav-mobile-toggle-bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-links-desktop { display: none; }
  .nav-mobile-toggle { display: block; }
}

/* ============================================================
   Mobile drawer (overlay + sheet)
   ============================================================ */
.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 53, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  z-index: 200;
}
body.nav-drawer-open .nav-drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(92vw, 420px);
  background: white;
  z-index: 201;
  display: flex;
  flex-direction: column;
  padding: var(--space-6) var(--space-6) calc(var(--space-6) + env(safe-area-inset-bottom));
  transform: translateX(100%);
  transition: transform 340ms cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: -24px 0 64px rgba(26, 21, 53, 0.2);
  overflow-y: auto;
}
body.nav-drawer-open .nav-drawer {
  transform: translateX(0);
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-6);
  margin-bottom: var(--space-2);
  border-bottom: 1px solid var(--pymly-gray-200);
}
.nav-drawer-logo { height: 32px; width: auto; }

.nav-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--pymly-lavender);
  color: var(--pymly-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.nav-drawer-close:hover { background: var(--pymly-gray-200); }
.nav-drawer-close:active { transform: scale(0.94); }

.nav-drawer-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pymly-gray-500);
  margin: var(--space-4) 0 var(--space-2);
  padding-left: var(--space-2);
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: var(--space-6);
}

.nav-drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-3);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--pymly-indigo);
  transition: background var(--transition), color var(--transition);
}
.nav-drawer-links a svg {
  color: var(--pymly-gray-500);
  transition: transform var(--transition), color var(--transition);
}
.nav-drawer-links a:hover,
.nav-drawer-links a:active {
  background: var(--pymly-lavender);
  color: var(--pymly-violet);
}
.nav-drawer-links a:hover svg,
.nav-drawer-links a:active svg {
  color: var(--pymly-violet);
  transform: translateX(2px);
}

.nav-drawer-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-6);
  border-top: 1px solid var(--pymly-gray-200);
}

.nav-drawer-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--pymly-gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pymly-indigo);
  transition: var(--transition);
}
.nav-drawer-whatsapp:hover {
  border-color: #25D366;
  color: #25D366;
}

.nav-drawer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  font-size: 0.8rem;
  color: var(--pymly-gray-500);
  border-top: 1px solid var(--pymly-gray-100);
}

/* Lock scroll del body cuando drawer está abierto */
body.nav-drawer-open {
  overflow: hidden;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-soft);
  padding: var(--space-24) 0 var(--space-16);
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(91, 79, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
}

.hero h1 {
  margin-bottom: var(--space-6);
  font-size: clamp(2.25rem, 4.5vw + 0.5rem, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.hero h1 .highlight {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Rating destacado arriba del hero */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding: 8px 14px;
  background: white;
  border-radius: var(--radius-full);
  border: 1px solid var(--pymly-gray-200);
  box-shadow: var(--shadow-sm);
}
.rating-stars {
  display: inline-flex;
  gap: 1px;
}
.rating-stars svg {
  width: 16px;
  height: 16px;
  display: block;
}
.rating-text {
  font-size: 0.85rem;
  color: var(--pymly-gray-700);
  font-weight: 500;
}
.rating-text strong {
  color: var(--pymly-indigo);
  font-weight: 800;
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

.hero-guarantee {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  color: var(--pymly-gray-700);
  font-size: 0.95rem;
}
.hero-guarantee svg { color: var(--pymly-success); flex-shrink: 0; }
.hero-guarantee strong { color: var(--pymly-indigo); }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 480px;
}

/* ============================================================
   Teo stage — el personaje protagonista con interacciones
   ============================================================ */
.teo-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blobs de fondo decorativos */
.teo-blob {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 79, 255, 0.18) 0%, transparent 65%);
  top: 5%;
  right: -10%;
  animation: blob-float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.teo-blob-2 {
  background: radial-gradient(circle, rgba(255, 216, 77, 0.22) 0%, transparent 65%);
  width: 280px;
  height: 280px;
  top: auto;
  bottom: 0;
  left: -8%;
  right: auto;
  animation-delay: -3s;
  animation-duration: 10s;
}
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(10px, -8px) scale(1.05); }
  66% { transform: translate(-8px, 6px) scale(0.97); }
}

/* Teo character (SVG inline) */
.teo-character {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  cursor: pointer;
  filter: drop-shadow(0 32px 48px rgba(91, 79, 255, 0.28));
  animation: teo-float 4.2s ease-in-out infinite;
  transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.teo-character:hover {
  transform: scale(1.04) rotate(-1deg);
}
.teo-character:active {
  transform: scale(0.98);
}
.teo-character svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Antena con glow pulsante */
.teo-antenna-tip {
  animation: antenna-glow 2.6s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes antenna-glow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(255, 216, 77, 0.6)); }
  50% { filter: drop-shadow(0 0 12px rgba(255, 216, 77, 0.95)); }
}

/* Brazo derecho saludando (waving) */
.teo-arm-right {
  transform-origin: 182px 130px;
  transform-box: fill-box;
  animation: teo-wave 2.4s ease-in-out infinite;
}
@keyframes teo-wave {
  0%, 100% { transform: rotate(-8deg); }
  25% { transform: rotate(14deg); }
  50% { transform: rotate(-4deg); }
  75% { transform: rotate(10deg); }
}

/* Brazo izquierdo con micro-bounce relajado */
.teo-arm-left {
  transform-origin: 58px 130px;
  transform-box: fill-box;
  animation: teo-rest 3.6s ease-in-out infinite;
}
@keyframes teo-rest {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-2px); }
}

/* Motion lines de saludo — aparecen/desaparecen */
.teo-wave-line {
  animation: wave-line-pulse 1.6s ease-in-out infinite;
}
.teo-wave-line:nth-of-type(2) {
  animation-delay: 0.2s;
}
@keyframes wave-line-pulse {
  0%, 100% { opacity: 0; transform: translateX(-4px); }
  40%, 60% { opacity: 1; transform: translateX(0); }
}

/* Reacción on-hover — brazos se vuelven más expresivos */
.teo-character:hover .teo-arm-right {
  animation-duration: 0.8s;
}
.teo-character:hover .teo-arm-left {
  animation: teo-rest 1.2s ease-in-out infinite;
}

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

/* Transición de boca (al sonreír más) */
#teo-mouth {
  transition: d 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Blink animación */
#teo-eyelids, #teo-eyes {
  transition: opacity 100ms ease;
}

/* ============================================================
   Speech bubble interactivo
   ============================================================ */
.teo-speech {
  position: absolute;
  top: 8%;
  left: 0;
  z-index: 3;
  background: white;
  padding: 10px 18px;
  border-radius: 22px;
  border-bottom-left-radius: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pymly-indigo);
  box-shadow: 0 8px 24px rgba(91, 79, 255, 0.18),
              0 0 0 1px rgba(91, 79, 255, 0.08);
  white-space: nowrap;
  transform: translateY(0) scale(1);
  opacity: 1;
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 220ms ease;
  animation: speech-bounce 4s ease-in-out infinite;
}

.teo-speech::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 18px;
  width: 16px;
  height: 16px;
  background: white;
  transform: rotate(45deg);
  border-radius: 0 0 4px 0;
  box-shadow: 4px 4px 8px rgba(91, 79, 255, 0.08);
}

.teo-speech.teo-speech-out {
  transform: translateY(-6px) scale(0.92);
  opacity: 0;
}

@keyframes speech-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Estado online */
.teo-online {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--pymly-gray-200);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pymly-gray-700);
  box-shadow: 0 4px 12px rgba(26, 21, 53, 0.06);
  z-index: 3;
  white-space: nowrap;
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulse-online 2s ease-in-out infinite;
}

@keyframes pulse-online {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.1); }
}

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

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-rating { align-self: center; }
  .hero-ctas { justify-content: center; }
  .hero-guarantee { justify-content: center; text-align: left; }
  .hero-pim-card { max-width: 280px; padding: var(--space-6); }
}

/* ============================================================
   Stats Bar (autoridad inmediata post-hero)
   ============================================================ */
.stats-bar {
  background: var(--pymly-indigo);
  padding: var(--space-12) 0;
  color: white;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(91, 79, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.stat {
  text-align: center;
  padding: var(--space-4);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: white;
  background: linear-gradient(180deg, #FFFFFF 0%, #A5A0FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-unit {
  color: var(--pymly-yellow);
  -webkit-text-fill-color: var(--pymly-yellow);
}

.stat-label {
  margin-top: var(--space-2);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-2); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: var(--space-4) var(--space-2); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
}

/* ============================================================
   Trust strip
   ============================================================ */

.trust-strip {
  background: white;
  border-top: 1px solid var(--pymly-gray-200);
  border-bottom: 1px solid var(--pymly-gray-200);
  padding: var(--space-6) 0;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  align-items: center;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9rem;
  color: var(--pymly-gray-700);
  font-weight: 500;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--pymly-violet);
  flex-shrink: 0;
}

/* ============================================================
   How it works (4 steps)
   ============================================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gradient-cta);
  color: white;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-lg);
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}

.step p {
  font-size: 0.95rem;
  color: var(--pymly-gray-500);
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}

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

/* ============================================================
   Plans (3 pricing cards)
   ============================================================ */

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header p { margin-top: var(--space-4); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.plan-card {
  background: white;
  border: 2px solid var(--pymly-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  border-color: var(--pymly-violet-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-card.featured {
  background: var(--gradient-cta);
  color: white;
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}

.plan-card.featured h3,
.plan-card.featured .plan-price,
.plan-card.featured .plan-features li { color: white; }

.plan-card.featured .plan-features li svg { color: var(--pymly-yellow); }

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pymly-yellow);
  color: var(--pymly-indigo);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-name {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pymly-violet);
  margin-bottom: var(--space-2);
}

.plan-card.featured .plan-name { color: var(--pymly-yellow); }

.plan-card h3 {
  margin-bottom: var(--space-4);
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--pymly-indigo);
  margin-bottom: var(--space-1);
  letter-spacing: -0.02em;
}

.plan-price .currency {
  font-size: 1.25rem;
  vertical-align: top;
  margin-right: 2px;
}

.plan-price .period {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--pymly-gray-500);
  display: block;
  margin-top: var(--space-1);
}

.plan-card.featured .plan-price .period { color: rgba(255,255,255,0.85); }

.plan-recurring {
  font-size: 0.85rem;
  color: var(--pymly-gray-500);
  margin-bottom: var(--space-6);
}

.plan-card.featured .plan-recurring { color: rgba(255,255,255,0.85); }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.95rem;
  color: var(--pymly-gray-700);
}

.plan-features li svg {
  width: 20px;
  height: 20px;
  color: var(--pymly-success);
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-cta {
  width: 100%;
  margin-top: auto;
}

.plan-card.featured .btn-primary {
  background: white;
  color: var(--pymly-violet);
  box-shadow: none;
}

.plan-card.featured .btn-primary:hover {
  background: var(--pymly-yellow);
  color: var(--pymly-indigo);
}

@media (max-width: 900px) {
  .plans-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .plan-card.featured { transform: scale(1); }
}

/* ============================================================
   For-whom (audience cards)
   ============================================================ */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-12);
}

.audience-card {
  background: var(--pymly-lavender);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: var(--transition);
}

.audience-card:hover {
  transform: translateY(-4px);
  background: white;
  box-shadow: var(--shadow-md);
}

.audience-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  background: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.audience-card h4 {
  margin-bottom: var(--space-2);
  color: var(--pymly-indigo);
}

.audience-card p {
  font-size: 0.875rem;
  color: var(--pymly-gray-500);
}

@media (max-width: 768px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Guarantee banner (certificado style)
   ============================================================ */

.guarantee {
  background: var(--pymly-indigo);
  color: white;
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: var(--space-12);
  box-shadow: 0 32px 64px rgba(26, 21, 53, 0.15);
}

.guarantee::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 79, 255, 0.25) 0%, transparent 60%);
  border-radius: 50%;
}
.guarantee::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.12) 0%, transparent 60%);
  border-radius: 50%;
}

.guarantee-badge {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  animation: rotate-slow 30s linear infinite;
}
.guarantee-badge svg {
  width: 140px;
  height: 140px;
  filter: drop-shadow(0 8px 24px rgba(255, 216, 77, 0.35));
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.guarantee-content { position: relative; z-index: 1; }
.guarantee-content h2 { color: white; margin-bottom: var(--space-4); }
.guarantee-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: var(--space-6);
}
.guarantee-content p strong { color: white; }

.guarantee-features {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.guarantee-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
}
.guarantee-feature svg {
  color: var(--pymly-yellow);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .guarantee {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-8);
    gap: var(--space-6);
  }
  .guarantee-badge { margin: 0 auto; }
  .guarantee-badge svg { width: 110px; height: 110px; }
  .guarantee-features { justify-content: center; }
}

/* ============================================================
   Testimonials (social proof)
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: 0 1px 2px rgba(26, 21, 53, 0.04),
              0 8px 24px rgba(26, 21, 53, 0.06);
  border: 1px solid rgba(91, 79, 255, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 2px rgba(26, 21, 53, 0.04),
              0 16px 40px rgba(91, 79, 255, 0.12);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
}
.testimonial-stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--pymly-indigo);
  margin-bottom: var(--space-6);
  flex-grow: 1;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--pymly-gray-100);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(91, 79, 255, 0.2);
}

.testimonial-name {
  font-weight: 700;
  color: var(--pymly-indigo);
  font-size: 0.95rem;
}
.testimonial-role {
  color: var(--pymly-gray-500);
  font-size: 0.85rem;
  margin-top: 1px;
}

.testimonials-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  margin-top: var(--space-16);
  padding: var(--space-6);
  flex-wrap: wrap;
}
.testimonials-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonials-meta-item strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--pymly-violet);
  line-height: 1;
  letter-spacing: -0.02em;
}
.testimonials-meta-item span {
  color: var(--pymly-gray-500);
  font-size: 0.85rem;
  margin-top: 4px;
}
.testimonials-meta-divider {
  width: 1px;
  height: 40px;
  background: var(--pymly-gray-200);
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .testimonials-meta { gap: var(--space-6); }
  .testimonials-meta-divider { display: none; }
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 800px;
  margin: var(--space-12) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: white;
  border: 1px solid var(--pymly-gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--pymly-violet);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--pymly-indigo);
  text-align: left;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--pymly-violet);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--pymly-gray-700);
  line-height: 1.6;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================================
   CTA Final (cierre comercial premium)
   ============================================================ */

.cta-final {
  background: linear-gradient(180deg, var(--pymly-bg) 0%, var(--pymly-lavender) 100%);
  padding: var(--space-24) 0;
}

.cta-final-card {
  background: var(--pymly-indigo);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 5vw, var(--space-24)) var(--space-8);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 32px 64px rgba(26, 21, 53, 0.2);
}
.cta-final-card::before {
  content: '';
  position: absolute;
  inset: -50% -10% auto auto;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 79, 255, 0.3) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-final-card::after {
  content: '';
  position: absolute;
  inset: auto auto -50% -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-final-card > * { position: relative; z-index: 1; }

.cta-final-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  background: rgba(255, 216, 77, 0.15);
  border: 1px solid rgba(255, 216, 77, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pymly-yellow);
  margin-bottom: var(--space-6);
}
.cta-final-badge svg { flex-shrink: 0; }

.cta-final-card h2 {
  color: white;
  font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  letter-spacing: -0.025em;
}
.cta-final-card h2 .highlight {
  background: linear-gradient(135deg, #FFD84D 0%, #FF6B9D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-final-card p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}

.cta-final-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.cta-final-card .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}
.cta-final-card .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.cta-final-trust {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.cta-final-trust span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

@media (max-width: 768px) {
  .cta-final-trust { gap: var(--space-3); font-size: 0.8rem; }
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--pymly-indigo);
  color: rgba(255,255,255,0.7);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.footer-brand img {
  height: 36px;
  filter: brightness(0) invert(1);
  margin-bottom: var(--space-4);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--pymly-yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a { color: rgba(255,255,255,0.7); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   Utilities
   ============================================================ */

.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

/* ============================================================
   Vitrina · mockups portafolio
   ============================================================ */

.vitrina-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.mockup-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.mockup-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.mockup-browser {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  padding: var(--space-3);
  border-bottom: 1px solid var(--pymly-gray-100);
}

.mockup-browser-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.mockup-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E2E8F0;
}

.mockup-dot.red { background: #FF6B6B; }
.mockup-dot.yellow-dot { background: #FFD84D; }
.mockup-dot.green { background: #10B981; }

.mockup-url {
  flex: 1;
  background: white;
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--pymly-gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--pymly-gray-100);
  font-family: var(--font-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-url svg {
  width: 10px;
  height: 10px;
  color: var(--pymly-success);
  flex-shrink: 0;
}

.mockup-frame {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-4);
  min-height: 200px;
}

.mockup-frame-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--pymly-gray-100);
}

.mockup-logo {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mockup-nav {
  display: flex;
  gap: 6px;
}

.mockup-nav-item {
  height: 5px;
  width: 22px;
  background: var(--pymly-gray-100);
  border-radius: 3px;
}

.mockup-hero {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.mockup-hero-text {
  flex: 1;
}

.mockup-hero h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  color: var(--pymly-indigo);
}

.mockup-hero p {
  font-size: 9.5px;
  color: var(--pymly-gray-500);
  line-height: 1.4;
  margin-bottom: 10px;
}

.mockup-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  font-weight: 700;
  color: white;
  padding: 5px 10px;
  border-radius: var(--radius-full);
}

.mockup-pill svg {
  width: 10px;
  height: 10px;
}

.mockup-illust {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.mockup-meta {
  padding: var(--space-4) var(--space-5, 1.25rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  background: white;
}

.mockup-meta-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--pymly-indigo);
}

.mockup-meta-text span {
  display: block;
  font-size: 12px;
  color: var(--pymly-gray-500);
  margin-top: 2px;
}

.mockup-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--pymly-lavender);
  color: var(--pymly-violet);
  white-space: nowrap;
}

.vitrina-closing {
  text-align: center;
  margin-top: var(--space-12);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.vitrina-closing p {
  font-size: 0.95rem;
  color: var(--pymly-gray-500);
  line-height: 1.6;
}

.vitrina-closing a {
  color: var(--pymly-violet);
  font-weight: 600;
}

@media (max-width: 968px) {
  .vitrina-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .vitrina-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* ============================================================
   Carousel (vitrina-stage) — card central enfocada + peeks laterales
   ============================================================ */

.vitrina-stage {
  position: relative;
  margin-top: var(--space-12);
  padding: 0 24px;
  outline: none;
}

/* No-JS fallback: scroll horizontal con snap */
.vitrina-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.vitrina-track::-webkit-scrollbar { display: none; }
.vitrina-track > .mockup-card {
  flex: 0 0 min(460px, 88vw);
  scroll-snap-align: center;
}

/* Estado JS-ready: track absoluto, cards posicionadas con data-pos */
.vitrina-stage.js-ready .vitrina-track {
  position: relative;
  display: block;
  overflow: visible;
  height: 540px;
  padding: 30px 0;
}
.vitrina-stage.js-ready .vitrina-track > .mockup-card {
  position: absolute;
  top: 30px;
  left: 50%;
  width: min(460px, 90vw);
  margin: 0;
  transform: translateX(-50%);
  transform-origin: center center;
  transition:
    transform 600ms cubic-bezier(0.34, 1.4, 0.5, 1),
    opacity 400ms ease,
    filter 400ms ease,
    box-shadow 400ms ease;
  will-change: transform, opacity;
  cursor: pointer;
}

/* Posiciones del carousel */
.vitrina-stage.js-ready .mockup-card[data-pos="0"] {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 30;
  filter: none;
  box-shadow: 0 30px 60px -20px rgba(91, 79, 255, 0.35), 0 20px 40px -10px rgba(0,0,0,0.15);
  cursor: default;
}
.vitrina-stage.js-ready .mockup-card[data-pos="1"] {
  transform: translateX(calc(-50% + 75%)) scale(0.85);
  opacity: 0.65;
  z-index: 20;
  filter: saturate(0.85);
}
.vitrina-stage.js-ready .mockup-card[data-pos="-1"] {
  transform: translateX(calc(-50% - 75%)) scale(0.85);
  opacity: 0.65;
  z-index: 20;
  filter: saturate(0.85);
}
.vitrina-stage.js-ready .mockup-card[data-pos="2"] {
  transform: translateX(calc(-50% + 130%)) scale(0.72);
  opacity: 0.3;
  z-index: 10;
  filter: saturate(0.7) blur(0.5px);
  pointer-events: none;
}
.vitrina-stage.js-ready .mockup-card[data-pos="-2"] {
  transform: translateX(calc(-50% - 130%)) scale(0.72);
  opacity: 0.3;
  z-index: 10;
  filter: saturate(0.7) blur(0.5px);
  pointer-events: none;
}
.vitrina-stage.js-ready .mockup-card[data-pos="hidden"] {
  transform: translateX(-50%) scale(0.5);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

/* Hover micro-interaction */
.vitrina-stage.js-ready .mockup-card[data-pos="1"]:hover,
.vitrina-stage.js-ready .mockup-card[data-pos="-1"]:hover {
  opacity: 0.85;
  filter: saturate(1);
}
.vitrina-stage.js-ready .mockup-card[data-pos="0"]:hover {
  transform: translateX(-50%) scale(1.015);
}

/* Botones de navegación */
.vit-arrow {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(91, 79, 255, 0.15);
  box-shadow: 0 12px 32px -8px rgba(91, 79, 255, 0.3), 0 4px 8px rgba(0,0,0,0.06);
  color: var(--pymly-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 50;
  transform: translateY(-50%);
}
.vit-arrow:hover {
  background: var(--pymly-violet);
  color: white;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 18px 40px -8px rgba(91, 79, 255, 0.5);
}
.vit-arrow:active { transform: translateY(-50%) scale(0.95); }
.vit-arrow:focus-visible { outline: 3px solid var(--pymly-violet-light); outline-offset: 2px; }
.vit-arrow svg { width: 22px; height: 22px; }
.vit-arrow-prev { left: 8px; }
.vit-arrow-next { right: 8px; }

/* Dots */
.vitrina-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-6);
}
.vit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(91, 79, 255, 0.2);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: all 250ms ease;
}
.vit-dot.active {
  background: var(--pymly-violet);
  width: 28px;
  border-radius: 999px;
}
.vit-dot:hover:not(.active) { background: rgba(91, 79, 255, 0.45); }
.vit-dot:focus-visible { outline: 2px solid var(--pymly-violet); outline-offset: 2px; }

/* Responsive */
@media (max-width: 968px) {
  .vitrina-stage.js-ready .vitrina-track { height: 500px; padding: 24px 0; }
  .vitrina-stage.js-ready .mockup-card[data-pos="1"] { transform: translateX(calc(-50% + 60%)) scale(0.75); opacity: 0.4; }
  .vitrina-stage.js-ready .mockup-card[data-pos="-1"] { transform: translateX(calc(-50% - 60%)) scale(0.75); opacity: 0.4; }
  .vitrina-stage.js-ready .mockup-card[data-pos="2"],
  .vitrina-stage.js-ready .mockup-card[data-pos="-2"] {
    transform: translateX(-50%) scale(0.5);
    opacity: 0;
  }
  .vit-arrow { width: 44px; height: 44px; }
}
@media (max-width: 600px) {
  .vitrina-stage { padding: 0 8px; }
  .vitrina-stage.js-ready .vitrina-track { height: 480px; }
  .vitrina-stage.js-ready .mockup-card[data-pos="0"] { width: min(380px, 92vw); }
  .vitrina-stage.js-ready .mockup-card[data-pos="1"] {
    transform: translateX(calc(-50% + 90%)) scale(0.7);
    opacity: 0.25;
  }
  .vitrina-stage.js-ready .mockup-card[data-pos="-1"] {
    transform: translateX(calc(-50% - 90%)) scale(0.7);
    opacity: 0.25;
  }
  .vit-arrow-prev { left: 0; }
  .vit-arrow-next { right: 0; }
}

/* Frame más alto para los nuevos layouts realistas */
.mockup-frame-tall {
  min-height: 320px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Pulse compartido por los "vivos" */
.m-pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: mockup-pulse 2s infinite;
  margin-right: 4px;
  vertical-align: middle;
}
@keyframes mockup-pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ============================================================
   PREMIUM MOCKUP DESIGNS · cada plantilla con identidad propia
   ============================================================ */

/* Wrapper común para los 6 layouts premium */
.mockup-frame-restaurant,
.mockup-frame-spa,
.mockup-frame-vet,
.mockup-frame-emerg,
.mockup-frame-yoga,
.mockup-frame-mc {
  position: relative;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  font-family: var(--font-body);
}

/* ============================================================
   1. MOCK MENU (Sushi Tako) — Editorial restaurante dark
   ============================================================ */
.mockup-frame-restaurant {
  background: radial-gradient(ellipse at top right, #4A1942 0%, #2A1217 60%, #1A0810 100%);
  color: #FFF1F2;
  padding: 14px;
}
.m-r-noise {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,107,157,0.18), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255,216,77,0.12), transparent 40%);
  pointer-events: none;
}
.m-r-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.m-r-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #FF6B9D;
}
.m-r-brand em { color: #FFD84D; font-style: normal; }
.m-r-navlinks {
  display: flex;
  gap: 14px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,241,242,0.7);
}
.m-r-navlinks i { font-style: normal; }
.m-r-open {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6EE7B7;
  text-transform: uppercase;
}
.m-r-hero {
  position: relative;
  z-index: 2;
  padding: 16px 0 12px;
  max-width: 62%;
}
.m-r-chapter {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.m-r-chap-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: #FFD84D;
  letter-spacing: 0.05em;
}
.m-r-chap-text {
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,241,242,0.55);
  font-weight: 500;
}
.m-r-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  color: #FFF1F2;
}
.m-r-title em {
  font-style: italic;
  font-weight: 500;
  color: #FF6B9D;
}
.m-r-desc {
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255,241,242,0.7);
  margin: 8px 0 12px;
}
.m-r-action {
  display: flex;
  align-items: center;
  gap: 10px;
}
.m-r-price {
  font-family: var(--font-display);
  font-size: 13px;
  color: #FFD84D;
}
.m-r-price b { font-weight: 800; font-size: 16px; }
.m-r-price s { font-size: 9px; color: rgba(255,241,242,0.4); margin-left: 4px; }
.m-r-btn {
  background: linear-gradient(135deg, #FF6B9D, #D6336C);
  color: white;
  font-size: 9.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(255,107,157,0.45);
}
.m-r-dish {
  position: absolute;
  right: -20px;
  top: 70px;
  width: 140px;
  height: 140px;
  z-index: 1;
}
.m-r-dish-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,157,0.35), transparent 65%);
  filter: blur(8px);
}
.m-r-dish-emo {
  position: relative;
  font-size: 100px;
  text-align: center;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.5));
  transform: rotate(-12deg);
}
.m-r-sticker {
  position: absolute;
  top: 70px;
  right: 18px;
  background: #FFD84D;
  color: #2A1217;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  line-height: 1.15;
  text-align: center;
  padding: 7px 9px;
  border-radius: 6px;
  transform: rotate(-12deg);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  z-index: 3;
  letter-spacing: 0.02em;
}
.m-r-thumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  position: relative;
  z-index: 2;
}
.m-r-thumb {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.m-r-thumb-more {
  font-size: 9px;
  color: rgba(255,241,242,0.6);
  font-weight: 600;
  margin-left: 4px;
}

/* ============================================================
   2. MOCK SPA (Belleza Clara) — Lujo suave + booking real
   ============================================================ */
.mockup-frame-spa {
  background: linear-gradient(135deg, #FFF1F2 0%, #FCEAEF 40%, #F3E8FF 100%);
  color: #1A1535;
  padding: 14px;
}
.m-s-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}
.m-s-blob-1 { width: 200px; height: 200px; top: -40px; right: -60px; background: #FBCFE8; }
.m-s-blob-2 { width: 160px; height: 160px; bottom: -50px; left: -40px; background: #DDD6FE; }
.m-s-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m-s-brand {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-style: italic;
}
.m-s-brand em { color: #BE185D; font-style: normal; }
.m-s-navlinks {
  display: flex;
  gap: 10px;
  font-size: 9px;
  font-weight: 500;
  color: rgba(26,21,53,0.55);
}
.m-s-navlinks i { font-style: normal; }
.m-s-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FBCFE8, #DDD6FE);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8.5px;
  font-weight: 700;
  color: white;
}
.m-s-hero {
  position: relative;
  z-index: 2;
  padding: 14px 0 0;
  max-width: 58%;
}
.m-s-eyebrow {
  font-size: 8.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #BE185D;
}
.m-s-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 6px 0 0;
}
.m-s-title em {
  font-style: italic;
  font-weight: 500;
  color: #9D174D;
}
.m-s-desc {
  font-size: 9.5px;
  line-height: 1.5;
  color: rgba(26,21,53,0.7);
  margin: 8px 0 12px;
}
.m-s-services {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.m-s-svc {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 9.5px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(190,24,93,0.18);
}
.m-s-svc b {
  font-family: var(--font-display);
  font-weight: 800;
  color: #9D174D;
  font-size: 10.5px;
}
.m-s-cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.m-s-cta {
  background: #1A1535;
  color: white;
  border: 0;
  font-size: 10px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
.m-s-reviews {
  font-size: 9.5px;
  color: rgba(26,21,53,0.65);
}
.m-s-reviews b {
  font-family: var(--font-display);
  font-weight: 800;
  color: #1A1535;
  font-size: 12px;
}
.m-s-calendar {
  position: absolute;
  top: 50px;
  right: 12px;
  width: 152px;
  background: white;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 20px 40px -10px rgba(190,24,93,0.25), 0 4px 8px rgba(0,0,0,0.04);
  z-index: 5;
  transform: rotate(2deg);
}
.m-s-cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  color: #1A1535;
  margin-bottom: 6px;
}
.m-s-cal-nav { color: #BE185D; font-size: 11px; }
.m-s-cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 7.5px;
  font-weight: 700;
  color: rgba(26,21,53,0.45);
  text-align: center;
  margin-bottom: 3px;
}
.m-s-cal-dow i { font-style: normal; }
.m-s-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  font-size: 8.5px;
}
.m-s-cal-days span {
  text-align: center;
  padding: 3px 0;
  color: #1A1535;
  border-radius: 4px;
  position: relative;
}
.m-s-cal-days .dot::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #BE185D;
}
.m-s-cal-days .picked {
  background: #1A1535;
  color: white;
  font-weight: 700;
}
.m-s-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #F3E8FF;
}
.m-s-slots span {
  font-size: 7.5px;
  padding: 2px 6px;
  border-radius: 4px;
  background: #F3F4F6;
  color: rgba(26,21,53,0.5);
  font-weight: 600;
}
.m-s-slots .ok { background: #DCFCE7; color: #166534; }
.m-s-slots .off { background: transparent; color: rgba(26,21,53,0.3); text-decoration: line-through; }

/* ============================================================
   3. MOCK VET (Vet Pellines) — Community cálido con disponibilidad
   ============================================================ */
.mockup-frame-vet {
  background: linear-gradient(180deg, #ECFDF5 0%, #F0FDFA 100%);
  color: #064E3B;
  padding: 14px;
}
.m-v-paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  overflow: hidden;
  font-size: 18px;
}
.m-v-paws span {
  position: absolute;
  display: inline-block;
}
.m-v-paws span:nth-child(1) { top: 10%; left: 5%; transform: rotate(20deg); }
.m-v-paws span:nth-child(2) { top: 60%; left: 90%; transform: rotate(-15deg); }
.m-v-paws span:nth-child(3) { top: 85%; left: 30%; transform: rotate(10deg); }
.m-v-paws span:nth-child(4) { top: 25%; left: 75%; transform: rotate(-25deg); }
.m-v-paws span:nth-child(5) { top: 75%; left: 60%; transform: rotate(30deg); }
.m-v-paws span:nth-child(6) { top: 45%; left: 15%; transform: rotate(5deg); }
.m-v-paws span:nth-child(7) { top: 5%; left: 50%; transform: rotate(40deg); }
.m-v-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
}
.m-v-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #064E3B;
  display: flex;
  align-items: center;
  gap: 6px;
}
.m-v-mark {
  width: 26px;
  height: 26px;
  background: white;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(6,78,59,0.12);
}
.m-v-tag {
  font-size: 8.5px;
  background: rgba(6,78,59,0.08);
  color: #047857;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.m-v-phone {
  width: 26px;
  height: 26px;
  background: #10B981;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
}
.m-v-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 0 10px;
}
.m-v-eyebrow {
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #047857;
  display: block;
  margin-bottom: 4px;
}
.m-v-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: #064E3B;
}
.m-v-title em {
  font-style: normal;
  background: linear-gradient(120deg, #F472B6 0%, #FB7185 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.m-v-desc {
  font-size: 9px;
  margin: 4px 0 0;
  color: rgba(6,78,59,0.7);
  line-height: 1.45;
}
.m-v-photo {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-v-photo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #BBF7D0, #FECDD3);
  box-shadow: inset 0 0 0 6px white, 0 12px 24px rgba(6,78,59,0.18);
}
.m-v-photo-emo {
  position: relative;
  font-size: 56px;
  z-index: 2;
}
.m-v-photo-badge {
  position: absolute;
  bottom: -8px;
  right: -10px;
  background: white;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 8.5px;
  font-weight: 700;
  color: #064E3B;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  z-index: 3;
}
.m-v-services {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}
.m-v-svc {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 10px;
  padding: 7px 10px;
  box-shadow: 0 4px 12px -4px rgba(6,78,59,0.08);
}
.m-v-svc-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.m-v-svc-name {
  font-size: 9.5px;
  font-weight: 700;
  color: #064E3B;
}
.m-v-svc-price {
  font-size: 8.5px;
  color: #047857;
  font-weight: 600;
}
.m-v-live {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 9px;
  box-shadow: 0 8px 16px rgba(16,185,129,0.3);
  margin-top: auto;
}
.m-v-live-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
  animation: mockup-pulse 2s infinite;
}
.m-v-live-text { font-weight: 600; }
.m-v-live-text b { font-weight: 800; }
.m-v-live-slot {
  background: rgba(255,255,255,0.2);
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 8.5px;
  font-weight: 700;
}
.m-v-live-cta {
  margin-left: auto;
  background: white;
  color: #047857;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 8.5px;
  font-weight: 700;
}

/* ============================================================
   4. MOCK EMERGENCY (Gasfit) — Bold + safety stripes
   ============================================================ */
.mockup-frame-emerg {
  background: #0F0F12;
  color: white;
  padding: 0;
}
.m-e-stripes {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 70%, rgba(255,216,77,0.06) 70%, rgba(255,216,77,0.06) 75%, transparent 75%),
    linear-gradient(135deg, transparent 80%, rgba(255,216,77,0.06) 80%, rgba(255,216,77,0.06) 85%, transparent 85%);
  pointer-events: none;
}
.m-e-alert {
  background: linear-gradient(90deg, #DC2626 0%, #B91C1C 100%);
  color: white;
  padding: 7px 14px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.m-e-alert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FCA5A5;
  animation: mockup-pulse 1.5s infinite;
}
.m-e-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  position: relative;
  z-index: 2;
}
.m-e-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.m-e-brand b { color: white; }
.m-e-brand i { color: #FFD84D; font-style: normal; margin-left: 2px; }
.m-e-badge {
  background: #FFD84D;
  color: #0F0F12;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.m-e-hero {
  padding: 4px 14px 14px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.m-e-eyebrow {
  font-size: 8.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #FCA5A5;
  margin-bottom: 8px;
}
.m-e-phone-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(255,216,77,0.2), 0 4px 8px rgba(0,0,0,0.4);
  text-decoration: none;
  transform: rotate(-1deg);
}
.m-e-phone-icon {
  font-size: 22px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.m-e-phone-stack {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.m-e-phone-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: #0F0F12;
  letter-spacing: -0.02em;
  line-height: 1;
}
.m-e-phone-sub {
  font-size: 8.5px;
  color: #6B7280;
  font-weight: 600;
  margin-top: 2px;
}
.m-e-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 14px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.m-e-stat {
  background: #0F0F12;
  padding: 8px;
  text-align: center;
}
.m-e-stat-n {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: #FFD84D;
  letter-spacing: -0.02em;
}
.m-e-stat-l {
  display: block;
  font-size: 7.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.m-e-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 10px 14px 0;
  position: relative;
  z-index: 2;
}
.m-e-svc {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 6px 4px;
  text-align: center;
}
.m-e-svc span { font-size: 16px; display: block; }
.m-e-svc i {
  font-style: normal;
  font-size: 7.5px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}
.m-e-zones {
  padding: 8px 14px 12px;
  font-size: 8.5px;
  color: rgba(255,255,255,0.55);
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.m-e-zones span:first-child { color: #FFD84D; font-weight: 700; }

/* ============================================================
   5. MOCK YOGA (Yoga Andes) — Wellness editorial zen
   ============================================================ */
.mockup-frame-yoga {
  background: linear-gradient(180deg, #FFFBF5 0%, #FAF5FF 100%);
  color: #1F1B2E;
  padding: 14px;
}
.m-y-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}
.m-y-orb-1 { width: 220px; height: 220px; top: -50px; left: -60px; background: #DDD6FE; }
.m-y-orb-2 { width: 180px; height: 180px; bottom: -40px; right: -60px; background: #FED7AA; }
.m-y-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 10px;
}
.m-y-brand {
  font-family: 'Plus Jakarta Sans', serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.04em;
  color: #6259D9;
  font-style: italic;
}
.m-y-brand em { color: #1F1B2E; font-style: normal; }
.m-y-links {
  display: flex;
  gap: 12px;
  font-size: 9px;
  color: rgba(31,27,46,0.55);
  font-weight: 500;
}
.m-y-links i { font-style: normal; }
.m-y-hero {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0 4px;
}
.m-y-quote { position: relative; flex: 1; }
.m-y-quote-mark {
  position: absolute;
  top: -16px;
  left: -8px;
  font-family: Georgia, serif;
  font-size: 56px;
  color: rgba(98,89,217,0.18);
  font-weight: 700;
  line-height: 1;
}
.m-y-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  position: relative;
}
.m-y-title em {
  font-family: 'Plus Jakarta Sans', serif;
  font-style: italic;
  font-weight: 500;
  color: #6259D9;
}
.m-y-sticker {
  background: #FFD84D;
  color: #1F1B2E;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9.5px;
  line-height: 1.1;
  text-align: center;
  padding: 8px 10px;
  border-radius: 50%;
  transform: rotate(10deg);
  box-shadow: 0 8px 20px rgba(255,216,77,0.4);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  animation: yoga-sticker-float 4s ease-in-out infinite;
}
@keyframes yoga-sticker-float {
  0%, 100% { transform: rotate(10deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-3px); }
}
.m-y-sub {
  position: relative;
  z-index: 2;
  font-size: 9.5px;
  line-height: 1.5;
  color: rgba(31,27,46,0.65);
  margin: 8px 0 10px;
  max-width: 80%;
}
.m-y-schedule {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(98,89,217,0.15);
  margin-bottom: 10px;
}
.m-y-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(98,89,217,0.1);
}
.m-y-day {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(31,27,46,0.5);
  text-transform: uppercase;
  width: 40px;
  flex-shrink: 0;
}
.m-y-day i {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: #6259D9;
  letter-spacing: -0.01em;
  margin-top: 1px;
}
.m-y-line {
  flex: 0 0 16px;
  height: 1px;
  background: rgba(98,89,217,0.25);
}
.m-y-class {
  flex: 1;
  font-size: 10px;
  font-weight: 600;
  color: #1F1B2E;
}
.m-y-class em {
  font-style: normal;
  font-weight: 500;
  color: rgba(31,27,46,0.5);
}
.m-y-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.m-y-dot.lvl1 { background: #6EE7B7; }
.m-y-dot.lvl2 { background: #FCD34D; }
.m-y-foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.m-y-teachers { display: flex; }
.m-y-teacher {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7.5px;
  font-weight: 800;
  color: #1F1B2E;
  border: 2px solid white;
  margin-left: -6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}
.m-y-teacher:first-child { margin-left: 0; }
.m-y-meta {
  font-size: 8.5px;
  color: rgba(31,27,46,0.6);
  font-weight: 600;
}

/* ============================================================
   6. MOCK MC (Contadores) — B2B Stripe-style premium
   ============================================================ */
.mockup-frame-mc {
  background: #FAFBFC;
  color: #0F172A;
  padding: 14px;
}
.m-mc-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, white 0%, white 60%, transparent 100%);
}
.m-mc-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
}
.m-mc-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.m-mc-mark {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #1A1535 0%, #4338CA 100%);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: -0.02em;
}
.m-mc-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.02em;
  color: #0F172A;
}
.m-mc-links {
  display: flex;
  gap: 12px;
  font-size: 9.5px;
  color: rgba(15,23,42,0.6);
  font-weight: 500;
}
.m-mc-links i { font-style: normal; }
.m-mc-cta-mini {
  font-size: 9px;
  font-weight: 700;
  color: white;
  background: #0F172A;
  padding: 5px 11px;
  border-radius: 8px;
}
.m-mc-hero {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 4px 0 10px;
}
.m-mc-tag {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 600;
  color: #4338CA;
  background: linear-gradient(90deg, rgba(67,56,202,0.08), rgba(125,103,255,0.04));
  border: 1px solid rgba(67,56,202,0.15);
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.m-mc-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 8px 0 0;
  color: #0F172A;
}
.m-mc-grad {
  background: linear-gradient(120deg, #4338CA 0%, #7C3AED 50%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.m-mc-desc {
  font-size: 9.5px;
  line-height: 1.5;
  color: rgba(15,23,42,0.65);
  margin: 8px 0 0;
}
.m-mc-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 10px 0;
}
.m-mc-stat {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
}
.m-mc-stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: #0F172A;
  letter-spacing: -0.02em;
}
.m-mc-stat span {
  display: block;
  font-size: 7.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15,23,42,0.5);
  font-weight: 600;
  margin-top: 2px;
}
.m-mc-pricing {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 4px;
  margin-bottom: 8px;
}
.m-mc-tier {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
  position: relative;
}
.m-mc-tier.featured {
  background: linear-gradient(160deg, #0F172A 0%, #4338CA 100%);
  border-color: #4338CA;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(67,56,202,0.4);
}
.m-mc-tier-pop {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD84D;
  color: #0F172A;
  font-size: 7.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.m-mc-tier-name {
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15,23,42,0.55);
}
.m-mc-tier.featured .m-mc-tier-name { color: rgba(255,255,255,0.8); }
.m-mc-tier-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 2px;
}
.m-mc-tier-price i {
  font-style: normal;
  font-size: 8.5px;
  font-weight: 500;
  color: rgba(15,23,42,0.5);
}
.m-mc-tier.featured .m-mc-tier-price i { color: rgba(255,255,255,0.6); }
.m-mc-tier-feat {
  font-size: 7.5px;
  margin-top: 3px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  line-height: 1.3;
}
.m-mc-trust {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px dashed #E2E8F0;
  font-size: 8px;
  color: rgba(15,23,42,0.55);
  font-weight: 600;
}
.m-mc-trust-sep { color: rgba(15,23,42,0.25); }

/* ============================================================
   LEGACY (no usado) — preservado por si volvemos al diseño anterior
   ============================================================ */
.mock-menu--legacy .m-menu-hero {
  position: relative;
  background: linear-gradient(135deg, #1A1535 0%, #4A1942 100%);
  border-radius: 10px;
  padding: 14px 14px 18px;
  color: white;
  overflow: hidden;
}
.mock-menu .m-menu-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(255,107,157,0.35), transparent 50%);
  pointer-events: none;
}
.mock-menu .m-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  position: relative;
  z-index: 1;
}
.mock-menu .m-menu-logo {
  font-family: var(--font-display);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}
.mock-menu .m-status-pulse {
  background: rgba(16,185,129,0.15);
  color: #6EE7B7;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.mock-menu .m-menu-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  margin: 14px 0 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}
.mock-menu .m-menu-title span {
  background: #FFD84D;
  color: #1A1535;
  font-size: 9px;
  padding: 3px 7px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 6px;
  letter-spacing: 0.05em;
}
.mock-menu .m-menu-illust {
  position: absolute;
  right: 10px;
  bottom: -10px;
  font-size: 56px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
  z-index: 2;
}
.mock-menu .m-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.mock-menu .m-menu-item {
  background: white;
  border: 1px solid #FFE5EE;
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
}
.mock-menu .m-menu-item-emo { font-size: 18px; }
.mock-menu .m-menu-item-name {
  font-size: 9px;
  font-weight: 600;
  color: #6B7280;
  margin-top: 2px;
}
.mock-menu .m-menu-item-price {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: #D6336C;
  margin-top: 2px;
}
.mock-menu .m-menu-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px dashed #F1F5F9;
  font-size: 10px;
  color: #6B7280;
}
.mock-menu .m-rating span { color: #FFD84D; letter-spacing: -1px; }
.mock-menu .m-menu-cta {
  background: linear-gradient(135deg, #FF6B9D, #D6336C);
  color: white;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 700;
}

/* ============================================================
   2. MOCK BOOKING (Belleza) — split + calendar
   ============================================================ */
.mock-booking .m-book-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #F3E8FF;
}
.mock-booking .m-book-logo {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: #5B4FFF;
  letter-spacing: -0.02em;
}
.mock-booking .m-book-link {
  font-size: 9.5px;
  color: #5B4FFF;
  font-weight: 600;
  padding: 3px 10px;
  border: 1px solid #E0E7FF;
  border-radius: 999px;
}
.mock-booking .m-book-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 10px;
  flex: 1;
}
.mock-booking .m-book-left { display: flex; flex-direction: column; }
.mock-booking .m-book-eyebrow {
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9CA3AF;
  font-weight: 700;
}
.mock-booking .m-book-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 4px;
  color: #1A1535;
}
.mock-booking .m-book-stars {
  font-size: 9px;
  color: #6B7280;
  margin-top: 8px;
}
.mock-booking .m-book-stars span { color: #FFD84D; letter-spacing: -1px; }
.mock-booking .m-book-services {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}
.mock-booking .m-book-svc {
  background: #F5F3FF;
  color: #4338CA;
  font-size: 9px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 6px;
  align-self: flex-start;
}
.mock-booking .m-book-right {
  background: #FAF8FF;
  border: 1px solid #E0E7FF;
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-booking .m-cal-head {
  font-size: 8px;
  font-weight: 700;
  color: #6B7280;
  text-align: center;
  letter-spacing: 0.05em;
}
.mock-booking .m-cal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.mock-booking .m-cal-slot {
  background: white;
  border: 1px solid #E0E7FF;
  border-radius: 5px;
  padding: 4px 0;
  text-align: center;
  font-size: 8.5px;
  font-weight: 600;
  color: #5B4FFF;
}
.mock-booking .m-cal-slot.busy {
  background: #F3F4F6;
  color: #D1D5DB;
  text-decoration: line-through;
  border-color: #F3F4F6;
}
.mock-booking .m-cal-slot.pick {
  background: #5B4FFF;
  color: white;
  border-color: #5B4FFF;
  box-shadow: 0 4px 8px rgba(91,79,255,0.3);
}
.mock-booking .m-cal-cta {
  background: linear-gradient(135deg, #5B4FFF, #4338CA);
  color: white;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  padding: 6px;
  border-radius: 6px;
  margin-top: auto;
}

/* ============================================================
   3. MOCK SERVICES (Vet) — banner + grid 2x2 + avatars
   ============================================================ */
.mock-services .m-vet-banner {
  background: linear-gradient(90deg, #0EA5A4, #14B8A6);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 10px;
}
.mock-services .m-vet-logo {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.mock-services .m-vet-status {
  font-size: 8.5px;
  background: rgba(255,255,255,0.2);
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.mock-services .m-vet-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 2px 0 0;
  line-height: 1.1;
  color: #1A1535;
}
.mock-services .m-vet-sub {
  font-size: 9.5px;
  color: #6B7280;
  margin: 0;
}
.mock-services .m-vet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  flex: 1;
}
.mock-services .m-vet-card {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-services .m-vet-icon {
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.mock-services .m-vet-name {
  font-size: 10px;
  font-weight: 700;
  color: #1A1535;
}
.mock-services .m-vet-from {
  font-size: 8.5px;
  color: #0E7F7E;
  font-weight: 600;
}
.mock-services .m-vet-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.mock-services .m-vet-avatars { display: flex; gap: -2px; }
.mock-services .m-vet-avatars span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  border: 2px solid white;
  margin-left: -6px;
}
.mock-services .m-vet-avatars span:first-child { margin-left: 0; }
.mock-services .m-vet-btn {
  background: #0EA5A4;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ============================================================
   4. MOCK EMERGENCY (Gasfit) — hotline gigante
   ============================================================ */
.mock-emergency .mock-emergency-bg,
.mock-emergency-bg {
  background: linear-gradient(160deg, #1A1535 0%, #4F1535 60%, #FFD84D 60%) !important;
  position: relative;
}
.mock-emergency .m-emerg-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-emergency .m-emerg-logo {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}
.mock-emergency .m-emerg-badge {
  background: #DC2626;
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.mock-emergency .m-emerg-badge .m-pulse-dot { background: #FCA5A5; }
.mock-emergency .m-emerg-center {
  text-align: center;
  margin: 8px 0 6px;
  z-index: 1;
  position: relative;
}
.mock-emergency .m-emerg-eyebrow {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FCA5A5;
  margin-bottom: 4px;
}
.mock-emergency .m-emerg-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.mock-emergency .m-emerg-phone-icon { font-size: 18px; }
.mock-emergency .m-emerg-phone-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: #1A1535;
  letter-spacing: -0.01em;
}
.mock-emergency .m-emerg-eta {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: #1A1535;
  margin-top: 8px;
  text-align: center;
  background: #FFD84D;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
}
.mock-emergency .m-emerg-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: auto;
}
.mock-emergency .m-emerg-chip {
  background: rgba(26,21,53,0.85);
  color: white;
  font-size: 8.5px;
  font-weight: 700;
  padding: 5px;
  border-radius: 6px;
  text-align: center;
  letter-spacing: 0.02em;
}
.mock-emergency .m-emerg-foot {
  display: flex;
  justify-content: space-between;
  font-size: 8.5px;
  color: #1A1535;
  font-weight: 600;
  padding-top: 6px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* ============================================================
   5. MOCK SCHEDULE (Yoga) — clases zen
   ============================================================ */
.mock-schedule-bg {
  background: linear-gradient(180deg, #FAF5FF 0%, #FFFFFF 100%) !important;
}
.mock-schedule .m-sched-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-schedule .m-sched-logo {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: #6259D9;
  letter-spacing: 0.05em;
}
.mock-schedule .m-sched-pulse {
  background: #FCE7F3;
  color: #BE185D;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  animation: gentle-fade 2.5s ease-in-out infinite;
}
@keyframes gentle-fade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.mock-schedule .m-sched-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
  line-height: 1.1;
  color: #1A1535;
}
.mock-schedule .m-sched-sub {
  font-size: 9.5px;
  color: #6B7280;
  margin: 2px 0 4px;
}
.mock-schedule .m-sched-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.mock-schedule .m-sched-class {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #EDE9FE;
  border-radius: 8px;
  padding: 6px 8px;
}
.mock-schedule .m-sched-day {
  font-size: 8px;
  text-align: center;
  color: #6B7280;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 34px;
}
.mock-schedule .m-sched-day strong {
  display: block;
  font-size: 11px;
  color: #5B4FFF;
  font-family: var(--font-display);
}
.mock-schedule .m-sched-name {
  flex: 1;
  font-size: 10px;
  color: #1A1535;
}
.mock-schedule .m-sched-name strong { display: block; font-weight: 700; }
.mock-schedule .m-sched-name span {
  display: block;
  font-size: 8.5px;
  color: #9CA3AF;
  font-weight: 500;
}
.mock-schedule .m-sched-level {
  font-size: 8px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.mock-schedule .m-sched-level.easy { background: #D1FAE5; color: #047857; }
.mock-schedule .m-sched-level.mid { background: #FEF3C7; color: #B45309; }
.mock-schedule .m-sched-foot {
  border-top: 1px solid #EDE9FE;
  padding-top: 6px;
}
.mock-schedule .m-sched-avatars {
  display: flex;
  align-items: center;
  gap: 0;
}
.mock-schedule .m-sched-avatars > span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  border: 2px solid white;
  margin-left: -6px;
}
.mock-schedule .m-sched-avatars > span:first-child { margin-left: 0; }
.mock-schedule .m-sched-count {
  font-size: 9px;
  color: #6B7280;
  margin-left: 8px;
  font-weight: 600;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  border: 0 !important;
}

/* ============================================================
   6. MOCK PRICING (Contadores) — pricing tiers
   ============================================================ */
.mock-pricing .m-price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid #E5E7EB;
}
.mock-pricing .m-price-logo {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: #1A1535;
  letter-spacing: -0.02em;
}
.mock-pricing .m-price-since {
  font-size: 8.5px;
  color: #6B7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mock-pricing .m-price-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 2px 0 4px;
  line-height: 1.15;
  color: #1A1535;
}
.mock-pricing .m-price-title span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: #6B7280;
  margin-top: 2px;
  letter-spacing: 0;
}
.mock-pricing .m-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  flex: 1;
}
.mock-pricing .m-price-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-pricing .m-price-card.highlight {
  border-color: #1A1535;
  background: #1A1535;
  color: white;
  box-shadow: 0 6px 16px rgba(26,21,53,0.25);
  transform: translateY(-3px);
}
.mock-pricing .m-price-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD84D;
  color: #1A1535;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.mock-pricing .m-price-name {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6B7280;
}
.mock-pricing .m-price-card.highlight .m-price-name { color: #FFD84D; }
.mock-pricing .m-price-num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #1A1535;
  letter-spacing: -0.02em;
}
.mock-pricing .m-price-card.highlight .m-price-num { color: white; }
.mock-pricing .m-price-num span {
  font-size: 8px;
  font-weight: 600;
  color: #6B7280;
  letter-spacing: 0;
}
.mock-pricing .m-price-card.highlight .m-price-num span { color: #D1D5DB; }
.mock-pricing .m-price-feats {
  font-size: 8px;
  line-height: 1.5;
  color: #6B7280;
  padding-left: 0;
  text-align: left;
  list-style: none;
}
.mock-pricing .m-price-card.highlight .m-price-feats { color: #E5E7EB; }
.mock-pricing .m-price-trust {
  display: flex;
  justify-content: space-between;
  font-size: 8.5px;
  color: #6B7280;
  font-weight: 600;
  padding-top: 6px;
  border-top: 1px solid #F3F4F6;
}
