/* Geral */
body {
    background: #000;
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* LOGIN */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.login-box {
    text-align: center;
    max-width: 400px;
    width: 100%;
    padding: 40px 20px;
}

.login-logo {
    max-width: 220px;
    margin-bottom: 40px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-input {
    border-radius: 999px;
    border: none;
    padding: 14px 22px;
    font-size: 16px;
    background: #ffffff;
    color: #000000;
    outline: none;
}

.login-input::placeholder {
    color: #999;
}

.login-forgot {
    display: block;
    margin-top: 4px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    text-align: right;
}

.login-forgot:hover {
    text-decoration: underline;
}

.login-button {
    border: none;
    border-radius: 999px;
    padding: 14px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(90deg, #ff00ff, #ff00cc);
    color: #ffffff;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.login-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 0, 255, 0.4);
}

/* DASHBOARD */
.dashboard-page {
    display: flex;
    min-height: 100vh;
    background: #000000;
}

/* Sidebar */
.sidebar {
    width: 240px;
    background: #000000;
    padding: 24px 16px;
    box-sizing: border-box;
}

.sidebar-logo {
    text-align: center;
    margin-bottom: 32px;
}

.sidebar-logo img {
    max-width: 180px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-item {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    background: #cc00ff;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.sidebar-item.active,
.sidebar-item:hover {
    filter: brightness(1.1);
}

/* Área principal */
.dashboard-main {
    flex: 1;
    padding: 24px;
    box-sizing: border-box;
}

/* Cards */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.dashboard-card {
    background: #6b00c9;
    border-radius: 24px;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
}

.dashboard-card.large {
    grid-column: span 2;
}

/* Conteúdo abaixo dos cards */
.dashboard-content {
    margin-top: 8px;
}

.dashboard-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-content-header h1 {
    font-size: 32px;
    margin: 0;
}

/* Botão flutuante + */
.fab-button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #ff00ff;
    color: #000;
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
