* {
  list-style: none;
}

/* === SEÇÃO 1: HERO COM PARALLAX === */
.hero-section {
  position: relative;
  width: 100%;
  height: 924px;
  background-image: 
    linear-gradient(0deg, rgba(1, 0, 0, 0.6), rgba(1, 0, 0, 0.326)),
    linear-gradient(180deg, rgba(51, 33, 44, 0.842), rgba(51, 33, 44, 0.497)),
    url('assets/img/nova_capa.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-blend-mode: overlay, normal, normal;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #BA8C54;
}

.hero-content {
  text-align: center;
  max-width: 1260px;
  padding: 0 20px;
}

.hero-logo {
  width: 211px;
  height: 179px;
  margin-bottom: 10px;
  opacity: 0;
}

.hero-title {
  font-family: 'Cormorant SC', serif;
  font-size: 86px;
  font-weight: 600;
  background: linear-gradient(90deg, #FFECCB 0%, #FFE4BD 26%, #FFFFFF 50%, #FFE4BD 75%, #FFECCB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
  opacity: 0;
}

.hero-text {
  font-family: 'El Messiri', sans-serif;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.69);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
}

.scroll-gif {
  width: 17px;
  margin-top: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
}


/* === RESPONSIVIDADE MOBILE PARA HERO === */
@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
    min-height: 600px;
    background-attachment: scroll; /* Fix para mobile */
  }
  
  .hero-content {
    padding: 0 15px;
    max-width: 100%;
  }
  
  .hero-logo {
    width: 150px;
    height: 127px;
    margin-bottom: 15px;
  }
  
  .hero-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 15px;
  }
  
  .hero-text {
    font-size: 16px;
    max-width: 90%;
    line-height: 1.5;
  }
  
  .scroll-gif {
    width: 15px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 100vh;
    min-height: 500px;
  }
  
  .hero-content {
    padding: 0 10px;
  }
  
  .hero-logo {
    width: 120px;
    height: 102px;
    margin-bottom: 10px;
  }
  
  .hero-title {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 10px;
  }
  
  .hero-text {
    font-size: 14px;
    max-width: 95%;
    line-height: 1.4;
  }
  
  .scroll-gif {
    width: 12px;
    margin-top: 15px;
  }
}

