/* Hero section styles inspired by Mestres Místicos */

.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 50%, #0f0f23 100%);
  background-image: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d4af37" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
  opacity: 0.3;
  animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.6;
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px var(--shadow);
  animation: fadeInUp 1s ease-out;
}

.hero .subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.promo-box {
  background: rgba(30, 30, 63, 0.9);
  border: 2px solid var(--accent-gold);
  border-radius: 20px;
  padding: 30px;
  margin: 40px 0;
  box-shadow: 0 10px 30px var(--shadow);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.promo-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.promo-price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent-gold);
  text-shadow: 2px 2px 4px var(--shadow);
  margin-bottom: 20px;
}

.hero .btn-primary {
  font-size: 1.3rem;
  padding: 20px 40px;
  margin: 30px 0;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.promo-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 10px 0;
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive hero */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .promo-price {
    font-size: 2.5rem;
  }

  .hero .btn-primary {
    font-size: 1.1rem;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .promo-box {
    padding: 20px;
    margin: 30px 0;
  }

  .promo-price {
    font-size: 2rem;
  }
}


