/* =========================
SERVICIOS / CAPACIDADES — EL MERCADO NEGRO
========================= */

.services-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #030303;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  filter: grayscale(1) brightness(.68) contrast(1.08);
  will-change: transform;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(240,230,210,.05), transparent 36%),
    linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.9));
}

.services-hero-title {
  position: absolute;
  z-index: 2;
  left: 7vw;
  bottom: 9vh;
  color: var(--bone);
}

.services-hero-title span {
  display: block;
  margin-bottom: 18px;
  color: rgba(240,230,210,.62);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.services-hero-title h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(90px, 14vw, 240px);
  line-height: .78;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.services-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 3;
  width: 42px;
  height: 72px;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.services-scroll-cue span {
  position: relative;
  display: block;
  width: 1px;
  height: 66px;
  background: rgba(240,230,210,.58);
  animation: servicesArrow 1.6s ease-in-out infinite;
}

.services-scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 11px;
  height: 11px;
  border-right: 1px solid rgba(240,230,210,.78);
  border-bottom: 1px solid rgba(240,230,210,.78);
  transform: translateX(-50%) rotate(45deg);
}

@keyframes servicesArrow {
  0%, 100% {
    transform: translateY(-8px);
    opacity: .45;
  }

  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

/* INTRO */

.services-intro {
  background: #030303;
  color: var(--bone);
  padding: 120px 0 95px;
}

.services-intro-wrapper {
  width: min(820px, 86%);
  margin: 0 auto;
  text-align: justify;
}

.services-intro-wrapper p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.8;
}

/* TITLE */

.services-title-section {
  background: #030303;
  color: var(--bone);
  padding: 0 24px 100px;
  text-align: center;
}

.services-title-section h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(70px, 10vw, 150px);
  line-height: .82;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

/* LIST */

.services-list-section {
  background: #030303;
  color: var(--bone);
  border-top: 1px solid rgba(240,230,210,.12);
}

.service-row {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 520px;
  border-bottom: 1px solid rgba(240,230,210,.12);
}

.service-heading {
  padding: 72px 6vw;
  border-right: 1px solid rgba(240,230,210,.12);
}

.service-heading span {
  display: block;
  margin-bottom: 26px;
  color: rgba(240,230,210,.52);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.service-heading h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(58px, 7vw, 120px);
  line-height: .82;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.service-content {
  padding: 72px 7vw;
}

.service-content p {
  max-width: 760px;
  margin: 0 0 38px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.8;
}

.service-content ul {
  max-width: 820px;
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 56px;
}

.service-content li {
  break-inside: avoid;
  margin-bottom: 12px;
  color: rgba(240,230,210,.66);
  font-size: 15px;
  line-height: 1.5;
}

.service-content li::before {
  content: "— ";
  color: rgba(240,230,210,.45);
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .services-hero-title {
    left: 24px;
    right: 24px;
  }

  .services-intro {
    padding: 92px 0 74px;
  }

  .services-title-section {
    padding-bottom: 76px;
  }

  .service-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-heading {
    padding: 56px 24px 28px;
    border-right: 0;
  }

  .service-content {
    padding: 0 24px 64px;
  }

  .service-content ul {
    columns: 1;
  }
}

@media (max-width: 575px) {
  .services-hero-title h1 {
    font-size: clamp(78px, 23vw, 118px);
  }

  .service-content p {
    font-size: 15px;
  }

  .service-content li {
    font-size: 15px;
  }
}
