/* ======================================== */
/*            BASE / RESET STYLES          */
/* ======================================== */

:root {
    /* Definindo 1rem = 4px */
    font-size: 4px;
    box-sizing: border-box;
  }
  
  *, *::before, *::after {
    box-sizing: inherit;
  }
  
  /* HTML e BODY básicos */
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #e1e9f0;
    font-family: sans-serif; 
    overflow: visible !important;
  }
  
  /* Poderia ter outros resets ou estilos básicos aqui */
  