/* ====== SERVICIOS GH STAND 2026 ====== */

.services {
  position: relative;
  padding: 5rem 5vw;
  background: radial-gradient(circle at top left, #fdf7e6 0, #f5f6fb 40%, #eef1f8 100%);
  overflow: hidden;
}

/* ligera textura geométrica de fondo */
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      120deg,
      rgba(8, 21, 33, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(210deg, rgba(8, 21, 33, 0.02) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.8;
  pointer-events: none;
}

.services-header {
  position: relative;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  z-index: 1;
}

.services-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gh-yellow, #ffd447);
  margin-bottom: 0.5rem;
}

.services-kicker::before,
.services-kicker::after {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(0, 0, 0, 0.16);
}

.services-title {
  font-size: clamp(1.9rem, 2.4vw + 1rem, 2.4rem);
  margin-bottom: 0.75rem;
  color: var(--gh-text-main, #0a1020);
}

.services-title span {
  color: var(--gh-yellow, #ffd447);
}

.services-subtitle {
  color: var(--gh-text-soft, #647189);
  font-size: 0.98rem;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.services-tags span {
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(8, 21, 33, 0.06);
  color: var(--gh-text-soft, #647189);
}

/* grid de cards */

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.7rem;
}

/* card base */

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.9rem 1.7rem;
  box-shadow: 0 18px 45px rgba(8, 21, 33, 0.06);
  border: 1px solid rgba(8, 21, 33, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 200ms ease, box-shadow 200ms ease,
    border-color 200ms ease, background 200ms ease;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

/* icono redondo */

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 212, 71, 0.12);
  color: var(--gh-yellow, #ffd447);
}

.service-icon i {
  font-size: 1.4rem;
}

/* badge */

.service-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(8, 21, 33, 0.08);
  background: rgba(248, 249, 255, 0.9);
  color: var(--gh-text-soft, #647189);
}

/* título + texto */

.service-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--gh-text-main, #0a1020);
}

.service-description {
  font-size: 0.9rem;
  color: var(--gh-text-soft, #647189);
  margin-bottom: 0.2rem;
}

/* lista de features */

.service-features {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-features li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.9rem;
  color: var(--gh-text-main, #0a1020);
}

.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gh-yellow, #ffd447);
  box-shadow: 0 0 8px rgba(255, 212, 71, 0.7);
}

/* hover */

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(8, 21, 33, 0.16);
  border-color: rgba(255, 212, 71, 0.7);
}

/* ====== RESPONSIVE ====== */

@media (max-width: 768px) {
  .services {
    padding: 3.5rem 1.5rem;
  }

  .services-subtitle {
    font-size: 0.9rem;
  }

  .service-card {
    padding: 1.6rem 1.4rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 3rem 1.1rem;
  }

  .services-tags span {
    font-size: 0.75rem;
  }

  .service-card {
    padding: 1.4rem 1.2rem;
    border-radius: 16px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
  }
}
