/* =========================================
   TECHNOLOGY — DaruPay
   Archivo: /assets/css/technology.css
   ========================================= */

:root {
  --tech-main-bg:#202A37;;               /* verde oscuro elegante */
  --tech-main-title: #FFFFFF;
  --tech-timeline-line: rgba(21, 211, 114, 0.45);
  --tech-icon-bg: #15D372;               /* verde primario DaruPay */
  --tech-icon-color: #0F161D;
  --tech-title-color: #F0F4F8;
  --tech-description-color: #A6B7C2;
}

.section-technology {
  background-color: var(--tech-main-bg);
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: #fff;
}

/* Título */
.tech-main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--tech-main-title);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
}

/* Timeline contenedor */
.tech-timeline {
  position: relative;
  padding-bottom: 10px;
}

/* Cada item */
.tech-timeline-item {
  position: relative;
  padding-left: 90px; /* espacio para icono y línea */
  margin-bottom: 3rem;
  min-height: 80px;
}

/* Tramo vertical por item (robusto y fluido) */
.tech-timeline-item::after {
  content: "";
  position: absolute;
  left: 34px;   /* centro del icono (68px ancho) */
  top: 68px;    /* base del icono */
  bottom: -3rem;/* llega al siguiente item (coincide con margin-bottom) */
  width: 2px;
  background: var(--tech-timeline-line);
}
.tech-timeline-item:last-child::after {
  display: none; /* termina en el último icono */
}

/* Icono */
.tech-timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 68px;
  height: 68px;
  background-color: var(--tech-icon-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tech-icon-color);
  box-shadow: 0 10px 30px rgba(21, 211, 114, 0.25);
}
.tech-timeline-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

/* Textos */
.tech-timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tech-title-color);
  margin-bottom: 0.5rem;
}
.tech-timeline-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--tech-description-color);
}

/* Imagen derecha */
.tech-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tech-image {
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  height: auto;
}

/* Responsivo */
@media (max-width: 991.98px) {
  .tech-timeline-item { margin-bottom: 2.25rem; }
  .tech-timeline-item::after { bottom: -2.25rem; }
  .tech-main-title { margin-bottom: 2.5rem; }
}
@media (max-width: 575.98px) {
  .tech-timeline-title { font-size: 1.25rem; }
}