@charset "utf-8";
.blend {
	display: flex;
	width: 100%;
	height: 600px;
}
.blendmb {
	display: none;
}
.area {
	flex: 1;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	cursor: pointer;
	transition: flex 0.5s ease;
}
.area.active {
 	flex: 3;
	height:  auto;
}
.box-blend{
	width: 60%;
	height: 100%;
	display: flex;
	align-items: flex-end;
}
.titulo-blend {
	position: relative;
	font-size: 27px;
	display: flex;
	flex-direction: column;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	bottom: 15px;
	left: 15px;
}
.titulo-blend-wipe {
	display: none;
	position: relative;
	font-size: 27px;
	line-height: 110%;
	flex-direction: column;
}
.titulo-blend::after {
  	content: '\002B'; /* Sinal de mais */
 	font-size: 20px;
 	display: inline-block; 
  	border: solid;
  	border-width: 1px;
  	padding: 5px;
  	width: fit-content;
 	height: 30px;
  	margin-right: 10px;
}
.conteudo-blend{
   display: none;
}
.area.active .titulo-blend{
  display: none;
}
.area.active .titulo-blend::after{
  display: none;
}
.area.active .titulo-blend-wipe{
  display: flex;
}
.area.active .conteudo-blend {
  	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
  	padding: 30px;
}
.paragraph-blend{
	font-size: 14px;
	line-height: 140%;
}


