html, body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	color: #000;
	padding-top: 80px;
}

.parallax-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: url('../images/main_background.png') no-repeat center center;
	background-size: cover;
	pointer-events: none;
}

header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 10px 0;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}

.logo {
	height: 64px;
	width: auto;
	margin: 0 auto;
	vertical-align: middle;
}

.logo-link {
	cursor: pointer;
	display: inline-block;
}

nav {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
}

nav ul {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
}

nav ul li {
	margin: 0 15px;
}

nav ul li a {
	color: white;
	text-decoration: none;
	font-size: 1rem;
}

/* Sección hero vacía inicial */
.hero-section {
	height: calc(100dvh - 80px);
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Botón fijo ↓ Ver más */
/* .scroll-inline-global {
	position: fixed;
	bottom: 150px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	background: rgba(50, 50, 50, 0.6);
	border-radius: 20px;
	padding: 10px 20px;
	font-size: 1.1rem;
	cursor: pointer;
	backdrop-filter: blur(3px);
	transition: background 1.0s ease, transform 1.0s ease, opacity 1.0s ease;
	z-index: 999;
} */
.scroll-inline-global {
	position: fixed;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	background: rgba(50, 50, 50, 0.6);
	border-radius: 20px;
	padding: 10px 20px;
	font-size: 1.1rem;
	cursor: pointer;
	backdrop-filter: blur(3px);
	transition: opacity 1.5s ease, background 1.5s ease, transform 1.5s ease;
	z-index: 999;
	opacity: 0;
	pointer-events: none;
}
.scroll-inline-global.visible {
	opacity: 1;
	pointer-events: auto;
}
.scroll-inline-global:hover {
	background: rgba(50, 50, 50, 0.8);
	transform: translateX(-50%) translateY(2px);
	opacity: 1;
}

/* .scroll-inline-prev {
	position: fixed;
	bottom: 200px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	background: rgba(50, 50, 50, 0.6);
	border-radius: 20px;
	padding: 10px 20px;
	font-size: 1.1rem;
	cursor: pointer;
	backdrop-filter: blur(3px);
	transition: background 1.0s ease, transform 1.0s ease, opacity 1.0s ease;
	z-index: 999;
	display: none;
} */
.scroll-inline-prev {
	position: fixed;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	background: rgba(50, 50, 50, 0.6);
	border-radius: 20px;
	padding: 10px 20px;
	font-size: 1.1rem;
	cursor: pointer;
	backdrop-filter: blur(3px);
	transition: opacity 1.5s ease, background 1.5s ease, transform 1.5s ease;
	z-index: 999;
	opacity: 0;
	pointer-events: none;
}
.scroll-inline-prev.visible {
	opacity: 1;
	pointer-events: auto;
}
.scroll-inline-prev:hover {
	background: rgba(50, 50, 50, 0.8);
	transform: translateX(-50%) translateY(-2px);
	opacity: 1;
}
/* Secciones de contenido */
.content-section {
	margin: 600px auto;
	padding: 60px 8%;
	background: rgba(255, 255, 255, 0.85);
	border-radius: 12px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	width: 85%;
	backdrop-filter: blur(2px);
}

/* Formulario */
form input,
form textarea,
form button {
	display: block;
	width: 100%;
	max-width: 400px;
	margin: 10px auto;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 16px;
	box-sizing: border-box;
}

form textarea {
	resize: vertical;
	min-height: 100px;
}

form button {
	background: #007bff;
	color: white;
	border: none;
	cursor: pointer;
	transition: background 0.8s ease;
}

form button:hover {
	background: #0056b3;
}

/* Hamburguesa oculta en desktop */
.menu-toggle {
	display: none;
	cursor: pointer;
	font-size: 1.8rem;
	color: white;
	z-index: 1001;
}

/* Responsive móvil */
@media (max-width: 768px) {
	header {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 10px 20px;
	}

	.menu-toggle {
		display: block;
		position: static;
	}

	nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 250px;
		height: 100dvh;
		background: rgba(0, 0, 0, 0.95);
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding: 100px 20px 20px 20px;
		transform: translateX(-100%);
		transition: transform 0.8s ease-in-out;
		z-index: 999;
	}

	nav.active {
		transform: translateX(0);
	}

	nav ul {
		flex-direction: column;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	nav ul li {
		width: 100%;
		margin: 15px 0;
		text-align: left;
	}

	nav ul li a {
		font-size: 1.1rem;
		width: 100%;
		display: block;
	}

	.logo {
		height: 48px;
		margin: 0 auto;
	}

	.logo-link {
		flex: 1;
		display: flex;
		justify-content: center;
	}

	.content-section {
		margin: 600px auto;
		padding: 40px 6%;
		width: 90%;
	}
}