/* ============================================================
   TECNOLOGÍA DETALLE — Stylesheet
   ============================================================ */

/* -----------------------------------------------
   BASE
----------------------------------------------- */
.tecnologia-page {
  padding-top: 80px;
}


/* -----------------------------------------------
   INTRO
----------------------------------------------- */
.tec-intro {
  padding: 3.5rem 0 2rem;
  background-color: #ffffff;
}



.tec-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.tec-titulo::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 14px auto 0;
}

.tec-intro-texto p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 0.8rem;
}

/* -----------------------------------------------
   BLOQUES DE CONTENIDO
----------------------------------------------- */
.tec-bloque {
  padding: 3rem 0 4rem;
  background-color: #ffffff;
  border-top: 1px solid #eaeff4;
}

/* -----------------------------------------------
   ETAPAS
----------------------------------------------- */
.tec-etapa {
  padding: 4.5rem 0;
  background-color: #f8fafc;
  border-top: 1px solid #eaeff4;
}

.tec-etapa--alt {
  background-color: #ffffff;
}

.tec-etapa:last-of-type {
  border-bottom: 1px solid #eaeff4;
}

.tec-etapa-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);

  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: 0.7rem;
}

.tec-etapa-titulo::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 10px;
  opacity: 0.4;
}

/* -----------------------------------------------
   IMAGEN COMPARTIDA
----------------------------------------------- */
.tec-img-wrapper {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.tec-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.tec-img-wrapper:hover img {
  transform: scale(1.03);
}

/* -----------------------------------------------
   TEXTO
----------------------------------------------- */
.tec-texto {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.tec-texto strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* -----------------------------------------------
   RESPONSIVE
----------------------------------------------- */
@media (max-width: 991.98px) {
  .tec-intro {
    padding: 2.5rem 0 1.5rem;
  }

  .tec-bloque,
  .tec-etapa {
    padding: 3rem 0;
  }
}

@media (max-width: 767.98px) {
  .tec-etapa {
    padding: 2.5rem 0;
  }

  .tec-etapa-titulo {
    margin-top: 1rem;
  }
}
