/* 
  CARREIRA.CSS - ESTILOS DA PÁGINA DE CARREIRA (TIMELINE)
*/

.career-section {
    padding-bottom: var(--space-xl);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: var(--space-xl) auto 0;
    padding-left: 30px;
}

/* Linha central da timeline */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--bg-dark));
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-lg);
    padding-left: 30px;
}

.timeline-dot {
    position: absolute;
    left: -24px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.timeline-date {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.timeline-content {
    background: var(--bg-card);
    padding: var(--space-md);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: #fff;
}

.company {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-style: italic;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .timeline {
        padding-left: 20px;
    }
}
