        /* --- VARIABLES --- */
        :root {
            --brand-indigo: #312e81;
            --brand-mint: #2dd4bf;
            --brand-mint-hover: #14b8a6;
            /* Turnio Menú: naranja cálido como acento diferenciador */
            --brand-menu: #f97316;
            --brand-menu-hover: #ea6a04;
            --brand-menu-light: #fff7ed;
            --brand-menu-border: #fed7aa;
            --brand-pink: #ec4899;
            --brand-blue: #3b82f6;
            --brand-green: #22c55e;
            --bg-light: #f8fafc;
            --surface: #ffffff;
            --text-main: #334155;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --font-main: 'Inter', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; scroll-padding-top: 90px; }
        body { font-family: var(--font-main); color: var(--text-main); background-color: var(--bg-light); line-height: 1.6; overflow-x: hidden; min-width: 320px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { width: 90%; max-width: 1200px; margin: 0 auto; }
        img { max-width: 100%; height: auto; }

        /* --- ANIMACIONES --- */
        .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
        .fade-in.visible { opacity: 1; transform: translateY(0); }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
        @keyframes pulse-menu { 0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); } 50% { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); } }

        /* --- SEPARADORES --- */
        .section-divider { position: relative; height: 3px; background: linear-gradient(90deg, transparent, var(--brand-mint), var(--brand-indigo), transparent); margin: 40px auto; width: 80%; max-width: 1000px; display: flex; align-items: center; justify-content: center; }
        .section-divider i { background: var(--bg-light); padding: 0 15px; color: var(--brand-indigo); font-size: 0.9rem; }
        .section-divider.menu-divider { background: linear-gradient(90deg, transparent, var(--brand-menu), #fb923c, transparent); }
        .section-divider.menu-divider i { color: var(--brand-menu); background: var(--bg-menu-section); }

        /* --- BOTONES --- */
        .btn { display: inline-block; padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer; text-align: center; transition: all 0.2s; border: none; }
        .btn-primary { background: var(--brand-mint); color: var(--brand-indigo); }
        .btn-primary:hover { background: var(--brand-mint-hover); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(45, 212, 191, 0.3); }
        .btn-outline { background: transparent; border: 2px solid var(--brand-indigo); color: var(--brand-indigo); }
        .btn-outline:hover { background: var(--brand-indigo); color: white; transform: translateY(-2px); }
        .btn-menu { background: var(--brand-menu); color: white; }
        .btn-menu:hover { background: var(--brand-menu-hover); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35); }
        .btn-outline-menu { background: transparent; border: 2px solid var(--brand-menu); color: var(--brand-menu); }
        .btn-outline-menu:hover { background: var(--brand-menu); color: white; transform: translateY(-2px); }

        /* ============================================
           HEADER + PRODUCT SWITCHER
        ============================================ */
        body > header { background: var(--surface); padding: 15px 0; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
        .nav-container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: nowrap; overflow: visible; }
        .logo img { height: 45px; width: auto; }

        /* Selector de producto */
        .product-switcher {
            display: flex; align-items: center; gap: 4px;
            background: var(--bg-light); border: 1px solid var(--border);
            border-radius: 10px; padding: 4px; flex-shrink: 0; min-width: 0;
        }
        .product-pill {
            padding: 6px 14px; border-radius: 7px; font-size: 0.8rem; font-weight: 700;
            cursor: pointer; transition: all 0.2s; white-space: nowrap; border: none; background: transparent;
            color: var(--text-muted);
        }
        .product-pill.active-turnos {
            background: var(--brand-indigo); color: white;
        }
        .product-pill.active-menu {
            background: var(--brand-menu); color: white;
            animation: pulse-menu 2.5s ease-in-out infinite;
        }
        .product-pill:not(.active-turnos):not(.active-menu):hover { background: white; color: var(--text-main); }

        .nav-links { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; min-width: 0; }
        .nav-item {
            font-size: 0.88rem; font-weight: 500; color: var(--text-muted);
            padding: 7px 12px; border-radius: 7px; transition: background 0.15s, color 0.15s;
            white-space: nowrap;
        }
        .nav-item:hover { background: var(--bg-light); color: var(--brand-indigo); }
        /* separador visual entre links — línea vertical sutil */
        .nav-sep {
            width: 1px; height: 18px; background: var(--border);
            flex-shrink: 0; align-self: center; margin: 0 4px;
        }

        /* Nav hover color adapta al producto activo */
        body.page-menu .nav-item:hover { color: var(--brand-menu); }
        body.page-menu .nav-item:hover { background: var(--brand-menu-light); }

        /* nav-sep hidden on mobile already, but also hide nav-mobile-sep on desktop */
        .nav-mobile-sep { display: none; }
        @media (max-width: 900px) {
            .nav-mobile-sep { display: block; }
        }
        .menu-toggle { display: none; font-size: 1.5rem; color: var(--brand-indigo); cursor: pointer; }

        @media (max-width: 900px) {
            .menu-toggle { display: block; }
            .nav-links {
                position: absolute; top: 100%; left: 0; width: 100%;
                background: var(--surface); flex-direction: column;
                padding: 12px 0 20px; border-bottom: 1px solid var(--border);
                opacity: 0; visibility: hidden; transition: 0.3s; z-index: 999;
                gap: 2px;
            }
            .nav-links.active { opacity: 1; visibility: visible; }
            /* links normales en mobile */
            .nav-links .nav-item {
                width: 90%; text-align: left; margin: 0 auto;
                padding: 11px 16px; border-radius: 8px;
                font-size: 0.95rem; font-weight: 500;
                display: flex; align-items: center; gap: 8px;
            }
            /* separador móvil: línea horizontal en lugar de vertical */
            .nav-sep { display: none; }
            .nav-mobile-sep {
                width: 90%; height: 1px; background: var(--border);
                margin: 6px auto; display: block;
            }
            /* botón CTA en mobile */
            .nav-links .btn {
                width: 90%; text-align: center; margin: 6px auto 0; display: block;
            }
            .product-switcher { order: -1; }
        }

        /* ============================================
           PÁGINAS / VISTAS
        ============================================ */
        .page { display: none; }
        .page.active { display: block; }

        /* ============================================
           HERO — TURNOS
        ============================================ */
        .hero {
            padding: 100px 0;
            background-color: #eef2ff;
            background-image: radial-gradient(var(--border) 1px, transparent 1px);
            background-size: 30px 30px;
        }
        .hero-content { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
        .hero-text { flex: 1 1 300px; min-width: 0; }

        .badge-new {
            display: inline-flex; align-items: center; gap: 6px; background: white;
            padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 700;
            color: var(--brand-indigo); border: 1px solid var(--border); margin-bottom: 20px;
            animation: float 3s ease-in-out infinite; box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        .badge-new span { color: var(--brand-mint-hover); }

        .hero-text h1 { font-size: 3.5rem; font-weight: 800; color: var(--brand-indigo); line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
        .hero-text p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 35px; }

        .demo-vip-box { background: var(--surface); padding: 25px; border-radius: 12px; border: 1px solid var(--brand-mint); box-shadow: 0 10px 25px rgba(45, 212, 191, 0.15); margin-top: 10px; margin-bottom: 30px; position: relative; overflow: hidden; }
        .demo-vip-box::before { content: 'VIP'; position: absolute; top: 15px; right: -25px; background: var(--brand-indigo); color: white; font-size: 0.7rem; font-weight: 800; padding: 5px 30px; transform: rotate(45deg); letter-spacing: 1px; }
        .demo-vip-box h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--brand-indigo); display: flex; align-items: center; gap: 8px; }
        .demo-vip-box p.demo-desc { font-size: 0.95rem; margin-bottom: 15px; color: var(--text-muted); }
        .demo-credential { background: var(--bg-light); padding: 10px 20px; border-radius: 8px; margin-bottom: 15px; font-weight: 600; color: var(--brand-indigo); border: 2px dashed #cbd5e1; display: inline-block; font-size: 1.1rem; }
        .demo-credential span { color: var(--brand-mint-hover); font-weight: 800; }

        .hero-image { flex: 1 1 280px; position: relative; min-width: 0; }
        .whatsapp-mockup { background: #e5ddd5; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.12); border: 8px solid #111; max-width: 420px; width: 100%; margin: 0 auto; }
        .wa-status-bar { background: #075e54; color: white; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; }
        .wa-header { background: #075e54; padding: 10px 15px; display: flex; align-items: center; gap: 10px; color: white; border-bottom: 1px solid rgba(0,0,0,0.1); }
        .wa-avatar { width: 35px; height: 35px; background: #ccc; border-radius: 50%; }
        .wa-body { padding: 20px; height: 350px; display: flex; flex-direction: column; gap: 15px; background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png'); background-size: cover; }
        .chat-bubble { padding: 12px 16px; border-radius: 8px; max-width: 80%; font-size: 0.9rem; }
        .chat-bot { background: var(--surface); color: var(--text-main); align-self: flex-start; border-bottom-left-radius: 0; }
        .chat-user { background: #dcf8c6; color: var(--text-main); align-self: flex-end; border-bottom-right-radius: 0; }

        /* --- CARTAS DE RUBROS --- */
        .audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 30px; margin-top: 40px; }
        .audience-card { background: white; border-radius: 20px; padding: 40px 30px; position: relative; border: 1px solid var(--border); transition: 0.3s; }
        .audience-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
        .card-badge { position: absolute; top: 20px; right: 20px; font-size: 0.7rem; font-weight: 800; padding: 4px 10px; border-radius: 10px; text-transform: uppercase; }
        .audience-icon { font-size: 3rem; margin-bottom: 20px; }
        .audience-card h3 { font-size: 1.5rem; color: var(--brand-indigo); margin-bottom: 15px; }
        .audience-list { text-align: left; margin-top: 20px; }
        .audience-list li { font-size: 0.9rem; margin-bottom: 8px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
        .audience-list i { font-size: 0.7rem; }
        .card-health { border-top: 5px solid var(--brand-blue); }
        .card-health .audience-icon, .card-health i { color: var(--brand-blue); }
        .card-health .card-badge { background: #dbeafe; color: var(--brand-blue); }
        .card-beauty { border-top: 5px solid var(--brand-pink); }
        .card-beauty .audience-icon, .card-beauty i { color: var(--brand-pink); }
        .card-beauty .card-badge { background: #fce7f3; color: var(--brand-pink); }
        .card-sports { border-top: 5px solid var(--brand-green); }
        .card-sports .audience-icon, .card-sports i { color: var(--brand-green); }
        .card-sports .card-badge { background: #dcfce7; color: var(--brand-green); }

        /* --- FEATURES --- */
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 30px; }
        .feature-card { background: white; padding: 30px; border-radius: 16px; border: 1px solid var(--border); transition: border-color 0.2s; }
        .feature-card:hover { border-color: var(--brand-mint); }
        .feature-icon { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; }
        .feature-card h3 { color: var(--brand-indigo); margin-bottom: 10px; font-size: 1.3rem; }
        .feature-card p { color: var(--text-muted); font-size: 0.95rem; }
        .f-color-1 { background: #ccfbf1; color: #0f766e; }
        .f-color-2 { background: #e0e7ff; color: #4338ca; }
        .f-color-3 { background: #f3e8ff; color: #7e22ce; }

        /* --- COMO FUNCIONA --- */
        .how-it-works { padding: 60px 0; background: var(--surface); }
        .steps-container { display: flex; flex-direction: column; gap: 20px; max-width: 800px; margin: 0 auto; }
        .step { display: flex; align-items: center; gap: 20px; background: var(--bg-light); padding: 30px; border-radius: 16px; border: 1px solid var(--border); transition: transform 0.3s ease; }
        .step:hover { transform: translateY(-5px); border-color: var(--brand-mint); }
        .step-number { font-size: 3rem; font-weight: 800; color: var(--brand-mint); line-height: 1; flex-shrink: 0; width: 60px; text-align: center; }
        .step-text h4 { color: var(--brand-indigo); font-size: 1.3rem; margin-bottom: 8px; }
        .step-text p { color: var(--text-muted); font-size: 1rem; }

        /* --- PRECIOS TURNOS --- */
        .pricing { padding: 60px 0; background: var(--surface); text-align: center; }
        .pricing-social-proof { display: flex; justify-content: center; gap: 30px; margin-bottom: 30px; font-weight: 700; color: var(--brand-indigo); font-size: 0.95rem; }
        .pricing-social-proof span { display: flex; align-items: center; gap: 6px; }
        .pricing-social-proof i { color: var(--brand-mint-hover); }
        .pricing-card { max-width: 550px; margin: 0 auto; background: var(--surface); border: 2px solid var(--brand-indigo); border-radius: 20px; padding: 50px 40px; text-align: center; position: relative; box-shadow: 0 20px 40px rgba(49, 46, 129, 0.08); }
        .pricing-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--brand-mint); color: var(--brand-indigo); font-weight: 800; padding: 8px 20px; border-radius: 20px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
        .price-setup { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 15px; }
        .price-monthly { font-size: 3.5rem; font-weight: 800; color: var(--brand-indigo); margin-bottom: 25px; line-height: 1; }
        .price-monthly span { font-size: 1.2rem; color: var(--text-muted); font-weight: 500; }
        .pricing-features { text-align: left; margin: 30px 0 40px 0; }
        .pricing-features li { margin-bottom: 15px; display: flex; align-items: center; gap: 12px; color: var(--text-main); font-weight: 500; font-size: 1.05rem; }
        .pricing-features i { color: var(--brand-mint-hover); font-size: 1.2rem; }
        .cancel-anytime { margin-top: 20px; font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

        /* ============================================
           PÁGINA TURNIO MENÚ
        ============================================ */
        :root { --bg-menu-section: #fffbf5; }

        /* Hero Menú */
        .hero-menu {
            padding: 100px 0;
            background-color: #fff7ed;
            background-image: radial-gradient(#fed7aa 1px, transparent 1px);
            background-size: 30px 30px;
        }
        .badge-menu {
            display: inline-flex; align-items: center; gap: 6px; background: white;
            padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 700;
            color: var(--brand-menu); border: 1px solid var(--brand-menu-border); margin-bottom: 20px;
            animation: float 3s ease-in-out infinite; box-shadow: 0 4px 6px rgba(249,115,22,0.1);
        }
        .badge-menu i { color: var(--brand-menu); }
        .hero-menu .hero-text h1 { color: #9a3412; }
        .hero-menu .hero-text p { color: #7c3d12; opacity: 0.8; }

        /* Mockup menú */
        .menu-mockup-wrapper { position: relative; max-width: 340px; width: 100%; margin: 0 auto; }
        .phone-frame {
            background: #1a1a1a; border-radius: 40px; padding: 12px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.25);
        }
        .phone-screen { background: #f9fafb; border-radius: 30px; overflow: hidden; }
        .menu-app-header {
            background: var(--brand-menu); padding: 16px 20px; color: white;
            display: flex; align-items: center; justify-content: space-between;
        }
        .menu-app-header .shop-name { font-weight: 800; font-size: 1rem; }
        .menu-app-header .shop-sub { font-size: 0.75rem; opacity: 0.85; }
        .menu-categories { display: flex; gap: 8px; padding: 12px 16px; overflow-x: auto; background: white; border-bottom: 1px solid #f1f5f9; }
        .cat-chip { padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; background: #f1f5f9; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }
        .cat-chip.active { background: var(--brand-menu); color: white; }
        .menu-items { padding: 12px 16px; display: flex; flex-direction: column; gap: 10px; }
        .menu-item-card {
            background: white; border-radius: 12px; padding: 12px; display: flex; gap: 10px;
            border: 1px solid #f1f5f9; box-shadow: 0 2px 4px rgba(0,0,0,0.04);
        }
        .menu-item-img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; flex-shrink: 0; font-size: 1.6rem; display: flex; align-items: center; justify-content: center; background: #fff7ed; }
        .menu-item-info { flex: 1; }
        .menu-item-info .item-name { font-size: 0.85rem; font-weight: 700; color: var(--text-main); margin-bottom: 2px; }
        .menu-item-info .item-desc { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 4px; }
        .menu-item-info .item-price { font-size: 0.85rem; font-weight: 800; color: var(--brand-menu); }
        .item-add-btn { width: 26px; height: 26px; background: var(--brand-menu); color: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; flex-shrink: 0; align-self: center; }
        .menu-cart-bar { background: var(--brand-indigo); color: white; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; font-weight: 700; font-size: 0.85rem; }
        .cart-badge { background: var(--brand-menu); color: white; padding: 3px 8px; border-radius: 10px; font-size: 0.75rem; }

        /* Features Menú */
        .feature-card.menu-card:hover { border-color: var(--brand-menu); }
        .fm-color-1 { background: #fff7ed; color: #c2410c; }
        .fm-color-2 { background: #fef3c7; color: #b45309; }
        .fm-color-3 { background: #fce7f3; color: #be185d; }

        /* Para quien - Menú */
        .card-food { border-top: 5px solid var(--brand-menu); }
        .card-food .audience-icon, .card-food i { color: var(--brand-menu); }
        .card-food .card-badge { background: #fff7ed; color: var(--brand-menu); }
        .card-market { border-top: 5px solid #84cc16; }
        .card-market .audience-icon, .card-market i { color: #65a30d; }
        .card-market .card-badge { background: #f7fee7; color: #65a30d; }
        .card-resto { border-top: 5px solid #8b5cf6; }
        .card-resto .audience-icon, .card-resto i { color: #7c3aed; }
        .card-resto .card-badge { background: #f5f3ff; color: #7c3aed; }

        /* Pasos Menú */
        .step.menu-step:hover { border-color: var(--brand-menu); }
        .step.menu-step .step-number { color: var(--brand-menu); }

        /* Precio Menú */
        .pricing-card.menu-pricing { border-color: var(--brand-menu); box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1); }
        .pricing-badge.menu-badge { background: var(--brand-menu); color: white; }
        .price-monthly.menu-price { color: #9a3412; }
        .pricing-features.menu-features li i { color: var(--brand-menu); }
        .pricing-card.menu-pricing .btn { background: var(--brand-menu); color: white; }
        .pricing-card.menu-pricing .btn:hover { background: var(--brand-menu-hover); }
        .pricing-no-setup { font-size: 1rem; color: var(--brand-green); font-weight: 700; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; gap: 6px; }

        /* FAQ SEO */
        .faq-section { padding: 60px 0; background: var(--surface); }
        .faq-grid { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 40px auto 0; }
        .faq-item { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 24px 28px; border-left: 4px solid var(--brand-menu); }
        .faq-item h4 { color: var(--brand-indigo); font-size: 1.05rem; margin-bottom: 8px; }
        .faq-item p { color: var(--text-muted); font-size: 0.95rem; }

        /* ============================================
           FOOTER
        ============================================ */
        footer { background: var(--brand-indigo); color: white; padding: 80px 0 40px; }
        .footer-cta { background: rgba(255,255,255,0.05); padding: 40px; border-radius: 20px; margin-bottom: 60px; text-align: center; }
        .footer-cta h4 { font-size: 1.8rem; margin-bottom: 20px; }
        .footer-suite { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 500px; margin: 0 auto 40px; }
        .suite-card { background: rgba(255,255,255,0.07); border-radius: 14px; padding: 20px; text-align: center; border: 1px solid rgba(255,255,255,0.1); transition: 0.2s; cursor: pointer; }
        .suite-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
        .suite-card .suite-icon { font-size: 1.8rem; margin-bottom: 8px; }
        .suite-card .suite-name { font-weight: 800; font-size: 0.95rem; }
        .suite-card .suite-desc { font-size: 0.78rem; opacity: 0.65; margin-top: 3px; }
        .suite-card.suite-menu .suite-icon { color: var(--brand-menu); }
        .suite-card.suite-turnos .suite-icon { color: var(--brand-mint); }
        .footer-links { display: flex; justify-content: center; gap: 20px; margin: 20px 0; }
        .footer-links a { width: 45px; height: 45px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; transition: 0.3s; }
        .footer-links a:hover { background: var(--brand-mint); color: var(--brand-indigo); }

        /* WhatsApp flotante */
        .whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: #25D366; color: #FFF; border-radius: 50px; text-align: center; font-size: 35px; box-shadow: 0 4px 10px rgba(0,0,0,0.15); z-index: 1000; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease, background-color 0.3s ease; }
        .whatsapp-float:hover { transform: translateY(-5px) scale(1.05); background-color: #1da851; color: #FFF; }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 768px) {
            .hero-text h1 { font-size: 2.2rem; }
            .hero-content { flex-direction: column; text-align: center; }
            .demo-vip-box { text-align: center; }
            .demo-vip-box .btn { width: 100%; justify-content: center; }
            .pricing-social-proof { flex-direction: column; gap: 10px; }
            .pricing-card { padding: 40px 20px; }
            .step { flex-direction: column; text-align: center; gap: 10px; }
            .footer-suite { grid-template-columns: 1fr 1fr; max-width: 380px; }
        }

        /* --- PANTALLAS MUY ANCHAS (>1400px) --- */
        @media (min-width: 1400px) {
            .hero-text h1 { font-size: 3.2rem; }
            .hero-image { max-width: 480px; }
        }

        /* --- MOBILE EXTRA (max 480px) --- */
        @media (max-width: 480px) {
            .hero-text h1 { font-size: 1.9rem; }
            .hero-menu .hero-text h1 { font-size: 1.9rem; }
            .product-pill { padding: 5px 10px; font-size: 0.75rem; }
            .product-pill span { display: none; } /* oculta badge "NUEVO" en muy pequeño */
            .pricing-card { padding: 36px 16px; }
            .price-monthly { font-size: 2.8rem; }
            .demo-vip-box { padding: 18px; }
            .step { padding: 20px; }
            .feature-card { padding: 22px; }
        }

        /* --- TABLET (768px - 1024px) --- */
        @media (min-width: 769px) and (max-width: 1024px) {
            .hero-content { gap: 30px; }
            .hero-text h1 { font-size: 2.6rem; }
            .whatsapp-mockup { max-width: 320px; }
            .menu-mockup-wrapper { max-width: 280px; }
        }

        /* --- NAV overflow fix para pantallas medias --- */
        @media (max-width: 1100px) and (min-width: 901px) {
            .nav-links { gap: 2px; }
            .nav-item { font-size: 0.82rem; padding: 6px 9px; }
        }

        /* ============================================
           HUB SUITE TURNIO (home turnio.ar/)
        ============================================ */
        .hub-hero {
            padding: 90px 0 60px;
            background-color: #eef2ff;
            background-image: radial-gradient(var(--border) 1px, transparent 1px);
            background-size: 30px 30px;
            text-align: center;
        }
        .hub-hero .badge-new { margin-bottom: 24px; }
        .hub-hero h1 {
            font-size: 3.2rem; font-weight: 800; color: var(--brand-indigo);
            line-height: 1.1; letter-spacing: -1px; margin-bottom: 18px;
            max-width: 820px; margin-left: auto; margin-right: auto;
        }
        .hub-hero p.hub-sub {
            font-size: 1.25rem; color: var(--text-muted); max-width: 640px;
            margin: 0 auto 10px; line-height: 1.5;
        }
        .hub-cards {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
            gap: 28px; max-width: 920px; margin: 50px auto 0;
        }
        .hub-card {
            position: relative; background: var(--surface); border-radius: 22px;
            padding: 44px 36px 36px; text-align: left; border: 1px solid var(--border);
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
            display: flex; flex-direction: column;
        }
        .hub-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.08); }
        .hub-card .hub-card-icon {
            width: 64px; height: 64px; border-radius: 16px; display: flex;
            align-items: center; justify-content: center; font-size: 1.9rem; margin-bottom: 22px;
        }
        .hub-card h2 { font-size: 1.6rem; color: var(--brand-indigo); margin-bottom: 10px; }
        .hub-card .hub-card-tagline { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 22px; flex-grow: 1; }
        .hub-card ul { margin-bottom: 26px; }
        .hub-card ul li { font-size: 0.9rem; color: var(--text-main); display: flex; align-items: center; gap: 9px; margin-bottom: 9px; }
        .hub-card .btn { width: 100%; justify-content: center; display: flex; align-items: center; gap: 8px; }
        .hub-card .hub-card-badge {
            position: absolute; top: 22px; right: 22px; font-size: 0.7rem; font-weight: 800;
            padding: 4px 11px; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.5px;
        }
        /* Variante Turnos */
        .hub-card.card-turnos { border-top: 5px solid var(--brand-mint); }
        .hub-card.card-turnos:hover { border-color: var(--brand-mint); }
        .hub-card.card-turnos .hub-card-icon { background: #ccfbf1; color: #0f766e; }
        .hub-card.card-turnos ul li i { color: var(--brand-mint-hover); }
        .hub-card.card-turnos .hub-card-badge { background: #ccfbf1; color: #0f766e; }
        /* Variante Menú */
        .hub-card.card-menu { border-top: 5px solid var(--brand-menu); }
        .hub-card.card-menu:hover { border-color: var(--brand-menu); }
        .hub-card.card-menu .hub-card-icon { background: var(--brand-menu-light); color: var(--brand-menu); }
        .hub-card.card-menu ul li i { color: var(--brand-menu); }
        .hub-card.card-menu .hub-card-badge { background: var(--brand-menu-light); color: var(--brand-menu); }

        /* Tira de confianza del hub */
        .hub-trust {
            display: flex; justify-content: center; flex-wrap: wrap; gap: 28px;
            margin-top: 44px; font-weight: 700; color: var(--brand-indigo); font-size: 0.95rem;
        }
        .hub-trust span { display: flex; align-items: center; gap: 7px; }
        .hub-trust i { color: var(--brand-mint-hover); }

        /* product-switcher como enlaces */
        a.product-pill { display: inline-flex; align-items: center; text-decoration: none; }

        @media (max-width: 768px) {
            .hub-hero h1 { font-size: 2.2rem; }
            .hub-hero { padding: 60px 0 40px; }
        }
        @media (max-width: 480px) {
            .hub-hero h1 { font-size: 1.9rem; }
        }

        /* ============================================
           BLOG — index y artículos
        ============================================ */
        .blog-hero {
            padding: 80px 0 40px; background-color: #eef2ff;
            background-image: radial-gradient(var(--border) 1px, transparent 1px);
            background-size: 30px 30px; text-align: center;
        }
        .blog-hero h1 { font-size: 2.8rem; font-weight: 800; color: var(--brand-indigo); letter-spacing: -1px; margin-bottom: 14px; }
        .blog-hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

        .blog-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
            gap: 28px; max-width: 1100px; margin: 50px auto; padding: 0 5%;
        }
        .blog-card {
            background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
            padding: 30px; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
            display: flex; flex-direction: column;
        }
        .blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.07); }
        .blog-card .blog-tag {
            display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
            font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
            padding: 4px 11px; border-radius: 20px; margin-bottom: 16px;
        }
        .blog-tag.tag-turnos { background: #ccfbf1; color: #0f766e; }
        .blog-tag.tag-menu { background: var(--brand-menu-light); color: var(--brand-menu); }
        .blog-card h2 { font-size: 1.3rem; color: var(--brand-indigo); line-height: 1.3; margin-bottom: 12px; }
        .blog-card p { font-size: 0.95rem; color: var(--text-muted); flex-grow: 1; margin-bottom: 18px; }
        .blog-card .blog-read { font-weight: 700; font-size: 0.9rem; color: var(--brand-mint-hover); display: inline-flex; align-items: center; gap: 6px; }
        .blog-card.card-menu-accent { border-top: 4px solid var(--brand-menu); }
        .blog-card.card-menu-accent .blog-read { color: var(--brand-menu); }
        .blog-card.card-turnos-accent { border-top: 4px solid var(--brand-mint); }

        /* Artículo individual */
        .article-wrap { max-width: 760px; margin: 0 auto; padding: 50px 5% 20px; }
        .breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
        .breadcrumb a { color: var(--brand-mint-hover); font-weight: 600; }
        .breadcrumb a:hover { text-decoration: underline; }
        .article-tag {
            display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 800;
            text-transform: uppercase; letter-spacing: 0.5px; padding: 4px 11px; border-radius: 20px; margin-bottom: 18px;
        }
        .article-header h1 { font-size: 2.4rem; font-weight: 800; color: var(--brand-indigo); line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; }
        .article-meta { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 36px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
        .article-meta span { display: inline-flex; align-items: center; gap: 6px; }
        .article-body { font-size: 1.08rem; line-height: 1.75; color: var(--text-main); }
        .article-body h2 { font-size: 1.5rem; color: var(--brand-indigo); margin: 40px 0 14px; line-height: 1.25; }
        .article-body h3 { font-size: 1.2rem; color: var(--brand-indigo); margin: 28px 0 10px; }
        .article-body p { margin-bottom: 18px; }
        .article-body ul { margin: 0 0 18px 0; padding-left: 4px; }
        .article-body ul li { display: flex; gap: 10px; margin-bottom: 10px; align-items: flex-start; }
        .article-body ul li i { color: var(--brand-mint-hover); margin-top: 6px; flex-shrink: 0; font-size: 0.8rem; }
        .article-body a { color: var(--brand-mint-hover); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
        .article-body a:hover { color: var(--brand-indigo); }
        .article-body strong { color: var(--brand-indigo); }
        .article-cta {
            background: var(--surface); border: 2px solid var(--brand-mint); border-radius: 18px;
            padding: 32px; margin: 44px 0 10px; text-align: center;
            box-shadow: 0 10px 25px rgba(45, 212, 191, 0.12);
        }
        .article-cta.cta-menu { border-color: var(--brand-menu); box-shadow: 0 10px 25px rgba(249,115,22,0.12); }
        .article-cta h3 { font-size: 1.4rem; color: var(--brand-indigo); margin-bottom: 10px; }
        .article-cta p { color: var(--text-muted); margin-bottom: 22px; font-size: 1rem; }
        .article-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; font-weight: 600; color: var(--brand-mint-hover); }
        .article-back:hover { text-decoration: underline; }

        @media (max-width: 768px) {
            .blog-hero h1 { font-size: 2rem; }
            .article-header h1 { font-size: 1.8rem; }
            .article-body { font-size: 1.02rem; }
        }

        /* CTA del artículo: texto blanco, sin subrayado (no heredar estilo de enlace de prosa) */
        .article-cta .btn { color: #ffffff; text-decoration: none; }

        /* WhatsApp flotante: dos contactos de ventas (Lucas y Gaby) */
        .whatsapp-float-group {
            position: fixed; bottom: 30px; right: 30px; z-index: 1000;
            display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
        }
        .whatsapp-float-btn {
            background-color: #25D366; color: #ffffff; border-radius: 50px;
            padding: 12px 20px; font-weight: 700; font-size: 0.95rem; white-space: nowrap;
            box-shadow: 0 4px 14px rgba(0,0,0,0.18); display: inline-flex; align-items: center; gap: 9px;
            transition: transform 0.25s ease, background-color 0.25s ease;
        }
        .whatsapp-float-btn i { font-size: 1.25rem; }
        .whatsapp-float-btn:hover { transform: translateY(-3px) scale(1.03); background-color: #1da851; color: #ffffff; }
        @media (max-width: 480px) {
            .whatsapp-float-group { bottom: 16px; right: 14px; gap: 9px; }
            .whatsapp-float-btn { padding: 10px 15px; font-size: 0.85rem; }
            .whatsapp-float-btn i { font-size: 1.1rem; }
        }

        /* ============================================
           AJUSTES MÓVIL + WhatsApp FAB
        ============================================ */

        /* WhatsApp: botón flotante expandible (Lucas + Gaby) */
        .wa-fab { position: fixed; bottom: 28px; right: 22px; z-index: 1100; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
        .wa-toggle { display: none; }
        .wa-options {
            display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
            opacity: 0; transform: translateY(14px) scale(0.96); pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }
        .wa-toggle:checked ~ .wa-options { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
        .whatsapp-float-btn {
            background-color: #25D366; color: #ffffff; border-radius: 50px;
            padding: 11px 18px; font-weight: 700; font-size: 0.92rem; white-space: nowrap;
            box-shadow: 0 4px 14px rgba(0,0,0,0.18); display: inline-flex; align-items: center; gap: 9px;
            transition: transform 0.2s ease, background-color 0.2s ease;
        }
        .whatsapp-float-btn i { font-size: 1.15rem; }
        .whatsapp-float-btn:hover { transform: translateY(-2px); background-color: #1da851; color: #ffffff; }
        .wa-fab-main {
            width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #ffffff;
            display: flex; align-items: center; justify-content: center; font-size: 31px; cursor: pointer;
            box-shadow: 0 6px 18px rgba(0,0,0,0.22); transition: transform 0.3s ease, background-color 0.25s ease;
            align-self: flex-end;
        }
        .wa-fab-main:hover { background: #1da851; }
        .wa-toggle:checked ~ .wa-fab-main { transform: rotate(135deg); background: #1da851; }
        @media (max-width: 480px) {
            .wa-fab { bottom: 18px; right: 16px; gap: 10px; }
            .wa-fab-main { width: 54px; height: 54px; font-size: 27px; }
            .whatsapp-float-btn { padding: 10px 15px; font-size: 0.85rem; }
        }

        /* Badge "Suite Turnio · Automatización…" prolijo en móvil */
        @media (max-width: 600px) {
            .hub-hero .badge-new {
                display: inline-block; text-align: center; line-height: 1.45;
                font-size: 0.76rem; padding: 9px 16px; border-radius: 16px; max-width: 92%;
                white-space: normal;
            }
            .hub-hero .badge-new span { display: inline; }
        }

        /* Tarjetas del FOOTER (Suite Turnio): en horizontal en móvil */
        @media (max-width: 600px) {
            .footer-suite { gap: 10px; }
            .suite-card { padding: 16px 10px; }
            .suite-card .suite-icon { font-size: 1.5rem; }
            .suite-card .suite-name { font-size: 0.88rem; }
            .suite-card .suite-desc { font-size: 0.72rem; }
        }
