/* --- Estilos do Pop-up de Natal (natal.css) --- */

/* Fundo escurecido */
#christmas-popup {
  position: fixed;
  z-index: 10000; /* Garante que fique acima de todo o conteúdo */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none; /* Não interfere em cliques quando oculto */
}

/* Estado ativo (visível) */
#christmas-popup.christmas-popup-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Conteúdo central do pop-up */
.christmas-popup-content {
  background: #fff;
  color: #333;
  padding: 30px;
  border-radius: 15px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  /* Animação de entrada */
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
  border: 4px solid #c93737; /* Borda natalina: Vermelho */
}

/* Animação para o estado visível */
#christmas-popup.christmas-popup-visible .christmas-popup-content {
  transform: scale(1);
  opacity: 1;
}

/* Botão de fechar */
.christmas-popup-close {
  color: #c93737;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.christmas-popup-close:hover,
.christmas-popup-close:focus {
  color: #555;
  text-decoration: none;
}

/* Estilos de texto */
.christmas-popup-body h3 {
  color: #008000; /* Verde natal */
  margin-bottom: 15px;
  font-weight: 700;
}

.christmas-popup-body p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 5px;
}

.popup-signature {
    margin-top: 20px;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.popup-signature p {
    margin: 0;
    font-size: 14px;
}

/* Icone de destaque */
.popup-icon {
    font-size: 40px;
    margin-top: 20px;
    animation: sparkle 1.5s infinite alternate; /* Animação simples de brilho */
}

/* Animação de brilho */
@keyframes sparkle {
  0% { transform: scale(1); color: #c93737; }
  100% { transform: scale(1.1); color: #008000; }
}

/* --- Fim dos Estilos do Pop-up de Natal --- */