    :root {
      --color-primary: #ff6b35;
      --color-primary-dark: #e85a2c;
      --color-secondary: #1f2933;
      --color-accent: #ffd166;
      --color-bg-soft: #fff7f2;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: #111827;
      scroll-behavior: smooth;
    }

    /* NAVBAR */
    .navbar-custom { background: rgba(17, 24, 39, 0.88); backdrop-filter: blur(10px); }
    .navbar-brand span { font-weight: 700; letter-spacing: 0.5px; }
    .nav-link { font-weight: 500; }
    .nav-link.active { color: var(--color-accent) !important; }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 80px;
      background: radial-gradient(circle at top left, #ffe5d6 0, #fff7f2 35%, #ffffff 100%);
    }
    .hero-title { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: #111827; }
    .hero-highlight { color: var(--color-primary); }
    .badge-hero {
      background: rgba(255, 107, 53, 0.14);
      color: var(--color-primary-dark);
      border-radius: 999px;
      padding: 0.35rem 0.9rem;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }
    .hero-subtitle { font-size: 1.05rem; color: #4b5563; }
    .hero-cta-main {
      background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
      border: none;
      font-weight: 600;
      padding-inline: 1.8rem;
      box-shadow: 0 15px 35px rgba(255, 107, 53, 0.35);
    }
    .hero-cta-main:hover {
      background: linear-gradient(135deg, var(--color-primary-dark), #c2410c);
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    }
    .hero-cta-secondary { border: 1px solid rgba(148, 163, 184, 0.8); font-weight: 500; }
    .hero-cta-secondary:hover { background: #f9fafb; }

    /* TARJETA MOCKUP */
    .mockup-card {
      background: #111827;
      border-radius: 26px;
      padding: 1.5rem;
      color: #f9fafb;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
      max-width: 360px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      overflow: hidden;
    }
    .mockup-badge {
      top: 1rem;
      right: 1rem;
      background: #f97316;
      color: #111827;
      padding: 0.3rem 0.6rem;
      font-size: 0.7rem;
      border-radius: 999px;
      font-weight: 700;
      text-transform: uppercase;
    }
    .mockup-screen {
      border-radius: 18px;
      background: linear-gradient(135deg, #f97316, #facc15);
      padding: 1rem;
      margin-top: 1rem;
      position: relative;
    }
    .mockup-price-badge {
      position: absolute;
      top: 0rem;
      right: 0rem;
      background: #111827;
      color: #facc15;
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 700;
    }
    .mockup-menu-btn { margin-top: 0.5rem; }
    .mockup-brand-logo { width: 70px; height: 70px; border-radius: 16px; object-fit: cover; }
    .mockup-menu-item {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 0.8rem;
      padding: 0.6rem 0.75rem;
      margin-bottom: 0.6rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.82rem;
      color: #111827;
    }
    .mockup-qr {
      background: #0f172a;
      border-radius: 1rem;
      padding: 0.7rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 0.8rem;
    }
    .mockup-qr-inner {
      width: 90px;
      height: 90px;
      background-image: repeating-linear-gradient(45deg, #f9fafb 0, #f9fafb 2px, #111827 2px, #111827 4px);
      border-radius: 0.4rem;
      overflow:hidden;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    /* SECCIONES */
    section { padding-top: 5rem; padding-bottom: 5rem; }
    .section-title { font-weight: 800; font-size: 1.9rem; margin-bottom: 1rem; }
    .section-subtitle { color: #6b7280; max-width: 620px; }

    /* PASOS */
    .step-number {
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--color-primary, #ff6b35);
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 0.35rem;
    }
    .step-number i { font-size: 1.2rem; transition: transform 0.2s ease, color 0.2s ease; }
    .mmh-step-card {
      background: #ffffff;
      border-radius: 14px;
      padding: 1rem 1.1rem;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
      border: 1px solid rgba(0, 0, 0, 0.03);
    }
    .mmh-step-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
      border-color: rgba(255, 107, 53, 0.65);
    }
    .mmh-step-card:hover .step-number i { transform: scale(1.15) translateY(-1px); color: var(--color-primary, #ff6b35); }

    /* CARACTERÍSTICAS */
    .feature-card {
      border-radius: 1rem;
      border: 1px solid #e5e7eb;
      background: white;
      padding: 1.5rem;
      height: 100%;
      transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    }
    .feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08); border-color: rgba(255, 107, 53, 0.6); }
    .feature-icon {
      width: 40px; height: 40px; border-radius: 999px;
      background: rgba(255, 107, 53, 0.12);
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--color-primary);
      margin-bottom: 0.8rem;
      font-size: 1.3rem;
    }

    /* PLANES */
    .pill {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.4rem 0.9rem; border-radius: 999px;
      background: rgba(15, 23, 42, 0.04);
      font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.8px;
      font-weight: 600; color: #4b5563;
    }
    .pricing-card {
      border-radius: 1.4rem;
      border: 1px solid #e5e7eb;
      background: white;
      padding: 2rem 1.8rem;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    }
    .pricing-card.featured { border-color: var(--color-primary); box-shadow: 0 18px 45px rgba(248, 113, 22, 0.2); }
    .pricing-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08); }
    .pricing-badge {
      position: absolute; top: 1.1rem; right: 1.4rem;
      background: #22c55e; color: #052e16;
      font-size: 0.7rem; padding: 0.25rem 0.6rem;
      border-radius: 999px; font-weight: 700; text-transform: uppercase;
    }

    /* ✅ Precio viejo tachado en ROJO (cuando hay descuento_porcentaje) */
    .pricing-price-old {
      font-size: 1rem;
      color: #dc2626;
      text-decoration: line-through;
      font-weight: 800;
      line-height: 1.1;
    }
    .pricing-price-new { font-size: 2rem; font-weight: 800; color: #111827; line-height: 1.1; }

    .pricing-period { color: #6b7280; font-size: 0.95rem; }
    .pricing-list { list-style: none; padding-left: 0; margin-bottom: 1.6rem; }
    .pricing-list li { display: flex; align-items: flex-start; gap: 0.4rem; margin-bottom: 0.45rem; font-size: 0.95rem; color: #4b5563; }
    .pricing-list i { color: #22c55e; margin-top: 0.18rem; }

    .billing-toggle {
      display: inline-flex; align-items: center; gap: 0.6rem;
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.03);
      margin-bottom: 0.6rem;
    }
    .billing-toggle label { margin: 0; font-size: 0.85rem; }
    .billing-toggle .form-check { margin: 0; }
    .form-check-input:checked { background-color: var(--color-primary); border-color: var(--color-primary); }

    /* PROMO */
    .promo-block {
      border-radius: 1.6rem;
      padding: 2rem;
      background: linear-gradient(135deg, #111827, #020617);
      color: #e5e7eb;
      position: relative;
      overflow: hidden;
    }
    .promo-badge {
      position: absolute;
      top: 1.2rem;
      right: 1.6rem;
      border-radius: 999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .promo-block::after {
      content: "";
      position: absolute;
      inset: auto -120px -120px auto;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle at center, rgba(248, 113, 22, 0.45), transparent 65%);
      opacity: 0.8;
    }

    /* CONTACTO */
    .contact-card {
      background: var(--color-bg-soft);
      border-radius: 1.4rem;
      padding: 1.8rem;
      border: 1px dashed rgba(148, 163, 184, 0.9);
    }
    .form-control:focus {
      border-color: var(--color-primary);
      box-shadow: 0 0 0 0.15rem rgba(248, 113, 22, 0.35);
    }

    /* EMPRESAS: SOLO LOGOS EN SCROLL HORIZONTAL */
    #empresas-logos-wrap { margin-top: .25rem; }
    
    .empresas-logos-scroll{
      display:flex;
      gap: .75rem;
      overflow-x:auto;
      padding: .75rem;
      border: 1px solid #e5e7eb;
      border-radius: 1.25rem;
      background:#fff;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
    
    .empresas-logos-scroll::-webkit-scrollbar{ height: 10px; }
    .empresas-logos-scroll::-webkit-scrollbar-thumb{
      background: rgba(17,24,39,.15);
      border-radius: 999px;
    }
    .empresas-logos-scroll::-webkit-scrollbar-track{
      background: rgba(17,24,39,.06);
      border-radius: 999px;
    }
    
    .empresa-logo-item{
      flex: 0 0 auto;
      width: 78px;
      height: 78px;
      border-radius: 18px;
      background: #f3f4f6;
      border: 1px solid rgba(0,0,0,.06);
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
      scroll-snap-align: start;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    
    .empresa-logo-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(15,23,42,.10);
      border-color: rgba(255, 107, 53, .45);
    }
    
    .empresa-logo-item img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      display:block;
    }


    /* FOOTER */
    footer { border-top: 1px solid #e5e7eb; background: #f9fafb; }

    /* UTILIDADES */
    .bg-soft { background: var(--color-bg-soft); }
    .text-primary-custom { color: var(--color-primary); }
    .link-whatsapp { color: #16a34a; text-decoration: none; }
    .link-whatsapp:hover { color: #15803d; }

    .badge-sin-iva{
      background: rgba(248, 250, 252, 0.08);
      color: #111827;
      border: 1px solid rgba(17, 24, 39, 0.14);
      font-size: 0.7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border-radius: 999px;
      padding: 0.22rem 0.55rem;
    }

    /* MODAL: resumen descuento */
    .resumen-row { display:flex; justify-content:space-between; }
    .promo-chip {
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.25rem .6rem;
      border-radius:999px;
      font-weight:700;
      font-size:.75rem;
      background: rgba(34,197,94,.14);
      color:#166534;
      border:1px solid rgba(34,197,94,.35);
    }
    .promo-chip i{ font-size:.95rem; }
    .promo-help { font-size:.8rem; color:#6b7280; }

    @media (max-width: 767.98px) {
      .hero { text-align: center; }
      .hero-cta-group { justify-content: center; }
      .mockup-card { margin-top: 2.5rem; }
      .billing-toggle { margin-top: 0.5rem; }
    }

    /* EFECTO REYES MAGOS – CAÍDA SUELTA (SIN ROTAR) */
.reyes-star {
  position: fixed;
  top: -10vh;
  color: #facc15;
  text-shadow: 0 0 10px rgba(250, 204, 21, 0.9);
  font-size: 1.2rem;
  pointer-events: none;
  z-index: 9999;
  animation-name: star-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* ⬇️ SOLO CAE, NO VOLTEA */
@keyframes star-fall {
  0% {
    transform: translateY(-10vh);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(110vh);
    opacity: 0;
  }
}


    /* Modal tweaks */
    .modal-header { border-bottom: 1px solid rgba(0,0,0,.06); }
    .modal-footer { border-top: 1px solid rgba(0,0,0,.06); }
    .mmh-muted { color:#6b7280; }

    /* chip rojo de cupón no válido */
    .promo-bad {
      display:inline-flex; align-items:center; gap:.35rem;
      padding:.25rem .6rem; border-radius:999px;
      font-weight:800; font-size:.78rem;
      background: rgba(220,38,38,.10);
      color:#b91c1c;
      border:1px solid rgba(220,38,38,.30);
    }
    /* ✅ Bouton fixe "empresas cerca" (visible seulement si empresas visibles) */
#btn-empresas-cerca{
  position: fixed;
  right: 16px;     /* ⬅️ antes: left */
  bottom: 16px;
  z-index: 9998;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  border: 0;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

@media (max-width: 575.98px){
  #btn-empresas-cerca{
    right: 12px;   /* ⬅️ antes: left */
    bottom: 12px;
  }
}

.language-switcher{
  display:flex;
  align-items:center;
  gap:6px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  padding:4px;
  border-radius:999px;
}

.lang-btn{
  border:0;
  background:transparent;
  color:#fff;
  font-size:.78rem;
  font-weight:700;
  padding:.35rem .65rem;
  border-radius:999px;
  transition:.2s ease;
}

.lang-btn:hover{
  background:rgba(255,255,255,.12);
}

.lang-btn.active{
  background:#ff6b35;
  color:#fff;
  box-shadow:0 8px 18px rgba(255,107,53,.28);
}