section.hoja-espiral {
	--cFondo-claro: #fff;
	padding: 0;
	box-sizing: border-box;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

section.hoja-espiral .hoja {
	width: 500px;
	margin: 2em auto;
	background-color: var(--cFondo-claro);
	background-image:
		linear-gradient(90deg,
			var(--cFondo-claro) 12px, 0,
			#000 15px, 0,
			#000 20px, 0,
			var(--cFondo-claro) 100%),
		radial-gradient(circle closest-side,
			#1babcf00 88%,
			var(--cFondo-claro) 100%),
		radial-gradient(circle at 22px 8px,
			#000 40%,
			#000 40%,
			#00486B 100%);
	background-size: 32px 8px, 32px 16px, 32px 16px;
	background-repeat: space no-repeat;
	background-position: center top, center 6px, center 6px;
	padding: 40px 20px 5px 20px;
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
}
section.hoja-espiral .hoja p {
	line-height: normal;
}

section.hoja-espiral .hoja ul {
	padding-inline-start: 2em;
	line-height: normal;
}

section.hoja-espiral .hoja ul li {
	margin-bottom: 1em;
}

section.hoja-espiral .hoja .imagenPie {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 2em;
}

section.hoja-espiral .hoja .imagenPie img {
	width: 80%;
	max-width: 600px;
}

section.hoja-espiral .hoja .imagenPie p {
	font-size: 0.75em;
	text-align: center;
	margin-top: 20px;
	overflow-wrap: anywhere;
}

@media (max-width: 767px) {
	section.hoja-espiral .hoja {
		width: 80%;
	}
}