@import url(https://fonts.googleapis.com/css2?family=Saira+Semi+Condensed:100,400);

/* FONDO GENERAL CON DEGRADADO SUAVE */
body {
	margin: 0;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		#f7f7f7 50%,
		#f0f0f0 100%
	);
	color: #000000;
	font-family: "Saira Semi Condensed", sans-serif;
}

/* TITULOS */

h1 {
	color: #000;
	margin: 0;
	line-height: 1;
	font-size: 5rem;
}

h1 span {
	font-weight: 100;
}

h2 {
	margin: 0.2em 0;
	font-size: 2em;
	letter-spacing: 10px;
	text-align: center;
	color: #000;
}

h2 span {
	font-weight: 100;
}

/* DROPDOWN */

.dropdown {
	position: relative;
	display: inline-block;
	margin-top: 35px;
}

.dropbtn {
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		#f3f3f3 100%
	);
	color: #000;
	padding: 10px 20px;
	font-size: 1.05em;
	border: 2px solid #000;
	cursor: pointer;
	border-radius: 6px;
	transition: background 0.3s, transform 0.2s;
}

.dropbtn:hover {
	background: linear-gradient(
		180deg,
		#f5f5f5 0%,
		#eaeaea 100%
	);
	transform: translateY(-1px);
}

.dropdown-content {
	display: none;
	position: absolute;
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		#f4f4f4 100%
	);
	min-width: 100%;
	z-index: 1;
	border-radius: 6px;
	border: 1px solid #000;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.dropdown-content a {
	color: #000;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: center;
	transition: background-color 0.3s;
}

.dropdown-content a:hover {
	background-color: #ededed;
}

/* FOOTER */

footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	padding: 10px 0;
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		#f2f2f2 100%
	);
	color: #000;
	font-size: 0.8em;
	border-top: 1px solid #000;
}

/* LANGUAGE SWITCHER */

.language-switcher {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
}

#languageButton {
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		#f2f2f2 100%
	);
	color: #000;
	padding: 10px;
	border-radius: 50%;
	border: 3px solid #000;
	cursor: pointer;
	font-size: 1em;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s, transform 0.2s;
}

#languageButton:hover {
	background: linear-gradient(
		180deg,
		#f5f5f5 0%,
		#eaeaea 100%
	);
	transform: scale(1.1);
}

/* RESPONSIVE */

@media (max-width: 600px) {
	h1 {
		font-size: 3.4em;
	}

	h2 {
		font-size: 1.1em;
	}

	.dropbtn {
		padding: 8px 16px;
		font-size: 1em;
	}

	.dropdown-content {
		position: static;
		margin-top: 10px;
	}
}






