/* Nuestra Historia CSS */

.timeline-section {
  padding: 50px 0;
}

.timeline-section h2 {
  color: #BF390B;
  margin-bottom: 30px;
  text-align: center;
  font-size: 2.5rem;
}

.timeline-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.timeline-item {
  display: flex;
  margin-bottom: 60px;
  align-items: center;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  padding: 0 30px;
}

.timeline-image {
  flex: 1;
  text-align: center;
}

.timeline-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.timeline-year {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.timeline-year .year-start {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3A0B6C; /* Color morado */
}

.timeline-year .year-dash {
  font-size: 2.5rem;
  margin: 0 10px;
  color: #333;
}

.timeline-year .year-end {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FF5722; /* Color naranja */
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #3A0B6C; /* Color morado */
}

.timeline-list {
  list-style-type: none;
  padding-left: 0;
}

.timeline-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.timeline-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #FF5722; /* Color naranja */
  font-weight: bold;
}

@media (max-width: 768px) {
  .timeline-item, 
  .timeline-item:nth-child(even) {
    flex-direction: column;
  }
  
  .timeline-content {
    padding: 0;
    margin-bottom: 20px;
  }
}
