@font-face {
	font-family: Segoe UI;
	src: url(../fonts/Segoe UI.ttf);
	font-weight: 400;
}

@font-face {
	font-family: Segoe UI;
	src: url(../fonts/Segoe UI Bold.ttf);
	font-weight: 700;
}

:root {
	--verde: #87FC33;
	--aqua: #009FAB;
	--cinza: #828282;
	--preto: #515151;
	
	--padding-x-global: 6.25rem;
	--padding-x-global-mobile: 2rem;
	--section-y-global: 3rem;
	--section-y-global-mobile: 3rem;
	
	--Open-Sans: "Montserrat", sans-serif;

/* 	--h1-fs: 3.25rem; */
	--h1-fs: 2.4rem;
	--h1-lh: 1.2em;
/* 	--h2-fs: 2.4rem; */
	--h2-fs: 1.875rem;
	--h2-lh: 1.2em;
	--h3-fs: 1.4rem;
	--h3-lh: 1.2em;
	--h4-fs: 1.375rem;
	--h4-lh: 1.2em;
	--h5-fs: 1rem;
	--h5-lh: 1.2em;
	--h6-fs: 1.125rem;
	--h6-lh: 1.2em; 

	--h1-fs-mobile: 2.375rem;
	--h1-lh-mobile: 1.2em;
	--h2-fs-mobile: 2rem;
	--h2-lh-mobile: 1.2em;
	--h3-fs-mobile: 1.5rem;
	--h3-lh-mobile: 1.2em;
	--h4-fs-mobile: 1.375rem;
	--h4-lh-mobile: 1.2em;
	--h5-fs-mobile: 1.25em;
	--h5-lh-mobile: 1.2em;
	--h6-fs-mobile: 1.125rem;
	--h6-lh-mobile: 1.2em; 
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--Montserrat);
/* 	font-size: calc(12px + 0.390625vw); */
/* 	font-size: calc(12px + 0.25vw); */
/* 	color: var(--preto); */
}

a, a:hover {
	text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
    padding: 0;
}

button.btn,
button.btn:active,
button.btn:focus,
input:active,
input:focus,
textarea:active,
textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}

button.btn:active {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.form-control:focus {
    box-shadow: none;
}