        /* 1. CORE & VARIÁVEIS */
        :root { --accent: #ff0022; --accent-dark: #cc001b; --accent-glow: rgba(255, 0, 34, 0.4); --bg-dark: #050505; --panel: #0f0f0f; --border: #222; --text-muted: #888; }
        ::-webkit-scrollbar { width: 4px; height: 4px; } 
        ::-webkit-scrollbar-track { background: #0a0a0a; border-left: 1px solid #222; }
        ::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; transition: 0.3s; }
        ::-webkit-scrollbar-thumb:hover { background: var(--accent); }
        
        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        
        /* CORREÇÃO CRÍTICA 1: Usar dvh para altura real no mobile */
        body { font-family: 'Inter', sans-serif; background: var(--bg-dark); color: white; overflow: hidden; height: 100vh; height: 100dvh; }
        .font-tech { font-family: 'Chakra Petch', sans-serif; }

        /* HERO */
        .hero-stage { position: fixed; inset: 0; z-index: 0; width: 100%; height: 100%; background: #000; }
        .hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.0); transition: opacity 0.4s ease-in-out, transform 1s ease; opacity: 1; }
        .hero-image.switching { opacity: 0.5; transform: scale(1.05); filter: blur(5px); }
        .stage-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 80%, #000 100%); pointer-events: none; z-index: 1; }

        /* UI */
        .ui-layer { position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column; justify-content: space-between; pointer-events: none; }
        .ui-layer > * { pointer-events: auto; }

        .top-bar { padding: 30px 40px; display: flex; justify-content: space-between; align-items: center; }
        .btn-login-glass { color: white; padding: 8px 18px; font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; display: flex; align-items: center; gap: 8px; cursor: pointer; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.5); backdrop-filter: blur(10px); border-radius: 4px; }
        .btn-login-glass:hover, .btn-login-glass.logged-in { border-color: var(--accent); background: var(--accent); }

        .command-dock { width: 100%; padding: 0 40px 40px 40px; display: flex; flex-direction: column; gap: 20px; }
        
        /* NOVO: Abas flutuando acima do painel (Desktop) */
        .model-selector-wrapper { position: absolute; top: -60px; left: 0; padding-left: 40px; width: 100%; }
        
        .model-tabs { display: inline-flex; background: rgba(10,10,10,0.8); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.1); padding: 4px; border-radius: 6px; gap: 4px; pointer-events: auto; }
        .dock-tab { padding: 12px 30px; font-family: 'Chakra Petch', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #888; cursor: pointer; transition: all 0.3s ease; border-radius: 4px; }
        .dock-tab:hover { color: white; background: rgba(255,255,255,0.05); }
        .dock-tab.active { background: var(--accent); color: white; box-shadow: 0 0 20px var(--accent-glow); }

        /* NOVO: Main Panel preparado para receber as abas */
        .main-panel { padding: 30px 40px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 20px 50px rgba(0,0,0,0.8); position: relative; }
        
        /* Estilos de Texto e Botão (MANTIDOS) */
        .info-group h2 { font-family: 'Chakra Petch', sans-serif; color: var(--accent); font-weight: 700; letter-spacing: 3px; font-size: 12px; margin-bottom: 5px; text-transform: uppercase; }
        .info-group h1 { font-family: 'Chakra Petch', sans-serif; font-weight: 900; font-size: 4.0rem; line-height: 0.9; color: white; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 5px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        .plug-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; background: rgba(255, 255, 255, 0.1); padding: 4px 10px; border-radius: 4px; }
        .action-group { display: flex; align-items: center; gap: 30px; }
        .price-wrapper { text-align: right; }
        .price-label { font-size: 10px; color: #bcb6b6; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 2px; }
        .price-value { font-family: 'Chakra Petch', sans-serif; font-size: 2.5rem; font-weight: 700; line-height: 1; color: white; }
        .btn-main, .btn-action { background: white; color: black; border: none; padding: 18px 40px; font-family: 'Chakra Petch', sans-serif; font-weight: 900; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: all 0.3s; align-items: center; justify-content: center; gap: 12px; box-shadow: 0 10px 40px rgba(255,255,255,0.1); border-radius: 2px; }
        .btn-main:hover, .btn-action:hover { background: var(--accent); color: white; box-shadow: 0 0 40px var(--accent-glow); transform: translateY(-2px); }
        .btn-action { display: flex; margin-left: auto; margin-right: auto; width: 100%; max-width: 300px; }

        /* MODAIS */
        .hidden-view { display: none !important; }
        .fade-in { animation: fadeIn 0.5s ease-in-out; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        .input-error { border-color: #ff0022 !important; animation: shake 0.3s; }
        @keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }

        .modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.95); backdrop-filter: blur(20px); opacity: 0; pointer-events: none; transition: 0.4s ease; display: flex; align-items: center; justify-content: center; }
        .modal-overlay.open { opacity: 1; pointer-events: auto; }
        
        .modal-box-large { 
            width: 90vw; 
            max-width: 1100px; 
            height: 90dvh; 
            background: var(--panel); 
            border: 1px solid var(--border); 
            box-shadow: 0 50px 100px black; 
            transform: scale(0.95); 
            transition: 0.4s; 
            position: relative; 
            overflow: hidden; 
            display: flex; 
            flex-direction: column; 
            font-family: 'Inter', sans-serif; 
            border-radius: 8px;
        }
        .modal-overlay.open .modal-box-large { transform: scale(1); }

        .tech-badge-social {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Barra Vertical Separadora */
.tech-line {
    width: 1px;
    height: 25px;
    background: #333; /* Cinza escuro para ficar sutil */
    transition: background 0.3s ease;
}

.tech-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-handle {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    line-height: 1;
    transition: color 0.3s ease;
}

/* Efeito Hover (Interação) */
.tech-badge-social:hover .tech-line {
    background: var(--accent); /* Acende a barra em vermelho */
}

.tech-badge-social:hover .tech-handle {
    color: var(--accent); /* O @ fica vermelho */
    text-shadow: 0 0 10px var(--accent-glow); /* Brilho neon sutil */
}
        
        .close-btn { position: absolute; top: 20px; right: 20px; z-index: 50; cursor: pointer; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: white; transition: 0.3s; background: black; border-radius: 50%; }
        .close-btn:hover { background: var(--accent); border-color: var(--accent); }

        .showcase-layout, .split-modal-layout { display: flex; height: 100%; width: 100%; }
        .showcase-visual { width: 40%; background: #000; display: flex; flex-direction: column; justify-content: center; padding: 40px; position: relative; }
        .showcase-info { width: 60%; background: var(--panel); padding: 40px; overflow-y: auto; border-left: 1px solid var(--border); display: flex; flex-direction: column; }
        .main-gallery-img { width: 100%; height: 60%; object-fit: contain; margin-bottom: 20px; }
        .thumbs-row { display: flex; gap: 10px; justify-content: center; }
        .thumb-btn { width: 60px; height: 60px; border: 1px solid #333; cursor: pointer; opacity: 0.6; transition: 0.2s; }
        .thumb-btn.active, .thumb-btn:hover { border-color: var(--accent); opacity: 1; }
        .thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
        
        .info-section { margin-bottom: 30px; }
        .info-label { font-family: 'Chakra Petch', sans-serif; font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; border-bottom: 1px solid var(--border); padding-bottom: 5px; }
        .info-desc { font-size: 12px; color: #aaa; line-height: 1.6; white-space: pre-line; }

        .modal-sidebar { width: 380px; flex-shrink: 0; background: #080808; border-right: 1px solid var(--border); display: flex; flex-direction: column; padding: 30px; overflow-y: auto; }
        .modal-content-area { flex-grow: 1; padding: 40px; overflow-y: auto; background: var(--panel); display: flex; flex-direction: column; position: relative; }
        .preview-box { width: 100%; aspect-ratio: 16/9; background: #000; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 10px; }
        .preview-box img { width: 100%; height: 100%; object-fit: contain; }
        .mini-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 20px; }
        .mini-thumb { aspect-ratio: 1/1; border: 1px solid var(--border); cursor: pointer; opacity: 0.5; transition: 0.2s; }
        .mini-thumb.active, .mini-thumb:hover { opacity: 1; border-color: var(--accent); }
        .mini-thumb img { width: 100%; height: 100%; object-fit: cover; }

        .input-adl { background: #050505; border: 1px solid #333; color: #fff; width: 100%; padding: 16px; margin-bottom: 10px; font-size: 13px; outline: none; border-radius: 4px; transition: 0.3s; font-family: 'Chakra Petch', sans-serif; }
        input[type="text"].input-adl, input[type="email"].input-adl { text-transform: uppercase; }
        .input-adl:focus { border-color: var(--accent); background: #000; }
        select.input-adl { appearance: none; cursor: pointer; }

        .accordion-item { border: 1px solid var(--border); margin-bottom: 8px; background: #111; transition: 0.3s; }
        .accordion-header { padding: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .accordion-header span { font-family: 'Chakra Petch', sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; }
        .accordion-content { max-height: 0; overflow: hidden; transition: 0.3s ease; padding: 0 15px; font-size: 11px; color: #888; white-space: pre-line; line-height: 1.6; }
        .accordion-item.active { border-color: var(--accent); }
        .accordion-item.active .accordion-content { max-height: 300px; padding-bottom: 15px; }
        .accordion-icon { width: 10px; height: 10px; transition: 0.3s; fill: #666; }
        .accordion-item.active .accordion-icon { transform: rotate(180deg); fill: var(--accent); }

        .step-nav { display: flex; gap: 5px; margin-bottom: 30px; border-bottom: 1px solid var(--border); padding-bottom: 15px; }
        .step-dot { flex: 1; height: 3px; background: #222; transition: 0.3s; }
        .step-dot.active { background: var(--accent); }
        .step-dot.passed { background: #fff; }

        .version-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .version-btn { padding: 20px; background: #111; border: 1px solid #333; text-align: center; font-family: 'Chakra Petch', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; cursor: pointer; transition: 0.3s; color: #666; }
        .version-btn:hover { border-color: #666; color: #fff; }
        .version-btn.active { background: var(--accent); border-color: var(--accent); color: white; }
        
        .btn-type-selector { transition: all 0.3s; height: 55px; display: flex; align-items: center; justify-content: center; outline: none; font-family: 'Chakra Petch', sans-serif; font-weight: 700; width: 100%; border: 1px solid #333; }
        .btn-type-selector.active { border-color: var(--accent) !important; background: rgba(255, 0, 34, 0.1); color: #fff !important; }
        .btn-type-selector.inactive { border-color: #333 !important; background: transparent; color: #555 !important; }

        /* --- DASHBOARD LAYOUT --- */
        .dashboard-layout { 
            display: grid; 
            grid-template-columns: 320px 1fr; 
            width: 100%;
            overflow: hidden; 
            background: #050505; 
        }
        
        .dash-sidebar { 
            display: flex; 
            flex-direction: column; 
            height: 100%; 
            border-right: 1px solid #222; 
            background: #080808; 
            position: relative;
            overflow: hidden; 
        }
        
        .sidebar-header { 
            flex: 0 0 auto; 
            padding: 30px 25px; 
            border-bottom: 1px solid #222; 
        }
        
        .order-list { 
            flex: 1 1 auto; 
            overflow-y: auto; 
            min-height: 0; 
            padding: 10px; 
        }
        .order-list::-webkit-scrollbar { width: 4px; }
        .order-list::-webkit-scrollbar-track { background: #111; }
        .order-list::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
        
        .sidebar-footer { 
            flex: 0 0 auto; 
            padding: 20px 25px; 
            border-top: 1px solid #222; 
            background: #080808; 
            z-index: 10; 
        }
        
        .dash-content {
            height: 100%;
            overflow-y: auto;
            position: relative;
        }
        
        .order-item { padding: 20px; border-bottom: 1px solid #222; cursor: pointer; transition: 0.2s; border-left: 3px solid transparent; background: #111; margin-bottom: 5px; }
        .order-item:hover { background: #1a1a1a; }
        .order-item.active { background: #1a1a1a; border-left-color: var(--accent); }
        
        .btn-profile { 
            width: 100%; 
            display: flex; 
            align-items: center; 
            justify-content: center;
            background: #151515; 
            border: 1px solid #333; 
            color: white; 
            padding: 14px; 
            font-family: 'Chakra Petch', sans-serif; 
            font-size: 11px; 
            font-weight: 700; 
            letter-spacing: 1px; 
            text-transform: uppercase; 
            transition: 0.3s; 
            cursor: pointer;
            margin-bottom: 8px; 
        }
        .btn-profile:hover { border-color: var(--accent); background: #222; }
        .btn-profile i { font-size: 16px; margin-right: 8px; }
        
        .details-header { margin-bottom: 20px; padding: 20px; display: flex; justify-content: space-between; align-items: center; background: #050505; }
        .timeline-area { padding: 20px; max-width: 900px; margin: 0 auto; width: 100%; }
        .timeline-container { display: flex; justify-content: space-between; margin-bottom: 0px; position: relative; }
        .timeline-line { position: absolute; top: 7px; left: 0; width: 100%; height: 2px; background: #222; z-index: 0; }
        .timeline-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; width: 33%; }
        .dot { width: 16px; height: 16px; background: #222; border-radius: 50%; border: 2px solid #000; transition: 0.3s; }
        .step-label { font-family: 'Chakra Petch', sans-serif; font-size: 10px; text-transform: uppercase; margin-top: 10px; color: #444; font-weight: 700; letter-spacing: 1px; }
        .timeline-step.active .dot { background: var(--accent); box-shadow: 0 0 10px var(--accent); }
        .timeline-step.active .step-label { color: #fff; }
        .timeline-step.passed .dot { background: #fff; }

        .floating-wa { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; border-radius: 50%; background: #25D366; color: #000; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 20px rgba(0,0,0,0.5); transition: 0.3s; z-index: 9999; cursor: pointer; }
        .floating-wa:hover { transform: scale(1.1); background: #fff; }
        .login-layout, .pix-modal { 
    width: 100%; 
    max-width: 550px; 
    max-height: 90vh; /* Impede que a caixa seja maior que a tela do computador */
    overflow-y: auto; /* Cria uma rolagem interna caso o conteúdo não caiba */
    padding: 45px; 
    text-align: center; 
    background: var(--panel); 
    border: 1px solid var(--border); 
    position: relative; 
    border-radius: 8px; 
}
        .copy-box { background: #111; border: 1px dashed #444; padding: 15px; font-family: monospace; font-size: 11px; color: #aaa; margin-bottom: 20px; cursor: pointer; word-break: break-all; transition: 0.2s; }
        .copy-box:hover { border-color: var(--accent); color: white; background: #151515; }
        .modal-box { background: #0a0a0a; border: 1px solid #333; }

        /* Garante que o zoom fique acima de qualquer outro modal */
#modal-lightbox {
    z-index: 10000 !important;
}

/* Garante que os modais normais fiquem abaixo do zoom */
#modal-purchase, #modal-login, #modal-dashboard {
    z-index: 1000;
}

        #lightbox-img { 
    animation: zoomAnim 0.3s ease-out; 
}

@keyframes zoomAnim {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

        /* ========================================================= */
        /* RESPONSIVIDADE MOBILE (CORREÇÃO FINAL) */
        /* ========================================================= */
        @media (max-width: 1024px) {
    /* ========================================= */
    /* 1. LAYOUT PRINCIPAL (IMAGEM + PAINEL)     */
    /* ========================================= */
    
    .hero-stage {
        position: absolute !important; 
        height: 55dvh !important; /* Imagem ocupa 55% da tela */
        width: 100%;
        top: 0; left: 0;
        background: #000;
        z-index: 0;
    }

    .hero-image {
        height: 100%; width: 100%;
        object-fit: cover;
        object-position: center bottom !important; 
        transform: scale(1) !important;
    }

    .stage-overlay { 
        background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 50%, #050505 100%) !important; 
    }

    .main-panel { 
        position: relative !important; 
        bottom: auto !important; left: auto !important; 
        width: 100% !important; 
        z-index: 50 !important;
        display: flex; flex-direction: column; align-items: center; text-align: center;
        margin-top: 40dvh !important; /* Empurra o painel pra baixo da imagem */
        padding: 0px 0px calc(25px + env(safe-area-inset-bottom)) 0px !important;
        box-shadow: none !important;
    }

    .top-bar { position: absolute; top: 0; left: 0; width: 100%; z-index: 20; padding: 20px; }
    .top-bar img { width: 6rem; }

    /* ========================================= */
    /* 2. MENU DE PRODUTOS 2x2 E TEXTOS          */
    /* ========================================= */
    
    .model-selector-wrapper {
        position: static !important; display: flex !important; justify-content: center !important;
        top: auto; left: auto; padding: 0 !important; margin-bottom: 20px !important; 
        width: 100%; overflow: visible !important; 
    }
    
    .model-tabs { 
        display: grid !important; grid-template-columns: 1fr 1fr; gap: 10px !important; 
        width: 100%; background: transparent !important; 
    }
    
    .dock-tab { 
        padding: 12px 5px !important; font-size: 10px !important; text-align: center;
        background: #111 !important; border: 1px solid #333;
        display: flex; align-items: center; justify-content: center; border-radius: 4px;
    }
    
    .dock-tab.active { border-color: var(--accent) !important; background: var(--accent) !important; color: white !important; }

    .plug-badge { margin-bottom: 5px !important; }
    .info-group h2 { margin-bottom: 5px !important; letter-spacing: 2px !important; }
    .info-group h1 { font-size: 2.0rem !important; margin-bottom: 5px !important; line-height: 1 !important;} 
    
    .action-group { width: 100%; flex-direction: column; align-items: center; gap: 20px !important; margin-top: 5px !important; }
    .price-label { margin-bottom: 4px !important; font-size: 11px !important; text-align: center; }
    .price-value { font-size: 2.2rem !important; }
    .btn-main { padding: 18px 40px !important; font-size: 13px !important; width: 100%; max-width: 100%; margin: 0 auto; }

    /* ========================================= */
    /* 3. MODAIS (COMPRA, CONFIGURAÇÃO, LOGIN)   */
    /* ========================================= */
    
    .modal-box-large { 
        width: 100vw !important; height: 100dvh !important; max-width: none !important; 
        border-radius: 0 !important; top: 0 !important; left: 0 !important; 
        display: flex !important; flex-direction: column !important;
        overflow: hidden !important; 
    }

    .showcase-layout, .split-modal-layout { flex-direction: column; }
    .modal-sidebar, .showcase-visual { width: 100%; height: auto; padding: 20px; border-right: none; border-bottom: 1px solid var(--border); overflow-y: visible; }
    
    .modal-content-area, .showcase-info {
        flex: 1 !important; 
        width: 100% !important; /* Força ocupar a tela toda */
        max-width: 100% !important;
        border-left: none !important; /* Remove a linha do meio */
        overflow-y: auto !important; 
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        padding: 25px !important; 
        display: block !important;
        max-height: 70vh;
    }

    /* Scrollbar fina para o mobile */
    .modal-content-area::-webkit-scrollbar, .showcase-info::-webkit-scrollbar { width: 4px; }
    .modal-content-area::-webkit-scrollbar-thumb, .showcase-info::-webkit-scrollbar-thumb { background-color: var(--accent); border-radius: 10px; }
    .modal-content-area::-webkit-scrollbar-track, .showcase-info::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); }

    #step-2, #step-1, #step-3 { width: 100%; height: auto; }
    .preview-box { display: none; }
    .version-selector { grid-template-columns: 1fr; }
    .timeline-container { overflow-x: auto; justify-content: flex-start; gap: 40px; padding-bottom: 20px; }
    .timeline-step { min-width: 100px; }
    
    /* Previne zoom automático no iPhone ao digitar */
    .input-adl, input, select { font-size: 16px !important; padding: 15px; }

    /* ========================================= */
    /* 4. ÁREA DO CLIENTE (DASHBOARD)            */
    /* ========================================= */
    
    .dashboard-layout { display: flex !important; flex-direction: column !important; height: 100dvh !important; }
    .dash-sidebar { width: 100% !important; height: auto !important; max-height: 40vh !important; flex: 0 0 auto !important; border-right: none !important; border-bottom: 1px solid #222; }
    
    .sidebar-header { padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }
    .sidebar-header p { display: none; } 
    .sidebar-header h3 { font-size: 16px; margin: 0; }
    
    .order-list { padding: 10px 20px; display: flex; flex-direction: row; overflow-x: auto; overflow-y: hidden; gap: 10px; border-bottom: 1px solid #222; }
    .order-item { width: 220px; flex-shrink: 0; margin: 0; border: 1px solid #333; border-radius: 4px; }
    
    .sidebar-footer { 
        display: flex !important; flex-direction: row !important; gap: 10px;
        padding: 15px 20px !important; background: #080808; border-top: 1px solid #222; width: 100%;
    }
    .btn-profile { margin-bottom: 0 !important; padding: 10px !important; font-size: 9px !important; flex: 1; justify-content: center !important; }
    
    .dash-content { flex: 1 1 auto !important; width: 100% !important; padding-bottom: 100px !important; overflow-y: auto !important; -webkit-overflow-scrolling: touch; }

    .tech-badge-social { gap: 8px; }
    .tech-line { height: 15px; background: var(--accent); }
    .tech-handle { font-size: 9px; letter-spacing: 0.5px; color: #888; }
    
    .floating-wa { position: fixed !important; bottom: 85px !important; right: 20px !important; width: 45px; height: 45px; z-index: 10000; }

    /* ========================================= */
    /* MODAL PIX NO MOBILE                       */
    /* ========================================= */
    .login-layout, .pix-modal {
        padding: 30px 15px !important; /* Diminui muito a margem inútil lateral */
        max-width: 95% !important; /* Aproveita 95% da tela do celular */
        margin: 0 auto;
        border-radius: 6px !important;
    }

    #pix-recipient-name {
        word-break: break-word; /* Quebra o texto se o nome for gigante, evitando vazar da tela */
        display: block;
        margin-top: 4px;
    }
}