* {
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f8f9fa;
}

/* Menu lateral */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    background: linear-gradient(180deg, #2c3e50 0%, #1a2634 100%);
    color: white;
    transition: all 0.3s;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.sidebar-header h3 {
    margin: 0;
    font-weight: 600;
    font-size: 1.5rem;
    color: #ecf0f1;
}

.sidebar-header p {
    margin: 5px 0 0;
    font-size: 0.85rem;
    color: #bdc3c7;
}

.sidebar-menu {
    padding: 20px 0;
}

.sidebar-menu .menu-item {
    padding: 12px 25px;
    color: #ecf0f1;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    text-decoration: none;
    border-left: 4px solid transparent;
}

.sidebar-menu .menu-item:hover {
    background: rgba(255,255,255,0.1);
    border-left-color: #e67e22;
}

.sidebar-menu .menu-item.active {
    background: rgba(230, 126, 34, 0.15);
    border-left-color: #e67e22;
}

.sidebar-menu .menu-item i {
    font-size: 1.3rem;
    width: 24px;
}

.sidebar-menu .menu-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

.sidebar-menu .menu-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 15px 20px;
}

/* Conteúdo principal */
.main-content {
    margin-left: 280px;
    padding: 20px 30px;
    transition: all 0.3s;
}

/* Top bar */
.top-bar {
    background: white;
    border-radius: 12px;
    padding: 15px 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.page-title p {
    margin: 5px 0 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notification-badge {
    position: relative;
    cursor: pointer;
}

.notification-badge i {
    font-size: 1.3rem;
    color: #7f8c8d;
}

.badge-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e67e22;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Cards de estatísticas */
.stats-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stats-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(230, 126, 34, 0.1);
    color: #e67e22;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.stats-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stats-label {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 500;
}

.stats-change {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #27ae60;
}

.stats-change.negative {
    color: #e74c3c;
}

/* Cards de projetos recentes */
.project-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.project-card:hover {
    border-color: #e67e22;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.1);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.project-title {
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.project-client {
    color: #7f8c8d;
    font-size: 0.85rem;
}

.project-status {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-design {
    background: #3498db20;
    color: #3498db;
}

.status-production {
    background: #f39c1220;
    color: #f39c12;
}

.status-installation {
    background: #27ae6020;
    color: #27ae60;
}

.project-progress {
    margin-top: 10px;
}

.progress {
    height: 6px;
    border-radius: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .sidebar {
        margin-left: -280px;
    }

    .sidebar.active {
        margin-left: 0;
    }

    .main-content {
        margin-left: 0;
    }

    .main-content.active {
        margin-left: 280px;
    }
}

/* Cards de tarefas */
.task-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
}

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

.task-check {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid #bdc3c7;
    cursor: pointer;
}

.task-content {
    flex: 1;
}

.task-title {
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
}

.task-time {
    font-size: 0.75rem;
    color: #95a5a6;
}

.task-tag {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Menu toggle para mobile */
.menu-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e67e22;
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
    z-index: 1001;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


