/* ============================================= */
/* HERO - Seção principal / Banner do site        */
/* ============================================= */
/* O banner grande que aparece ao abrir o site     */
/* Com partículas, textos e visual orbital         */
/* ============================================= */

.hero {
  position: relative;
  min-height: 100vh;         /* Ocupa a tela inteira */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5% 80px;
  overflow: hidden;
  background: var(--gradiente-escuro);
}

/* Canvas das partículas de fundo */
.particulas-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Efeitos de brilho no fundo do hero */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(10, 77, 155, 0.15) 0%, transparent 70%);
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(29, 161, 242, 0.08) 0%, transparent 70%);
}

/* Container do conteúdo do hero */
.hero-conteudo {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Duas colunas iguais */
  align-items: center;
  gap: 60px;
  width: 100%;
}

/* --- TEXTOS DO HERO --- */
.hero-texto {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Badge/etiqueta superior */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(29, 161, 242, 0.06);
  border: 1px solid rgba(29, 161, 242, 0.15);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--azul-claro);
  width: fit-content;
}

/* Ponto verde pulsante no badge */
.badge-ponto {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulsar 2s infinite;
}

/* Título do hero - Altere font-size para mudar o tamanho */
.hero-titulo {
  font-family: var(--fonte-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--branco);
}

/* Subtítulo do hero */
.hero-subtitulo {
  font-size: 1.1rem;
  color: var(--cinza-claro);
  line-height: 1.7;
  max-width: 500px;
}

/* Container dos botões */
.hero-botoes {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- ESTATÍSTICAS DO HERO --- */
.hero-estatisticas {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(29, 161, 242, 0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Número grande nas estatísticas */
.stat-numero {
  font-family: var(--fonte-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradiente-primario);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Rótulo abaixo do número */
.stat-rotulo {
  font-size: 0.78rem;
  color: var(--cinza-claro);
  margin-top: 2px;
}

/* Linha divisória entre estatísticas */
.stat-divisor {
  width: 1px;
  height: 40px;
  background: rgba(29, 161, 242, 0.2);
}

/* --- VISUAL ORBITAL --- */
/* Animação circular com ícones girando ao redor da logo */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbita {
  position: relative;
  width: 380px;
  height: 380px;
}

/* Anéis orbitais (círculos girando) */
.anel-orbita {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(29, 161, 242, 0.15);
}

.anel-1 {
  inset: 0;
  animation: girar-lento 20s linear infinite;
}

.anel-2 {
  inset: 50px;
  animation: girar-lento 15s linear infinite reverse;
}

.anel-3 {
  inset: 90px;
  animation: girar-lento 25s linear infinite;
}

/* Ícones que giram nos anéis */
.icone-orbita {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(29, 161, 242, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-claro);
  box-shadow: 0 0 20px rgba(29, 161, 242, 0.15);
}

/* Posição dos ícones nos anéis */
.icone-orbita-1 { top: -23px; left: 50%; transform: translateX(-50%); }
.icone-orbita-2 { right: -23px; top: 50%; transform: translateY(-50%); }
.icone-orbita-3 { bottom: -20px; left: 50%; transform: translateX(-50%); }

/* Centro da órbita (onde fica a logo) */
.centro-orbita {
  position: absolute;
  inset: 130px;
  background: linear-gradient(135deg, rgba(10, 77, 155, 0.3), rgba(29, 161, 242, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(29, 161, 242, 0.3);
  animation: brilho-pulsar 3s ease infinite;
}

/* Logo no centro da órbita */
.centro-orbita-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border-radius: 12px;
}

/* Indicador de scroll (seta para baixo) */
.hero-scroll-indicador {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-linha {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--azul-claro), transparent);
  animation: scroll-pulse 2s ease infinite;
}
