/* ==========================================================================
   CRUZA Corporate Landing Page - Stylesheet (Style REVER & Apple Smooth Scroll)
   Slogan: Better together.
   Colors: #00C896 (Emerald Green), #0F172A (Dark Slate), #F8FAFC, #FFFFFF
   ========================================================================== */

:root {
  --cruza-green: #00C896;
  --cruza-green-hover: #00B386;
  --cruza-green-dark: #059669;
  --cruza-blue: #0284C7;
  --cruza-mint: #E8F5E9;
  --cruza-mint-border: #86EFAC;
  --cruza-dark: #0F172A;
  --cruza-slate: #1E293B;
  --cruza-gray-light: #F8FAFC;
  --cruza-gray-border: #E2E8F0;
  --cruza-text-muted: #64748B;
  --cruza-font: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 16px 40px rgba(0, 200, 150, 0.12);
}

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

html {
  font-size: 16px;
}

/* Lenis Smooth Scroll Compatibility */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--cruza-font);
  background-color: #FFFFFF;
  color: var(--cruza-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--cruza-green) 0%, var(--cruza-green-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background-color: var(--cruza-mint);
  border: 1px solid var(--cruza-mint-border);
  border-radius: var(--radius-full);
  color: #15803D;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ==========================================================================
   Efectos de Revelación al Scroll Estilo Apple (Fade Up Smooth)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Header Dinámico Flotante en Cápsula (Estilo REVER)
   ========================================================================== */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  max-width: 1160px;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  padding: 6px 20px;
  transition: all 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
  max-width: 980px;
  padding: 4px 16px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 60px;
  transition: height 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled .nav-container {
  height: 52px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 0 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  height: 44px;
  width: 86px;
  position: relative;
  transition: all 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-img-full {
  height: 44px;
  width: auto;
  object-fit: contain;
  transform: scale(1.65);
  transition: opacity 0.65s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
}

.logo-img-icon-img {
  position: absolute;
  height: 22px;
  width: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.65s ease 0.2s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-tagline {
  font-size: 14px;
  font-weight: 800;
  color: var(--cruza-green);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 10px;
  white-space: nowrap;
  max-width: 180px;
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.65s ease,
              max-width 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              margin 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled .logo-tagline {
  opacity: 0;
  transform: translateX(-35px) scale(0.75);
  max-width: 0;
  padding-left: 0;
  margin-left: -10px;
  border-left-color: transparent;
  pointer-events: none;
}

.header.scrolled .logo-img-full {
  opacity: 0;
  transform: scale(0.5);
}

.header.scrolled .logo-img-icon-img {
  opacity: 1;
  transform: scale(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.90);
  font-weight: 600;
  font-size: 14.5px;
  white-space: nowrap;
  transition: color 0.2s ease;
  padding: 4px 2px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-demo-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  border: none;
  background-color: var(--cruza-green);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 200, 150, 0.4);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-demo-header:hover {
  background-color: var(--cruza-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 200, 150, 0.55);
}

/* Hero Section */
.hero {
  padding: 150px 0 100px 0;
  background: radial-gradient(circle at top right, rgba(0, 200, 150, 0.08), transparent 55%),
              radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.04), transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-title {
  font-size: 56px;
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--cruza-dark);
}

.hero-title-triple {
  color: var(--cruza-dark);
  display: inline-block;
  font-weight: 850;
}

.hero-brand-motto {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.8px;
  color: var(--cruza-dark);
  margin-top: 14px;
  text-transform: none;
}

.hero-brand-motto .motto-dot {
  color: var(--cruza-green);
  font-size: 18px;
}

.hero-description {
  font-size: 19px;
  color: var(--cruza-text-muted);
  margin-bottom: 38px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
}

.hero-cta-group .btn-demo-header {
  padding: 16px 26px;
  font-size: 15px;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 22px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  color: var(--cruza-dark);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  border: 1px solid var(--cruza-gray-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--cruza-gray-light);
  border-color: #CBD5E1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.proof-bar {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--cruza-gray-border);
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.proof-item strong {
  font-size: 19px;
  font-weight: 900;
  color: var(--cruza-dark);
  white-space: nowrap;
  line-height: 1.2;
}

.proof-item span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cruza-text-muted);
  line-height: 1.35;
  white-space: nowrap;
}

/* Dynamic Hero Mockup Card */
.hero-mockup-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cruza-gray-border);
  box-shadow: var(--shadow-hover);
  padding: 28px;
  position: relative;
  animation: floatCard 6s ease-in-out infinite;
}

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

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--cruza-gray-border);
  margin-bottom: 20px;
}

.mockup-partner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.partner-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--cruza-green);
  color: #FFFFFF;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.mockup-badge {
  background-color: var(--cruza-mint);
  color: #15803D;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--cruza-green);
  border-radius: var(--radius-full);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 200, 150, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 200, 150, 0); }
}

