/* progresso_simulacao.css - Estilos para a página de simulação de Learning Analytics */

:root {
    --primary-purple: #6B46C1;
    --primary-blue: #3182CE;
    --primary-green: #38A169;
    --bg-light: #F7FAFC;
    --bg-card: #FFFFFF;
    --text-primary: #2D3748;
    --text-secondary: #718096;
    --border: #E2E8F0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    color: #000000;
    padding: 0.5rem 0;
    box-shadow:
        0 4px 20px rgba(0, 255, 255, 0.3),
        0 0 40px rgba(138, 43, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid #00ffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: auto;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
}

.logo-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    flex-shrink: 1;
}

.logo-image {
    height: 50px;
    width: 75px;
    object-fit: contain;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #000000;
    text-shadow:
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 30px #00ffff,
        0 0 40px #00ffff,
        2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

.tagline {
    font-size: 0.6rem;
    opacity: 0.8;
    margin: 0;
    color: #6c757d;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.nav-links {
    display: flex;
    gap: 0.3rem;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: center;
}

.nav-link {
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(138, 43, 226, 0.2));
    border-color: #00ffff;
    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.5),
        0 4px 15px rgba(138, 43, 226, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.05);
    color: #ffffff;
}

.nav-link.active {
    background: linear-gradient(135deg, #00ffff, #8a2be2);
    color: #000000;
    font-weight: 600;
}

.user-profile-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.user-profile-link:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.5),
        0 4px 15px rgba(138, 43, 226, 0.3);
    transform: translateY(-1px);
}

.profile-pic {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    object-fit: cover;
    flex-shrink: 0;
}

