.nav a.nav-active {
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
}

/* =========================
   BLOQUE SERVICIO
========================= */
.srv-block {
  position: relative;
  width: 100%;
  min-height: 520px;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

/* =========================
   CARRUSEL DE FONDO
========================= */
.srv-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.srv-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.srv-bg-slide.is-active {opacity: 1;}

.srv-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
 object-position: center;
}

/* =========================
   DEGRADADO
========================= */
.srv-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.75) 35%,
    rgba(0, 0, 0, 0.30) 65%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

/* =========================
   SPOTLIGHT
========================= */
.srv-spotlight {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 75%;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 3;
}

.srv-spot-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.srv-spot-slide.is-active {
  opacity: 1;
}

.srv-spot-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* =========================
   CONTENIDO
========================= */
.srv-content {
  position: relative;
  z-index: 4;
  width: 45%;
  margin-left: auto;
  padding: 60px 60px 60px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.srv-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.srv-number {
  font-size: 72px;
  font-weight: 900;
  font-style: italic;
  color: #D81219;
  line-height: 1;
  flex-shrink: 0;
}

.srv-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0;
}

.srv-desc {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.7;
  max-width: 380px;
  margin: 0;
}

.srv-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  max-width: 420px;
}

.srv-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.5;
}

.srv-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D81219;
  flex-shrink: 0;
  margin-top: 6px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .srv-spotlight {
    width: 340px;
    height: 68%;
    left: 24px;
  }

  .srv-content {
    width: 50%;
    padding: 50px 40px 50px 0;
  }

  .srv-number {
    font-size: 60px;
  }
}


@media (max-width: 768px) {
  .srv-block {
    min-height: 700px;
    height: auto;
    padding: 40px 0;
    align-items: flex-start;
  }

  .srv-spotlight {
    width: 70%;
    height: 260px;
    left: 50%;
    top: auto;
    bottom: 40px;
    transform: translateX(-50%);
  }

  .srv-content {
    width: 100%;
    padding: 40px 24px 320px;
    margin-left: 0;
  }

  .srv-gradient {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.90) 0%,
      rgba(0, 0, 0, 0.65) 38%,
      rgba(0, 0, 0, 0.20) 70%,
      rgba(0, 0, 0, 0.05) 100%
    );
  }

  .srv-header {
    gap: 12px;
  }

  .srv-number {
    font-size: 48px;
  }

  .srv-title {
    font-size: 26px;
  }

  .srv-desc,
  .srv-bullets {
    max-width: 100%;
  }

  /* Variantes 02, 03, 04 */
  .srv-spotlight-02,
  .srv-spotlight-03,
  .srv-spotlight-04 {
    width: 70%;
    height: 260px;
    right: auto;
    left: 50%;
    top: 90px;
    transform: translateX(-50%);
  }

  .srv-content-02,
  .srv-content-03,
  .srv-content-04 {
    width: 100%;
    padding: 360px 24px 40px;
    margin-left: 0;
  }

  .srv-gradient-02,
  .srv-gradient-03,
  .srv-gradient-04 {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.90) 0%,
      rgba(0, 0, 0, 0.65) 38%,
      rgba(0, 0, 0, 0.20) 70%,
      rgba(0, 0, 0, 0.05) 100%
    );
  }
}


/* Fondo 02 */
.srv-bg-carousel-02 {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.srv-bg-slide-02 {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.srv-bg-slide-02.is-active { opacity: 1; }

.srv-bg-slide-02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Degradado 02 — oscuro a la izquierda */
.srv-gradient-02 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.75) 35%,
    rgba(0,0,0,0.30) 65%,
    rgba(0,0,0,0.05) 100%
  );
}

/* Texto 02 — izquierda */
.srv-content-02 {
  position: relative;
  z-index: 4;
  width: 45%;
  padding: 60px 20px 60px 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Spotlight 02 — derecha */
.srv-spotlight-02 {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 80%;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 3;
}

.srv-spot-slide-02 {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.srv-spot-slide-02.is-active { opacity: 1; }

.srv-spot-slide-02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.nav a.nav-active-02 {
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
}

@media (max-width: 768px) {
  .srv-block-02 {
    min-height: 700px;
    height: auto;
    padding: 40px 0;
    align-items: flex-start;
  }

  .srv-spotlight-02 {
    width: 70%;
    height: 260px;
    right: auto;
    left: 50%;
    top: auto;
    bottom: 40px;
    transform: translateX(-50%);
  }

  .srv-content-02 {
    width: 100%;
    padding: 40px 24px 320px;
  }

  .srv-gradient-02 {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.90) 0%,
      rgba(0, 0, 0, 0.65) 38%,
      rgba(0, 0, 0, 0.20) 70%,
      rgba(0, 0, 0, 0.05) 100%
    );
  }
}

