#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  z-index: 1;
}
#hero .subtitle {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 6px;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.2s both;
}
#hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
  animation: fadeInUp 1s ease 0.4s both;
}
#hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 40%, var(--accent-magenta) 70%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}
#hero .tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.6s both;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s ease 0.8s both;
}
.btn {
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: #fff;
  box-shadow: 0 4px 30px rgba(74,108,247,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(74,108,247,0.5);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 30px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(37,211,102,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--accent-cyan);
  background: rgba(8,145,178,0.06);
  transform: translateY(-3px);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeInUp 1s ease 1.2s both, float 3s ease-in-out infinite;
}
.hero-scroll a {
  color: var(--text-muted);
  font-size: 1.5rem;
  text-decoration: none;
}