.mockup-body {
  background-color: var(--cruza-gray-light);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 18px;
}

.cruce-details-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.cruce-detail-item {
  font-size: 13px;
  color: var(--cruza-text-muted);
}

.cruce-detail-value {
  font-size: 17px;
  font-weight: 800;
  color: var(--cruza-dark);
}

.progress-bar-container {
  height: 8px;
  background-color: #E2E8F0;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 10px;
}

.progress-bar-fill {
  height: 100%;
  width: 78%;
  background-color: var(--cruza-green);
  border-radius: var(--radius-full);
}

.floating-contract-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--cruza-dark);
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.3);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
}

/* Ticker Marquee Infinito */
.ticker-section {
  padding: 40px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--cruza-gray-border);
  border-bottom: 1px solid var(--cruza-gray-border);
  overflow: hidden;
}

.ticker-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation: tickerLoop 25s linear infinite;
}

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

.ticker-item {
  font-size: 15px;
  font-weight: 800;
  color: var(--cruza-dark);
  background: var(--cruza-gray-light);
  border: 1px solid var(--cruza-gray-border);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Dashboard Spotlight */
.rever-summary-section {
  padding: 100px 0;
  background: var(--cruza-gray-light);
}

.rever-summary-card {
  background: #FFFFFF;
  border: 1px solid var(--cruza-gray-border);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-hover);
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.summary-tag {
  display: inline-block;
  padding: 6px 18px;
  background: var(--cruza-dark);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 24px;
}

.summary-heading {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--cruza-dark);
  margin-bottom: 40px;
}

.summary-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.summary-stat-box {
  background: var(--cruza-gray-light);
  border: 1px solid var(--cruza-gray-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.stat-number {
  font-size: 38px;
  font-weight: 900;
  color: var(--cruza-green);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--cruza-text-muted);
}

.spotlight-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--cruza-mint);
  border: 1px solid var(--cruza-mint-border);
  border-radius: var(--radius-md);
  padding: 16px 28px;
  color: #15803D;
  font-size: 14px;
  font-weight: 700;
}

/* Cómo funciona */
.steps-section {
  padding: 110px 0;
  background-color: #FFFFFF;
}

.steps-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.step-tab-btn {
  position: relative;
  overflow: hidden;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--cruza-gray-border);
  background: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  color: var(--cruza-dark);
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-tab-btn.active,
.step-tab-btn:hover {
  background: var(--cruza-dark);
  color: #FFFFFF;
  border-color: var(--cruza-dark);
}

.step-progress-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--cruza-green);
  border-radius: 4px;
  width: 0%;
  pointer-events: none;
}

.step-tab-btn.active .step-progress-indicator {
  animation: stepProgressAnim 5s linear forwards;
}

#como-funciona:hover .step-tab-btn.active .step-progress-indicator {
  animation-play-state: paused;
}

@keyframes stepProgressAnim {
  0% { width: 0%; }
  100% { width: 100%; }
}

.steps-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--cruza-gray-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cruza-gray-border);
  padding: 60px;
  min-height: 400px;
}

.step-text-container {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-badge {
  color: var(--cruza-green);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.step-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.step-desc {
  font-size: 16px;
  color: var(--cruza-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.step-visual-box {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--cruza-gray-border);
  padding: 32px;
  box-shadow: var(--shadow-subtle);
}

/* Simulador de beneficios */
.simulator-section {
  padding: 110px 0;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.98), var(--cruza-dark));
  color: #FFFFFF;
}

.simulator-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.simulator-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #FFFFFF;
}

.sim-slider-card {
  background: var(--cruza-slate);
  border: 1px solid #334155;
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 24px;
}

.sim-slider-label {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #E2E8F0;
}

.sim-slider {
  width: 100%;
  accent-color: var(--cruza-green);
  height: 8px;
  border-radius: var(--radius-full);
  cursor: pointer;
}

.sim-result-card {
  background: linear-gradient(145deg, #1E293B 0%, #0F172A 100%);
  border: 2px solid var(--cruza-green);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 200, 150, 0.18);
}

.sim-amount {
  font-size: 56px;
  font-weight: 900;
  color: var(--cruza-green);
  margin: 14px 0;
  letter-spacing: -1px;
}

.sim-metric-pill {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 200, 150, 0.15);
  border-radius: var(--radius-full);
  color: var(--cruza-green);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

