html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

body {
	font-family: Helvetica, Arial, sans-serif;
	font-weight: lighter;
	font-size: 16px;
	color: #ffffff;
	background: #ffffff url(img/bg.jpg) no-repeat center bottom fixed;
	background-size: cover;
	-webkit-overflow-scrolling: touch;
}

/* ===== Estructura principal ===== */
#cspio-page {
	display: flex;
	justify-content: center;
	align-items: center; /* centrado vertical */
	min-height: 100vh;
	background: radial-gradient(
		ellipse at center,
		rgba(0, 0, 0, 0.3) 0%,
		rgba(0, 0, 0, 0.2) 37%,
		rgba(0, 0, 0, 0) 68%,
		rgba(0, 0, 0, 0) 100%
	);
	position: relative;
}

#cspio-content {
	display: none;
	max-width: 600px;
	width: 92vw;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 2px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
	/* ✅ sube el bloque aprox. 80px en escritorio */
	transform: translateY(-80px);
}

/* ===== Tipografía ===== */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Pacifico', cursive;
	color: #ffffff;
	margin-bottom: 20px;
}

#cspio-headline {
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 30px;
	line-height: 1.2em;
}

/* ===== Redes sociales ===== */
#cspio-socialprofiles {
	margin-top: 30px;
	text-align: center;
}

#cspio-socialprofiles a {
	color: #ffffff;
	font-size: 28px;
	margin: 0 14px;
	transition: opacity 0.3s ease;
	text-decoration: none;
}

#cspio-socialprofiles a:hover {
	opacity: 0.75;
}

/* ===== Imágenes ===== */
#cspio-content img {
	max-width: 100%;
	height: auto;
}

/* ===== Móvil: bloque más arriba pero sin desplazamiento extra ===== */
@media (max-width: 768px) {
	#cspio-page {
		align-items: flex-start;
		padding-top: 80px;
	}
	#cspio-content {
		padding: 30px 20px;
		margin-top: 0 !important;
		transform: none; /* ✅ elimina el desplazamiento en móvil */
	}
}

/* ===== Extra pequeño (móviles muy estrechos) ===== */
@media (max-width: 480px) {
	#cspio-page {
		padding-top: 60px;
	}
	#cspio-content {
		padding: 24px 16px;
	}
}
