/*
 * Tivra — Hero
 * ────────────
 * A porta de entrada. Ocupa 100svh. CAG é a imagem de fundo;
 * um duplo gradiente linear (horizontal + vertical) garante
 * legibilidade sem matar a fotografia.
 *
 * O `.hero-inner` é onde mora o conteúdo (display + lead + actions).
 * O `.actions` é um agrupador dos botões (Ver o comando / Descarregar).
 *
 * Tokens consumidos: --container-max, --gutter, --black, --a1.
 */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../../assets/cag-hero.webp") center / cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,  rgba(0,0,0,.55) 0%, rgba(0,0,0,.2) 38%, rgba(0,0,0,.15) 72%, rgba(0,0,0,.45) 100%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, transparent 22%, transparent 58%, rgba(0,0,0,.72) 86%, #000 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 28px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}

.hero .display { max-width: 14ch; }
.hero .lead    { margin-top: 20px; }

.hero .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
