/* --- Carrusel hero --- */
.services-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative;
}

.services-hero.is-transitioning .services-hero__content,
.services-hero.is-transitioning .services-hero__image {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.services-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.services-hero__title {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 32px;
  color: #ffffff;
  font-family: "Geist", sans-serif !important;
}

.services-hero__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Geist", sans-serif !important;
}

.services-hero__list li {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
}

.services-hero__list li::before {
  content: "✿";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  opacity: 1;
  color: #ffffff !important;
}

.services-hero__image-wrap {
  background-color: var(--color-bg-section);
  overflow: hidden;
}

.services-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.services-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--color-text);
  border: none;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.services-hero__arrow:hover,
.services-hero__arrow:focus-visible,
.services-hero__arrow:active {
  background-color: rgba(0, 0, 0, 0.75);
  transform: translateY(-50%);
  box-shadow: none;
}

.services-hero__arrow--prev {
  left: 24px;
}

.services-hero__arrow--next {
  right: 24px;
}

/* --- Proceso de trabajo --- */
.services-process {
  text-align: center;
  padding: 70px 40px 50px;
}

.services-process__eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 10px;
  font-family: "Geist", sans-serif !important;
}

.services-process__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Geist", sans-serif !important;
  color: #ffffff;
}

.services-process__divider {
  font-size: 16px;
  opacity: 0.5;
  font-family: "Geist", sans-serif !important;
  margin-bottom: 30px;
}

.services-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-process__number {
  display: block;
  font-size: 50px;
  font-weight: 400;
  opacity: 0.25;
  margin-bottom: 8px;
  opacity: 0.5;
  color: #ffffff !important;
}

.services-process__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: "Geist", sans-serif !important;
  color: #ffffff;
}

.services-process__text {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.75;
  font-family: "Geist", sans-serif !important;
}

/* --- CTA final --- */
.services-cta {
  background-color: var(--color-bg-section);
  text-align: center;
  padding: 50px 40px;
}

.services-cta__title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 36px;
  font-family: "Geist", sans-serif !important;
  color: #ffffff;
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-text);
  color: #1a1a1a;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: "Geist", sans-serif !important;
  letter-spacing: 0.1em;
  text-decoration: none;
}


/* --- Mobile Responsive --- */
@media (max-width: 782px) {
  .services-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .services-hero__content {
    padding: 46px 20px 28px;
    order: 1;
    max-width: 100%;
  }

  .services-hero__image-wrap {
    order: 0;
    height: 260px;
  }

  .services-hero__title {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .services-hero__list li {
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 24px;
  }

  .services-hero__arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
  }

  .services-hero__arrow--prev {
    left: 10px;
  }

  .services-hero__arrow--next {
    right: 10px;
  }

  .services-process {
    padding: 60px 20px 50px;
  }

  .services-process__title {
    font-size: 28px;
  }

  .services-process__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .services-cta {
    padding: 50px 24px;
  }

  .services-cta__title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .services-hero__content {
    padding: 36px 16px 24px;
  }

  .services-hero__title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .services-hero__image-wrap {
    height: 220px;
  }

  .services-hero__list li {
    font-size: 14px;
    margin-bottom: 10px;
  }
}