/* ==================== HERO SECTION ==================== */

.hero {
  height: 75vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
            url('../../images/cult-machine-banner.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 70px; /* Altura del navbar */
  padding-top: 0;
}

/* Scrolling banner dentro del hero */
.hero .scrolling-banner {
  position: absolute;
  top: 0; /* Pegado al inicio del hero */
  left: 0;
  width: 100%;
  height: 35px;
  background: #FFD700;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  overflow: hidden;
  z-index: 10;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
  margin-top: 35px; /* Empujar contenido debajo del banner */
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: 1px;
}

.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #fff;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  transition: all 0.3s ease;
  font-size: 14px;
  border: 2px solid #fff;
}

.cta-btn:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    margin-top: 60px;
    background-attachment: scroll;
  }
  
  .hero .scrolling-banner {
    height: 30px;
  }
  
  .hero-content {
    margin-top: 30px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .cta-btn {
    font-size: 16px;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh;
    margin-top: 55px;
  }
  
  .hero .scrolling-banner {
    height: 28px;
  }
  
  .hero-content {
    margin-top: 28px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .hero-content p { font-size: 0.9rem; }
  .cta-btn { font-size: 14px; padding: 10px 20px; }
}