/* FAQ Accordion Section Clean */
.faq-section {
  padding: 110px 0;
  background-color: var(--cruza-gray-light);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-subtitle {
  font-size: 17px;
  color: var(--cruza-text-muted);
  text-wrap: balance;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--cruza-gray-border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: var(--cruza-mint-border);
}

.faq-question {
  padding: 22px 28px;
  font-weight: 800;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: var(--cruza-dark);
}

.faq-icon-arrow {
  font-size: 14px;
  font-weight: 800;
  color: var(--cruza-text-muted);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  color: var(--cruza-green);
}

.faq-answer {
  padding: 0 28px 24px 28px;
  font-size: 15px;
  color: var(--cruza-text-muted);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Modal de Agendar Cita */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 14px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.demo-modal {
  background: #FFFFFF;
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  max-height: 88dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
}

.modal-overlay.active .demo-modal {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--cruza-gray-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  color: var(--cruza-text-muted);
}

/* Calendario Mensual Interactivo Grande */
.calendar-widget-box {
  background: var(--cruza-gray-light);
  border: 1px solid var(--cruza-gray-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.calendar-month-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-weight: 800;
  font-size: 16px;
  color: var(--cruza-dark);
}

.calendar-month-btn {
  background: #FFFFFF;
  border: 1px solid var(--cruza-gray-border);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.calendar-weekdays-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--cruza-text-muted);
  margin-bottom: 12px;
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day-tile {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--cruza-gray-border);
  background: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  color: var(--cruza-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.calendar-day-tile.selectable:hover {
  border-color: var(--cruza-green);
  background: var(--cruza-mint);
  color: #15803D;
}

.calendar-day-tile.active-selected {
  background: var(--cruza-green) !important;
  color: #FFFFFF !important;
  border-color: var(--cruza-green) !important;
}

.calendar-day-tile.disabled {
  background: #F1F5F9;
  color: #CBD5E1;
  border-color: #E2E8F0;
  cursor: not-allowed;
}

/* Slots de Horas */
.slots-container-box {
  background: #FFFFFF;
  border: 1px solid var(--cruza-mint-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.calendar-section-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--cruza-dark);
  margin: 14px 0 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.time-slot {
  padding: 11px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--cruza-gray-border);
  background: var(--cruza-gray-light);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-slot.available {
  border-color: var(--cruza-mint-border);
  color: var(--cruza-dark);
}

.time-slot.available:hover {
  border-color: var(--cruza-green);
  background: var(--cruza-mint);
  color: #15803D;
}

.time-slot.selected {
  background: var(--cruza-green) !important;
  color: #FFFFFF !important;
  border-color: var(--cruza-green) !important;
}

.time-slot.occupied {
  background: #F1F5F9;
  border-color: #E2E8F0;
  color: #94A3B8;
  cursor: not-allowed;
  opacity: 0.65;
  font-weight: 600;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--cruza-dark);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--cruza-gray-border);
  font-size: 14px;
  font-family: var(--cruza-font);
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--cruza-green);
}

/* Footer & Logo Encapsulado en Blanco */
.footer {
  background-color: var(--cruza-dark);
  color: #94A3B8;
  padding: 80px 0 30px 0;
  border-top: 1px solid #1E293B;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo-card {
  display: inline-flex;
  align-items: center;
  background-color: #FFFFFF;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  max-width: 340px;
  line-height: 1.6;
}

.footer-title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--cruza-green);
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid,
  .steps-content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-cta-group {
    flex-wrap: wrap;
  }

  .proof-bar {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: 42px;
  }

  .nav-links {
    display: none;
  }

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

  .header {
    width: calc(100% - 24px);
    top: 10px;
  }

  /* Campos del formulario del modal — una columna en tablet/móvil */
  .demo-modal [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   NUEVAS SECCIONES: TOUR POR LA APP, IMPACTO DUAL, ALIANZAS Y MODALES LEGALES
   ========================================================================== */

/* 1. SECCIÓN TOUR INTERACTIVO POR LA APP */
.app-tour-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  position: relative;
}

.tour-tabs-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 36px 0 48px;
  flex-wrap: wrap;
}

.tour-tab-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--cruza-gray-border);
  color: var(--cruza-slate);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-subtle);
}

.tour-tab-btn:hover {
  border-color: var(--cruza-green);
  color: var(--cruza-green-dark);
  transform: translateY(-2px);
}

.tour-tab-btn.active {
  background: var(--cruza-dark);
  color: #FFFFFF;
  border-color: var(--cruza-dark);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

/* Barra de progreso de auto-rotación estilo Apple */
.tour-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--cruza-green);
  border-radius: 3px;
  width: 0%;
  animation: tourTabProgress 5s linear forwards;
}

#tour-app:hover .tour-tab-btn.active::after {
  animation-play-state: paused;
}

@keyframes tourTabProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.tour-tab-btn.active .tour-icon {
  background: var(--cruza-green);
  color: #FFFFFF;
}

.tour-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cruza-gray-light);
  font-size: 14px;
  transition: all 0.3s ease;
}

