/**
 * YüFin - Estilos do Hero Section
 */

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #fff5e6 0%, #ffffff 50%, #fff8f0 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(238, 145, 22, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
}

.hero-decoration-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-decoration-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

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

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block !important;
  background: rgba(238, 145, 22, 0.15) !important;
  color: #ee9116 !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 25px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  margin-bottom: 1.5rem !important;
  margin-top: 1.5rem !important;
  border: 1px solid rgba(238, 145, 22, 0.3) !important;
  box-shadow: 0 2px 8px rgba(238, 145, 22, 0.15) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  opacity: 0.9 !important;
  visibility: visible !important;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  color: #ee9116;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.hero-description {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Garantir que os botões do hero usem o gradiente correto */
.hero-cta .btn-primary {
  background: linear-gradient(135deg, #ee9116 0%, #ffb300 100%) !important;
  color: white !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.hero-cta .btn-primary:hover {
  background: linear-gradient(135deg, #d67e0a 0%, #ee9116 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
}

/* ===== RESPONSIVIDADE HERO ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}

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

