/* ─────────────────────────────────────────
   hero.css
───────────────────────────────────────── */

#inicio {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(160deg, #fff 55%, #eff6ff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
  background: var(--green-bg);
  border: 1px solid #bbf7d0;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.hero-role {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 1.25rem;
  font-family: 'DM Mono', monospace;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-desc strong { color: var(--text); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── Info card ── */
.hero-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.06);
}

.hero-card-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.hero-card-role {
  font-size: 13px;
  color: var(--blue);
  font-family: 'DM Mono', monospace;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.info-row:last-child { border-bottom: none; }

.info-label { color: var(--text3); }
.info-val   { color: var(--text); font-weight: 500; }

.info-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid var(--blue-mid);
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
}