.tour-panel {
  display: none;
  animation: fadeInTour 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tour-panel.active {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

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

.tour-info-card {
  padding-right: 12px;
}

.tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--cruza-mint);
  border: 1px solid var(--cruza-mint-border);
  border-radius: var(--radius-full);
  color: #15803D;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.tour-heading {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--cruza-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.tour-description {
  font-size: 16px;
  color: var(--cruza-text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.tour-feature-list {
  list-style: none;
  margin-bottom: 32px;
}

.tour-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cruza-slate);
}

.tour-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 200, 150, 0.15);
  color: var(--cruza-green-dark);
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

/* MARCOS DE MAQUETAS (MOCKUPS EN CSS) */
.mockup-frame {
  background: #FFFFFF;
  border-radius: 28px;
  border: 1px solid var(--cruza-gray-border);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
}

.mockup-frame:hover {
  transform: translateY(-4px);
}

.mockup-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #F1F5F9;
  border-bottom: 1px solid var(--cruza-gray-border);
}

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

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot.red { background: #EF4444; }
.mockup-dot.yellow { background: #F59E0B; }
.mockup-dot.green { background: #10B981; }

.mockup-search-bar {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 5px 14px;
  font-size: 11px;
  color: #64748B;
  flex-grow: 1;
  max-width: 340px;
  margin: 0 auto;
  border: 1px solid #CBD5E1;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.mockup-search-bar .search-icon {
  font-size: 11px;
  opacity: 0.7;
}

.mockup-search-bar .search-placeholder {
  color: #94A3B8;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-search-bar .search-shortcut {
  margin-left: auto;
  font-size: 9px;
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  border-radius: 4px;
  padding: 1px 5px;
  color: #64748B;
  font-family: inherit;
  font-weight: 700;
}

.mockup-url-bar {
  display: none;
}

/* 2. PANTALLA: RADAR Y MAPA DE CRUCES */
.screen-radar-container {
  padding: 24px;
  background: #0F172A;
  color: #FFFFFF;
  position: relative;
  min-height: 420px;
}

.radar-map-grid {
  position: relative;
  height: 280px;
  background: radial-gradient(circle at center, rgba(0, 200, 150, 0.08) 0%, rgba(15, 23, 42, 0.95) 70%),
              linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
              linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 30px 30px, 30px 30px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-circle-outer {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 200, 150, 0.4);
  animation: rotateRadar 15s linear infinite;
}

.radar-circle-inner {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(0, 200, 150, 0.3);
}

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

.radar-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition: transform 0.3s ease;
}

.radar-pin:hover {
  transform: scale(1.08);
}

.radar-pin.center {
  background: var(--cruza-green);
  color: #0F172A;
  border-color: #FFFFFF;
  font-weight: 800;
}

.radar-pin.gym { top: 32px; left: 40px; }
.radar-pin.barber { bottom: 45px; left: 35px; }
.radar-pin.boutique { top: 40px; right: 45px; }
.radar-pin.resto { bottom: 35px; right: 50px; }

.radar-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.radar-metric-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.radar-metric-num {
  font-size: 18px;
  font-weight: 900;
  color: var(--cruza-green);
}

.radar-metric-lbl {
  font-size: 10px;
  color: #94A3B8;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 3. PANTALLA: DASHBOARD FACTURACIÓN */
.screen-dashboard-container {
  padding: 24px;
  background: #FFFFFF;
}

.dash-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.dash-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0, 200, 150, 0.12);
  border: 1px solid rgba(0, 200, 150, 0.3);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--cruza-green-dark);
}

.dash-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.dash-stat-card {
  padding: 14px;
  border-radius: 14px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
}

.dash-stat-val {
  font-size: 20px;
  font-weight: 900;
  color: var(--cruza-dark);
}

.dash-stat-sub {
  font-size: 11px;
  color: var(--cruza-green);
  font-weight: 700;
  margin-top: 2px;
}

.dash-chart-mock {
  padding: 16px;
  background: #F8FAFC;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
}

.chart-bars-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100px;
  padding-top: 10px;
}

.chart-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.chart-bar-pillar {
  width: 24px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--cruza-green) 0%, #059669 100%);
}

.chart-day-label {
  font-size: 10px;
  color: #64748B;
  font-weight: 600;
}

/* 4. PANTALLA: CONVENIO PDF SELLADO */
.screen-pdf-container {
  padding: 24px;
  background: #F1F5F9;
}

.pdf-sheet {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #CBD5E1;
  font-family: 'Times New Roman', Georgia, serif;
}

.pdf-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #0F172A;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.pdf-title-block strong {
  font-size: 14px;
  text-transform: uppercase;
  color: #0F172A;
  display: block;
}

.pdf-stamp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1.5px solid #059669;
  border-radius: 6px;
  color: #059669;
  font-family: var(--cruza-font);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.pdf-clause {
  font-size: 11px;
  line-height: 1.5;
  color: #334155;
  margin-bottom: 10px;
}

