* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Figtree', sans-serif;
}

body {
    background-color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark {
    background-color: #1a1a1a;
    color: #fff;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    background-color: rgb(0, 106, 255);
    z-index: 1000;
    top: 0;
}

.logo {
    position: absolute;
    left: 50px;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-itens {
    display: flex;
    list-style: none;
}

.nav-itens li {
    cursor: pointer;
    position: relative;
    color: white;
}

.nav-itens li a {
    margin: 0 15px;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.autenticar {
    position: absolute;
    right: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-login {
    background: none;
    border: 2px solid white;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-login:hover {
    background-color: white;
    color: rgb(0, 106, 255);
}

.nav-itens li:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: #ffffff;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.nav-itens li:hover:after {
    width: 100%;
}

.trilho {
            width: 50px;
            height: 25px;
            background-color: #ccc;
            border-radius: 25px;
            position: relative;
            cursor: pointer;
            transition: 0.3s ease;
            margin-right: 10px;
        }

        .trilho .indicador {
            width: 21px;
            height: 21px;
            background-color: white;
            border-radius: 50%;
            position: absolute;
            left: 2px;
            top: 2px;
            transition: 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .trilho.dark {
            background-color: #4CAF50;
        }

        .trilho.dark .indicador {
            left: 27px;
            background-color: white;
        }

        .main-content {
            padding-top: 100px;
            min-height: calc(100vh - 200px);
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .page-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .page-header h1 {
            font-size: 2.5rem;
            color: rgb(0, 106, 255);
            margin-bottom: 1rem;
        }

        body.dark .page-header h1 {
            color: #5DADE2;
        }

        .page-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        body.dark .page-header p {
            color: #ccc;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 3rem;
        }

        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid #ddd;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }

        body.dark .stat-card {
            background: #2a2a2a;
            border-color: #444;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: rgb(0, 106, 255);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        body.dark .stat-label {
            color: #ccc;
        }

        .progress-section {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            border: 1px solid #eee;
        }

        body.dark .progress-section {
            background: #2a2a2a;
            border-color: #444;
        }

        .section-title {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        body.dark .section-title {
            color: #fff;
        }

        .progress-item {
            margin-bottom: 2rem;
        }

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

        .progress-label {
            font-weight: 600;
            color: #333;
        }

        body.dark .progress-label {
            color: #fff;
        }

        .progress-percentage {
            font-weight: bold;
            color: rgb(0, 106, 255);
        }

        .progress-bar {
            width: 100%;
            height: 12px;
            background-color: #e9ecef;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        body.dark .progress-bar {
            background-color: #444;
        }

        .progress-fill {
            height: 100%;
            background-color: rgb(0, 106, 255);
            border-radius: 10px;
            transition: width 1.5s ease-out;
            position: relative;
        }

        .recent-activity {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid #eee;
        }

        body.dark .recent-activity {
            background: #2a2a2a;
            border-color: #444;
        }

        .activity-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }

        body.dark .activity-item {
            border-bottom-color: #444;
        }
        
        .activity-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgb(0, 106, 255);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 1rem;
            font-weight: bold;
        }

        .activity-content {
            flex-grow: 1;
        }

        .activity-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 2px;
        }

        body.dark .activity-title {
            color: #fff;
        }

        .activity-description {
            font-size: 0.9rem;
            color: #666;
        }

        body.dark .activity-description {
            color: #ccc;
        }

        .activity-score {
            font-weight: bold;
            color: rgb(0, 106, 255);
            font-size: 1.1rem;
        }

        footer {
            width: 100%;
            background: white;
            padding: 2rem 0;
            border-top: 1px solid #eee;
            transition: background-color 0.3s ease, border-color 0.3s ease;
            margin-top: 3rem;
        }

        body.dark footer {
            background: #2a2a2a;
            border-top-color: #444;
        }

        .footercontats {
            color: black;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 1rem 1.5rem;
            margin: 0;
            max-width: 1200px;
            margin: 0 auto;
            transition: color 0.3s ease;
        }

        body.dark .footercontats {
            color: white;
        }

        .footer-brand {
            flex: 1;
        }

        .footercontats h1 {
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            font-size: 2rem;
            color: rgb(0, 106, 255);
        }

        .footer-columns {
            display: flex;
            gap: 4rem;
            flex: 2;
            justify-content: flex-end;
        }

        .footerlist {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            list-style: none;
        }

        .footerlist h3 {
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        body.dark .footerlist h3 {
            color: #ccc;
        }

        .footerlist .footerlink {
            color: rgb(0, 0, 0);
            text-decoration: none;
            transition: 0.25s;
            padding: 0.25rem 0;
        }

        body.dark .footerlist .footerlink {
            color: #ccc;
        }

        .footerlist .footerlink:hover {
            color: rgb(0, 106, 255);
            transform: translateX(5px);
        }

        .footercopyright {
            display: flex;
            justify-content: center;
            font-family: sans-serif;
            padding: 1rem;
            border-top: 1px solid #eee;
            margin-top: 1rem;
            color: #666;
            font-size: 0.9rem;
            transition: color 0.3s ease, border-color 0.3s ease;
        }

        body.dark .footercopyright {
            color: #ccc;
            border-top-color: #444;
        }
