/* =========================================
   1. PALETA DE CORES (TEMA: BOUTIQUE DELICATE)
   ========================================= */
:root {
    /* --- PERSONALIDADE DA MARCA (CONFIGURÁVEL) --- */
    
    /* Primária: Um "Rose Gold" ou "Terra Suave". Elegante e neutro. */
    --cor-primaria: #c08497; 
    
    /* Secundária: Um tom de areia/nude para fundos de destaque */
    --cor-secundaria: #f9f5f0; 
    
    /* Acento: Verde Sálvia para coisas positivas (vendas, sucesso) */
    --cor-acento: #8ab0ab; 
    
    /* Menu Lateral: Agora é CLARO para dar leveza */
    --menu-bg: #ffffff; 
    --menu-texto: #666666;
    
    /* --- SISTEMA VISUAL --- */
    --bg-fundo: #fdfbf7;      /* Um off-white levemente quente (creme) */
    --bg-card: #ffffff;       
    --texto-titulo: #4a4a4a;  /* Cinza escuro suave, não preto total */
    --texto-corpo: #7a7a7a;   
    
    /* Bordas e Sombras Delicadas */
    --borda-suave: 1px solid #efe6dd;
    --sombra-card: 0 10px 30px -10px rgba(192, 132, 151, 0.15); /* Sombra rosada sutil */
    --sombra-hover: 0 15px 35px -5px rgba(192, 132, 151, 0.25);
    
    /* Design dos Botões (O que você pediu) */
    --btn-radius: 30px; /* Botões bem redondos (Pill Shape) */
}

/* RESET E TIPOGRAFIA */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-fundo);
    color: var(--texto-corpo);
    font-size: 14px;
    line-height: 1.6; /* Leitura mais arejada */
}

h1, h2, h3, h4 {
    color: var(--texto-titulo);
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* =========================================
   2. LOGIN (COM GRADIENTE ETEREO)
   ========================================= */
.login-container {
    height: 100vh;
    display: flex;
    /* Gradiente suave e feminino */
    background: linear-gradient(135deg, #fdfbf7 0%, #fcecf0 100%);
    align-items: center;
    justify-content: center;
}

.login-brand {
    display: none; /* No design minimalista, focamos no box central */
}

.login-form-side {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px); /* Efeito vidro */
    border-radius: 20px;
    box-shadow: var(--sombra-hover);
    padding: 20px;
    width: 100%;
    max-width: 400px;
    border: 1px solid white;
}

.login-box {
    width: 100%;
    padding: 40px;
    text-align: center;
}

.login-logo {
    width: 120px;
    margin-bottom: 20px;
}

.input-group { margin-bottom: 20px; text-align: left; }
.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--texto-titulo);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: var(--btn-radius); /* Input redondo também */
    outline: none;
    transition: all 0.3s;
}

.input-group input:focus {
    background: white;
    border-color: var(--cor-primaria);
    box-shadow: 0 0 0 4px rgba(192, 132, 151, 0.1);
}

/* =========================================
   3. LAYOUT (MENU CLARO & LEVE)
   ========================================= */
#app-principal { display: flex; min-height: 100vh; }

.sidebar {
    width: 260px;
    background-color: var(--menu-bg);
    border-right: var(--borda-suave);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100%;
    z-index: 100;
    transition: 0.3s;
}

.sidebar-header {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(20%); /* Deixa o logo mais suave */
}

.sidebar-menu { flex: 1; padding: 20px; overflow-y: auto; }

/* Atualize esta classe no seu style.css */
.menu-item {
    display: flex;
    align-items: center; /* Garante alinhamento vertical perfeito */
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 8px;
    background: transparent;
    border: none;
    border-radius: var(--btn-radius);
    color: var(--menu-texto);
    text-align: left;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    gap: 12px; /* Espaço entre ícone e texto */
    font-size: 0.9rem;
}

/* Isso garante que o ícone tenha sempre o mesmo tamanho visual */
.menu-item i {
    min-width: 20px; 
    text-align: center;
}

.menu-item:hover {
    background-color: var(--cor-secundaria);
    color: var(--cor-primaria);
    padding-left: 25px; /* Pequeno movimento delicado */
}

