/* ❄️ Bordas suaves no header */
.header-natal {
    background-image: url('../img/linha-luzes.png');
    background-repeat: repeat-x;
    background-position: top;
    padding-top: 40px;
}

/* ❄️ Destaques natalinos */
.natal-text {
    color: #c62828 !important; /* Vermelho suave */
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* ❄️ Botão tema natalino */
.btn-natal {
    background: linear-gradient(135deg, #b71c1c, #d32f2f);
    color: #fff !important;
    border-radius: 50px;
    box-shadow: 0 0 12px rgba(255, 0, 0, .5);
}

.btn-natal:hover {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
}

/* ❄️ Rodapé com neve */
.footer-natal {
    background-image: url('../img/neve-footer.png');
    background-repeat: repeat-x;
    background-position: bottom;
    padding-bottom: 40px;
}

/* ❄️ Flocos de neve leves */
.snowflake {
    position: fixed;
    top: -10px;
    color: white;
    font-size: 1em;
    animation: fall 12s linear infinite;
    opacity: 0.9;
    z-index: 9999;
}

@keyframes fall {
    to {
        transform: translateY(110vh);
    }
}


#neve-rodape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 540px; /* Altura no rodapé */
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

.floco {
    position: absolute;
    bottom: 100%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(1px);
    animation: cair linear infinite;
}

@keyframes cair {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(350px) translateX(var(--drift));
        opacity: 0;
    }
}

