/* ==========================================================================
   SectionRentingIA.css  (Shortcode: SectionRentingIA)
   Clases encapsuladas con prefijo srIA para no romper otros estilos
   ========================================================================== */

.srIA {
  background: var(--neutro1);
  padding: 90px 0;
}

.srIA__container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   CABECERA (TÍTULO + SUBTÍTULO)
   ========================= */

.srIA__head {
  margin-bottom: 40px;
}

.srIA__title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--neutro2);
  margin: 0;
}

.srIA__titleHighlight {
  color: var(--color2);
}

.srIA__subtitle {
  font-size: 1rem;
  color: #666;
  margin: 10px 0 0;
}

/* =========================
   GRID (IZQUIERDA TEXTO / DERECHA TIMELINE)
   ========================= */

.srIA__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 80px;
  align-items: stretch; /* iguala alturas de columnas */
}

.srIA__left,
.srIA__right {
  display: flex;
  flex-direction: column;
}

.srIA__p {
  font-size: 0.96rem;
  line-height: 1.85;
  margin: 0 0 18px;
}

.srIA__p strong {
  color: var(--neutro2);
  font-weight: 700;
}

/* =========================
   TIMELINE (LÍNEA + CÍRCULOS)
   ========================= */

.srIA__timeline {
  position: relative;
  border-left: 2px solid var(--color2);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.srIA__step {
  position: relative;
}

/* CÍRCULO centrado sobre la línea */
.srIA__dot {
  position: absolute;
  left: -19px;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color2);
  color: var(--neutro1);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--neutro1);
}

.srIA__stepBody {
  margin-left: 30px;
}

.srIA__stepTitle {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--neutro2);
}

.srIA__stepText {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* Paso con icono (ej. lupa en el 2) */
.srIA__step--withIcon {
  position: relative;
}

.srIA__step--withIcon .srIA__stepIcon {
  position: absolute;
  right: -50px;
  top: -10px;
  width: 60px;
  height: auto;
}

/* =========================
   CTA (EN COLUMNA + CENTRADO)  ✅ CAMBIO AQUÍ
   ========================= */

.srIA__cta {
  margin-top: 60px;
  display: flex;              /* fuerza layout */
  flex-direction: column;     /* en columna */
  align-items: center;        /* centrado horizontal */
  justify-content: center;
  gap: 18px;                  /* separación entre texto y botón */
  text-align: center;
}

.srIA__ctaText {
  /* antes era inline-flex y permitía que el botón quedara al lado */
  display: flex;              /* bloque (rompe línea) */
  align-items: flex-start;    /* icono alineado con la primera línea */
  justify-content: center;
  color: var(--color2);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;                  /* el gap ya gestiona el espacio */
}

.srIA__ctaIcon {
  width: 25px;
  height: auto;
  display: inline-block;
  flex: 0 0 auto;
  margin-top: 2px;            /* ajuste visual fino */
}

.srIA__ctaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color2);
  color: var(--neutro1);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  padding: 18px 46px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 8px 24px rgba(111, 66, 255, 0.25);
}

.srIA__ctaBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(111, 66, 255, 0.4);
  background: var(--color3);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px) {
  .srIA__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .srIA__timeline {
    padding-left: 30px;
    justify-content: flex-start;
  }

  .srIA__dot {
    left: -17px;
  }

  .srIA__step--withIcon .srIA__stepIcon {
    right: 0;
    top: 0;
    width: 36px;
  }
}

@media (max-width: 640px) {
  .srIA {
    padding: 70px 0;
  }

  .srIA__title {
    font-size: 2.2rem;
  }
}
