/* ===== ANIMAÇÕES - SEÇÃO SOBRE A EMPRESA ===== */

/* Animação de entrada para imagem da fundadora */
.essence-image {
  animation: slideInLeft 1s ease-out;
}

/* Animação de entrada para conteúdo de texto */
.essence-text {
  animation: slideInRight 1s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

/* Animação de entrada para cards de valores */
.value-card {
  animation: fadeInUp 0.8s ease-out;
}

.value-card:nth-child(1) { animation-delay: 0.3s; }
.value-card:nth-child(2) { animation-delay: 0.5s; }
.value-card:nth-child(3) { animation-delay: 0.7s; }

/* Animação de entrada para diferenciais */
.differential-item {
  animation: slideInRight 0.6s ease-out;
}

.differential-item:nth-child(1) { animation-delay: 0.4s; }
.differential-item:nth-child(2) { animation-delay: 0.5s; }
.differential-item:nth-child(3) { animation-delay: 0.6s; }
.differential-item:nth-child(4) { animation-delay: 0.7s; }

/* Animação de shimmer para imagem da fundadora */
.essence-image .image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.essence-image .image-container:hover::before {
  opacity: 1;
}

/* Animação de entrada para overlay da imagem da fundadora */
.essence-image .image-overlay {
  animation: slideInUp 0.8s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

/* Animação de entrada para ícones de valores */
.value-icon {
  animation: fadeInScale 0.6s ease-out;
}

.value-icon:nth-child(1) { animation-delay: 0.4s; }
.value-icon:nth-child(2) { animation-delay: 0.6s; }
.value-icon:nth-child(3) { animation-delay: 0.8s; }

/* Animação de entrada para título da empresa */
.essence-header .section-title {
  animation: slideInDown 1s ease-out;
}

/* Animação de entrada para subtítulo da empresa */
.essence-header .section-subtitle {
  animation: slideInDown 1s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

/* Animação de entrada para decoração da empresa */
.essence-header .title-decoration {
  animation: fadeIn 1s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

/* Animação de entrada para heading da empresa */
.essence-heading {
  animation: slideInLeft 0.8s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

/* Animação de entrada para descrição da empresa */
.essence-description {
  animation: fadeIn 0.8s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

/* Animação de entrada para título dos diferenciais */
.differentials-title {
  animation: slideInLeft 0.8s ease-out;
  animation-delay: 0.6s;
  animation-fill-mode: both;
}

/* Animação de hover para ícones de valores */
.value-icon:hover {
  animation: bounce 0.6s ease-in-out;
}

/* Animação de hover para diferenciais */
.differential-item:hover i {
  animation: bounce 0.6s ease-in-out;
} 