/* == LISTADO SERVICIOS == */
.service-list-section {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  position: relative;
}

.service-list-section:nth-child(2){
    margin-top: 30px;
}

.services-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: var(--services-list-justify, center);
  padding: 0px 0;
}

/* Solo aplica blur si .blur-enabled está en .services-list */
/* Blur activado: control de color y opacidad via CSS custom properties */
.services-list.blur-enabled .service-item {
  filter: blur(8px);
  opacity: var(--pro-blur-inactive-opacity, 0.6);
  color: var(--pro-blur-inactive-color, #1B1B1B);
  pointer-events: none;
}
.services-list.blur-enabled .service-item.active {
  filter: none;
  opacity: var(--pro-blur-active-opacity, 1);
  color: var(--pro-blur-active-color, #1B1B1B);
  pointer-events: auto;
}

/* Blur desactivado: control de opacidad y color */
.services-list:not(.blur-enabled) .service-item {
  filter: none !important;
  opacity: var(--pro-inactive-opacity, 0.6);
  color: var(--pro-inactive-color, #1B1B1B);
  pointer-events: none;
}
.services-list:not(.blur-enabled) .service-item.active {
  filter: none !important;
  opacity: var(--pro-active-opacity, 1);
  color: var(--pro-active-color, #1B1B1B);
  pointer-events: auto;
}

/* Resto de estilos generales */
.service-item {
  font-size: 135px;
  font-family: 'Neue Montreal', sans-serif;
  font-weight: 800;
  transform: translateX(0);
  transition: 
    filter 0.32s cubic-bezier(.77,0,.18,1),
    opacity 0.22s,
    transform 0.37s cubic-bezier(.77,0,.18,1),
    box-shadow 0.3s,
    color 0.22s;
  will-change: filter, transform, opacity, color;
  margin-bottom: -60px;
  z-index: 0;
}
.service-item.active {
  transform: translateX(48px) scale(1.04);
  z-index: 1;
}

@media (max-width: 767px) {
  .service-list-section {
    flex-direction: column;
    align-items: flex-start;
    min-height: 60vh;
    padding-bottom: 40px;
  }
  
  .services-list {
    width: 100%;
    padding-top: 0;
  }
  
  .service-list-section:nth-child(2){
        margin-top: 90px;
    }
    
    .service-item.active {
      transform: translateX(10px) scale(1.03);
    }
}

