/* ========== SERVICES HERO (VIDEO) ========== */

.services-hero {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 0 0 32px 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* VIDEO */
.services-hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.services-hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY (gradiente oscuro + verde) */
.services-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
      circle at bottom,
      rgba(0, 255, 100, 0.25),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.6) 0%,
      rgba(10, 10, 10, 0.9) 100%
    );
}
img.services-hero_image {
    top: 0;
    height: 24px;
    position: absolute;
    z-index: 10;
    margin-top: 28px;
}
/* CONTENT */
.services-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* BREADCRUMB */
.services-hero__breadcrumb {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  width: max-content;
}

.services-hero__breadcrumb span
{
  margin: 0 6px;
  opacity: 0.6;
}
/* BREADCRUMB FIX */
.services-hero__breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;

  list-style: none; /* ❌ quita números */
  margin: 0;
  padding: 6px 16px;

  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

/* cada item en línea */
.services-hero__breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* links */
.services-hero__breadcrumb a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.services-hero__breadcrumb a:hover {
  color: #fff;
}

/* separador */
.services-hero__breadcrumb span {
  opacity: 0.6;
}


/* TITLE */
.services-hero__title {
  font-size: 64px;
  line-height: 1.2;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  color: #fff;
}

.services-hero__title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-hero {
    height: 420px;
  }

  .services-hero__title {
    font-size: 48px;
  }
}

@media (max-width: 640px) {
  .services-hero {
    height: 400px;
    border-radius: 0 0 20px 20px;
  }

  .services-hero__title {
    font-size: 32px;
  }
  .services-hero__content {
    padding-top: 20px;
    }
    img.services-hero_image {
        height: 20px;
    }
}