/* ═══════════════════════════════════════════════
   hero.css — Sección principal / Hero
   Rodax Group Labs
═══════════════════════════════════════════════ */

#inicio {
  min-height: 100vh;
  padding: 130px 6% 90px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Dot-grid overlay */
#inicio::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(56, 189, 248, .12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
}

/* Glows */
.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, .2) 0%, transparent 65%);
  top: -200px; right: -180px;
  animation: drift 12s ease-in-out infinite alternate;
}
.glow-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(56, 189, 248, .08) 0%, transparent 65%);
  bottom: 0; left: -60px;
  animation: drift 16s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, 50px); }
}

/* Layout */
.hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 4rem;
  align-items: center;
}

/* Badge animado */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(56, 189, 248, .07);
  border: 1px solid rgba(56, 189, 248, .18);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1.6rem;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* Texto hero */
h1 .hi {
  background: linear-gradient(110deg, var(--blue-h) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.76;
  color: var(--text-sec);
  max-width: 490px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Trust row */
.trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .82rem;
  color: var(--text-muted);
}
.trust-avs { display: flex; }
.trust-avs span {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 800;
  color: var(--white);
  margin-left: -8px;
}
.trust-avs span:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #2563eb, #38bdf8); }
.av2 { background: linear-gradient(135deg, #7c3aed, #2563eb); }
.av3 { background: linear-gradient(135deg, #059669, #38bdf8); }
.trust strong { color: var(--text-pri); }

/* Hero panel card */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-b);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.card-lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.m-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.m-item {
  background: var(--bg-card2);
  border-radius: 10px;
  padding: 1rem;
}
.m-val {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin-bottom: 3px;
}
.m-val span { color: var(--cyan); }
.m-lbl { font-size: .72rem; color: var(--text-muted); }

.card-div {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.3rem;
}

.card-feats { display: flex; flex-direction: column; gap: .65rem; }
.cf {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .82rem;
  color: var(--text-sec);
}
.cf-ico {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: rgba(37, 99, 235, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  flex-shrink: 0;
}

/* Tech strip */
.strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 6%;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
}
.strip-lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.strip-track {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  animation: sl 25s linear infinite;
  white-space: nowrap;
}
.si {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: .5;
}
@keyframes sl {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
