body, .dark-theme {
    background: #181A20 !important;
    color: #F5F6FA;
}

.track-report-container {
    width: 100%;
    margin: 0;
    padding: 2rem;
    font-family: 'Inter', sans-serif;
    color: #F5F6FA;
}

.track-report-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #feaf50;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    position: relative;
    line-height: 1.2;
}
.track-report-page-title::after {
    content: "";
    display: block;
    margin: 0.7rem auto 0 auto;
    width: 60px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #feaf50 0%, #ffdc91 100%);
    opacity: 0.8;
}

/* Cabeçalho */
.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.report-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #23272F;
    color: #F6B93B;
    margin: 0;
    letter-spacing: -1px;
}

.back-link.dark-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #F6B93B;
    background: #23272F;
    border: 2px solid #F6B93B;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.back-link.dark-btn:hover {
    background: #F6B93B;
    color: #23272F;
}

.card-dark {
    background: #23272F;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    margin-bottom: 2rem;
    padding: 2rem;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F6B93B;
    background: #181A20;
}

.profile-info h2 {
    font-size: 1.6rem;
    margin: 0 0 1rem 0;
    color: #F5F6FA;
}

.bio {
    font-size: 1.1rem;
    color: #b0b3b8;
    line-height: 1.6;
    max-width: 800ch;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
    .bio {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: left;
    }
}

.track-title {
    font-size: 1.3rem;
    color: #F6B93B;
    margin-bottom: 1.2rem;
}

/* Informações da Trilha */
.track-info {
    background: linear-gradient(135deg, #4299e1 0%, #2b6cb0 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.track-details h3 {
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
}

.track-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #F5F6FA;
    font-weight: 500;
}

.metric .highlight {
    color: #F6B93B;
    font-size: 1.2rem;
}

/* Progresso */
.progress-section {
    margin-bottom: 2rem;
}

.progress-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.progress-item {
    background: #23272F;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.progress-item h4 {
    margin: 0 0 1rem 0;
    color: #F6B93B;
}

.progress-bar.dark-bar {
    height: 8px;
    background: #181A20;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress.dark-progress {
    height: 100%;
    background: linear-gradient(90deg, #F6B93B 0%, #F9CA24 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Etapa Atual */
.current-stage {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.current-stage h3 {
    color: #F6B93B;
    margin: 0 0 1rem 0;
}

.stage-objective {
    color: #b0b3b8;
    line-height: 1.6;
}

/* Passos Completados */
.completed-steps {
    margin-bottom: 2rem;
}

.completed-steps h3.section-title {
    margin-bottom: 1.5rem;
    color: #F6B93B;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: #23272F;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card h4 {
    color: #F6B93B;
    margin: 0 0 0.1rem 0;
    font-size: 1.15rem;
}

.step-objective {
    color: #a0a0a0;
    margin: 0 0 0.15rem 0;
    font-size: 0.93rem;
    font-style: italic;
    font-weight: 400;
    opacity: 0.85;
}

.learning {
    background: rgba(255,255,255,0.03);
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    color: #b0b3b8;
    font-style: italic;
    font-size: 0.98rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding: 0.7rem 1rem;
    display: block;
}

.step-metrics {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

/* Resumo Geral */
.summary-section {
    background: linear-gradient(135deg, #23272F 60%, #F6B93B 100%);
    padding: 2rem;
    border-radius: 1rem;
    color: #F5F6FA;
}

.summary-card h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    color: #F6B93B;
}

.summary-metrics {
    display: flex;
    gap: 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .track-report-container {
        padding: 1rem;
    }

    .student-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .track-metrics {
        flex-direction: column;
        gap: 1rem;
    }

    .summary-metrics {
        flex-direction: column;
        gap: 1rem;
    }
}

.student-profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .student-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.track-info.card-dark {
    background: #23272F;
    color: #F5F6FA;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    margin-bottom: 2rem;
    padding: 2rem;
}

.track-metrics .metric .highlight {
    color: #F6B93B;
}

.profile-metrics-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
    margin-bottom: 10px;
}

.profile-metrics-row > .card-dark {
    margin-bottom: 0;
}

.general-metric-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 180px;
    min-height: 120px;
    padding: 1.5rem 1rem;
    background: #23272F;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.metric-label {
    font-size: 0.95rem;
    color: #b0b3b8;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: #F6B93B;
    line-height: 1;
}

@media (max-width: 1024px) {
    .profile-metrics-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .general-metric-box {
        min-width: unset;
        width: 100%;
    }
}

.current-stage.card-dark {
    background: #23272F;
    color: #F5F6FA;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    margin-bottom: 2rem;
    padding: 2rem;
}

.current-stage.card-dark h3 {
    color: #F6B93B;
}

.current-stage.card-dark .stage-objective {
    color: #b0b3b8;
}

.progress-box.card-dark {
    margin-top: 0;
    margin-bottom: 2rem;
}

.progress-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-label {
    min-width: 140px;
    font-size: 0.95rem;
    color: #b0b3b8;
    margin-right: 0.5rem;
}

.progress-bar.dark-bar {
    flex: 1;
    margin-bottom: 0;
}

.progress-value {
    min-width: 48px;
    text-align: right;
    font-size: 1.1rem;
    color: #F6B93B;
    font-weight: 600;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .progress-box.card-dark {
        padding: 1rem;
    }
    .progress-label {
        min-width: 100px;
    }
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.step-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1.2rem;
}

.step-number-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 100px;
    min-height: 100px;
    padding: 1rem 0.5rem;
    background: #23272F;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

@media (max-width: 768px) {
    .step-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    .step-number-box {
        min-width: 80px;
        min-height: 80px;
        padding: 0.7rem 0.3rem;
    }
}

.step-row .step-card {
    flex: 1;
}

.learning-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    background: rgba(246, 185, 59, 0.13);
    color: #F6B93B;
    font-size: 0.92em;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.18em 0.7em 0.18em 0.5em;
    margin-right: 0.6em;
    letter-spacing: 0.2px;
}

.learning-badge i {
    font-size: 1.1em;
    margin-right: 0.2em;
}

.step-future h4,
.step-future .step-objective {
    color: #b0b3b8;
    opacity: 0.7;
}

.step-future .learning-badge,
.step-future .future-text {
    color: #b0b3b8;
    background: rgba(255,255,255,0.06);
    opacity: 0.8;
}

.step-future .future-text {
    font-style: italic;
    font-size: 0.97em;
    margin-left: 0.3em;
}

.future-metric {
    opacity: 0.5;
}
