/* =========================
   SERVICIOS PAGE
========================= */

body{
  background:#f8f9fc;
}

/* HERO */

.services-hero{
  padding:55px 0 45px;
  background:#fff;
}

.services-hero-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:55px;
  align-items:center;
}

.mini-label{
  display:flex;
  align-items:center;
  gap:10px;
  color:#0d245b;
  font-size:13px;
  font-weight:800;
  margin-bottom:22px;
}

.mini-label::before{
  content:"";
  width:28px;
  height:3px;
  background:#f29a2e;
  border-radius:20px;
}

.hero-text h1{
  font-size:48px;
  line-height:1.15;
  color:#0d245b;
  font-weight:800;
  margin-bottom:22px;
}

.hero-text h1 span{
  color:#f29a2e;
}

.hero-text p{
  color:#6f7787;
  font-size:18px;
  line-height:1.8;
  max-width:560px;
  margin-bottom:28px;
}

.btn-primary{
  gap:12px;
}

.hero-image{
  position:relative;
  overflow:hidden;
  border-bottom-left-radius:240px;
}

.hero-image::before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:78%;
  height:95%;
  border-radius:300px 300px 0 0;
  border:55px solid #2f6eea;
  border-right:none;
  border-bottom:none;
  z-index:1;
}

.hero-image::after{
  content:"";
  position:absolute;
  left:70px;
  bottom:0;
  width:130px;
  height:90px;
  background:#f29a2e;
  border-radius:160px 160px 0 0;
  z-index:2;
}

.hero-image img{
  width:100%;
  height:420px;
  object-fit:cover;
  position:relative;
  z-index:3;
  border-bottom-left-radius:220px;
}

/* SECTION TITLE */

.services-cards{
  padding:55px 0 25px;
}

.services-cards h2,
.process h2{
  text-align:center;
  color:#0d245b;
  font-size:28px;
  font-weight:800;
  margin-bottom:10px;
  position:relative;
}

.services-cards h2::after,
.process h2::after{
  content:"";
  width:38px;
  height:3px;
  background:#f29a2e;
  border-radius:10px;
  display:block;
  margin:10px auto 0;
}

.sub{
  max-width:680px;
  margin:0 auto 38px;
  text-align:center;
  color:#6f7787;
  line-height:1.8;
  font-size:16px;
}

/* CARDS */

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.card{
  background:#fff;
  border:1px solid #e7eaf0;
  border-radius:10px;
  padding:34px 28px 28px;
  min-height:260px;
  transition:.25s ease;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 35px rgba(13,36,91,.08);
}

.card h3{
  color:#0d245b;
  font-size:18px;
  font-weight:800;
  margin:0 0 22px;
}

.card p{
  color:#6f7787;
  font-size:16px;
  line-height:1.7;
  margin-bottom:24px;
}

.card a{
  color:#1d63c6;
  font-weight:700;
  font-size:15px;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

/* ICONOS CARDS - IGUAL ESTILO IMAGEN */

.icon{
  width:76px;
  height:76px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
  border:6px solid #fff;
  box-shadow:0 0 0 1px rgba(13,36,91,.04);
}

.icon i{
  font-size:31px;
}

.icon.blue{
  background:#edf3ff;
  color:#1d63c6;
}

.icon.orange{
  background:#fff2e6;
  color:#ff7518;
}

/* PROCESS */

.process{
  padding:45px 0 60px;
  background:#f1f4f9;
}

.steps{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:26px;
  margin-top:34px;
  position:relative;
}

.step{
  position:relative;
}

.step::before{
  content:"";
  position:absolute;
  top:37px;
  left:88px;
  width:calc(100% - 50px);
  border-top:2px dotted #9ab5dc;
  z-index:0;
}

.step:last-child::before{
  display:none;
}

.step-icon{
  width:76px;
  height:76px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border:5px solid #fff;
  box-shadow:0 0 0 1px rgba(13,36,91,.04);
  margin:0 auto 18px 0;
  position:relative;
  z-index:2;
}

.step-icon i{
  font-size:30px;
}

.step-icon.blue{
  background:#edf3ff;
  color:#1d63c6;
}

.step-icon.orange{
  background:#fff2e6;
  color:#ff7518;
}

.step span{
  display:block;
  color:#ff7518;
  font-size:20px;
  font-weight:800;
  margin-bottom:8px;
}

.step h4{
  color:#0d245b;
  font-size:16px;
  font-weight:800;
  line-height:1.35;
  margin-bottom:8px;
}

.step p{
  color:#516070;
  font-size:14px;
  line-height:1.6;
}

/* CTA BAND */

.cta-band{
  background:#073572;
  padding:48px 0;
  color:#fff;
}

.cta-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}

.cta-flex h2{
  font-size:30px;
  line-height:1.25;
  max-width:680px;
  margin-bottom:10px;
}

.cta-flex p{
  font-size:16px;
  color:rgba(255,255,255,.86);
}

.btn-white{
  background:#fff;
  color:#0d245b;
  padding:16px 34px;
  border-radius:10px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:12px;
}

/* FOOTER ICONS */

.footer i{
  width:20px;
  color:#fff;
  margin-right:8px;
}

/* RESPONSIVE */

@media(max-width:1000px){

  .services-hero-grid,
  .grid,
  .steps{
    grid-template-columns:1fr;
  }

  .hero-text h1{
    font-size:38px;
  }

  .hero-image img{
    height:340px;
  }

  .hero-image::before,
  .hero-image::after{
    display:none;
  }

  .hero-image,
  .hero-image img{
    border-radius:12px;
  }

  .step::before{
    display:none;
  }

  .cta-flex{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:576px){

  .services-hero{
    padding:35px 0;
  }

  .hero-text h1{
    font-size:32px;
  }

  .hero-text p,
  .card p{
    font-size:15px;
  }

  .card{
    padding:28px 22px;
  }

  .icon,
  .step-icon{
    width:68px;
    height:68px;
  }

  .icon i,
  .step-icon i{
    font-size:26px;
  }

  .cta-flex h2{
    font-size:25px;
  }
}