/* Container principal - updated class name */
.tie-timeline-container {
    position: relative;
    padding: 20px 0;
    margin: 0;
}

/* A linha vertical que conecta tudo (usando ::before) */
.tie-timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px; /* Posição da linha */
    width: 2px;
    background-color: #ccc; /* Cor da linha */
    z-index: 1;
}

/* Cada evento na linha do tempo */
.timeline-item {
    position: relative;
    padding: 10px 10px 20px 50px; /* Espaço para a bolinha e o texto */
    margin-bottom: 20px;
    z-index: 2; 
}

/* A bolinha do evento - updated class name */
.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: #ef0000; /* Cor da bola */
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    left: 13px; /* Alinhado com a linha vertical */
    top: 25px;
    z-index: 3;
}

/* Conteúdo do evento */
.timeline-content {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.timeline-date {
    font-size: 0.85em;
    color: #888;
    margin-top: 0;
    margin-bottom: 5px;
}

.timeline-title {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Ajuste Responsivo */
@media (max-width: 600px) {
    .tie-timeline-container::before {
        left: 10px;
    }
    .timeline-item {
        padding-left: 30px;
    }
    .timeline-dot {
        left: 6px;
    }
}