/* =========================================================
   DESARROLLO 
========================================================= */
body {
  background: #020617;
  color: #e5e7eb;
  font-family: "Open Sans", sans-serif;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* =========================================================
   TITULOS
========================================================= */
.title-main {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #ffffff;
}

/* =========================================================
   HERO
========================================================= */
.hero-desarrollo {
  min-height: 90vh;
  background: url("../images/heros/hero-desarrollo.webp") center / cover no-repeat;
  position: relative;
}

.hero-desarrollo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,.75);
}

.hero-desarrollo .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
}

.hero-subtitle {
  max-width: 720px;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #cbd5e1;
}

/* =========================================================
   METODOLOGIA
========================================================= */
.section-metodologia {
  padding: 5rem 0;
  text-align: center;
}

.section-metodologia p {
  margin-bottom: 1rem;
  color: #cbd5e1;
}

/* =========================================================
   SERVICIOS
========================================================= */
.section-servicios {
  padding: 5rem 0;
}

.card-servicio {
  display: block;
  position: relative;
  height: 320px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.card-servicio .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2,6,23,.95),
    rgba(2,6,23,.35)
  );
}

.card-servicio .info-card {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-servicio h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
}

.card-servicio p {
  font-size: .95rem;
  color: #cbd5e1;
}

.link-suave {
  margin-top: .5rem;
  font-weight: 600;
  color: #13E8A5;
}

/* =========================================================
   PRINCIPIOS
========================================================= */
.section-principios {
  padding: 5rem 0;
}

.principios-lista {
  list-style: none;
  padding: 0;
}

.principios-lista li {
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* =========================================================
   CTA
========================================================= */
.section-cta {
  padding: 4rem 0;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn-cta {
  background: #13E8A5;
  color: #020617;
  padding: .9rem 2.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}


/* =========================================================
   AJUSTE HERO DESARROLLO – MOBILE
   Restaura altura sin romper fix global
========================================================= */

@media (max-width: 768px) {
  .hero-desarrollo {
    min-height: 90vh;
  }
}