/* Redesenho da seção hero com preto, dourado e roxo */

/* Cores personalizadas */
:root {
  --gold-light: #FFF3CC;
  --gold-primary: #FFC300;
  --gold-dark: #CC9C00;
  --purple-light: #9D4EDD;
  --purple-primary: #7B2CBF;
  --purple-dark: #5A189A;
  --black-primary: #0F0F0F;
  --black-secondary: #1A1A1A;
  --white: #FFFFFF;
}

/* Gradiente de fundo para o hero */
.hero-gradient {
  background: linear-gradient(135deg, var(--black-primary) 0%, var(--purple-dark) 100%);
  position: relative;
  overflow: hidden;
}

/* Efeito de ornamento para o hero */
.hero-ornament {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(157, 78, 221, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 195, 0, 0.15) 0%, transparent 50%);
  z-index: 1;
}

/* Linhas decorativas */
.hero-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    linear-gradient(90deg, transparent 49.5%, rgba(255, 195, 0, 0.1) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(157, 78, 221, 0.1) 50%, transparent 50.5%);
  background-size: 60px 60px;
  z-index: 1;
  opacity: 0.3;
}

/* Partículas douradas */
.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  opacity: 0.6;
}

.particle:nth-child(1) { top: 10%; left: 20%; animation: float 8s infinite ease-in-out; }
.particle:nth-child(2) { top: 30%; left: 80%; animation: float 12s infinite ease-in-out; }
.particle:nth-child(3) { top: 70%; left: 15%; animation: float 10s infinite ease-in-out; }
.particle:nth-child(4) { top: 60%; left: 70%; animation: float 9s infinite ease-in-out; }
.particle:nth-child(5) { top: 20%; left: 50%; animation: float 11s infinite ease-in-out; }
.particle:nth-child(6) { top: 80%; left: 35%; animation: float 7s infinite ease-in-out; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.2); }
}

/* Borda decorativa dourada */
.hero-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--purple-primary), var(--gold-primary), var(--purple-primary));
  z-index: 2;
}

/* Estilo para o conteúdo do hero */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 6rem 0;
}

/* Título principal com efeito de texto dourado */
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--gold-light), var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(255, 195, 0, 0.3);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Subtítulo com cor roxa clara */
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Botões estilizados */
.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--black-primary);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 195, 0, 0.3);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 195, 0, 0.4);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--gold-primary);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-hero-secondary:hover {
  background: rgba(255, 195, 0, 0.1);
  transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-content {
    padding: 4rem 0;
  }
}
