
/* Estilos da Linha do Tempo */
.timeline-container {
    padding: 20px;
    /*background: rgba(15, 15, 15, 0.7);*/
    /*border: 0px solid rgba(217, 160, 91, 0.2);*/
    /*border-radius: 0px;*/
    margin-top: 20px;
    position: sticky;
    top: 1px; /* Fixa durante o scroll */
}

.timeline-title {
    color: #d9a05b;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.timeline-subtitle {
    font-size: 0.85rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 30px;
}

.timeline-items {
    position: relative;
    padding-left: 20px;
}

/* Linha vertical */
.timeline-items::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(217, 160, 91, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 90px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

/* Classe para o efeito de entrada */
.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-dot {
    position: absolute;
    left: -20px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #d9a05b;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(217, 160, 91, 0.5);
}

.timeline-content .stat-number {
    display: block;
    color: #fff;
    font-size: 2.6rem;
    font-weight: bold;
}

.timeline-content .stat-label {
    font-size: 1.2rem;
    color: #bbb;
    text-transform: uppercase;
}


/* Adicione isso ao container pai para dar perspectiva 3D */
.timeline-item {
    opacity: 0;
    /* Começa invisível e ligeiramente menor */
    transform: scale(0.8); 
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Curva elástica */
}

.timeline-item.visible {
    opacity: 1;
    /* Termina no tamanho normal (1) */
    transform: scale(1);
}