/* =============================================
    ARQUIVO: /css/course-detail-skeleton.css
    O "ESQUELETO" DE LAYOUT PARA TODAS AS
    PÁGINAS DE DETALHE DE CURSO.
    (SEM CORES, APENAS ESTRUTURA)
============================================= */

/* 1. Barra de Progresso de Rolagem (Estrutura) */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%; 
    height: 4px;
    z-index: 1100;
    transition: width 0.1s linear;
    /* Cor e sombra virão do arquivo de TEMA */
    background: var(--theme-primary);
    box-shadow: 0 0 10px var(--theme-shadow);
}

/* 2. Hero Específico do Curso (Estrutura) */
.course-hero {
    padding: 60px 0 40px 0;
    background-size: cover;
    background-position: center;
    text-align: center;
    /* Imagem de fundo e borda virão do TEMA */
}
.course-hero .icon {
    font-size: 3rem;
    margin-bottom: 15px;
    /* Cor e sombra virão do TEMA */
}
.course-hero h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
    /* Cor virá do TEMA */
}
.course-hero .meta-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 25px;
}
.course-hero .meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 50px;
    /* Cores de fundo e borda virão do TEMA */
}
.course-hero .meta-pill i {
    font-size: 1.1rem;
    /* Cor virá do TEMA */
}

/* 3. Estrutura Principal e Cards (Estrutura) */
.content-card {
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    /* Cores de fundo e borda virão do TEMA */
}
.category-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 5px;
    display: inline-block;
    /* Cor da borda virá do TEMA */
}
.sidebar-sticky {
    position: sticky;
    top: 100px;
}

/* 4. Componentes Interativos (Estrutura) */
.accordion-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}
.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
}
.accordion-button:not(.collapsed) {
    font-weight: 700;
}
.accordion-body {
    font-size: 0.95rem;
    line-height: 1.7;
}
.tech-checklist { /* Pode ser renomeado para .course-checklist se preferir */
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}
.tech-checklist li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1rem;
}
.tech-checklist li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    /* Cor e sombra virão do TEMA */
}
.career-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.career-tags .tag {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    /* Cores virão do TEMA */
}

/* Gráfico de Salários (Estrutura) */
.salary-graph {
    margin-top: 25px;
    padding-left: 10px;
    /* Cor da borda virá do TEMA */
    border-left: 2px solid var(--theme-card-border);
}
.salary-level {
    margin-bottom: 20px;
    position: relative;
}
.salary-level strong {
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}
.salary-level span {
    font-size: 0.9rem;
}
.salary-level .bar {
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 8px;
    /* Cor de fundo virá do TEMA */
    background-color: var(--theme-card-border);
}
.salary-level .bar-inner {
    height: 100%;
    border-radius: 5px;
    /* Cor e sombra virão do TEMA */
}
.salary-level .bar-junior { width: 33%; }
.salary-level .bar-pleno { width: 66%; }
.salary-level .bar-senior { width: 100%; }

/* Card de Preço (Estrutura) */
.price-card {
    text-align: center;
    /* Cores virão do TEMA */
}
.price-card .price-old {
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.8;
}
.price-card .price-new {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}
.price-card .price-new span {
    font-size: 1.1rem;
    font-weight: 400;
}
.price-card .price-note {
    font-size: 0.8rem;
    margin-top: 10px;
}
.bolsas-card {
    text-align: center;
}
.bolsas-card img {
    max-width: 200px;
    margin-bottom: 15px;
}

/* 5. Botão CTA (Estrutura) */
.btn-cta-theme {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: none;
    width: 100%;
    /* Cores virão do TEMA */
}
.btn-cta-theme:hover {
    transform: scale(1.05);
}