/*Alinhando os botões*/
.area-botoes{
	display: flex;
	justify-content: center;
	width: 100%;
}

.agenda-section .item .area-botoes .btndrop{
	width: auto;
	margin: 0 10px;
}

/*Tabela PopUp*/
.tabela-popup{
	padding: 0 25px;
}

.tabela-popup .header-popup{
	text-align: center;
	width: 100%;
    margin: 50px 0;
}

.tabela-popup .header-popup h3{
    font-weight: 300;
    font-size: 36px;
    color: #282828;
    line-height: 36px;
    margin: 0;
}

.tabela-popup ul{
	list-style-position: inside;
}

.tabela-popup .row{
	width: 100%;
	display: flex;
	background-color: #f4f4f4;
	margin: 0;
}

.tabela-popup .row:nth-child(even){
	background-color: #e9e9e9;
}

.tabela-popup .row:nth-child(even) .informacao{
	background-color: #dfdfdf
}

.tabela-popup .row .informacao{
	width: 30%;
	padding: 30px;
	background-color: #eaeaea;
}

.tabela-popup .row .informacao p{
	margin-bottom: 5px;
}

.tabela-popup .row .informacao strong{
	margin-bottom: 15px;
	display: block;
}

.tabela-popup .row .descricao{
	width: 70%;
	padding: 30px;
}

.tabela-popup .obs{
	width: 100%;
	margin-top: 30px;
	text-align: center;
}

.tabela-popup .obs p{
	font-style: italic;
	font-size: 16px
}

.tabela-popup .row .informacao.full, .tabela-popup .row .descricao.full{
	width: 100%;
}

/*Outros negocios*/
.outros-negocios{
	float: left;
	position: relative;
	width: 100%;
	padding: 120px 0;
}

.outros-negocios .wrap{
	max-width: 820px;
	margin: 0 auto;
}


.outros-negocios .title{
	text-align: center;
	margin-bottom: 80px;
}

.outros-negocios .title h3{
    font-size: 36px;
    line-height: 36px;
    font-weight: 300;
    color: #282828;
}

.outros-negocios .negocios{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.outros-negocios .negocios .negocio{
	display: flex;
	margin-bottom: 80px;
	align-items: flex-start;
}

.outros-negocios .negocios .negocio:last-child{
	margin-bottom: 0
}

.outros-negocios .negocios .negocio .area-imagem{
	width: 20%;
	display: flex;
	margin-right: 2%;
}

.outros-negocios .negocios .negocio .area-imagem img{
	max-width: 100%
}

.outros-negocios .negocios .negocio .conteudo{
	width: 78%;
}

/*Ajustes no texto quebrando*/
.ea-bootstrap #booking-overview td{
	white-space: pre-wrap;
	word-wrap: break-word;
}

@media(max-width: 550px){
	.outros-negocios{
		padding: 40px 0;
	}

	.outros-negocios .negocios .negocio{
		flex-direction: column;
		margin-bottom: 40px
	}

	.outros-negocios .negocios .negocio .area-imagem{
		width: 100%;
		margin-right: 0%;
		margin-bottom: 20px;
	}

	.outros-negocios .negocios .negocio .conteudo{
		width: 100%;
	}
}

@media(max-width: 425px){
	.area-botoes{
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.agenda-section .item .area-botoes .btndrop{
		margin-bottom: 15px;
	}
	.tabela-popup .row{
		flex-direction: column;
		margin-bottom: 20px;
	}
	.tabela-popup .row .informacao{
		width: 100%;
	}
	.tabela-popup .row .descricao{
		width: 100%;
	}
}