/* =========================================================
   6. SERVICIOS
   ========================================================= */
.services-section {
  padding: 95px 0;
  background-color: var(--bg-why);
  overflow: hidden;
}

.services-intro {
  padding: 10px 8px 10px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}

.section-title span {
  display: block;
  color: var(--primary);
}

.section-text {
  font-size: 1rem;
  line-height: 1.85;
  color: #5e6875;
  max-width: 520px;
}

.service-card {
  background-color: var(--white);
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow: 0 10px 25px rgba(17, 17, 17, 0.05);
  border: 1px solid #edf1f5;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(17, 17, 17, 0.08);
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(21, 106, 148, 0.12),
    rgba(249, 115, 22, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--text-strong);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 0;
  flex-grow: 1;
}