/* ==========================================================================
   HERO — assets/css/sections/hero.css
   SENV Theme · Seção de destaque principal da homepage
   ========================================================================== */

.senv-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--senv-noir);
}

/* Imagem de fundo */
.senv-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease-out;
  will-change: transform;
}

.senv-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 8, 7, 0.78) 0%,
    rgba(10, 8, 7, 0.45) 55%,
    rgba(10, 8, 7, 0.20) 100%
  );
}

/* Conteúdo */
.senv-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding-top: 120px;
  padding-bottom: 80px;
}

.senv-hero__label {
  display: inline-block;
  font-family: var(--senv-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--senv-gold);
  margin-bottom: 20px;
}

.senv-hero__title {
  font-family: var(--senv-font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.02;
  color: var(--senv-offwhite);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.senv-hero__subtitle {
  font-family: var(--senv-font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--senv-nude);
  margin: 0 0 40px;
  opacity: 0.88;
}

/* Botões CTA */
.senv-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Indicador de scroll */
.senv-hero__scroll {
  display: block;
  font-family: var(--senv-font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--senv-gold);
  opacity: 0.6;
}

/* Animação de entrada */
@keyframes senv-hero-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.senv-hero__label   { animation: senv-hero-fade-up 0.7s ease both; }
.senv-hero__title   { animation: senv-hero-fade-up 0.7s 0.1s ease both; }
.senv-hero__subtitle{ animation: senv-hero-fade-up 0.7s 0.2s ease both; }
.senv-hero__actions { animation: senv-hero-fade-up 0.7s 0.3s ease both; }
.senv-hero__scroll  { animation: senv-hero-fade-up 0.7s 0.5s ease both; }

/* Responsive */
@media (max-width: 768px) {
  .senv-hero__content {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .senv-hero__title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .senv-hero__actions {
    flex-direction: column;
  }

  .senv-hero__actions .senv-btn {
    width: 100%;
    text-align: center;
  }
}
