/*
Theme Name: CT Consultoria Inteligente
Theme URI: https://ctconsultoriainteligente.com.br/
Author: Antigravity AI
Description: Tema customizado para o portal da CT Consultoria Inteligente baseado no design React.
Version: 1.0.0
Text Domain: ct-consultoria-inteligente
*/

/* Custom base styles mimicking the React project */
body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  background-color: #fafafa;
  color: #0f172a;
}

.reveal-text {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.21, 0.45, 0.32, 0.9), 
              transform 1.2s cubic-bezier(0.21, 0.45, 0.32, 0.9);
  will-change: opacity, transform;
}

.reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-slow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.animate-pulse-slow {
  animation: pulse-slow 3s infinite ease-in-out;
}
