/* Definição de Fonte Global */
body { 
    font-family: 'Inter', sans-serif; 
}

/* Hero Section com Imagem e Overlay */
.hero-bg {
    /* Gradiente escuro sobre a imagem para garantir legibilidade do texto branco */
    background-image: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.7)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax */
}

/* Personalização da Linha do Tempo (Vertical Line) */
.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #e5e7eb; /* cor gray-200 do tailwind */
    transform: translateX(-50%);
}

/* Ajuste da linha do tempo para Mobile */
@media (max-width: 768px) {
    .timeline-line::before { 
        left: 20px; 
    }
}
