/* ============================================================
   SEÇÃO — Hero
============================================================ */
.hero {
  min-height: 100vh;
  padding: clamp(160px, 18vw, 240px) 24px clamp(100px, 10vw, 160px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Plano de fundo */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.038) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 100%);
  mask-image:         radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 100%);
  transition: opacity .6s var(--ease);
}
[data-theme="light"] .hero-grid {
  background-image: radial-gradient(circle, rgba(0,0,0,.055) 1px, transparent 1px);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  transition: opacity .8s var(--ease);
}
.hero-orb1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(48,209,88,.13) 0%, transparent 70%);
  top: -160px; right: -160px;
}
.hero-orb2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(48,209,88,.06) 0%, transparent 70%);
  bottom: 0; left: -80px;
}

/* Layout 2 colunas — gap fluido cria assimetria sutil em telas médias */
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  position: relative;
  z-index: 2;
}

/* Badge "Novo · Pro 2.0" — gradient border sutil em vez de borda sólida */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 99px;
  background:
    linear-gradient(rgba(48,209,88,.07), rgba(48,209,88,.04)) padding-box,
    linear-gradient(135deg, rgba(48,209,88,.30), rgba(48,209,88,.06)) border-box;
  border: 0.5px solid transparent;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 32px;
  transition: opacity .5s var(--ease);
}
.hero-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.75); }
}

/* Headline — tracking negativo agressivo = assinatura de marcas de hardware premium */
.hero-h1 {
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-h1 span {
  background: linear-gradient(135deg, #34d861 10%, #a8f8be 60%, #30d158 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Descrição — peso 300 amplifica o contraste visual com o título 900 */
.hero-desc {
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 300;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 440px;
  letter-spacing: -0.01em;
}

/* Botões store */
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.btn-store {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  height: 52px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
[data-theme="dark"] .btn-store {
  background:
    linear-gradient(#f0f0f2, #f0f0f2) padding-box,
    linear-gradient(135deg, rgba(0,0,0,.14), rgba(0,0,0,.02)) border-box;
  border: 0.5px solid transparent;
  color: #050505;
}
[data-theme="light"] .btn-store {
  background:
    linear-gradient(#1a1a1c, #1a1a1c) padding-box,
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.01)) border-box;
  border: 0.5px solid transparent;
  color: #f0f0f2;
}
.btn-store:hover { opacity: .78; transform: scale(.97) translateY(-1px); }
.btn-store svg       { width: 22px; height: 22px; flex-shrink: 0; }
.btn-store-sub       { font-size: 10px; font-weight: 500; opacity: .65; display: block; letter-spacing: .02em; }
.btn-store-main      { font-size: 15px; font-weight: 700; letter-spacing: -.01em; display: block; }

/* Mini stats */
.hero-stats       { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-stat-item   { display: flex; flex-direction: column; }
.hero-stat-num    { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -.04em; line-height: 1.05; }
.hero-stat-label  { font-size: 11px; color: var(--text3); font-weight: 400; letter-spacing: .03em; text-transform: uppercase; margin-top: 3px; }
.hero-stat-divider{ width: 1px; height: 28px; background: var(--border2); }