.menu-item.active {
    background-color: var(--cor-primaria);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(192, 132, 151, 0.3);
}

.sidebar-divisor {
    border: 0; height: 1px; background: #f0f0f0; margin: 15px 20px;
}

.main-content {
    flex: 1;
    margin-left: 260px;
    padding: 40px;
    max-width: 1600px;
}

/* =========================================
   4. BOTÕES "BOUTIQUE" (O SEGREDO DO DESIGN)
   ========================================= */

/* Estilo Base */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px; /* Mais largo */
    border-radius: var(--btn-radius); /* Bem redondo */
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 8px;
}

.btn:active { transform: scale(0.95); }

/* Primário (Cor da Marca) */
.btn-primary, .btn-roxo {
    background-color: var(--cor-primaria);
    color: white;
    box-shadow: 0 4px 15px rgba(192, 132, 151, 0.3);
}
.btn-primary:hover, .btn-roxo:hover { 
    background-color: #a86b7d; /* Um tom um pouco mais escuro */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 132, 151, 0.4);
}

/* Secundário (Suave) */
.btn-secondary, .btn-rosa {
    background-color: white;
    border: 1px solid var(--cor-primaria);
    color: var(--cor-primaria);
}
.btn-secondary:hover, .btn-rosa:hover { 
    background-color: var(--cor-primaria);
    color: white;
}

/* Escuro (Neutro) */
.btn-escuro { 
    background-color: #555; 
    color: white; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.btn-escuro:hover { background-color: #333; }

/* Pequeno (Tabelas) */
.btn-pequeno {
    padding: 6px 14px;
    border-radius: 15px; /* Pill shape menor */
    font-size: 0.75rem;
    border: 1px solid #eee;
    background: white;
    color: var(--texto-corpo);
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
    text-transform: uppercase;
}
.btn-pequeno:hover { 
    border-color: var(--cor-primaria); 
    color: var(--cor-primaria); 
    background: var(--cor-secundaria);
}

/* =========================================
   5. CARDS & PAINÉIS (LEVEZA)
   ========================================= */
.card-formulario, .card-checkin, .card-avaliacao-refinado, .table-container {
    background: var(--bg-card);
    border-radius: 20px; /* Cantos bem arredondados */
    padding: 35px;
    box-shadow: var(--sombra-card);
    border: 1px solid white; /* Borda branca sutil */
    margin-bottom: 30px;
    animation: fadeIn 0.4s ease-out;
}

/* Dashboard Cards (Minimalistas) */
.grid-dashboard-compacta, .grid-dashboard-financeiro, .grid-dashboard-estoque {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--sombra-card);
    border: 1px solid white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    /* Detalhe decorativo sutil no topo */
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--cor-secundaria); /* Padrao */
}

.stat-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-hover); }

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 300; /* Fonte mais fina = mais elegante */
    color: var(--texto-titulo);
}

/* =========================================
   6. TABELAS (CLEAN & ESPAÇADAS)
   ========================================= */
.tabela-padrao {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.tabela-padrao th {
    padding: 20px;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: transparent;
    border-bottom: 1px solid #eee;
}

.tabela-padrao td {
    padding: 20px;
    border-bottom: 1px solid #f9f9f9;
    color: var(--texto-titulo);
    font-size: 0.95rem;
    vertical-align: middle;
}

.tabela-padrao tr:last-child td { border-bottom: none; }
.tabela-padrao tr:hover { background-color: #fafafa; }

/* Badges */
.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Inputs Gerais */
input[type="text"], input[type="number"], input[type="date"], input[type="tel"], select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #eee;
    background: #fafafa;
    border-radius: var(--btn-radius); /* Pill inputs */
    font-size: 0.95rem;
    outline: none;
    color: var(--texto-titulo);
    transition: all 0.2s;
}
input:focus, select:focus { 
    background: white;
    border-color: var(--cor-primaria);
    box-shadow: 0 0 0 3px rgba(192, 132, 151, 0.1);
}

/* =========================================
   7. ESTEIRA E AVALIAÇÃO (UI DE TRABALHO)
   ========================================= */
.card-lote {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--sombra-card);
    border: 1px solid white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: 0.2s;
}
.card-lote:hover { transform: translateY(-3px); box-shadow: var(--sombra-hover); }

