/* Animações - Profissão Inteligente */

/* Animação de entrada (fade in) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Animação de destaque */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 2s infinite ease-in-out;
}

/* Animação de brilho */
@keyframes glow {
  0% { box-shadow: 0 0 5px rgba(0, 255, 242, 0.3); }
  50% { box-shadow: 0 0 20px rgba(0, 255, 242, 0.7); }
  100% { box-shadow: 0 0 5px rgba(0, 255, 242, 0.3); }
}

.glow {
  animation: glow 3s infinite ease-in-out;
}

/* Animação de digitação */
.typing-effect {
  display: inline-block;
  color: var(--primary-accent);
  font-weight: 600;
  min-height: 30px;
  font-size: 1.5rem;
  text-align: center;
  margin: 30px 0;
  width: 100%;
}

.typing-effect .txt {
  border-right: 2px solid var(--primary-accent);
  padding-right: 5px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: var(--primary-accent); }
}

/* Animação de flutuação para elementos */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.float {
  animation: float 4s infinite ease-in-out;
}

/* Animação de aparecimento gradual para seções */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 1.5s ease-in-out;
}

/* Animação para botões */
@keyframes buttonGlow {
  0% { box-shadow: 0 0 10px rgba(0, 255, 242, 0.3); }
  50% { box-shadow: 0 0 20px rgba(0, 255, 242, 0.6); }
  100% { box-shadow: 0 0 10px rgba(0, 255, 242, 0.3); }
}

.cta-button {
  animation: buttonGlow 3s infinite ease-in-out;
}

/* Animação para partículas flutuantes (neons) */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 255, 242, 0.15);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 12px rgba(0, 255, 242, 0.4);
  animation: floatUp 10s infinite ease-in-out alternate;
}

.particle.green {
  background: rgba(0, 255, 136, 0.15);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
}

@keyframes floatUp {
  0% { transform: translateY(0) translateX(0); opacity: 0.3; }
  50% { transform: translateY(-20px) translateX(10px) scale(1.2); opacity: 0.7; }
  100% { transform: translateY(0) translateX(0); opacity: 0.3; }
}

/* Animação para o FAQ */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.toggle-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
  transform: rotate(180deg);
}

/* Animação para cards */
.module-card, .bonus-card, .benefit-item {
  transition: all 0.3s ease;
}

.module-card:hover, .bonus-card:hover, .benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Animação para imagens */
.image-placeholder {
  transition: all 0.3s ease;
}

.image-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 255, 242, 0.2);
}
