/* Pincho lateral 3D para el post-it */
.postit-pin3d {
	position: absolute;
	top: 18px;
	left: -18px;
	width: 10px;
	height: 38px;
	background: linear-gradient(90deg, #b71c1c 60%, #fff 100%);
	border-radius: 5px;
	box-shadow: 2px 0 8px rgba(0,0,0,0.25), 0 0 2px #fff inset;
	transform: rotate(-18deg);
	z-index: 4;
	border: 1px solid #a31515;
}
/* Pin para el post-it */
.postit-pin {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 22px;
	height: 22px;
	background: radial-gradient(circle at 60% 40%, #d32f2f 70%, #fff 100%);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,0,0,0.18);
	border: 2px solid #fff;
	z-index: 3;
	display: block;
}
/* Post-it personalizado */
.postit {
	position: relative;
	background: #ffeb3b;
	color: #333;
	font-weight: bold;
	font-size: 1.08em;
	box-shadow: 0 4px 16px rgba(0,0,0,0.18);
	border-radius: 8px 8px 12px 8px;
	padding: 14px 22px 16px 22px;
	width: fit-content;
	margin: 0 auto 22px auto;
	display: block;
	text-align: center;
	z-index: 2;
}
.postit-corner {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #e6c200 60%, #fff 100%);
	border-bottom-right-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.10);
	transform: rotate(8deg);
	z-index: 1;
}
/* Responsive para móviles */
@media (max-width: 600px) {
	.container {
		max-width: 98vw;
		padding: 10px 4px;
		border-radius: 0;
		box-shadow: none;
	}
	.fotos-container {
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 8px;
		justify-content: center;
	}
	.fotos-container img {
		width: 48vw;
		min-width: 120px;
		max-width: 180px;
		margin-bottom: 0;
	}
	main {
		padding: 0;
	}
	h1, h2, h3 {
		font-size: 1.1em;
	}
	ul, p {
		font-size: 1em;
	}
	.container > div[style*="flex-direction: row"] {
		flex-direction: column !important;
		gap: 0 !important;
	}
	.fotos-container + div {
		width: 98vw !important;
		margin: 12px auto 0 auto !important;
	}
	.header-bg {
		padding: 10px 10px;
	}
	.logo-img {
		height: 60px;
		max-width: 120px;
	}
}

body {
	font-family: 'Segoe UI', Arial, sans-serif;
	background: #1565c0;
	margin: 0;
	padding: 0;
}

.container {
	max-width: 900px;
	margin: 40px auto;
	background: #fff;
	padding: 32px 28px;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

h1 {
	color: #222;
	font-weight: 600;
	margin-bottom: 18px;
}

p, ul {
	color: #444;
	font-size: 1.08em;
}

ul {
	padding-left: 22px;
}

a {
	color: #2a5d9f;
	text-decoration: none;
	transition: color 0.2s;
}
a:hover {
	color: #17406a;
}

.fotos-container img {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.13);
	margin-bottom: 12px;
	background: #fafbfc;
	border: 1px solid #e3e6ea;
	transition: box-shadow 0.2s;
}
.fotos-container img:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
