/* ═══════════════════════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════════════════════ */
:root {
  --bg:           #130810;
  --surface:      #1E0E15;
  --surface-2:    #261020;
  --brand:        #5C1028;
  --brand-dark:   #3D0A1A;
  --brand-light:  #8A1F3D;
  --brand-glow:   rgba(92, 16, 40, 0.35);
  --cream:        #EDD9AF;
  --cream-soft:   #C9BC9A;
  --cream-muted:  #9A8E78;
  --white:        #FFFFFF;
  --gray-dark:    #3A3A3A;
  --gray-mid:     #555555;
  --gray:         #6B6B6B;
  --gray-light:   #888888;
  --success:      #16A34A;
  --success-bg:   #dcfce7;
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.4);
  --shadow:       0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.6);
  --shadow-brand: 0 4px 24px rgba(92,16,40,0.5);
  --transition:   0.2s ease;
  --font:         'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-delay   { transition-delay: 0.1s; }
.fade-delay-1 { transition-delay: 0.15s; }
.fade-delay-2 { transition-delay: 0.25s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes scanLine {
  0%   { top: 8px; opacity: 1; }
  100% { top: calc(100% - 10px); opacity: 0.4; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.4); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.6; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION LABELS & TITLES
═══════════════════════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(237,217,175,0.1);
  border: 1px solid rgba(237,217,175,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled {
  background: rgba(19, 8, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(237,217,175,0.08);
  padding: 12px 0;
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo { flex-shrink: 0; }
.nav-logo-img { height: 56px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cream);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-nav-cta {
  flex-shrink: 0;
  background: var(--brand);
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--brand-light);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-brand);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 90px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

.hero-container {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cream-soft);
  background: rgba(237,217,175,0.08);
  border: 1px solid rgba(237,217,175,0.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cream);
  animation: pulse-dot 2s ease-in-out infinite;
}
.badge-dot-green { background: var(--success); }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title .highlight { color: var(--cream); }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-subtitle strong { color: var(--cream-soft); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: #F5E8C0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237,217,175,0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border: 2px solid rgba(237,217,175,0.35);
  border-radius: var(--radius-sm);
  color: var(--cream-soft);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: var(--cream);
  color: var(--cream);
  background: rgba(237,217,175,0.05);
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--gray-light);
  font-weight: 500;
}
.trust-icon { color: var(--cream-muted); flex-shrink: 0; }

/* ── Phone Mockup ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  position: relative;
  animation: float 5s ease-in-out infinite;
}

.phone-frame {
  width: 260px;
  background: #1a0b12;
  border-radius: 32px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(237,217,175,0.12),
    0 24px 64px rgba(0,0,0,0.8),
    0 0 80px var(--brand-glow);
  position: relative;
}
.phone-frame::before {
  content: '';
  display: block;
  width: 60px;
  height: 6px;
  background: rgba(237,217,175,0.15);
  border-radius: 3px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: #F5F7FA;
  border-radius: 22px;
  overflow: hidden;
}

.mock-bar-header {
  background: #111111;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-bar-name { font-size: 0.7rem; font-weight: 700; color: #fff; }
.mock-cart-badge {
  background: var(--brand);
  color: var(--cream);
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-products { padding: 8px; display: flex; flex-direction: column; gap: 6px; }

.mock-product {
  background: #fff;
  border-radius: 8px;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.mock-product-img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(135deg, #5C1028, #8A1F3D);
  flex-shrink: 0;
}
.mock-img-2 { background: linear-gradient(135deg, #D97706, #F59E0B); }
.mock-img-3 { background: linear-gradient(135deg, #374151, #6B7280); }

.mock-product-info { flex: 1; }
.mock-product-name { font-size: 0.62rem; font-weight: 600; color: #111; }
.mock-product-price { font-size: 0.58rem; color: #5C1028; font-weight: 700; }

.mock-add-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-added { background: var(--success); font-size: 0.6rem; }

.mock-ticket-strip {
  background: #fff;
  border-top: 2px dashed #E5E7EB;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-qr {
  background: #f9fafb;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  padding: 5px;
  flex-shrink: 0;
}
.qr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.qr-dot {
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: #E5E7EB;
}
.qr-dark { background: #111; }

.mock-ticket-info { flex: 1; }
.mock-order-num { font-size: 0.5rem; font-family: monospace; color: #374151; font-weight: 600; }
.mock-status-badge {
  display: inline-block;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 2px 6px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 100px;
  margin-top: 3px;
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--surface-2);
  border: 1px solid rgba(237,217,175,0.2);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.float-badge-1 { top: 30px; right: -60px; animation: float 4s ease-in-out infinite 0.5s; }
.float-badge-2 { bottom: 80px; left: -55px; animation: float 4.5s ease-in-out infinite 1s; }

/* ── Hero Stats ── */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--gray-dark);
  background: rgba(30, 14, 21, 0.5);
  padding: 28px 24px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 8px 24px;
}
.stat-number {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--gray-light);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-dark);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   PROBLEMA
═══════════════════════════════════════════════════════════ */
.section-problema {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--gray-dark);
  border-bottom: 1px solid var(--gray-dark);
}