/* Inputs Refinados da Avaliação */
.input-refinado {
    background: #fff;
    border: 1px solid #eee;
    font-size: 1rem;
    height: 50px;
    font-weight: 500;
}
.input-destaque-custo { border-left: 3px solid #d4a5a5 !important; }
.input-destaque-venda { border-left: 3px solid #8ab0ab !important; }

.item-refinado {
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #f5f5f5;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

/* =========================================
   8. MOBILE RESPONSIVE
   ========================================= */
.mobile-header { display: none; }

@media (max-width: 1024px) {
    .sidebar { transform: translateX(-100%); border: none; box-shadow: 20px 0 50px rgba(0,0,0,0.1); }
    .sidebar.active { transform: translateX(0); }
    .main-content { margin-left: 0; padding: 20px; }
    .mobile-header { 
        display: flex; 
        align-items: center; 
        justify-content: space-between; 
        background: white; 
        padding: 15px 20px;
        margin-bottom: 20px;
        border-radius: 16px;
        box-shadow: var(--sombra-card);
    }
    .grid-dashboard-compacta, .grid-dashboard-financeiro, .grid-dashboard-estoque {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .grid-dashboard-compacta, .grid-dashboard-financeiro, .grid-dashboard-estoque {
        grid-template-columns: 1fr;
    }
    .table-container { overflow-x: auto; padding: 15px; }
    
    /* Ajuste para inputs redondos não quebrarem em tela pequena */
    .input-group input { padding: 12px 15px; }
}

/* =========================================
   9. ANIMAÇÕES & PRINT
   ========================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.area-print { display: none; }
@media print {
    body * { visibility: hidden; }
    .area-print, .area-print * { visibility: visible; }
    .area-print { position: absolute; left: 0; top: 0; width: 100%; }
}

/* --- BOTÃO VOLTAR (SIMPLES) --- */
.btn-voltar-simples {
    background: transparent;
    border: none;
    color: #999; /* Cinza discreto */
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px; /* Espaço entre a seta e o texto */
    padding: 0;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.btn-voltar-simples:hover {
    color: var(--cor-primaria); /* Fica rosa ao passar o mouse */
    transform: translateX(-3px); /* Pequeno movimento para a esquerda */
}

/* =========================================
   10. CONFIGURAÇÃO TÉRMICA (Blindada)
   ========================================= */
@media print {
    @page {
        size: auto;   /* auto is the initial value */
        margin: 0mm;  /* Esconde cabeçalho/rodapé padrão do navegador */
    }

    body * {
        visibility: hidden;
        height: 0;
        overflow: hidden;
    }

    /* A mágica acontece aqui: Apenas o container de impressão aparece */
    #container-impressao-termica, #container-impressao-termica * {
        visibility: visible;
        height: auto;
    }

    #container-impressao-termica {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .etiqueta-unitaria {
        /* Tamanho Padrão de Etiqueta (Ajuste conforme sua bobina) */
        width: 40mm; 
        height: 25mm; 
        
        /* Quebra de página forçada a cada etiqueta */
        page-break-after: always; 
        break-after: page;
        
        /* Layout Interno */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 2px;
        overflow: hidden; /* Evita vazar se o texto for longo */
    }

    .etiqueta-desc {
        font-family: sans-serif;
        font-size: 8px; /* Pequeno para caber */
        font-weight: bold;
        text-transform: uppercase;
        max-width: 95%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 2px;
    }

    /* O código de barras SVG será controlado pelo JS, mas garantimos largura aqui */
    .etiqueta-unitaria svg {
        max-width: 95%;
        height: 12mm; /* Altura fixa para o código */
    }

    .etiqueta-sku {
        font-family: monospace;
        font-size: 9px;
        font-weight: bold;
        margin-top: 1px;
    }

    .etiqueta-preco {
        font-family: sans-serif;
        font-size: 10px;
        font-weight: 900;
        margin-top: 1px;
    }
}

/* =========================================
   11. ETIQUETA DE RECEBIMENTO (ESTILO EXCEL)
   ========================================= */
@media print {
    /* Força o container a aparecer ignorando o display:none do HTML */
    #container-impressao-termica {
        display: block !important; 
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        visibility: visible;
    }

    /* Esconde todo o resto */
    body * {
        visibility: hidden;
        height: 0;
    }

    /* Mostra só o recibo */
    #container-impressao-termica * {
        visibility: visible;
        height: auto;
    }

    .etiqueta-recebimento {
        width: 100%;
        max-width: 58mm; /* Ajustado para sua POS-58 */
        font-family: 'Arial', sans-serif;
        padding: 5px 0;
    }

    /* Linhas estilo Excel (Lado a Lado) */
    .recibo-grid {
        display: flex;
        align-items: baseline; /* Alinha texto pela base */
        margin-bottom: 6px;
        border-bottom: 1px dotted #ccc; /* Linha sutil entre linhas */
        padding-bottom: 2px;
    }

    .recibo-col-a {
        width: 35%; /* Coluna "NOME", "DATA" */
        text-align: right;
        font-size: 10px;
        font-weight: normal;
        color: #000;
        padding-right: 5px;
        border-right: 2px solid #000; /* A barra vertical preta da sua planilha */
        margin-right: 5px;
    }

    .recibo-col-b {
        width: 65%; /* Coluna do Valor */
        text-align: left;
        font-weight: 900;
        font-size: 12px;
        word-wrap: break-word; /* Quebra se o nome for longo */
        line-height: 1.1;
    }

    /* Boxes inferiores (Volumes e Caract) */
    .recibo-box-titulo {
        text-align: center;
        font-size: 10px;
        font-weight: bold;
        text-transform: uppercase;
        margin-top: 10px;
    }

    .recibo-box-valor {
        border: 2px solid #000; /* Borda grossa igual planilha */
        text-align: center;
        font-weight: 900;
        padding: 5px;
        margin-top: 2px;
    }
}

/* =========================================
   12. IMPRESSÃO A4 (PIMACO A4348 - OFICIAL)
   ========================================= */
@media print {
    /* 1. RESET: Esconde tudo para começar do zero */
    body * { visibility: hidden; height: 0; }
    @page { size: auto; margin: 0mm; }

    /* ==================================================
       MODO A: TÉRMICA (Quando NÃO for A4)
       ================================================== */
    body:not(.modo-a4) #container-impressao-termica,
    body:not(.modo-a4) #container-impressao-termica * {
        visibility: visible !important; height: auto; display: block;
    }
    body:not(.modo-a4) #container-impressao-termica {
        position: absolute; left: 0; top: 0; width: 100%;
    }
    .etiqueta-unitaria { width: 40mm; height: 25mm; page-break-after: always; text-align: center; }

    /* ==================================================
       MODO B: PIMACO A4 (A4348 - 6 Colunas)
       ================================================== */
    body.modo-a4 #container-impressao-a4,
    body.modo-a4 #container-impressao-a4 * {
        visibility: visible !important; /* O segredo para não sair branco */
        height: auto; display: block;
    }

    body.modo-a4 #container-impressao-a4 {
        display: grid !important;
        position: absolute; top: 0; left: 0;
        
        /* GRID 6x16 (Pimaco A4348) */
        grid-template-columns: repeat(6, 31mm);
        grid-template-rows: repeat(16, 17mm);
        column-gap: 2mm; /* Espaço entre colunas */
        
        /* MARGENS DE CALIBRAGEM (Ajuste aqui se sair torto) */
        padding-top: 13.5mm;
        padding-left: 4.5mm;
        
        width: 210mm; height: 297mm;
    }

    /* Container da etiqueta individual (17mm altura) */
    .etiqueta-pimaco {
        width: 31mm; 
        height: 17mm;
        
        /* Layout Flex: Empilha Topo, Imagem, Base */
        display: flex; 
        flex-direction: column;
        align-items: center; 
        justify-content: center; /* Centraliza tudo verticalmente */
        
        overflow: hidden;
        background: white;
        padding: 0;
    }

    /* Linha 1: Texto */
    .pimaco-texto { 
        font-size: 8px !important;
        font-family: Arial, sans-serif; 
        font-weight: bold; 
        text-transform: uppercase; 
        line-height: 1;
        margin-top: 1px;
        margin-bottom: 1px;
        white-space: nowrap; 
        text-align: center;
        width: 98%;
        overflow: hidden;
    }
      
   /* Linha 3: Preço (Agora maior e mais legível) */
    .pimaco-preco { 
        font-size: 9px !important; /* Aumentei para ocupar melhor */
        font-family: Arial, sans-serif; 
        font-weight: 900; 
        line-height: 1;
        margin-top: 1px; 
        color: #000;
        text-align: center;
        padding-bottom: 2px; /* Margem de segurança na borda inferior */
    }

    /* Linha 2: CÓDIGO DE BARRAS (IMAGEM) */
    .pimaco-barcode {
        height: 7mm !important;    /* Altura fixa */
        width: auto !important;     /* Largura automática para não esticar */
        max-width: 95% !important;  /* Mas não deixa estourar a etiqueta */
        display: block !important;
        margin: 0 auto;
        
        /* O segredo para imagem ficar nítida */
        image-rendering: pixelated; 
    }

    /* Limpeza */
    .pimaco-sku { display: none !important; }
    .etiqueta-pulo { visibility: hidden !important; border: none !important; }
    
    
} 

