/* Home — blocos exclusivos da página inicial. O CSS dos parceiros mora em
   pages/parceiros.css; o das instituições, em pages/faculdades.css. */

/* ---------- Sobre: Código de Ética e CBO ---------- */
.etica-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    margin-top: 2.5rem;
    padding: 2rem 2.25rem;
    background: var(--grad-navy);
    border-radius: var(--radius-lg);
}
.etica-card h3 { color: #fff; margin-bottom: .375rem; }
.etica-card p { margin: 0; color: rgba(255, 255, 255, .82); }
.etica-card .btn { flex: none; }

.cbo-bloco { margin-top: 3.5rem; }
.cbo-bloco > h3 { text-align: center; }
.cbo-bloco > p {
    max-width: 52rem;
    margin: 1rem auto 2rem;
    text-align: center;
    color: var(--text-muted);
}
.cbo-card__codigo {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: .3125rem .875rem;
    border-radius: 999px;
    background: var(--navy-900);
    color: var(--amber-500);
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .06em;
}
.cbo-card h4 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--text-strong); }
.cbo-card p { margin: 0; }

/* Link dentro de card (ex.: "Conheça nossos parceiros") */
.card__link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: .875rem;
    font-weight: 700;
    color: var(--navy-900);
    text-decoration: none;
}
.card__link:hover { color: var(--navy-750); text-decoration: underline; }
.card__link svg { transition: transform .2s ease; }
.card__link:hover svg { transform: translateX(3px); }

/* ---------- Linha do tempo (história) ---------- */
.timeline {
    position: relative;
    max-width: 46rem;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
.timeline::before {
    content: "";
    position: absolute;
    left: .5rem;
    top: .5rem;
    bottom: .5rem;
    width: 2px;
    background: var(--border);
}
.timeline__item {
    position: relative;
    padding-left: 2.75rem;
    padding-bottom: 2.25rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
    content: "";
    position: absolute;
    left: .5625rem;
    top: .3125rem;
    width: .9375rem;
    height: .9375rem;
    border-radius: 50%;
    background: var(--amber-500);
    border: 3px solid var(--surface-alt);
    box-shadow: 0 0 0 2px var(--amber-500);
    transform: translateX(-50%);
}
.timeline__ano {
    display: block;
    margin-bottom: .375rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-900);
}
.timeline__item p { margin: 0; line-height: 1.7; }
.timeline-fecho {
    max-width: 46rem;
    margin: 2.75rem auto 0;
    text-align: center;
    font-weight: 500;
    color: var(--text-strong);
}
