body {
	line-height: 1.6;
	font-size: 1.375rem;
	color: #444;
	background-color: #eee;

	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-optical-sizing: auto;
	font-style: normal;

	margin: 0;
}

hr {
	clear: both;
}

h1,
h2,
h3 {
	clear: both;
	font-family: "Fraunces", serif;
	font-weight: 700;
	font-variation-settings:
		"SOFT" 50,
		"WONK" 1;
	color: #6a961f;
	line-height: 1.375;
}

a {
	text-decoration: none;
	color: #069;
}

a:hover {
	text-decoration: underline;
}

video,
iframe {
	border-radius: 4px;
	box-sizing: border-box;
	display: block;
	margin: 0 1.375rem 1.375rem 0;
	float: left;
	max-width: 267px;
}

img {
	max-width: 75%;
	margin: auto;
	border-radius: 4px;
	display: block;
}

.head {
	color: #eee;
	position: relative;
	width: 100%;
	height: 100vh;
	background-image: url("cover.webp");
	background-size: cover;
	background-position: center;
	display: table;
	text-align: center;
	text-shadow:
		0 3px 8px #000,
		-2px -2px 0 #444,
		0 -2px 0 #444,
		2px -2px 0 #444,
		2px 0 0 #444,
		2px 2px 0 #444,
		0 2px 0 #444,
		-2px 2px 0 #444,
		-2px 0 0 #444;
	font-size: 50px;

	display: flex;
	justify-content: center;
	align-items: center;
}

.content {
	max-width: 80ch;
	margin: 40px auto;
	padding: 0;
}

.float {
	position: fixed;
	bottom: 48px;
	right: 40px;
	text-align: center;

	display: inline-flex;
}

.float>* {
	border: none;
	margin: 0 8px;
	border-radius: 48px;
	width: 48px;
	height: 48px;
	cursor: pointer;

	display: flex;
	justify-content: center;
	align-items: center;
}

.float>*>i {
	margin: auto;
	font-size: 32px;
}

.float-facebook {
	background-color: hsl(214, 89%, 52%);
	color: #fff;
}

.float-whatsapp {
	background-color: rgb(37, 211, 102);
	color: #fff;
}

.float-mail {
	background-color: #6a961f;
	color: #eee;
}

.center>* {
	margin: 0;
}

#form {
	position: fixed;
	bottom: 116px;
	right: 48px;
	width: 400px;
	background-color: #fff;
	border-radius: 8px;
	/* border: 4px solid #6a961f; */
	padding: 16px;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 10px 100px;
	opacity: 0;
}

input,
textarea {
	font-size: 1.375rem;
	font-family: "Inter", sans-serif;
}

#form>h2 {
	margin: 0;
}

button {
	cursor: pointer;
	font-family: "Fraunces", serif;
	font-size: 1.375rem;
	color: #eee;
	width: 100%;
	border: none;
	border-radius: 4px;
	background-color: #6a961f;
}

textarea,
input,
fieldset {
	width: 100%;
	border-radius: 4px;
	border: 2px solid #444;
	box-sizing: border-box;
	background-color: #eee;
}

input[type='checkbox'] {
	width: auto;
}

textarea {
	resize: none;
}

.kw-alert-error {
	width: 100%;
	box-sizing: border-box;
}

#form-close-btn {
	display: none;
}

/* @media (prefers-color-scheme: dark) { */
/* 	body { */
/* 		background-color: #444; */
/* 		color: #eee; */
/* 	} */
/**/
/* 	a { */
/* 		color: #6cf; */
/* 	} */
/* } */

@keyframes fade-in {
	from {
		display: none;
		opacity: 0%;
	}

	to {
		opacity: 100%;
		display: unset;
	}
}

@keyframes fade-out {
	from {
		opacity: 100%;
		display: unset;
	}

	to {
		display: none;
		opacity: 0%;
	}
}
