/**
 * SomosLK - Christmas/Navidad Effects
 * Efectos navideños: copos de nieve y banner
 */

/* Copos de nieve - Optimizados para fondo claro */
.snowflake {
    position: fixed;
    top: -10px;
    z-index: 9999;
    user-select: none;
    cursor: default;
    animation: snowfall linear infinite;
    color: #84cc16;  /* Verde lima para contraste en fondo claro */
    font-size: 1.2em;
    opacity: 0.4;  /* Más transparente para ser sutil */
    text-shadow: 
        0 0 3px rgba(132, 204, 22, 0.6),
        0 0 8px rgba(132, 204, 22, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@keyframes snowfall {
    0% {
        transform: translateY(0vh) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Banner de Navidad */
.christmas-banner {
    background: linear-gradient(135deg, var(--verde-navidad) 0%, var(--verde-navidad-oscuro) 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(45, 90, 61, 0.3);
}

.christmas-banner::before {
    content: '🎄';
    position: absolute;
    left: 20px;
    font-size: 22px;
    animation: pulse 2s ease-in-out infinite;
}

.christmas-banner::after {
    content: '🎄';
    position: absolute;
    right: 20px;
    font-size: 22px;
    animation: pulse 2s ease-in-out infinite 1s;
}

.christmas-banner .highlight {
    color: #FFD700;
    font-weight: 900;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .christmas-banner {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .christmas-banner::before,
    .christmas-banner::after {
        font-size: 18px;
    }
}
