body {
	background-color: var(--branco2);
	font-family: "Gotham", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

h2 {
	font-size: 28px;
}

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;
}

img {
	display: block;
    max-width: 100%;
}

.form-control {
	border: solid 1px #000;
    border-radius: 10px;
}

input {
	width: 100%;
    margin: 10px 0;
    padding: 20px 25px;
    background-color: var(--branco2);
    border-radius: 50px;
    border: none;
	color: var(--preto);
}

textarea {
    width: 100%;
    margin: 5px 0;
    background-color: transparent;
    border: none;
	height: 100px;
}