/* ==========================================================================
   SECTION 1: HERO SECTION
   Ajustado 1:1 com as imagens oficiais LIUPARDO-ICON.svg e LIUPARDO-MAIN-LOGO.svg
   ========================================================================== */

#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0 var(--space-xl);
  background-color: var(--color-black);
  background-image: 
    linear-gradient(180deg, rgba(6, 5, 5, 0.1) 0%, rgba(6, 5, 5, 0.85) 75%, var(--color-black) 100%),
    url('https://pub-9d5cb5bd1f704bdaa6bd1cd3849c86b1.r2.dev/hero/liupardo_hero.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Nav Bar Top */
.hero-nav {
  width: 100%;
  padding: var(--space-xl) 0 var(--space-md);
  z-index: 10;
}

.hero-nav .nav-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 var(--container-padding);
}

.hero-nav .nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-nav .nav-icon img,
.hero-nav .nav-icon svg {
  height: 20px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* Hero Content Area */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
  gap: var(--space-lg);
  width: 100%;
}

.hero-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: var(--space-md);
  gap: var(--space-md);
  border-bottom: 1px solid var(--color-white);
}

/* Main Graphic Logo (Aumentado para preencher até o limite do padding) */
.hero-logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-xs) 0;
}

.hero-logo-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

/* Hero Footer Metadata */
.hero-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: var(--font-mono);
  font-weight: var(--text-mono-weight-medium);
  font-size: 10px;
  line-height: var(--text-mono-line-height);
  letter-spacing: var(--text-mono-letter-spacing);
  color: var(--color-white);
  opacity: 0.9;
}

@media (min-width: 768px) {
  #hero {
    min-height: 95vh;
  }
  .hero-footer {
    font-size: 11px;
  }
}
