/* * * * * * * * * * * * * * * * * * * * * * * * * * * 

TIMELINE BY CLAUDE   TIMELINE BY CLAUDE   TIMELINE BY CLAUDE

* * * * * * * * * * * * * * * * * * * * * * * * * * */


.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    position: relative;
/*    border: 1px solid #e0e0e0;
*/
    min-height: 300px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    width: 100%;
}

.timeline-line {
    position: absolute;
    top: calc(50% - 18px);
    left: 0;
    right: 0;
    height: 3px;
    background-color: #007bff;
    z-index: 1;
    opacity: 0.7;
}

.timeline-item {
    text-align: center;
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    padding: 0 5px;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: #007bff;
    border: 3px solid #fff;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.3);
}


.timeline-dot-brazil {
    width: 24px;
    height: 24px;
    background-color: #007bff;
    border: 3px solid #fff;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.3);
}



.timeline-name {
    position: absolute;
    bottom: 100%;
    left: 80%;
    transform: translateX(-50%) rotate(-45deg);
    transform-origin: bottom center;
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #444;
    transition: all 0.3s ease;
    width: max-content;
    max-width: 100px;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
}

.timeline-item:hover .timeline-dot {
    width: 24px;
    height: 24px;
    background-color: #0056b3;
    cursor: pointer;
}

.timeline-item:hover .timeline-dot-brazil {
    width: 16px;
    height: 16px;
    background-color: #0056b3;
    cursor: pointer;
}

.timeline-year {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #666;
    transition: color 0.3s;
}

.timeline-item:hover .timeline-name {
    color: #007bff;
    transform: translateX(-50%) rotate(-45deg) scale(1.5);
}

.timeline-item:hover .timeline-year {
    color: #007bff;
}




/* * * * * * * * * * * * * * * * * * * * * * * * * * * 

END TIMELINE BY CLAUDE   END TIMELINE BY CLAUDE   END TIMELINE BY CLAUDE

* * * * * * * * * * * * * * * * * * * * * * * * * * */