/* ══════════════════════════════════════════════════════════
   SERVICIOS (página interna)
   ══════════════════════════════════════════════════════════ */
.servicios-page { overflow: auto; height: auto; }

.svc-hero {
  padding-top: clamp(50px, 6vh, 80px);
  padding-bottom: clamp(60px, 8vh, 90px);
  background: #ffffff;
}
.svc-intro {
  max-width: 850px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: var(--fs-md);
  line-height: 1.9;
  color: var(--color-text);
  font-family: var(--font-body);
}

.svc-radial {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 140px;
  max-width: 760px;
  margin: 3rem auto;
}
.svc-radial-row {
  display: flex;
  justify-content: space-between;
  gap: 140px;
}
.svc-radial-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--color-gold);
  box-shadow: 0 12px 32px rgba(26,39,86,0.18);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.svc-radial-logo img {
  width: 62%;
  height: auto;
}
.svc-area-item {
  flex: 1 1 0;
  min-width: 0;
  min-height: 120px;
  background: #ffffff;
  color: var(--color-navy);
  display: flex;
  padding: 1.1rem;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--color-gold);
  border-radius: 4px;
}
.svc-area-tl { border-radius: 4px 4px 75px 4px; align-items: center; justify-content: center; text-align: center; }
.svc-area-tr { border-radius: 4px 4px 4px 75px; align-items: center; justify-content: center; text-align: center; }
.svc-area-bl { border-radius: 4px 75px 4px 4px; align-items: center; justify-content: center; text-align: center; }
.svc-area-br { border-radius: 75px 4px 4px 4px; align-items: center; justify-content: center; text-align: center; }

.svc-synergy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: var(--fs-base);
  line-height: 2.0;
  font-style: italic;
  color: rgba(26,39,86,0.75);
  font-family: var(--font-body);
}
.svc-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.8rem;
}
.svc-diagnostic {
  max-width: 900px;
  margin: 3.5rem auto 0;
  text-align: center;
}
.svc-diagnostic .section-title {
  font-size: var(--fs-xl);
  margin-bottom: 1rem;
}
.svc-diagnostic-text {
  font-size: var(--fs-base);
  line-height: 1.9;
  color: var(--color-text);
  font-family: var(--font-body);
}

@media (max-width: 700px) {
  .svc-radial {
    gap: 70px;
    max-width: 320px;
  }
  .svc-radial-row {
    gap: 60px;
  }
  .svc-area-item {
    min-height: 70px;
    font-size: var(--fs-2xs);
    padding: 0.7rem;
  }
  .svc-radial-logo {
    width: 60px;
    height: 60px;
    border-width: 2px;
  }
}