/* CORES: */
:root {
    --preto:  #000000;
    --branco: #ffffff;
	--bege: #fbefe1;
	--verde-escuro: #07272D;
	--verde: #0D5257;
	--verde-claro: #D1E0D7;
	--amarelo: #FFB500;
	--amarelo-claro: #FAE053;
	--amarelo-pastel: #F5E1A4;

}

body {
	color: var(--preto);
}

a {
	color: unset;
	text-decoration: none;
}
a:hover {
	color: unset;
	text-decoration: none;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p {
 	margin: 0;
}
b, strong {
    font-weight: 900;
}

img {
    max-width: 100%;
}

a, p, div, span, h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
	font-family: 'Roboto', sans-serif;
    color: var(--verde-escuro);
}
a, p, div, span {
	font-size: 14px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Anteb', sans-serif;
	text-transform: uppercase;
	margin-bottom: 0;
}
h4 {
    font-size: 22px;
}

.form-control {
	border: solid 1px var(--preto);
    border-radius: 10px;
}

textarea {
    height: 150px;
}

.copy {
	width: 100%;
	background-color: var(--preto);
	text-align: center;
	font-size: 12px;
	color: var(--branco);
	padding: 10px;
}