/* ─── AXIOM Human Performance — variante visual da página ─── */

.page-human-performance {
  --hp-accent-glow: rgba(6, 182, 212, 0.35);
  --hp-radial-core: rgba(6, 182, 212, 0.14);
}

/* Unicorn + overlays — tom mais “performance humana” (ciano) vs laranja da home */
.page-human-performance .axiom-bg-radial {
  background: radial-gradient(
    circle at 50% 35%,
    var(--hp-radial-core) 0%,
    rgba(37, 99, 168, 0.08) 40%,
    transparent 62%
  );
  mix-blend-mode: screen;
}

.page-human-performance .axiom-bg-crt {
  opacity: 0.12;
  background: linear-gradient(
    90deg,
    rgba(6, 182, 212, 0.05),
    rgba(34, 197, 94, 0.03),
    rgba(37, 99, 168, 0.06)
  );
  background-size: 3px 100%;
}

.page-human-performance #hero-hp.slide {
  background: linear-gradient(
    180deg,
    rgba(5, 5, 8, 0.2) 0%,
    rgba(5, 5, 8, 0.5) 100%
  );
}

.page-human-performance #serviços.slide,
.page-human-performance #diferencial.slide {
  background: linear-gradient(
    180deg,
    rgba(31, 32, 37, 0.85) 0%,
    rgba(5, 5, 8, 0.75) 100%
  );
}

.page-human-performance .gradient-text {
  background: linear-gradient(
    135deg,
    var(--clr-info) 0%,
    var(--clr-secondary-light) 45%,
    var(--clr-accent-light) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.page-human-performance .badge {
  color: var(--clr-info);
  border-color: rgba(6, 182, 212, 0.35);
  background: rgba(6, 182, 212, 0.08);
}

.page-human-performance .badge:hover {
  background: rgba(6, 182, 212, 0.15);
  border-color: var(--clr-info);
}

.page-human-performance .metric-value {
  text-shadow: 0 0 24px var(--hp-accent-glow);
}

.page-human-performance .nav-link--active {
  color: var(--clr-info);
}

.page-human-performance .nav-link--active::after {
  background: linear-gradient(90deg, var(--clr-info), var(--clr-secondary-light));
}

.page-human-performance .hp-pillar-card {
  height: 100%;
}

.page-human-performance .hp-pillar-card .card-title {
  color: var(--clr-info);
}

/* ── Background da dobra 02 — preto azulado para não competir com textos em ciano ── */
.page-human-performance #empresa.slide,
.page-human-performance #empresa.slide.section-gradient {
  background: linear-gradient(
    180deg,
    rgba(4, 8, 15, 0.98) 0%,
    rgba(2, 5, 10, 0.99) 100%
  ) !important;
}

.page-human-performance #empresa .slide-container {
  display: block !important;
  grid-template-columns: unset !important;
  grid-template-areas: unset !important;
  columns: unset !important;
  align-items: stretch;
  width: 100%;
}

.page-human-performance #empresa .hp-empresa-content {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  flex: unset !important;
  grid-column: 1 / -1 !important;
  display: block !important;
  text-align: left;
  box-sizing: border-box;
}

.page-human-performance #empresa .hp-empresa-subtitle {
  margin-top: 48px;
}

.page-human-performance #empresa .body-text,
.page-human-performance #empresa .step-item > div > .step-body {
  text-align: justify;
  text-justify: inter-word;
  max-width: none;
  width: 100%;
}

.page-human-performance #empresa .step-list {
  width: 100%;
}

.page-human-performance #empresa .step-item > div > .step-list .step-body {
  text-align: left;
}

/* Seção contato / chatbot — mesmas regras visuais da home (#contato) */
.page-human-performance #contato-hp.slide {
  overflow: hidden;
  background: var(--clr-surface);
}

.page-human-performance #contato-hp .contato-content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 960px;
  padding: 0 24px;
}

.page-human-performance #contato-hp .contato-status {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.page-human-performance #contato-hp .contato-status-line {
  width: 48px;
  height: 1px;
  background: #27272a;
}

.page-human-performance #contato-hp .contato-status-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 12px;
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid #27272a;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #f9f9ff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  backdrop-filter: blur(8px);
}

.page-human-performance #contato-hp .contato-status-dot {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
}

.page-human-performance #contato-hp .contato-status-dot-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--clr-info);
  opacity: 0.75;
  animation: contato-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.page-human-performance #contato-hp .contato-status-dot-core {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-info);
}

@media (max-width: 768px) {
  .page-human-performance #contato-hp .contato-content {
    padding: 0 4px;
  }

  .page-human-performance #contato-hp .contato-status {
    margin-bottom: 24px;
  }
}