/* Chinchester - Estilos Personalizados */

@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fade-in 0.6s ease-out;
}

/* Tema Kids */
.theme-kids {
    font-family: 'Comic Sans MS', cursive;
}

.theme-kids .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Tema Formal */
.theme-formal {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.theme-formal .btn-primary {
    background: #4F46E5;
    border-radius: 8px;
}
