/* ═══════════════════════════════════════
   hero.css — Seção principal (Hero)
   STYTEC Soluções de T.I
═══════════════════════════════════════ */

#hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 40px 90px;
  overflow: hidden;
}

/* ── Orbs de fundo ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb-center {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(18,85,224,0.14) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orb-tr {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(0,200,255,0.08) 0%, transparent 70%);
  top: 10%; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.orb-bl {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,200,255,0.06) 0%, transparent 70%);
  bottom: 5%; left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-30px); }
}

/* ── Cantos decorativos ── */
.corner { position: absolute; width: 38px; height: 38px; z-index: 3; }
.c-tl { top: 88px; left: 40px;  border-top: 2px solid rgba(0,200,255,0.45); border-left:  2px solid rgba(0,200,255,0.45); }
.c-tr { top: 88px; right: 40px; border-top: 2px solid rgba(0,200,255,0.45); border-right: 2px solid rgba(0,200,255,0.45); }
.c-bl { bottom: 30px; left: 40px;  border-bottom: 2px solid rgba(0,200,255,0.45); border-left:  2px solid rgba(0,200,255,0.45); }
.c-br { bottom: 30px; right: 40px; border-bottom: 2px solid rgba(0,200,255,0.45); border-right: 2px solid rgba(0,200,255,0.45); }

/* ── Badge topo ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeup 0.8s 0.1s both;
}
.badge-line {
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--cyan);
}

/* ── Logo ── */
.hero-logo {
  width: 220px;
  display: block;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 28px rgba(0,200,255,0.55));
  animation: fadeup 0.9s 0.25s both;
}

/* ── Título ── */
.hero-h1 {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(36px, 7.5vw, 88px);
  line-height: 0.95;
  margin-bottom: 6px;
  animation: fadeup 0.9s 0.38s both;
}
.h1-white { display: block; color: var(--white); }
.h1-grad  {
  display: block;
  background: linear-gradient(90deg, #2196f3, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtítulo ── */
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 500px;
  margin: 24px auto 48px;
  line-height: 1.8;
  font-weight: 400;
  animation: fadeup 0.9s 0.5s both;
}

/* ── Botões ── */
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeup 0.9s 0.64s both;
}

/* ── Indicador de scroll ── */
.scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  animation: fadeup 1s 1s both;
}
.scroll-cue span {
  font-family: 'Orbitron', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--muted);
}
.scroll-mouse {
  width: 20px; height: 32px;
  border: 1px solid rgba(0,200,255,0.3);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 3px; height: 7px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scroll-anim 1.8s ease-in-out infinite;
}

/* ── Animações ── */
@keyframes fadeup {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scroll-anim {
  0%   { transform: translateY(0);   opacity: 1; }
  100% { transform: translateY(9px); opacity: 0; }
}

/* ── Responsivo ── */
@media (max-width: 900px) {
  #hero   { padding: 100px 20px 80px; }
  .corner { display: none; }
}
