.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(rgba(26, 31, 30, 0.7), rgba(28, 58, 95, 0.6)), url('../hero-image.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: var(--branco);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 31, 30, 0.8), rgba(199, 75, 80, 0.3));
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
  color: var(--dourado-escuro);
  background: linear-gradient(135deg, var(--vermelho-vintage), var(--dourado-escuro));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-2xl);
  opacity: 0.9;
  line-height: 1.6;
}

.hero-section .btn-cta {
  font-size: var(--font-size-xl);
  padding: var(--spacing-lg) var(--spacing-3xl);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.hero-section .btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

.hero-section .btn-cta:hover::before {
  left: 100%;
}

/* Animações */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Efeito parallax para dispositivos que suportam */
@media (min-width: 768px) {
  .hero-section {
    background-attachment: fixed;
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
    min-height: 80vh;
    padding-top: 80px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-lg);
  }
  
  .hero-section .btn-cta {
    font-size: var(--font-size-lg);
    padding: var(--spacing-md) var(--spacing-xl);
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
    margin-bottom: var(--spacing-md);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-lg);
  }
}

