/*
 * Secção contactos 1
 */

.contacts_section_1_textarea {
	width: 100%;
	resize: vertical;
	min-height: 160px;
	box-sizing: border-box;
	font: 400 14px/22px 'Inter', sans-serif;
	font-variation-settings: 'wght' 400, 'opsz' 14;
}

.contacts_section_1 .form_section_1_checkbox label {
	padding: 1px 0 1px 32px;
}

.contacts_section_1 .form_section_1_checkbox label::before {
	top: 50%;
	transform: translateY(-50%);
}

.contacts_section_1 .form_section_1_checkbox input[type="checkbox"]:checked + label::after {
	top: 50%;
	margin: -1px 0 0 0;
	transform: translateY(-50%) rotate(45deg);
}

.contacts_section_1_infos {
	gap: 16px;
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.contacts_section_1_info {
	gap: 12px;
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}

.contacts_section_1_info i {
	width: 16px;
	flex-shrink: 0;
	font-size: 14px;
	line-height: 19px;
	text-align: center;
	color: var(--cor9);
	transition: all 0.2s ease;
}

.contacts_section_1_info a {
	color: var(--cor3);
	text-decoration: none;
	transition: all 0.2s ease;
}

.contacts_section_1_info a:hover {
	color: var(--cor13);
}

.contacts_section_1_map {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 280px;
	border: none;
	outline: none;
	display: block;
	overflow: hidden;
	position: relative;
	transition: all 0.2s ease;
	background-color: color-mix(in srgb, var(--cor3) 40%, var(--cor1));
}

.contacts_section_1_map iframe {
	border: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.contacts_section_1_map_link {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor5);
	text-decoration: none;
	transition: all 0.2s ease;
	font: 400 12px/18px 'Inter', sans-serif;
	font-variation-settings: 'wght' 400, 'opsz' 12;
}

.contacts_section_1_map_link:hover {
	color: var(--cor13);
}

@media screen and (max-width: 768px) {
	.contacts_section_1_map {
		height: 240px;
	}
}

/*
 * Fim secção contactos 1
 */