/* ULTRA PREMIUM GLOW CTA (FINALE) */

#finale {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  background: #000;
  text-align: center;
}

.finale-bg-ambient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 46, 147, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.finale-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

#finale-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 200;
  line-height: 1;
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(50px);
}

#finale-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(30px);
}

.glow-btn-ultimate {
  display: inline-block;
  padding: 1.5rem 5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--hot-pink) 0%, #ff6eb4 100%);
  border-radius: 100px;
  box-shadow: 0 10px 40px rgba(255, 46, 147, 0.4);
  transition: all 0.6s var(--cinematic-easing);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
}

.glow-btn-ultimate::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.8s ease;
}

.glow-btn-ultimate:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 46, 147, 0.6);
}

.glow-btn-ultimate:hover::before {
  left: 100%;
}

@media (max-width: 768px) {
  #finale-h2 {
    font-size: 3.5rem;
  }
  #finale-sub {
    font-size: 1.1rem;
  }
  .glow-btn-ultimate {
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
  }
}