.pdf-signatures-row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed #CBD5E1;
  font-family: var(--cruza-font);
  font-size: 10px;
}

/* 5. PANTALLA: SMARTPHONE CARTERA PARTICULAR */
.screen-phone-container {
  display: flex;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.phone-shell {
  width: 280px;
  background: #000000;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.phone-screen {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 16px 14px;
  overflow: hidden;
}

.phone-notch {
  width: 90px;
  height: 16px;
  background: #000000;
  border-radius: 0 0 12px 12px;
  margin: -16px auto 14px;
}

.pass-card-ui {
  background: linear-gradient(135deg, #00C896 0%, #059669 100%);
  border-radius: 20px;
  padding: 16px;
  color: #FFFFFF;
  box-shadow: 0 12px 24px rgba(0, 200, 150, 0.3);
  margin-bottom: 12px;
}

.pass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 8px;
}

.pass-title {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.pass-qr-box {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 12px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.qr-mock-matrix {
  width: 100px;
  height: 100px;
  background: 
    radial-gradient(circle at 50% 50%, #000 2px, transparent 2px),
    linear-gradient(45deg, #0F172A 25%, transparent 25%),
    linear-gradient(-45deg, #0F172A 25%, transparent 25%);
  background-size: 8px 8px, 16px 16px, 16px 16px;
  border: 4px solid #0F172A;
  border-radius: 8px;
}

.pass-timer {
  font-size: 10px;
  color: #64748B;
  font-weight: 700;
}

/* 6. PANTALLA: ESCÁNER DE TIENDA EN MOSTRADOR */
.screen-scanner-container {
  padding: 24px;
  background: #0F172A;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.scanner-viewfinder {
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(0, 200, 150, 0.6);
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 150, 0.04);
}

.scanner-laser-line {
  position: absolute;
  width: 90%;
  height: 2px;
  background: var(--cruza-green);
  box-shadow: 0 0 12px var(--cruza-green);
  animation: scanLaser 2s ease-in-out infinite alternate;
}

@keyframes scanLaser {
  from { top: 15%; }
  to { top: 85%; }
}

.scanner-verified-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #059669;
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
  animation: popIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   2. SECCIÓN: EL DOBLE IMPACTO DE CRUZA (COMERCIOS VS. VECINOS)
   ========================================================================== */
.dual-impact-section {
  padding: 100px 0;
  background: #FFFFFF;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.dual-card {
  border-radius: 28px;
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid var(--cruza-gray-border);
}

.dual-card:hover {
  transform: translateY(-6px);
}

.dual-card.b2b {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border-top: 5px solid var(--cruza-green);
}

.dual-card.b2c {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border-top: 5px solid var(--cruza-blue);
}

.dual-header-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.dual-card.b2b .dual-header-icon {
  background: rgba(0, 200, 150, 0.15);
}

.dual-card.b2c .dual-header-icon {
  background: rgba(2, 132, 199, 0.15);
}

.dual-target-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.dual-card.b2b .dual-target-badge { color: var(--cruza-green-dark); }
.dual-card.b2c .dual-target-badge { color: var(--cruza-blue); }

.dual-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--cruza-dark);
  line-height: 1.3;
  margin-bottom: 14px;
}

.dual-desc {
  font-size: 15px;
  color: var(--cruza-text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.dual-perks-list {
  list-style: none;
  margin-bottom: 32px;
}

.dual-perks-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--cruza-slate);
  font-weight: 600;
}

.dual-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 3px;
}

.dual-card.b2b .dual-check-icon {
  background: rgba(0, 200, 150, 0.2);
  color: var(--cruza-green-dark);
}

.dual-card.b2c .dual-check-icon {
  background: rgba(2, 132, 199, 0.2);
  color: var(--cruza-blue);
}

/* ==========================================================================
   3. SECCIÓN: ALIANZAS Y CASOS MODELO
   ========================================================================== */
.alianzas-section {
  padding: 100px 0;
  background: #F8FAFC;
}

.alianzas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.alianza-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid var(--cruza-gray-border);
  box-shadow: var(--shadow-subtle);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

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

.alianza-pair-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.pair-badge {
  padding: 8px 14px;
  background: #F1F5F9;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  color: var(--cruza-dark);
}

.pair-connector {
  color: var(--cruza-green);
  font-weight: 900;
  font-size: 18px;
}

.alianza-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--cruza-dark);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alianza-location {
  font-size: 12px;
  color: #94A3B8;
  margin-bottom: 16px;
}

.alianza-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
  background: #F8FAFC;
  border-radius: 14px;
  margin-top: auto;
}

.stat-item strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: var(--cruza-green-dark);
}

.stat-item span {
  font-size: 10px;
  color: #64748B;
  text-transform: uppercase;
}

