/* Evidentia — motor de evidencia operativa · landing de marca blanca */
:root {
  --ev-accent: #d97706;
  --ev-accent-light: #fbbf24;
  --ev-amber-glow: rgba(217, 119, 6, 0.4);
  --ev-emerald: #10b981;
}

.text-gradient-evidentia {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 40%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header-product-name.evidentia-brand {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lab-hero-evidentia {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5.5rem) 0 3rem;
}

.lab-hero-evidentia .lab-hero-glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background:
    radial-gradient(ellipse 50% 45% at 75% 15%, rgba(217, 119, 6, 0.2), transparent 65%),
    radial-gradient(ellipse 35% 40% at 15% 55%, rgba(16, 185, 129, 0.1), transparent 60%);
  pointer-events: none;
}

.ev-hero-dashboard {
  position: relative;
  min-height: 22rem;
  border-color: rgba(217, 119, 6, 0.35) !important;
  box-shadow: 0 0 0 1px rgba(217, 119, 6, 0.12), 0 24px 64px rgba(217, 119, 6, 0.14);
  padding: 0;
  overflow: hidden;
}

.ev-hero-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(217, 119, 6, 0.2);
  background: hsl(var(--surface) / 0.5);
}

.ev-hero-topbar strong {
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ev-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ev-emerald);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.7);
  animation: ev-pulse 1.5s ease-in-out infinite;
}

@keyframes ev-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.ev-hero-body {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.ev-timeline {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 64px;
  padding: 0 4px;
}

.ev-timeline-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--ev-accent-light), var(--ev-accent));
  opacity: 0.85;
  transform-origin: bottom;
  animation: ev-bar 2.4s ease-in-out infinite;
}

.ev-timeline-bar:nth-child(1) { animation-delay: 0s; height: 40%; }
.ev-timeline-bar:nth-child(2) { animation-delay: 0.15s; height: 65%; }
.ev-timeline-bar:nth-child(3) { animation-delay: 0.3s; height: 50%; }
.ev-timeline-bar:nth-child(4) { animation-delay: 0.45s; height: 80%; }
.ev-timeline-bar:nth-child(5) { animation-delay: 0.6s; height: 55%; }
.ev-timeline-bar:nth-child(6) { animation-delay: 0.75s; height: 90%; }
.ev-timeline-bar:nth-child(7) { animation-delay: 0.9s; height: 70%; }
.ev-timeline-bar:nth-child(8) { animation-delay: 1.05s; height: 45%; }

@keyframes ev-bar {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.25); }
}

.ev-evidence-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.ev-card {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(217, 119, 6, 0.25);
  background: hsl(var(--surface) / 0.55);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.ev-card.active {
  border-color: var(--ev-accent);
  box-shadow: 0 0 20px var(--ev-amber-glow);
}

.ev-card-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: hsl(var(--muted-foreground));
}

.ev-card-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ev-accent);
}

.ev-card-status {
  font-size: 0.68rem;
  margin-top: 4px;
  color: var(--ev-emerald);
}

.ev-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px 14px;
}

.ev-pill {
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(217, 119, 6, 0.35);
  background: rgba(217, 119, 6, 0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}

.ev-pill.active,
.ev-pill:hover {
  background: rgba(217, 119, 6, 0.2);
  border-color: var(--ev-accent);
  box-shadow: 0 0 16px var(--ev-amber-glow);
}

.lab-trust-strip.ev-trust {
  border-top: 1px solid rgba(217, 119, 6, 0.15);
  border-bottom: 1px solid rgba(217, 119, 6, 0.15);
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.04), transparent, rgba(16, 185, 129, 0.04));
}

.ev-proof-card strong.ev-proof-num {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--ev-accent-light), var(--ev-emerald));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-evidentia {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border: none;
  box-shadow: 0 4px 24px var(--ev-amber-glow);
}

.btn-evidentia:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.price-card.ev-featured {
  border-color: rgba(217, 119, 6, 0.5);
  box-shadow: 0 0 0 1px rgba(217, 119, 6, 0.2), 0 20px 48px rgba(217, 119, 6, 0.16);
}

.ev-chain {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.5rem;
}

.ev-chain-node {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(217, 119, 6, 0.3);
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(217, 119, 6, 0.06);
}

.ev-chain-arrow {
  color: var(--ev-accent);
  font-size: 1.2rem;
}
