.contenedor {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 4rem 0
}

.preguntas {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
	padding: 0 2rem;
	text-align: center;
}

.titulo {
	color: #2C8DCC;
	padding: 2rem 1rem
}

.tituloPregunta {
	height: 80px;
	border-radius: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #084677;
	color: #fff;
	font-size: 1.5em;
	position: relative;
	text-align: center;
	cursor: pointer;
}

.flecha {
	position: absolute;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	height: 20px;
	width: 20px;
	right: 3rem;
	transform: rotate(-45deg);
	transition: all .3s;
}

.respuesta {
	padding: 0;
	max-height: 0px;
	overflow: hidden;
	padding: 2rem 1rem;
	/* visibility: hidden; */
	transition: all .3s;
	opacity: 0;
}


.activa .tituloPregunta {
	background-color: #2A85BF
}

.activa .flecha {
	transform: rotate(135deg);
	transition: all .3s
}

.activa .respuesta {
	padding: 2rem 1rem;
	max-height: 10000px;
	opacity: 1;
	transition: all .3s;
}

.disclaimer {
	width: 100%;
	max-width: 1300px;
}

@media screen and (max-width: 768px) {
	.preguntas {
		padding: 0 1rem;
	}

	.tituloPregunta {
		height: 120px;
		font-size: 1.2em;
		padding-right: 3rem;
	}

	.flecha {
		right: 1rem;
		/* bottom: 1rem; */
	}
}