/* --- PRANCHETA DE CADASTRO --- */
.campo-copia {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.campo-copia:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

.campo-copia:active {
    background-color: #e2e6ea;
    transform: scale(0.98);
}

.icone-copia {
    font-size: 0.8rem;
    color: #999;
    opacity: 0; /* Esconde o ícone até passar o mouse */
}

.campo-copia:hover .icone-copia {
    opacity: 1; /* Mostra o ícone */
}

/* --- LOGIN SAAS SPLIT SCREEN --- */
.login-split-container {
    display: flex; height: 100vh; width: 100%; background: white; overflow: hidden;
}
.login-hero-side {
    flex: 1.2; /* Lado da imagem um pouco maior */
    background-image: url('https://images.unsplash.com/photo-1551232864-3f52236a3f86?q=80&w=2071&auto=format&fit=crop'); /* Imagem Moda/Tech */
    background-size: cover; background-position: center;
    position: relative; display: flex; align-items: flex-end; padding: 80px;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(89, 74, 115, 0.8) 0%, rgba(192, 132, 151, 0.8) 100%); /* Gradiente Roxo -> Rosa */
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 600px; text-shadow: 0 4px 10px rgba(0,0,0,0.3); }

.login-form-side {
    flex: 1; display: flex; align-items: center; justify-content: center;
    padding: 40px; background: #fff;
}
.login-box-saas { 
    width: 100%; 
    max-width: 420px; 
    /* animation: fadeIn 0.6s ease-out;  <-- REMOVI ISSO */
}

