/**
 * TERRIBILE FOGÕES - ANIMATIONS
 */

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-child.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PAGE LOAD
   ============================================ */

body {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.loaded {
  opacity: 1;
}

/* ============================================
   KEYFRAMES
   ============================================ */

/* Used by product-tabs in detalhes.css */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

