/* ============= LOGOMARCA ============= */
.sidebar-logo,
.login-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #003366 0%, #0055aa 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.sidebar-logo::before,
.login-logo::before {
    content: 'HCO';
    position: absolute;
    font-family: 'Inter', sans-serif;
    letter-spacing: -2px;
}

.sidebar-logo::after,
.login-logo::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    top: 0;
    left: -100%;
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

/* Sidebar logo menor */
.sidebar-logo {
    width: 60px;
    height: 60px;
    font-size: 24px;
    border-radius: 12px;
    margin-bottom: 10px;
}

/* Ajuste do header do sidebar */
.sidebar-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Login logo */
.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0 5px 0;
}

.login-header p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}
