/* ======================================================
   tw-overrides.css  — apenas o que Tailwind não cobre
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

body { font-family: 'Outfit', sans-serif !important; }

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* Estados toggled por JS */
.modal-overlay          { display: none; }
.modal-overlay.aberto   { display: flex; }
.loading-overlay        { display: none; }
.loading-overlay.visivel{ display: flex; }

/* Desabilitar inputs */
input[disabled],
select[disabled] { background: #f5f5f5; cursor: not-allowed; }