/* Real App Screenshot Frames (Apple / Rever style) */
.screen-app-shot-container {
  padding: 16px;
  background: #F8FAFC;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-screenshot-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid #E2E8F0;
  display: block;
}

/* Sección Comunicación B2B & Notificaciones (Estilo Apple / Rever) */
.comms-section {
  padding: 90px 0;
  background: #FFFFFF;
}

.comms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comm-card {
  background: #FFFFFF;
  border: 1px solid var(--cruza-gray-border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.comm-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cruza-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.comm-tag {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--cruza-green-dark);
  margin-bottom: 8px;
}

.comm-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--cruza-dark);
  margin-bottom: 12px;
  line-height: 1.3;
  text-wrap: balance;
}

.comm-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Chat Mockup Preview */
.chat-mock-preview {
  background: #F8FAFC;
  border: 1px solid var(--cruza-gray-border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.chat-msg {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
  max-width: 88%;
}

.chat-msg.incoming {
  background: #FFFFFF;
  border: 1px solid var(--cruza-gray-border);
  align-self: flex-start;
  color: var(--cruza-dark);
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.chat-msg.outgoing {
  background: var(--cruza-green);
  color: #FFFFFF;
  align-self: flex-end;
  box-shadow: 0 4px 12px rgba(0, 200, 150, 0.25);
}

.chat-sender {
  display: block;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 3px;
  opacity: 0.8;
}

/* Notif Mockup Preview */
.notif-mock-preview {
  background: #F8FAFC;
  border: 1px solid var(--cruza-gray-border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.notif-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid var(--cruza-gray-border);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.notif-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.notif-icon.green {
  background: var(--cruza-mint);
  color: #15803D;
  font-weight: 800;
}

.notif-icon.blue {
  background: #E0F2FE;
  color: #0284C7;
}

.notif-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notif-content strong {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--cruza-dark);
}

.notif-content span {
  font-size: 11px;
  color: #64748B;
}

.notif-time {
  font-size: 10px;
  color: #94A3B8;
  font-weight: 600;
}

/* ==========================================================================
   4. MODALES LEGALES ERUDITOS EN EL FOOTER
   ========================================================================== */
.legal-modal-content {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 36px;
  max-width: 820px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  text-align: left;
}

.legal-article {
  margin-bottom: 22px;
}

.legal-article h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--cruza-dark);
  margin-bottom: 8px;
}

.legal-article p {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
}

/* Hybrid Chart (Histogram + Line Chart) in Panel 2 */
.screen-chart-combo-container {
  padding: 16px;
  background: #F8FAFC;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

.dash-chart-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  width: 100%;
  box-sizing: border-box;
}

.dash-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 12px;
}

.dash-chart-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--cruza-dark);
}

.dash-chart-sub {
  font-size: 11px;
  color: var(--cruza-text-muted);
  margin-top: 2px;
}

.chart-legend-box {
  display: flex;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.legend-pill.bar-legend {
  color: var(--cruza-green-dark);
}

.legend-pill.line-legend {
  color: #0F172A;
}

.hybrid-chart-wrap {
  position: relative;
  height: 155px;
  width: 100%;
  margin-top: 8px;
}

.chart-line-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  z-index: 2;
}

.chart-bars-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 130px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  z-index: 1;
  padding: 0 10px;
  box-sizing: border-box;
}

.chart-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  width: 38px;
}

.bar-pillar {
  width: 26px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, rgba(0, 200, 150, 0.75) 0%, rgba(0, 200, 150, 0.2) 100%);
  transition: all 0.3s ease;
  position: relative;
}

.bar-pillar.peak {
  background: linear-gradient(180deg, var(--cruza-green) 0%, #009E77 100%);
  box-shadow: 0 4px 12px rgba(0, 200, 150, 0.35);
}

.bar-tooltip {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  background: #0F172A;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.bar-label {
  font-size: 11px;
  font-weight: 700;
  color: #94A3B8;
  margin-top: 8px;
}

/* Responsive adicional */
@media (max-width: 992px) {
  .tour-panel.active,
  .dual-grid,
  .alianzas-grid,
  .comms-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   MEJORA 1 — Staggered Reveals Escalonados (Estilo Apple)
   ========================================================================== */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   MEJORA 2 — Shimmer Animado en el Botón CTA Principal
   ========================================================================== */
.btn-demo-header {
  position: relative;
  overflow: hidden;
}

.btn-demo-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 100%
  );
  animation: shimmerBtn 3.2s ease-in-out infinite 1.8s;
  pointer-events: none;
  border-radius: inherit;
}

@keyframes shimmerBtn {
  0%   { left: -100%; opacity: 0; }
  10%  { opacity: 1; }
  50%  { left: 120%; opacity: 1; }
  51%  { opacity: 0; }
  100% { left: 120%; opacity: 0; }
}

