
#diamond-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Arial', sans-serif;
}

.diamond-symbol {
  font-size: 80px;
  background: linear-gradient(45deg, #cd7f32, #c0c0c0, #ffd700);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: diamond-shine 3s ease-in-out infinite;
}

.diamond-text {
  font-size: 20px;
  color: #444;
  margin-top: 15px;
}

@keyframes diamond-shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Animação de entrada para elementos com .animar */
.animar[data-aos] {
  opacity: 0;
  transition: all 0.6s ease-in-out;
}

/* Hover em produtos WooCommerce */
.woocommerce ul.products li.product:hover {
  transform: scale(1.03);
  transition: 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Botões com brilho */
.elementor-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255,255,255,0.3);
  transition: 0.2s ease-in-out;
}
