
/* Estilos gerais do modal */

#espaco-modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
}
.espaco-modal-content {
	background: #fff;
	padding: 57px 45px;
	border-radius: 5px;
	width: 90%;
	max-width: 640px;
	max-height: 90vh;
	position: relative;
	overflow-y: auto;
}
.espaco-modal-content h2 {
	color: #000000;
	font-size: 28px;
	font-weight: 500;
	font-family: 'Montserrat';
	line-height: 34px;
	text-align: center;
	margin: 0 0 60px;
}
.espaco-modal-content > p {
	color: #000000;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Montserrat';
	line-height: 18px;
	margin: 0 0 10px;
}

.espaco-modal-content #espaco-selecionados {
	padding: 13px;
	max-height: 130px;
	border-radius: 15px;
	border: solid 1px #D8D8D8;
	overflow-y: auto;
	margin: 0 0 20px;
}
.espaco-modal-content #espaco-selecionados p {
	font-size: 14px;
	margin: 0 0 3px;
}

.espaco-modal-content label {
	color: #000000;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Montserrat';
	line-height: 18px;
	display: block;
	margin: 0 0 24px;
}
.espaco-modal-content input ,
.espaco-modal-content textarea {
	font-size: 14px;
	font-family: 'Montserrat';
	width: 100%;
	height: 60px;
	border-radius: 10px;
	margin: 10px 0 0;
	padding: 0 15px;
	border: solid 1px #D8D8D8;
}
.espaco-modal-content textarea {
	height: 90px;
	padding: 15px;
}
.espaco-modal-content button[type='submit'] {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	text-transform: uppercase;
	display: inline-block;
	width: 100%;
	padding: 17px;
	cursor: pointer;
	position: relative;
	z-index: 3;
	border: none;
	border-radius: 10px;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
	background: #2E3774;
}


.close-modal {
	color: #46529C;
	font-size: 30px !important;
	font-weight: bold;
	line-height: 30px;
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 20px;
	cursor: pointer;
}

/* Estilize a mensagem de sucesso ou erro, se necessário */
.alert-message {
	color: #d44;
	font-weight: bold;
}

/* Estilo para o botão "Selecionar Todos" */
#selecionar-todos {
	color: #46529C;
	font-size: 16px;
	font-weight: 700;
	font-family: 'Montserrat';
	line-height: 20px;
	text-transform: uppercase;
	/* display: inline-block; */
	display: none;
	padding: 2px;
	cursor: pointer;
	border: none;
	border-bottom: solid 2px #46529C;
}
#selecionar-todos:hover ,
#selecionar-todos:focus {
	outline: none;
}




.box-espaco {
	margin: 0 0 37px;
	overflow: hidden;
	position: relative;
	border-radius: 10px;
	box-shadow: 0 4px 4px 0 rgba(0,0,0,.25);
}
.box-espaco a.link-geral {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.box-espaco input {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: -1;
	border: none;
	border-radius: 5px;
	background: #fff;
}

.box-espaco-image {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
@media (max-width:580px) {
	.box-espaco-image {
		overflow: initial;
	}
}
.box-espaco-image .fundo {
	width: 100%;
	height: 250px;
	object-fit: cover;
}
@media (max-width: 580px) {
	.box-espaco-image .fundo {
		height: 150px;
	}
}
.box-espaco-image .logo {
	width: 158px;
	height: 158px;
	position: absolute;
	top: 50%;
	left: 60px;
	transform: translateY(-50%);
	object-fit: cover;
	border: solid 5px #fff;
	border-radius: 25px;
}
@media (max-width:580px) {
	.box-espaco-image .logo {
		left: 50%;
		transform: translateX(-50%);
	}
}

.box-espaco-content {
	align-items: center;
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr 260px;
	padding: 22px 60px;
}
@media (max-width: 580px) {
	.box-espaco-content {
		grid-template-columns: 1fr;
		padding: 100px 20px 20px;
	}
}

.box-espaco-link button {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	text-transform: uppercase;
	display: inline-block;
	width: 100%;
	padding: 23px;
	cursor: pointer;
	position: relative;
	z-index: 3;
	border: none;
	border-radius: 10px;
	box-shadow: 0 4px 4px 0 rgba(0,0,0,.25);
	background: #2E3774;
}

.box-espaco-info h2 {
	color: #46529C;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	margin: 0 0 10px;
}
.box-espaco-info .post-ratings {
	position: relative;
	z-index: 3;
}
.box-espaco-info .post-ratings img {
	width: 17px;
	margin: 0 5px 10px 0;
}
.box-espaco-info h3 {
	color: #525252;
	font-size: 18px;
	font-weight: 400;
	line-height: 22px;
	margin: 0 0 8px;
}
.box-espaco-info p a {
	color: #525252;
	font-size: 18px;
	cursor: initial;
}
.box-espaco-info p {
	margin: 0;
}

#espaco-filtragem-form label.hidden-bairro {
    display: none;
}
#espaco-filtragem-form button {
	display: inline-block;
	text-align: center;
	color: #46529c;
	background: transparent;
	border: none;
	border-bottom: solid 1px #46529c;
	width: 90px;
	padding: 0 0 2px;
	cursor: pointer;
}