/* ============================================================
   SUPER ACADEMIA - IDENTIDADE VISUAL PREMIUM SAAS
   Paleta: Azul, Verde, Laranja, Vermelho, Roxo, Branco, Cinza Claro
   Sem Neon | Sem Glassmorphism | Ultra Rápido & Elegante
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&family=Inter:wght@400;600&display=swap');

:root {
    --primary-blue: #0d6efd;
    --primary-blue-dark: #0a58ca;
    --accent-green: #198754;
    --accent-green-hover: #146c43;
    --accent-orange: #fd7e14;
    --accent-red: #dc3545;
    --accent-purple: #6f42c1;
    --bg-light: #f8f9fa;
    --bg-card: #ffffff;
    --border-color: #e3e8ee;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* NAVBAR & HEADER */
.navbar-super {
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.navbar-super .navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-super .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

.navbar-super .nav-link:hover, .navbar-super .nav-link.active {
    color: var(--primary-blue);
}

/* HERO BANNER */
.hero-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 90px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 40%; height: 100%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-highlight {
    color: var(--accent-orange);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-top: 20px;
    margin-bottom: 35px;
}

/* BOTÕES PREMIUM */
.btn-super-primary {
    background-color: var(--primary-blue);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.btn-super-primary:hover {
    background-color: var(--primary-blue-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.4);
}

.btn-super-green {
    background-color: var(--accent-green);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
}

.btn-super-green:hover {
    background-color: var(--accent-green-hover);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-super-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #334155;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.btn-super-outline:hover {
    background-color: #ffffff;
    color: var(--text-dark);
}

/* CARDS SAAS */
.card-super {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-super:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.bg-icon-blue { background: #e0edff; color: var(--primary-blue); }
.bg-icon-green { background: #d1e7dd; color: var(--accent-green); }
.bg-icon-orange { background: #ffe5d0; color: var(--accent-orange); }
.bg-icon-purple { background: #e2d9f3; color: var(--accent-purple); }

/* DASHBOARD METRIC STAT CARDS */
.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* FOOTER */
.footer-super {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 60px 0 30px 0;
    border-top: 1px solid #1e293b;
}

.footer-super h5 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-super a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-super a:hover {
    color: var(--accent-orange);
}
