/* Servicios bandas — bloque de SERVICIOS en la HOME.
   3 bandas en grid horizontal: cada una con título + pregunta turquesa + descripción
   + lista de 3 service-cards en filas clickables.
   Extraído literal de HOME.html (.services / .service-band / .service-card). */

.services__header { margin-bottom: var(--space-xl); }
.services__header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}
.services__header-text {
  flex: 1;
  min-width: 300px;
}
.services__header-text h2 { margin-bottom: -0.18em; }
.services__header h2 { margin-bottom: var(--space-md); }
.services__header h2 em { font-style: normal; color: var(--color-orange); }
.services__header p {
  font-size: var(--text-lg);
  color: var(--color-gray);
}

.services__bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: 0;
}

.service-band {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(42, 41, 98, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-band:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(42, 41, 98, 0.15);
}

.service-band__bg-icon {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 130px;
  height: 130px;
  color: rgba(244, 124, 60, 0.09);
  pointer-events: none;
  z-index: 0;
  transition: var(--transition);
}
.service-band:hover .service-band__bg-icon {
  color: rgba(244, 124, 60, 0.16);
  transform: rotate(-6deg) scale(1.05);
}

.service-band__head,
.service-band__list {
  position: relative;
  z-index: 1;
}

.service-band__head {
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.service-band__group {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.service-band__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-turquoise);
  line-height: 1.3;
  width: 100%;
  margin: 0;
}
.service-band__desc {
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: 1.45;
  margin: 0;
  width: 100%;
}

.service-band__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-sm);
  border-top: 1px solid rgba(42, 41, 98, 0.08);
}

/* Cada service-card aquí es una FILA clickable, no una card cuadrada. */
.service-band__list .service-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1.1rem 0.75rem;
  margin: 0 -0.75rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(42, 41, 98, 0.10);
  border-radius: var(--radius-sm);
  box-shadow: none;
  gap: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.service-band__list .service-card:last-child { border-bottom: none; }
.service-band__list .service-card:hover {
  background: var(--color-beige);
  border-bottom-color: transparent;
  padding-left: 1rem;
}

.service-card__head {
  flex-grow: 1;
  margin-bottom: 0;
  gap: 0.85rem;
  align-items: center;
  display: flex;
}

.service-card__icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--color-turquoise);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
}
.service-band__list .service-card:hover .service-card__icon-wrap {
  background: var(--color-orange);
  transform: scale(1.05);
}
.service-card__icon {
  width: 22px;
  height: 22px;
  color: var(--color-white);
}

.service-band__list .service-card h3 {
  font-size: var(--text-xl);
  margin: 0;
  color: var(--color-dark);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family: var(--font-body);
}
.service-band__list .service-card:hover h3 { color: var(--color-orange); }

.service-card__arrow {
  font-size: 0;
  margin: 0;
  color: var(--color-orange);
  transition: var(--transition);
  opacity: 0.6;
}
.service-card__arrow::after {
  content: '→';
  font-size: 1.25rem;
  font-weight: 700;
}
.service-band__list .service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(6px);
}

@media (max-width: 968px) {
  .services__bands { grid-template-columns: 1fr; }
  .service-band__bg-icon { width: 90px; height: 90px; }
}
