/* VARIAVEIS */
:root {
    --primary-color-1: #2578E7; 
    --primary-color0: #004AAD; 
    --primary-color1: #00275B;
    --secondary-color-1: #FFBF63; 
    --secondary-color0: #FE9601; 
    --secondary-color1: #D87F00;
    --background-color: #ffff;
	--background-card-color: #ffff;
	--text-card-color: #333C44;
    --text-color-dark: #333C44;
    --text-color-white: #f0f0f0;
	--table-color-1: #c2d3e9;
	--table-color-2: #ffff;
	--text-color-menu: #333C44;
	--text-color-input: #333C44;
	--box-shadow-color: rgba(0, 0, 0, 0.25);
	--theme-ligth-color: #0a284f;
	--theme-dark-color: #ffff;
    --success-color: #C5E286; 
    --unsuccess-color: #dc5032;
    --font-title: 'Montserrat', arial;
    --font-text: 'Roboto', arial;
    --size-title-mobile: calc( 1.568rem + (8/1200) * 100 * .5vw);    
    --size-subTitle-mobile: calc( 1rem + (8/1200) * 100 * .5vw);    
    --size-text-mobile: calc(0.77rem + (8/1200) * 100 * .5vw);    
	scroll-behavior: smooth;
}

.dark-theme {
	--primary-color-1: #779fd4; 
    --primary-color0: #004AAD; 
    --primary-color1: #00275B;
    --secondary-color-1: #d29647; 
    --secondary-color0: #e28914; 
    --secondary-color1: #e28914;
    --background-color: #010f20;
	--background-card-color: #0a284f;
	--text-card-color: #779fd4;
    --text-color-dark: #0b2d5a;
    --text-color-white: #d7e2f0;
	--table-color-1: #0f2b4f;
	--table-color-2: #00132b;
	--text-color-menu: #004AAD;
	--text-color-input: #779fd4;
	--box-shadow-color: rgba(0, 0, 0, 0.8);
	--theme-ligth-color: #ffff;
	--theme-dark-color: #0a284f;
    --success-color: #C5E286; 
    --unsuccess-color: #dc5032;
  }

* {
	padding:0;
	margin:0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	vertical-align:baseline;
	list-style:none;
	text-decoration: none;
	border:0	
}

body {
	line-height: 1;
	font-family: sans-serif;
	background-color: var(--background-color);
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
	font-size: 100%;
	font: inherit;
}

html {
	font-size: 16px;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* CONFIGURAÇÃO DO MAIN */

.main {
	position: relative;
    width: 100%;
    margin-top: 4rem;
}

@media screen and (min-width: 75rem) {
	html {
		font-size: 15px;
	}
}