/* global.css - Variáveis e Reset */
:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --primary-light-bg: #eef2ff;
    --bg-body: #e2e8f0;
    --bg-card: #ffffff;
    --glass-purple: rgba(240, 243, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --border-color: #cbd5e1;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --header-height: 70px;
    --sidebar-width: 260px;
    --sidebar-width-closed: 80px;
    --radius: 20px;
    --transition-speed: 0.3s;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    margin: 0;
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.w-100 {
    width: 100%;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.gap-10 {
    gap: 10px;
}

/* Toast Notifications (Usado no Login e no App) */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2000;
    font-weight: 500;
    color: #1e293b;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: #10b981;
    display: flex;
    align-items: center;
}

/* Animações Genéricas */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}