/* main.css — Estilos compartilhados do Portal Financeiro LL Peças */
/* Este arquivo contém os estilos base usados por todas as páginas. */

:root {
    --primary: #003087;
    --primary-light: #0047cc;
    --secondary: #b71c1c;
    --secondary-light: #d32f2f;
    --bg: #0f172a;
    --card-bg: rgba(255, 255, 255, 0.96);
    --card-dark: rgba(30, 41, 59, 0.7);
    --text: #1e293b;
    --text-light: #f8fafc;
    --text-muted: #64748b;
    --success: #16a34a;
    --success-bg: #dcfce7;
    --warning: #d97706;
    --warning-bg: #fef3c7;
    --danger: #dc2626;
    --danger-bg: #fee2e2;
    --info: #0284c7;
    --info-bg: #e0f2fe;
    --border: #e2e8f0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #001f5c 0%, #090d16 100%);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Brand header (compartilhado entre páginas) */
.brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
    text-align: center;
}

.brand-logo {
    max-height: 95px;
    width: auto;
    object-fit: contain;
    margin-bottom: 18px;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.08));
    transition: transform 0.3s ease;
}

.brand-logo:hover { transform: scale(1.03); }

.brand-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.brand-main-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-transform: uppercase;
}

.brand-sub-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 4.5px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-left: 4.5px;
}

.brand-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 99px;
    margin: 15px 0 12px;
}

.brand-page-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Utility: fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer padrão */
.portal-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}
