/* Ajustes para o tema Light */
.light body {
    background-color: #f8fafc;
    color: #0f172a;
}

.light nav {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
}

.light .text-gray-400 {
    color: #475569;
}

/* Animação suave na troca de tema */
html {
    transition: background-color 0.3s ease, color 0.3s ease;
    scroll-behavior: smooth;
}