.user-greeting {
    color: #000000;
    font-size: 0.85rem;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #8a2be2);
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.footer {
    background: white;
    padding: 24px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #6c757d;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@keyframes neonGlow {
    from {
        text-shadow:
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            0 0 40px #00ffff,
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    to {
        text-shadow:
            0 0 15px #ff00ff,
            0 0 25px #ff00ff,
            0 0 35px #ff00ff,
            0 0 45px #ff00ff,
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 768px) {
    .navbar-container {
        position: relative;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .logo-section {
        flex: 1;
        min-width: 200px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
        padding: 1rem;
        box-shadow:
            0 4px 20px rgba(0, 255, 255, 0.3),
            0 0 40px rgba(138, 43, 226, 0.2);
        border: 2px solid #00ffff;
        border-top: none;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        gap: 0;
        border-radius: 0 0 15px 15px;
    }

    .nav-links.mobile-menu-open {
        display: flex;
    }

    .user-profile-link {
        order: 2;
        margin-left: auto;
        padding: 0.25rem;
    }

    .user-greeting {
        display: none;
    }

    .hamburger {
        order: 3;
        display: flex;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 255, 255, 0.2);
        border-radius: 0;
        text-align: center;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hamburger-line {
        width: 20px;
    }
}

/* Container Principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header da Página */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.page-header h1 {
    color: var(--primary-purple);
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header .subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Seção de Objetivos */
.objectives-section {
    margin-bottom: 40px;
}

.objectives-content {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-blue);
}

.objectives-content h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.objectives-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.hypothesis-box {
    background: rgba(107, 70, 193, 0.1);
    border: 1px solid rgba(107, 70, 193, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

/* Seção de Métricas */
.metrics-section {
    margin-bottom: 50px;
}

.metrics-section h2 {
    color: var(--primary-purple);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Seção de Comparativo */
.impact-section {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 20px;
    padding: 30px 28px;
    margin-bottom: 45px;
    box-shadow: 0 16px 40px rgba(49, 130, 206, 0.08);
}

.impact-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.impact-tag {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.impact-header h2 {
    margin: 0;
    font-size: 1.75rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.impact-cta {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    align-self: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.impact-card {
    background: white;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    padding: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.impact-card h4 {
    color: var(--primary-purple);
    margin-bottom: 18px;
    font-size: 1rem;
}

.impact-values {
    display: grid;
    gap: 16px;
}

.impact-value {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
}

.impact-value span {
    color: var(--text-secondary);
    font-size: 0.87rem;
}

.impact-value strong {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.impact-value--after strong {
    color: var(--primary-green);
}

/* Nova tabela bonita */
.impact-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

.impact-table thead {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    color: white;
}

.impact-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.impact-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 1rem;
    color: var(--text-primary);
}

.impact-table tbody tr {
    transition: background-color 0.3s ease;
}

.impact-table tbody tr:hover {
    background-color: rgba(99, 102, 241, 0.02);
}

.impact-table tbody tr:last-child td {
    border-bottom: none;
}

.impact-table td:first-child {
    font-weight: 600;
    color: var(--primary-purple);
}

.impact-table td:nth-child(2) {
    color: var(--text-secondary);
    font-weight: 500;
}

.impact-table td:nth-child(3) {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
}

.improvement {
    color: var(--primary-green) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

/* Resultados e Benefícios */
.results-summary {
    margin-top: 30px;
}

.results-summary h3 {
    color: var(--primary-purple);
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
}

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

.result-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.result-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.result-card h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.result-card p {
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.result-card strong {
    color: var(--primary-green);
    font-weight: 700;
}

.impact-highlight {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    text-align: center;
}

.impact-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.impact-text strong {
    color: var(--primary-purple);
}

.impact-conclusion {
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

.impact-final-section {
    margin-top: 32px;
    position: relative;
}

.impact-final-section::before {
    content: '💎';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    z-index: 1;
}

.impact-final-section h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 18px;
    text-align: center;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 2;
}

.impact-final-table {
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid #FFD700;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(255, 215, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.05));
    position: relative;
}

.impact-final-table::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6347, #FFD700);
    border-radius: 18px;
    z-index: -1;
    opacity: 0.7;
    animation: diamondGlow 3s ease-in-out infinite alternate;
}

@keyframes diamondGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.01); }
}

.impact-final-table tbody tr:nth-child(odd) {
    background: rgba(99, 102, 241, 0.04);
}

.impact-final-table td {
    vertical-align: top;
}

.metric-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.metric-header h3 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin: 0;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.metric-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Botões de Download */
.download-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
}

.download-btn:hover {
    background: #2c5282;
    transform: scale(1.05);
}

/* Seção de Gráficos */
.charts-section {
    margin-bottom: 50px;
}

.charts-section h2 {
    color: var(--primary-purple);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.chart-container {
    margin-bottom: 40px;
}

.chart-card {
    background: var(--bg-card);
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.chart-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.chart-card.chart-card--highlight {
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.chart-card.chart-card--highlight .chart-header {
    padding-bottom: 8px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px 0 28px;
    margin-bottom: 10px;
}

.chart-header h3 {
    color: var(--primary-purple);
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.chart-header .download-btn {
    min-width: 44px;
    height: 44px;
    border-radius: 14px;
    padding: 0;
    font-size: 1rem;
}

.chart-subtitle {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 680px;
    line-height: 1.6;
}

.chart-card.chart-card--highlight .chart-description {
    display: none;
}

.chart-container.chart-container--compact {
    max-width: 820px;
    margin: 0 auto 40px;
}

.chart-wrapper {
    padding: 0 28px 28px 28px;
    position: relative;
    min-height: 340px;
}

canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

canvas {
    max-width: 100%;
    height: auto;
}

/* Layout dos Gráficos */
.charts-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

/* Seção de Dados dos Usuários */
.users-data-section {
    margin-bottom: 50px;
}

.users-data-section h2 {
    color: var(--primary-purple);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

/* Container da Tabela */
.data-table-container {
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 40px;
    overflow: hidden;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-light);
}

.table-header h3 {
    color: var(--primary-purple);
    margin: 0;
    font-size: 1.2rem;
}

.table-wrapper {
    overflow-x: auto;
    padding: 0 25px 25px 25px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0;
}

th, td {
    padding: 15px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-primary);
    position: sticky;
    top: 0;
    z-index: 10;
}

tbody tr {
    transition: background-color 0.3s ease;
}

tbody tr:hover {
    background-color: rgba(107, 70, 193, 0.05);
}

/* Container do Ranking */
.ranking-container {
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
}

.ranking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-light);
}

.ranking-header h3 {
    color: var(--primary-purple);
    margin: 0;
    font-size: 1.2rem;
}

.ranking-list {
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: ranking;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 25px;
    border-bottom: 1px solid var(--border);
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: relative;
}

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

.ranking-item:hover {
    background-color: rgba(107, 70, 193, 0.05);
    transform: translateX(2px);
}

.ranking-item::before {
    counter-increment: ranking;
    content: counter(ranking);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(49, 130, 206, 0.18);
    flex-shrink: 0;
}

.ranking-info {
    display: grid;
    gap: 6px;
}

.ranking-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.ranking-detail {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Seção de Conclusões */
.conclusions-section {
    margin-top: 50px;
}

.conclusions-content {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-light) 100%);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.conclusions-content h2 {
    color: var(--primary-green);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.conclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.conclusion-item {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.conclusion-item h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.conclusion-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.academic-note {
    background: rgba(56, 161, 105, 0.1);
    border: 1px solid rgba(56, 161, 105, 0.2);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.academic-note p {
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

/* Elementos de Progresso e Estrelas */
.progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header .subtitle {
        font-size: 1rem;
    }

    .objectives-content {
        padding: 20px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .metric-card {
        padding: 20px;
    }

    .charts-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .chart-description {
        padding: 0 20px;
    }

    .chart-wrapper {
        padding: 0 20px 20px 20px;
    }

    .table-header,
    .ranking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 20px;
    }

    .table-wrapper {
        padding: 0 20px 20px 20px;
    }

    .ranking-list {
        padding: 20px;
    }

    table {
        min-width: 600px;
        font-size: 0.9rem;
    }

    th, td {
        padding: 10px 8px;
        white-space: nowrap;
    }

    .progress-bar {
        width: 60px;
        height: 6px;
    }

    .stars {
        font-size: 0.9rem;
    }

    .conclusions-content {
        padding: 25px;
    }

    .conclusions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}