/*
    Configurações globais de nome e tamanho de fonte
    Bem como reset da margin e do padding global
*/
/* Carregar a fonte */
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); /*se for usar a fonte poppins e nao a do gov.br*/

/* ========================================
   FONTE RAWLINE - DESIGN SYSTEM GOV.BR
   PESOS DISPONÍVEIS DA FONTE RAWLINE:
   - 300: Light
   - 400: Regular (padrão)
   - 500: Medium
   - 600: SemiBold
   - 700: Bold
   - 800: ExtraBold
   ======================================== */

/* Carregamento da fonte Rawline via CDN oficial do governo brasileiro */
@import url('https://www.gov.br/ds/fonts/rawline/rawline.css');

body {
    /*font-family: Verdana, Arial, Helvetica, sans-serif;*/
    /*font-family: 'Poppins', sans-serif;*/
    /*font-family: Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;*/

    font-family: 'Rawline', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, Helvetica, sans-serif; /* Declaração da fonte Rawline com fallbacks para compatibilidade */
    background-color: #F7F7F7;
}
/* Reset e box-sizing global */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    min-height: 100vh; /* Garante que o corpo ocupe pelo menos a altura total da janela */
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-weight: 400; /* Regular */
    display: flex;
    flex-direction: column;
}


/* topdoc
name: Configuração de parágrafos
markup: <p>Pagágrafo</p>
*/
p {
    /*font-family: 'Poppins',Verdana, Arial, Helvetica, sans-serif;*/
    font-family: 'Rowline',Raleway, Arial, Helvetica, sans-serif;
    font-size: 100%;
    line-height: 1.5;     /* Espaçamento entre linhas */
}

