section.contenedor-nota {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	align-items: start;
}

section.contenedor-nota .nota-cinta {
	width: 325px;
	min-height: 200px;
	padding: 10px;
	margin: 20px 22px 44px 22px;
	position: relative;
	font-size: 16px;
	vertical-align: top;
	display: inline-block;
	color: #4b453c;
	line-height: 34px;
	text-align: left;
	box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}

section.contenedor-nota .nota-cinta:before {
	display: block;
	content: "";
	background: #e3c87266;
	width: 130px;
	height: 28px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	border-radius: 6px/18px 0;
	position: absolute;
	top: -13px;
	left: 50px;
	-webkit-transform: rotate(-2deg);
	-moz-transform: rotate(-2deg);
	-o-transform: rotate(-2deg);
	-ms-transform: rotate(-2deg);
	transform: rotate(-2deg);
}

section.contenedor-nota .nota-cinta.note-blue {
	background: #b9dcf4;
	-webkit-transform: rotate(-2deg);
	-moz-transform: rotate(-2deg);
	-o-transform: rotate(-2deg);
	-ms-transform: rotate(-2deg);
	transform: rotate(-2deg);
}

section.contenedor-nota .nota-cinta.note-pink {
	background: #ffbda3;
	-webkit-transform: rotate(1deg);
	-moz-transform: rotate(1deg);
	-o-transform: rotate(1deg);
	-ms-transform: rotate(1deg);
	transform: rotate(1deg);
}

section.contenedor-nota .nota-cinta.note-yellow {
	background: #f7e999;
	-webkit-transform: rotate(2deg);
	-moz-transform: rotate(2deg);
	-o-transform: rotate(2deg);
	-ms-transform: rotate(2deg);
	transform: rotate(2deg);
}

section.contenedor-nota .nota-cinta p {
	line-height: normal;
	padding-top: 1em;
}

section.contenedor-nota .nota-cinta .imagenPie {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 2em;
}

section.contenedor-nota .nota-cinta .imagenPie img {
	width: 80%;
	max-width: 600px;
}

section.contenedor-nota .nota-cinta .imagenPie p {
	font-size: 0.75em;
	text-align: center;
	margin-top: 20px;
	overflow-wrap: anywhere;
}

@media (max-width: 767px) {
	section.contenedor-nota .nota-cinta {
		width: 90%;
	}
}