/* Estilos essenciais para o banner principal */
.gradient-bg {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 20%, #059669 60%, #10b981 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Esferas decorativas animadas */
.sphere-1, .sphere-2, .sphere-3 {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.2));
  animation: float 6s ease-in-out infinite;
}

.sphere-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.sphere-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.sphere-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Título principal responsivo */
.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  color: white;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

/* Destaque verde para elementos-chave */
.hero-highlight {
  background: linear-gradient(135deg, #18ff6d, #09a83e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
  font-size: 1.1em;
}

/* Descrição com background minimalista */
.hero-description {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Carrossel de texto */
.carousel-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
}

.carousel-track {
  display: flex;
  animation: scroll 20s linear infinite;
  white-space: nowrap;
}

.carousel-item {
  flex: 0 0 auto;
  padding: 0 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Botão com efeito glow */
.glow-button {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
  border: none;
  position: relative;
  overflow: hidden;
}

.glow-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.glow-button:hover::before {
  left: 100%;
}

/* Efeitos de hover para cards */
.hover\:scale-105:hover {
  transform: scale(1.05);
}

/* Transições suaves */
.transition-all {
  transition: all 0.3s ease;
}

/* Responsividade básica */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .sphere-1, .sphere-2, .sphere-3 {
    display: none;
  }
}
