:root {
    --cor-tema: #16a34a;
    --cor-tema-claro: #4ade80;
    --cor-tema-escuro: #15803d;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

[x-cloak] {
    display: none !important;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--cor-tema);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}
