.timeline-section {
  padding: 200px 20px 60px 20px;
  background: #fff;
  text-align: center;
}

.timeline-title,
.team-title {
  display: block;
  width: 100%;
  font-weight: bold;
  font-size: 36px;
  margin-bottom: 50px;
  color: #3264e9;
  text-align: center; /* Aquí está centrado */
}

.timeline-container {
  max-width: 850px;
  margin: 0 auto;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: #c6dafc;
}

.timeline-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  background: #f7fafd;
  border: 1.5px solid #e0e7ef;
  border-radius: 8px;
  padding: 18px 22px;
  max-width: 250px;
  margin: 0 16px;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(175, 195, 210, 0.05);
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-item.visible .timeline-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.timeline-dot {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid #8eaafc;
  border-radius: 50%;
  z-index: 2;
}

.timeline-date {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #3264e9;
  padding: 4px 12px;
  border: 2px solid #c6dafc;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  z-index: 3;
}

.team-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-image {
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.team-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .timeline-content {
    max-width: 90vw;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 30px;
  }

  .timeline-dot,
  .timeline-date {
    left: 15px;
    transform: none;
  }

  .timeline-date {
    top: -20px;
  }
}

/*Sección Nueva Estilo "Elevador Inteligente"*/

.smart-elevator-section {
  position: relative;
  width: 100%;
  max-width: 1905px;
  height: 850px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.smart-elevator-section .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.smart-elevator-section .overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.smart-elevator-section .text-image {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  height: 400px;
  z-index: 3;
}

@media (max-width: 768px) {
  .smart-elevator-section {
    height: 600px;
  }

  .smart-elevator-section .text-image {
    height: 250px;
    right: 5%;
  }
}

.policies-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
}

.policies-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #3264e9;
}

.policy-list {
  list-style-type: disc;
  padding-left: 20px;
}

.policy-list li {
  margin-bottom: 12px;
}

.policy-list a {
  color: #00509d;
  font-weight: 500;
  text-decoration: none;
}

.policy-list a:hover {
  text-decoration: underline;
}

