/** 
 * Dashboard Premium - Light & Minimalist 
 * "SISTEMA CANTOLAO ELITE"
 */

:root {
    --premium-bg: #f4f7fb;
    --premium-card: #ffffff;
    --premium-primary: #003366;
    --premium-accent: #ffc107;
    --premium-text: #2d3436;
    --premium-muted: #636e72;
    --premium-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    --premium-radius: 20px;
    --premium-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    background-color: var(--premium-bg);
    font-family: 'Inter', sans-serif;
    color: var(--premium-text);
}

h1, h2, h3, h4, h5, h6, .card-header h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Premium Header */
.premium-header {
    background: white;
    padding: 2rem;
    border-radius: var(--premium-radius);
    box-shadow: var(--premium-shadow);
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.02);
}

/* Base Card Design */
.premium-card {
    background: var(--premium-card);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: var(--premium-radius);
    box-shadow: var(--premium-shadow);
    transition: var(--premium-transition);
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 51, 102, 0.1);
}

/* Status Badges & Colors */
.status-paid { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.status-debt { background: linear-gradient(135deg, #e74c3c, #c0392b); }

.card-status-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.8;
}

/* Progress Bars */
.premium-progress {
    height: 8px;
    border-radius: 10px;
    background-color: #ecf0f1;
}

.premium-progress-bar {
    border-radius: 10px;
    background: linear-gradient(to right, #3498db, #2980b9);
}

/* List Items */
.premium-list-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f1f2f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-list-item:last-child {
    border-bottom: none;
}

/* Stars / Ratings */
.star-rating {
    color: var(--premium-accent);
    font-size: 0.9rem;
}

/* Buttons */
.btn-premium {
    background-color: var(--premium-primary);
    color: white;
    border-radius: 12px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: var(--premium-transition);
    border: none;
}

.btn-premium:hover {
    background-color: #002244;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
    color: white;
}

.btn-logout {
    border-radius: 12px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: var(--premium-transition);
}

/* Typography Helpers */
.text-gold { color: var(--premium-accent); }
.font-weight-bold { font-weight: 700; }