.problema-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.problema-card {
  background: var(--bg);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color var(--transition), transform var(--transition);
}
.problema-card:hover {
  border-color: var(--brand-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
}

.problema-icon {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  background: rgba(92,16,40,0.25);
  border: 1px solid rgba(92,16,40,0.5);
  border-radius: 16px;
  color: var(--cream);
  margin: 0 auto 20px;
}

.problema-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.problema-card p { font-size: 0.9rem; color: var(--gray-light); line-height: 1.7; }

/* VS Flow */
.problema-vs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

.vs-antes, .vs-ahora { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.vs-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 120px;
}
.good-label { color: var(--cream); }

.vs-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.vs-step {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.vs-step.bad {
  background: rgba(107,107,107,0.15);
  color: var(--gray);
  text-decoration: line-through;
  text-decoration-color: rgba(107,107,107,0.5);
}
.vs-step.good {
  background: rgba(92,16,40,0.25);
  border: 1px solid rgba(92,16,40,0.5);
  color: var(--cream);
}

.vs-arrow { color: var(--gray); font-size: 0.8rem; }

/* ═══════════════════════════════════════════════════════════
   CÓMO FUNCIONA
═══════════════════════════════════════════════════════════ */
.section-como {
  padding: 100px 0;
  position: relative;
}

.pasos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.pasos-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light), var(--brand));
  opacity: 0.5;
}

.paso-card {
  padding: 40px 28px;
  text-align: center;
  position: relative;
}

.paso-numero {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand-light);
  margin-bottom: 16px;
}

.paso-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--cream);
  transition: background var(--transition), box-shadow var(--transition);
}
.paso-card:hover .paso-icon-wrap {
  background: var(--brand);
  box-shadow: var(--shadow-brand);
}

.paso-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.paso-card p { font-size: 0.88rem; color: var(--gray-light); line-height: 1.7; }

/* Staff box */
.staff-box {
  background: var(--surface);
  border: 1px solid var(--gray-dark);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.staff-box-icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(92,16,40,0.25);
  border: 1px solid rgba(92,16,40,0.5);
  border-radius: 12px;
  color: var(--cream);
}

.staff-box-content { flex: 1; }
.staff-box-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.staff-box-content p { font-size: 0.9rem; color: var(--gray-light); line-height: 1.7; }

/* Scanner animation */
.staff-box-visual { flex-shrink: 0; }

.scanner-anim { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.scanner-frame {
  width: 80px;
  height: 80px;
  border: 2px solid var(--brand);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.scanner-frame::before,
.scanner-frame::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--cream);
  border-style: solid;
}
.scanner-frame::before { top: 4px; left: 4px; border-width: 2px 0 0 2px; }
.scanner-frame::after  { bottom: 4px; right: 4px; border-width: 0 2px 2px 0; }

.scanner-line {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: var(--cream);
  box-shadow: 0 0 6px var(--cream);
  border-radius: 1px;
  animation: scanLine 1.8s ease-in-out infinite;
}

.qr-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 22px 18px;
}
.qr-mini-dot {
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background: rgba(237,217,175,0.15);
}
.qr-mini-dot.dark { background: rgba(237,217,175,0.5); }

.scanner-confirm {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(22,163,74,0.15);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(22,163,74,0.3);
}

/* ═══════════════════════════════════════════════════════════
   FUNCIONES
═══════════════════════════════════════════════════════════ */
.section-funciones {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--gray-dark);
  border-bottom: 1px solid var(--gray-dark);
}

.funciones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.funciones-col {
  background: var(--bg);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.funciones-col:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-brand);
}

.funciones-header {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.funciones-col-icon {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: rgba(237,217,175,0.12);
  border-radius: 14px;
  color: var(--cream);
}
.funciones-header h3 { font-size: 1.15rem; font-weight: 800; color: var(--cream); }
.funciones-header p { font-size: 0.82rem; color: var(--cream-muted); }

.funciones-list {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.funciones-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-dark);
}
.funciones-list li:last-child { border-bottom: none; }

