/* Importar fonte Inter do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

/* Aplicar fonte Inter globalmente em todo o sistema */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

/* Melhorar legibilidade com Inter */
body, html {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Títulos com peso adequado */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Texto pequeno */
small, .text-muted {
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Botões */
.btn {
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Formulários */
.form-control, .form-select, .input-group-text {
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Tabelas */
.table th {
    font-weight: 600;
    letter-spacing: 0.01em;
}

.table td {
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Ajustes para ícones FontAwesome */
.fas, .far, .fab, .fal, .fad {
    font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Brands', 'Font Awesome 5 Pro' !important;
}