/* ==========================================================================
   MEJORA 3 — Nav Link Activo al Scroll
   ========================================================================== */
/* Nav activo — negrita destacada + color verde esmeralda brillante sin puntos */
.nav-links a.nav-active,
.nav-links a.active {
  color: #00C896 !important;
  font-weight: 850 !important;
  font-size: 15.5px !important;
  text-shadow: 0 0 12px rgba(0, 200, 150, 0.6) !important;
  letter-spacing: -0.2px;
}

.nav-links a.nav-active::after,
.nav-links a.active::after {
  display: none !important;
  content: none !important;
}

/* Marcador de hoy en el calendario */
.calendar-day-tile.today-marker {
  position: relative;
  color: var(--cruza-green) !important;
  font-weight: 800;
  background: rgba(0, 200, 150, 0.08);
  border: 1px solid rgba(0, 200, 150, 0.3);
}

.calendar-day-tile.today-marker::after {
  content: 'Hoy';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 7.5px;
  font-weight: 800;
  color: var(--cruza-green);
}

/* ==========================================================================
   MEJORA 4 — Hover 3D Tilt en Cards (Alianzas y Oportunidades)
   ========================================================================== */
.alianza-card,
.dual-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   MEJORA 5 — Transición Slide+Fade en el App Tour al cambiar pestaña
   ========================================================================== */
