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

.fade-in {
    animation: fadeIn 3.5s ease-in-out forwards;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .custom-offcanvas {
    width: 200px; /* Defina a largura desejada */
}