/* Estilos globais */
body {
    font-family: 'Inter', sans-serif;
}

/* Efeito hover em links */
a:hover {
    transition: color 0.2s ease-in-out;
}

/* Botões com efeito */
button, .btn {
    transition: background-color 0.2s ease-in-out;
}

/* Sombras suaves */
.shadow-sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Espaçamentos consistentes */
.space-y-6 > * + * {
    margin-top: 1.5rem;
}