.feat-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(92,16,40,0.2);
  border-radius: 7px;
  color: var(--cream-soft);
}
.funciones-list strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cream-soft);
  margin-bottom: 2px;
}
.funciones-list span { font-size: 0.8rem; color: var(--gray-light); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   TIPOS DE LOCAL
═══════════════════════════════════════════════════════════ */
.section-locales {
  padding: 100px 0;
}

.locales-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.local-card {
  background: var(--surface);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.local-card:hover {
  border-color: var(--brand-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-brand);
}

.local-emoji {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  background: rgba(92,16,40,0.25);
  border: 1px solid rgba(92,16,40,0.5);
  border-radius: 16px;
  color: var(--cream);
  margin: 0 auto 16px;
}
.local-card:hover .local-emoji { background: rgba(92,16,40,0.45); }
.local-card h3 { font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 10px; }
.local-card p { font-size: 0.8rem; color: var(--gray-light); line-height: 1.6; margin-bottom: 16px; }

.local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}
.local-tags span {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 9px;
  background: rgba(92,16,40,0.2);
  border: 1px solid rgba(92,16,40,0.4);
  color: var(--cream-soft);
  border-radius: 100px;
}

/* ═══════════════════════════════════════════════════════════
   POR QUÉ ELEGIRNOS
═══════════════════════════════════════════════════════════ */
.section-why {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--gray-dark);
  border-bottom: 1px solid var(--gray-dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.why-item {
  text-align: center;
  padding: 8px;
}
.why-icon {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  background: rgba(92,16,40,0.25);
  border: 1px solid rgba(92,16,40,0.5);
  border-radius: 16px;
  color: var(--cream);
  margin: 0 auto 16px;
}
.why-item:hover .why-icon { background: rgba(92,16,40,0.45); }
.why-item h4 { font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.why-item p { font-size: 0.85rem; color: var(--gray-light); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════════ */
.section-cta {
  padding: 120px 0;
  position: relative;
  background: var(--brand-dark);
  overflow: hidden;
}
.cta-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(92,16,40,0.6) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(237,217,175,0.7);
  background: rgba(237,217,175,0.08);
  border: 1px solid rgba(237,217,175,0.15);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(237,217,175,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-feat {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream-soft);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-whatsapp:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 15px 28px;
  border: 2px solid rgba(237,217,175,0.3);
  border-radius: var(--radius-sm);
  color: var(--cream-soft);
  transition: border-color var(--transition), color var(--transition);
}
.btn-email:hover {
  border-color: var(--cream);
  color: var(--cream);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: #0A0508;
  border-top: 1px solid var(--gray-dark);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo { height: 48px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-tagline { font-size: 0.85rem; color: var(--gray); line-height: 1.7; max-width: 280px; }

.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-nav h4, .footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cream-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.footer-nav a, .footer-contact a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid var(--gray-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { font-size: 0.8rem; color: var(--gray); }
.footer-made { color: var(--gray-mid); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (< 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; text-align: center; padding-top: 40px; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; }
  .hero-visual { order: -1; }
  .float-badge-1 { right: -30px; }
  .float-badge-2 { left: -30px; }

  .problema-grid { grid-template-columns: 1fr; }
  .pasos-grid { grid-template-columns: 1fr; }
  .pasos-grid::before { display: none; }
  .funciones-grid { grid-template-columns: 1fr; }
  .locales-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (< 768px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(19,8,16,0.97); backdrop-filter: blur(16px); padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--gray-dark); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 4px 0; }
  .btn-nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .navbar { padding: 12px 0; }

  .hero-stats { gap: 0; }
  .stat-divider { display: none; }
  .stat-item { min-width: 50%; padding: 12px; }

  .phone-frame { width: 220px; }
  .float-badge-1 { right: -10px; top: 10px; font-size: 0.65rem; padding: 5px 10px; }
  .float-badge-2 { left: -10px; bottom: 60px; font-size: 0.65rem; padding: 5px 10px; }

  .problema-vs { padding: 24px 20px; }
  .vs-antes, .vs-ahora { flex-direction: column; align-items: flex-start; }
  .vs-flow { flex-wrap: wrap; }

  .staff-box { flex-direction: column; text-align: center; padding: 28px 24px; }

  .locales-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-funciones,
  .section-problema,
  .section-como,
  .section-locales,
  .section-why,
  .section-cta { padding: 64px 0; }

  .cta-features { flex-direction: column; gap: 8px; align-items: center; }
}

@media (max-width: 480px) {
  .locales-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn-whatsapp, .btn-email { justify-content: center; }
}