.tour-panel {
  transition: opacity 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-panel.tour-panel-exiting {
  opacity: 0;
  transform: translateX(-16px);
  pointer-events: none;
}

.tour-panel.tour-panel-entering {
  opacity: 0;
  transform: translateX(20px);
}

/* ==========================================================================
   MEJORA 6 — Animación de Barras del Histograma al Entrar en Viewport
   ========================================================================== */
.bar-pillar {
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.001s; /* bloqueado por defecto */
}

.hybrid-chart-wrap.chart-animated .bar-pillar {
  animation: growBar 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes growBar {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

.hybrid-chart-wrap.chart-animated .chart-bar-item:nth-child(1) .bar-pillar { animation-delay: 0ms; }
.hybrid-chart-wrap.chart-animated .chart-bar-item:nth-child(2) .bar-pillar { animation-delay: 80ms; }
.hybrid-chart-wrap.chart-animated .chart-bar-item:nth-child(3) .bar-pillar { animation-delay: 160ms; }
.hybrid-chart-wrap.chart-animated .chart-bar-item:nth-child(4) .bar-pillar { animation-delay: 240ms; }
.hybrid-chart-wrap.chart-animated .chart-bar-item:nth-child(5) .bar-pillar { animation-delay: 320ms; }
.hybrid-chart-wrap.chart-animated .chart-bar-item:nth-child(6) .bar-pillar { animation-delay: 400ms; }
.hybrid-chart-wrap.chart-animated .chart-bar-item:nth-child(7) .bar-pillar { animation-delay: 480ms; }

/* Línea SVG del gráfico también animada */
.chart-line-svg path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 0.001s;
}

.hybrid-chart-wrap.chart-animated .chart-line-svg path:first-of-type {
  animation: drawLine 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* ==========================================================================
   MEJORA 7 — Fondos Alternados con Degradados Radiales Sutiles
   ========================================================================== */
.dual-impact-section {
  background:
    radial-gradient(ellipse at 85% 15%, rgba(2, 132, 199, 0.055) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(0, 200, 150, 0.035) 0%, transparent 50%),
    #FFFFFF;
}

.comms-section {
  background:
    radial-gradient(ellipse at 10% 30%, rgba(0, 200, 150, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 70%, rgba(15, 23, 42, 0.03) 0%, transparent 45%),
    #F8FAFC;
}

.alianzas-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 200, 150, 0.04) 0%, transparent 60%),
    #FFFFFF;
}

/* ==========================================================================
   MEJORA 8 — Sección CTA de Cierre Final (Dark Esmeralda, Estilo Apple)
   ========================================================================== */
.cta-cierre-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0F172A 0%, #064E3B 60%, #0F172A 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-cierre-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 200, 150, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.cta-cierre-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-cierre-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-cierre-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 200, 150, 0.15);
  border: 1px solid rgba(0, 200, 150, 0.35);
  border-radius: 9999px;
  color: #6EE7C7;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}

.cta-cierre-title {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #FFFFFF;
  margin-bottom: 22px;
  text-wrap: balance;
}

.cta-cierre-title .highlight-green {
  background: linear-gradient(90deg, #00C896 0%, #6EE7C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-cierre-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 44px;
  text-wrap: balance;
}

.cta-cierre-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-cierre-actions .btn-demo-header {
  padding: 18px 36px;
  font-size: 16px;
  box-shadow: 0 0 40px rgba(0, 200, 150, 0.45);
}

.cta-cierre-actions .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 28px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.cta-cierre-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.cta-cierre-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.cierre-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cierre-proof-item strong {
  font-size: 22px;
  font-weight: 900;
  color: #FFFFFF;
}

.cierre-proof-item span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

/* ==========================================================================
   Mejoras Responsive
   ========================================================================== */
@media (max-width: 768px) {
  .cta-cierre-title {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .cta-cierre-subtitle {
    font-size: 16px;
  }
  .cta-cierre-proof {
    gap: 20px;
  }
}

/* ==========================================================================
   Barra de Progreso en "Cómo funciona" (igual que el Tour App)
   ========================================================================== */
/* ==========================================================================
   Header Móvil & Tablet (< 900px): Asegurar que el logo y el CTA caben siempre
   ========================================================================== */
@media (max-width: 900px) {
  .logo-tagline {
    display: none !important;
  }
}

@media (max-width: 768px) {
  /* Header compacto en móvil */
  .header {
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 8px !important;
    padding: 4px 12px !important;
  }

  .nav-container {
    height: 52px !important;
    padding: 0 4px !important;
    gap: 8px !important;
  }

  .logo-badge-card {
    width: 76px !important;
    height: 38px !important;
    padding: 0 6px !important;
  }

  .logo-img-full {
    height: 34px !important;
  }

  .nav-actions .btn-demo-header {
    padding: 9px 15px !important;
    font-size: 12.5px !important;
    letter-spacing: -0.2px !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 10px rgba(0, 200, 150, 0.35) !important;
  }

  /* ==========================================================================
     Tour App en Móvil: 5 Pestañas Adaptadas y Compactas
     ========================================================================== */
  .tour-tabs-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 20px 0 30px !important;
  }

  .tour-tab-btn {
    padding: 10px 14px !important;
    font-size: 13px !important;
    gap: 6px !important;
    border-radius: var(--radius-full) !important;
  }

  .tour-icon {
    width: 22px !important;
    height: 22px !important;
    font-size: 12px !important;
  }

  /* Paneles en móvil: tarjeta limpia en 1 columna (info arriba, maqueta abajo) */
  .tour-panel {
    display: none;
  }

  .tour-panel.active {
    display: flex !important;
    flex-direction: column;
    gap: 22px;
    animation: tourSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes tourSlideIn {
    from {
      opacity: 0;
      transform: translateX(16px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .tour-info-card {
    padding-right: 0;
    order: 1;
  }

  .tour-heading {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .tour-description {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .tour-feature-list {
    margin-bottom: 20px;
  }

  .mockup-frame {
    order: 2;
    border-radius: 18px;
  }

  /* ==========================================================================
     Sección: Cómo funciona (Móvil Estable)
     ========================================================================== */
  .steps-tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .step-tab-btn {
    flex: 1;
    padding: 10px 8px;
    font-size: 12px;
    text-align: center;
    border-radius: var(--radius-full);
    white-space: nowrap;
  }

  .steps-content-grid {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 24px;
    min-height: auto;
  }

  .step-text-container {
    min-height: 220px;
  }

  .step-title {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .step-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .step-visual-box {
    display: none;
  }

  /* ==========================================================================
     Modal de Cita en Móvil (Scroll Suave sin Cortes)
     ========================================================================== */
  .modal-overlay {
    padding: 12px 10px !important;
  }

  .demo-modal {
    padding: 24px 18px !important;
    max-height: 90dvh !important;
    border-radius: 20px !important;
    margin: auto !important;
  }

  .demo-modal h3 {
    font-size: 20px !important;
  }

  .calendar-widget-box {
    padding: 14px !important;
    margin-bottom: 14px !important;
  }

  .calendar-days-grid {
    gap: 5px !important;
  }

  .calendar-day-tile {
    font-size: 12px !important;
    border-radius: 8px !important;
  }

  .slots-container-box {
    padding: 14px !important;
    margin-bottom: 14px !important;
  }

  .slots-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }

  .time-slot {
    padding: 9px 8px !important;
    font-size: 12px !important;
  }
}

/* En escritorio, ocultar la barra de control móvil del tour */
}

/* ==========================================================================
   Pantallas Extra Pequeñas (< 480px)
   ========================================================================== */
@media (max-width: 480px) {
  .hero {
    padding: 100px 0 50px;
  }

  .hero-title {
    font-size: 28px;
    letter-spacing: -0.8px;
  }

  .hero-description {
    font-size: 14.5px;
  }

  .section-title {
    font-size: 25px;
  }

  .section-subtitle {
    font-size: 14.5px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-cierre-section {
    padding: 70px 0;
  }

  .cta-cierre-title {
    font-size: 28px;
  }

  .cta-cierre-actions {
    flex-direction: column;
    gap: 12px;
  }

  .cta-cierre-actions .btn-demo-header,
  .cta-cierre-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
