
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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* reset para navegadores mais antigos */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}

*/

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* FIM RESET CSS */

/*CSS DA BARRA DE ROLAGEM*/
body::-webkit-scrollbar-track {background-color:#F4F4F4;}
body::-webkit-scrollbar {width:8px; background:#F4F4F4;}
body::-webkit-scrollbar-thumb {background:#ccc;}
/*CSS DA BARRA DE ROLAGEM*/

:root {

    /* CORES */
    --corVerde: #00a375;
    --corVerde2: #00b6b5;
    --corCinzaEscuroTexto: #282828;
    --corCinzaEscuroTexto2: #313131;
    --corCinzaClaroTexto: #706B76;
    --corPadraoBorda: #d1d1d1;	  
    --corCinzaActiveLink:#A2A2A2;
    --corBranco: #ffffff;    
	  --corPreto: #000000;
    --corCinzaBody: #e4e4e4;
   
    /* TEXT */
    --sizeText13: 0.813rem; /* 13px */
    --sizeText14: 0.875rem; /* 14px */
    --sizeText15: 0.938rem; /* 15px */
    --sizeText16: 1rem; /* 16px */
    --sizeText18: 1.125rem; /* 18px */
    --sizeText20: 1.25rem; /* 20px */
    --sizeText22: 1.375rem;
    --sizeText24: 1.5rem; /* 24px */
    --sizeText30: 1.875rem; /* 30px */
    --sizeText36: 2.25rem; /* 36px */        
}
/* FIM VAR */


* { box-sizing:border-box; }


@font-face {
	font-family: Gilroy-ExtraBold;
	src: url(../components/font/Gilroy-ExtraBold.otf);
  src: url(../components/font/Gilroy-ExtraBold.ttf);
  font-weight: 700;
}

@font-face {
	font-family: Gilroy-Light;
	src: url(../components/font/Gilroy-Light.otf);
  src: url(../components/font/Gilroy-Light.ttf);
  font-weight: 400;
}

body,
html {	
    min-width: 100%;
    font-weight: 400;
    font-size: 15px; /* 15px */
    line-height: 150%;
    /* font-family: 'Rubik', sans-serif; */
    font-family: Montserrat;
    
}

.container {
	margin-left: auto;
	margin-right: auto;
	max-width: 1180px;
	width: 90%;
}

.container:before,
.container:after {
  /*content: '.';*/
  display: block;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
}

.container:after {
  clear: both;
}

.container {
  zoom: 1;
}


input,
textarea,
select {
    font-family: Gilroy;
    /* appearance: none;  */
    background: var(--corBranco);
}

input:focus { outline:none; }
select:focus { outline:none; }
textarea:focus { outline:none; }
textarea { resize:none; }
label { display:block; }


.erro,
.sucesso {
  width: 100%;
  height: auto;
  padding: 20px;
  border-radius: 5px; 
  font-size: var(--sizeText16);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.erro {
  color: var(--corBranco);
  background: #e85347; 
} 

.sucesso {
  color: var(--corBranco);
  background: #3e9278;
}
