@charset "UTF-8";

.contato-container {
	padding-top: 30px;
	padding-bottom: 60px;
}

.contato-box {
	background: #ffffff;
	border-radius: 20px;
	padding: 50px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
	border: 1px solid #ececec;
}

.contato-topo h1 {
	font-size: 42px;
	font-weight: 700;
	color: #111111;
	margin-bottom: 20px;
	line-height: 1.2;
}

.contato-topo p {
	font-size: 18px;
	color: #666666;
	line-height: 1.7;
	margin-bottom: 40px;
}

.form-group label {
	font-size: 15px;
	font-weight: 600;
	color: #222222;
	margin-bottom: 10px;
	display: block;
}

.form-control {
	width: 100%;
	height: 54px;
	border-radius: 14px;
	border: 1px solid #dcdcdc;
	padding-left: 18px;
	padding-right: 18px;
	font-size: 16px;
	color: #111111;
	background: #ffffff;
	box-shadow: none;
	transition: all 0.2s ease;
}

.form-control:focus {
	border-color: #000000;
	outline: none;
	box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.contato-textarea {
	height: 180px !important;
	padding-top: 18px;
	padding-bottom: 18px;
	resize: vertical;
}

.contato-btn {
	height: 54px;
	padding-left: 34px;
	padding-right: 34px;
	border: none;
	border-radius: 14px;
	background: #000000;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.contato-btn:hover {
	background: #222222;
	transform: translateY(-1px);
}

.contato-infos {
	margin-top: 50px;
	padding-top: 35px;
	border-top: 1px solid #ececec;
}

.contato-infos h2 {
	font-size: 24px;
	font-weight: 700;
	color: #111111;
	margin-bottom: 16px;
}

.contato-infos p {
	font-size: 16px;
	color: #666666;
	line-height: 1.7;
	margin-bottom: 12px;
}

@media (max-width: 991px) {

	.contato-box {
		padding: 35px;
	}

	.contato-topo h1 {
		font-size: 34px;
	}

}

@media (max-width: 767px) {

	.contato-container {
		padding-top: 10px;
		padding-bottom: 40px;
	}

	.contato-box {
		padding: 25px;
		border-radius: 18px;
	}

	.contato-topo h1 {
		font-size: 28px;
	}

	.contato-topo p {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.form-control {
		height: 52px;
		font-size: 15px;
	}

	.contato-textarea {
		height: 160px !important;
	}

	.contato-btn {
		width: 100%;
	}

	.contato-infos {
		margin-top: 40px;
		padding-top: 30px;
	}

}