/* Línea vertical */
.timeline {
  position: relative;
  width: 60px;
}

.timeline .line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #1976d2;
  transform: translateX(-50%);
  z-index: 1;
}


/* Puntos dentro de cada burbuja */
.logo-bubble {
  position: relative;
}

.logo-bubble .timeline-point {
  position: absolute;
  left: -57px; 
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #0d47a1;
  z-index: 2;
  transition: transform 0.3s ease;
}

/* Para asegurarte de que .logos se comporta como columna */
.logos {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.logo-bubble {
  position: relative;
}

.timeline-point {
  position: absolute;
  left: -60px; /* porque la columna central es de 60px */
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #0d47a1;
  z-index: 2;
}
