/* =========================
   PÁGINAS DE SERVICIOS
   ========================= */

.page-hero{
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding-top: 90px;
  overflow: hidden;
}

.page-hero__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.45), rgba(0,0,0,.25));
  z-index: 1;
}

.page-hero__content{
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.page-hero__title{
  font-weight: 800;
  font-size: clamp(34px, 4.2vw, 64px);
  margin: 0;
}

.page-hero__subtitle{
  margin-top: 10px;
  color: rgba(255,255,255,.88);
  font-size: clamp(16px, 1.8vw, 24px);
}

.service-intro{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.service-intro__title{
  font-weight: 600;
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 20px;
}

.service-intro__text{
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.5;
  color: #1d2b3a;
}

.service-block{
  padding: 70px 0;
}

.service-block__title{
  font-weight: 600;
  font-size: clamp(30px, 3vw, 50px);
  margin-bottom: 24px;
  line-height: 1.1;
}

.service-block__text{
  font-size: 20px;
  line-height: 1.8;
  color: #1d2b3a;
}

.service-block__text p{
  margin-bottom: 22px;
}

.service-block__media{
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    height:500px;
}

.service-block__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.service-cta{
  text-align: center;
  padding: 70px 0;
}

.service-cta__title{
  font-weight: 600;
  font-size: clamp(30px, 3vw, 52px);
  margin-bottom: 18px;
}

.service-cta__text{
  font-size: clamp(22px, 2vw, 34px);
  color: #1d2b3a;
  margin-bottom: 26px;
}

.service-phone{
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(38px, 4vw, 64px);
  color: var(--verde-lima-neon);
  text-decoration: none;
}

@media (max-width: 992px){
  .service-block{
    padding: 48px 0;
  }

  .service-block__text{
    font-size: 18px;
  }

  .service-block__media img{
    max-height: 420px;
  }
}