/* Força a cor do título */
.login-box-saas h2 {
    color: #333 !important; /* Cinza Escuro */
}

.login-box-saas p {
    color: #666 !important;
}

/* Força a cor dos labels e inputs */
.input-group-saas label {
    color: #444 !important; /* Cinza Escuro para leitura */
    font-weight: 800;
}

.input-group-saas input {
    background: #fdfdfd !important;
    color: #000 !important; /* Texto preto ao digitar */
    border: 2px solid #ddd !important;
}

/* Garante que o fundo do lado direito seja branco absoluto */
.login-form-side {
    background-color: #ffffff !important;
}

.input-group-saas { margin-bottom: 20px; }
.input-group-saas label {
    display: block; font-size: 0.75rem; font-weight: 700; color: #888;
    margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px;
}
.input-group-saas input {
    width: 100%; padding: 16px; border: 2px solid #f0f0f0; border-radius: 12px;
    font-size: 1rem; transition: all 0.3s; background: #fdfdfd; outline: none;
}
.input-group-saas input:focus {
    background: white; border-color: var(--cor-primaria);
    box-shadow: 0 0 0 4px rgba(192, 132, 151, 0.15);
}

/* Animação de Erro */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
.shake { animation: shake 0.3s ease-in-out; }

/* Mobile */
@media (max-width: 900px) {
    .login-split-container { flex-direction: column; }
    .login-hero-side { display: none; }
    .login-form-side { padding: 20px; background: var(--bg-fundo); }
}