/* ===== SEÇÃO TIMELINE ===== */
.secao-timeline {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-label {
  color: #a855f7;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-align: center;
}

.timeline-titulo {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}

/* Container da Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}

/* Linha vertical central */
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #a855f7 0%, #6366f1 50%, #3b82f6 100%);
}

/* Item da Timeline */
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInTimeline 0.5s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }
.timeline-item:nth-child(8) { animation-delay: 0.8s; }
.timeline-item:nth-child(9) { animation-delay: 0.9s; }
.timeline-item:nth-child(10) { animation-delay: 1.0s; }
.timeline-item:nth-child(11) { animation-delay: 1.1s; }
.timeline-item:nth-child(12) { animation-delay: 1.2s; }

@keyframes fadeInTimeline {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Marcador circular */
.timeline-marker {
  position: absolute;
  left: -40px;
  top: 5px;
  width: 18px;
  height: 18px;
  background: #1a1a2e;
  border: 3px solid #a855f7;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
  background: #a855f7;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
  transform: scale(1.2);
}

/* Itens de destaque */
.timeline-item.destaque .timeline-marker {
  background: #a855f7;
  width: 22px;
  height: 22px;
  left: -42px;
  top: 3px;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

/* Conteúdo do item */
.timeline-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 24px;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateX(5px);
}

.timeline-item.destaque .timeline-content {
  background: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.25);
}

/* Data */
.timeline-data {
  display: inline-block;
  color: #a855f7;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  padding: 4px 12px;
  background: rgba(168, 85, 247, 0.15);
  border-radius: 20px;
}

/* Título do item */
.timeline-titulo-item {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

/* Local/Empresa */
.timeline-local {
  color: #6366f1;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
}

/* Descrição */
.timeline-descricao {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .secao-timeline {
    padding: 60px 15px;
  }

  .timeline-titulo {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline::before {
    left: 6px;
  }

  .timeline-marker {
    left: -30px;
    width: 14px;
    height: 14px;
  }

  .timeline-item.destaque .timeline-marker {
    width: 18px;
    height: 18px;
    left: -32px;
  }

  .timeline-content {
    padding: 16px 18px;
  }

  .timeline-titulo-item {
    font-size: 1.1rem;
  }

  .timeline-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .timeline-titulo {
    font-size: 1.6rem;
  }

  .timeline-data {
    font-size: 0.75rem;
    padding: 3px 10px;
  }

  .timeline-titulo-item {
    font-size: 1rem;
  }

  .timeline-descricao {
    font-size: 0.85rem;
  }
}
