/* Seção Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--fundo-escuro) 0%, rgba(2, 48, 71, 0.8) 100%);
}

/* Fundo com imagem */
.hero__fundo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  background-attachment: fixed;
  opacity: 0.75;
  z-index: 1;
}

/* Overlay para melhor legibilidade */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15, 20, 25, 0.5) 0%,
    rgba(15, 20, 25, 0.2) 50%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Container da hero */
.hero__container {
  position: relative;
  z-index: 5;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--espacamento-lg);
  display: flex;
  align-items: center;
  margin-top: 80px;
}

/* Conteúdo Esquerdo */
.hero__conteudo {
  display: flex;
  flex-direction: column;
  gap: var(--espacamento-lg);
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--espacamento-sm);
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1) 0%, rgba(33, 158, 188, 0.1) 100%);
  border: 1px solid rgba(255, 183, 3, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--laranja);
  width: fit-content;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.1);
}

/* Título Hero */
.hero__titulo {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  font-family: var(--fonte-titulo);
  font-weight: 800;
  color: var(--texto-primario);
  margin: 0;
}

.hero__destaque {
  background: linear-gradient(135deg, var(--laranja) 0%, var(--laranja-escuro) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero__destaque::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--laranja), var(--laranja-escuro));
  border-radius: 2px;
  opacity: 0.5;
}

/* Descrição */
.hero__descricao {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--texto-secundario);
  line-height: 1.8;
  max-width: 600px;
  margin: 0;
}

/* CTA Buttons */
.hero__cta {
  display: flex;
  gap: var(--espacamento-md);
  flex-wrap: wrap;
  margin-top: var(--espacamento-md);
}

.hero__cta .botao {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: 50px;
  font-weight: 700;
  transition: all var(--transicao-normal);
  position: relative;
  overflow: hidden;
}

.hero__cta .botao-primario {
  background: linear-gradient(135deg, var(--laranja) 0%, var(--laranja-escuro) 100%);
  color: var(--preto);
  box-shadow: 0 0 30px rgba(255, 183, 3, 0.3);
}

.hero__cta .botao-primario:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 50px rgba(255, 183, 3, 0.6);
}

.hero__cta .botao-secundario {
  background: #f5f5f5;
  color: var(--fundo-escuro);
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero__cta .botao-secundario:hover {
  background: #e8e8e8;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  color: var(--fundo-escuro);
}



/* Orbs Luminosos */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 3;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.35) 0%, transparent 70%);
  top: -150px;
  left: -150px;
  animation: orbFloat1 10s ease-in-out infinite;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(33, 158, 188, 0.25) 0%, transparent 70%);
  bottom: -100px;
  left: 5%;
  animation: orbFloat2 13s ease-in-out infinite;
}

.hero__orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(251, 133, 0, 0.3) 0%, transparent 70%);
  top: 10%;
  right: 0;
  animation: orbFloat3 11s ease-in-out infinite;
}

.hero__orb--4 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(142, 202, 230, 0.2) 0%, transparent 70%);
  bottom: 5%;
  right: 10%;
  animation: orbFloat2 9s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  33%       { transform: translate(30px, 20px) scale(1.1); opacity: 1; }
  66%       { transform: translate(-20px, 30px) scale(0.95); opacity: 0.7; }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50%       { transform: translate(20px, -30px) scale(1.08); opacity: 0.9; }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  40%       { transform: translate(-25px, 15px) scale(1.05); opacity: 1; }
  80%       { transform: translate(10px, -20px) scale(0.92); opacity: 0.5; }
}

/* Responsivo */
@media (max-width: 1024px) {
  .hero__container {
    margin-top: 120px;
  }

}

@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(15, 20, 25, 0.6) 0%,
      rgba(15, 20, 25, 0.3) 100%
    );
  }

  .hero__container {
    margin-top: 100px;
  }

  .hero__titulo {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero__descricao {
    font-size: 1rem;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .botao {
    width: 100%;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .hero {
    min-height: 85vh;
  }

  .hero__container {
    padding: 0 var(--espacamento-md);
    margin-top: 80px;
  }

  .hero__badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .hero__titulo {
    font-size: 1.75rem;
  }

  .hero__descricao {
    font-size: 0.95rem;
  }
}