/* =========================
   BLOQUE SERVICIO
========================= */
.srv-block-carousel-03  {
  position: relative;
  width: 100%;
  min-height: 520px;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

/* =========================
   CARRUSEL DE FONDO
========================= */
.srv-bg-carousel-03 {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.srv-bg-slide-03 {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.srv-bg-slide-03.is-active {opacity: 1;}

.srv-bg-slide-03 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
 object-position: center;
}

/* =========================
   DEGRADADO
========================= */
.srv-gradient-03 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.75) 35%,
    rgba(0, 0, 0, 0.30) 65%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

/* =========================
   SPOTLIGHT
========================= */
.srv-spotlight-03 {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 75%;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 3;
}

.srv-spot-slide-03 {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.srv-spot-slide-03.is-active {
  opacity: 1;
}

.srv-spot-slide-03 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* =========================
   CONTENIDO
========================= */
.srv-content-03 {
  position: relative;
  z-index: 4;
  width: 45%;
  margin-left: auto;
  padding: 60px 60px 60px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.srv-header-03 {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.srv-number-03 {
  font-size: 72px;
  font-weight: 900;
  font-style: italic;
  color: #D81219;
  line-height: 1;
  flex-shrink: 0;
}

.srv-title-03 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0;
}

.srv-desc-03 {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.7;
  max-width: 380px;
  margin: 0;
}

.srv-bullets-03 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  max-width: 420px;
}

.srv-bullets-03 li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.5;
}

.srv-bullets-03 li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D81219;
  flex-shrink: 0;
  margin-top: 6px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .srv-spotlight-03 {
    width: 340px;
    height: 68%;
    left: 24px;
  }

  .srv-content-03 {
    width: 50%;
    padding: 50px 40px 50px 0;
  }

  .srv-number-03 {
    font-size: 60px;
  }
}


@media (max-width: 768px) {
  .srv-block-carousel-03 {
    min-height: 700px;
    height: auto;
    padding: 40px 0;
    align-items: flex-start;
  }

  .srv-spotlight-03 {
    width: 70%;
    height: 260px;
    left: 50%;
    top: auto;
    bottom: 40px;
    transform: translateX(-50%);
  }

  .srv-content-03 {
    width: 100%;
    padding: 40px 24px 320px;
    margin-left: 0;
  }

  .srv-gradient-03 {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.90) 0%,
      rgba(0, 0, 0, 0.65) 38%,
      rgba(0, 0, 0, 0.20) 70%,
      rgba(0, 0, 0, 0.05) 100%
    );
  }

  .srv-header-03 {
    gap: 12px;
  }

  .srv-number-03 {
    font-size: 48px;
  }

  .srv-title-03 {
    font-size: 26px;
  }

  .srv-desc-03,
  .srv-bullets-03 {
    max-width: 100%;
  }
}

/* Fondo 04 */
.srv-bg-carousel-04 {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.srv-bg-slide-04 {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.srv-bg-slide-04.is-active { opacity: 1; }

.srv-bg-slide-04 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Degradado 04 — oscuro a la izquierda */
.srv-gradient-04 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.75) 35%,
    rgba(0,0,0,0.30) 65%,
    rgba(0,0,0,0.05) 100%
  );
}

/* Texto 04 — izquierda */
.srv-content-04 {
  position: relative;
  z-index: 4;
  width: 45%;
  padding: 60px 20px 60px 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Spotlight 04 — derecha */
.srv-spotlight-04 {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 80%;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 3;
}

.srv-spot-slide-04 {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.srv-spot-slide-04.is-active { opacity: 1; }

.srv-spot-slide-04 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.nav a.nav-active-04 {
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
}

@media (max-width: 768px) {
  .srv-block-04 {
    min-height: 700px;
    height: auto;
    padding: 40px 0;
    align-items: flex-start;
  }

  .srv-spotlight-04 {
    width: 70%;
    height: 260px;
    right: auto;
    left: 50%;
    top: auto;
    bottom: 40px;
    transform: translateX(-50%);
  }

  .srv-content-04 {
    width: 100%;
    padding: 40px 24px 320px;
    margin-left: 0;
    
  }

  .srv-gradient-04 {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.90) 0%,
      rgba(0, 0, 0, 0.65) 38%,
      rgba(0, 0, 0, 0.20) 70%,
      rgba(0, 0, 0, 0.05) 100%
    );
  }
}


/* Fondo 02 */
.srv-bg-img-03 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.srv-spotlight-03 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}