/* Decoração de Natal - Bom Pra Cachorro */
/* Para DESATIVAR: remova ou comente o link para este arquivo no HTML */

/* Container da neve */
.snowflakes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

/* Flocos de neve individuais */
.snowflake {
  position: absolute;
  top: -10px;
  color: #fff;
  font-size: 1em;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
  animation: snowfall linear infinite;
  opacity: 0.8;
}

/* Animação de queda */
@keyframes snowfall {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}

/* Variações de flocos */
.snowflake:nth-child(1) { left: 10%; animation-duration: 10s; animation-delay: 0s; font-size: 1.2em; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 1s; font-size: 0.8em; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 8s; animation-delay: 2s; font-size: 1em; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 15s; animation-delay: 0.5s; font-size: 1.5em; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 11s; animation-delay: 1.5s; font-size: 0.9em; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 13s; animation-delay: 2.5s; font-size: 1.1em; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 9s; animation-delay: 0.8s; font-size: 1.3em; }
.snowflake:nth-child(8) { left: 80%; animation-duration: 14s; animation-delay: 1.8s; font-size: 0.7em; }
.snowflake:nth-child(9) { left: 90%; animation-duration: 10s; animation-delay: 2.2s; font-size: 1em; }
.snowflake:nth-child(10) { left: 15%; animation-duration: 12s; animation-delay: 3s; font-size: 1.4em; }
.snowflake:nth-child(11) { left: 25%; animation-duration: 11s; animation-delay: 0.3s; font-size: 0.8em; }
.snowflake:nth-child(12) { left: 35%; animation-duration: 13s; animation-delay: 1.2s; font-size: 1.2em; }
.snowflake:nth-child(13) { left: 45%; animation-duration: 9s; animation-delay: 2.8s; font-size: 0.9em; }
.snowflake:nth-child(14) { left: 55%; animation-duration: 14s; animation-delay: 0.7s; font-size: 1.1em; }
.snowflake:nth-child(15) { left: 65%; animation-duration: 10s; animation-delay: 1.9s; font-size: 1.3em; }
.snowflake:nth-child(16) { left: 75%; animation-duration: 12s; animation-delay: 2.4s; font-size: 0.8em; }
.snowflake:nth-child(17) { left: 85%; animation-duration: 11s; animation-delay: 0.9s; font-size: 1em; }
.snowflake:nth-child(18) { left: 95%; animation-duration: 13s; animation-delay: 2.6s; font-size: 1.5em; }
.snowflake:nth-child(19) { left: 5%; animation-duration: 9s; animation-delay: 1.4s; font-size: 0.7em; }
.snowflake:nth-child(20) { left: 12%; animation-duration: 14s; animation-delay: 3.2s; font-size: 1.2em; }

/* Papai Noel com pets - fixo no canto ESQUERDO */
.christmas-mascot {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9998;
  pointer-events: none;
  animation: float 3s ease-in-out infinite;
}

.christmas-mascot img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

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

/* Responsivo - Mobile */
@media (max-width: 768px) {
  .snowflake {
    font-size: 0.8em;
  }
  
  .christmas-mascot {
    bottom: 10px;
    left: 10px;
  }
  
  .christmas-mascot img {
    width: 80px;
  }
}

/* Reduzir animações em dispositivos com preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .snowflake {
    animation: none;
  }
  
  .christmas-mascot {
    animation: none;
  }
}
