@font-face {
	font-family: FinancierDisplay;
	src: url(/fonts/FinancierDisplay-Regular.otf) format("opentype");
	font-weight: 400;
	font-style: normal
}

@font-face {
	font-family: Sohne;
	src: url(/fonts/sohne-buch.otf) format("opentype");
	font-weight: 400;
	font-style: normal
}

@font-face {
	font-family: Sohne;
	src: url(/fonts/sohne-kraftig.otf) format("opentype");
	font-weight: 500;
	font-style: normal
}

@font-face {
	font-family: Sohne;
	src: url(/fonts/sohne-halbfett.otf) format("opentype");
	font-weight: 700;
	font-style: normal
}

@font-face {
	font-family: Sohne;
	src: url(/fonts/sohne-leicht.otf) format("opentype");
	font-weight: 300;
	font-style: normal
}

@font-face {
	font-family: Sohne;
	src: url(/fonts/sohne-leichtkursiv.otf) format("opentype");
	font-weight: 300;
	font-style: italic
}

@font-face {
	font-family: Sohne;
	src: url(/fonts/sohne-kraftig.otf) format("opentype");
	font-weight: 600;
	font-style: normal
}

* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

body {
	margin: 0;
	font-family: Sohne, Arial, Helvetica, sans-serif;
	background: var(--bg);
	color: var(--text);
}

.page {
	max-width: 1280px;
	margin: 0 auto;
	padding: 16px 0;
}


#app-header {
	position: relative;
	display: flex;
	min-height: 100px;
	max-height: 100px;
	width: 100%;
	border: 1px solid #f5493e;
	background-color: #f5493e;
	background-image: url('../images/fondoBanner.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 16px 22px;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	margin-bottom: 14px;
}

.app-header-brand {
	position: relative;
	z-index: 1;
	padding: 18px 24px;
	font-size: clamp(32px, 3.0vw, 56px);
	font-weight: 900;
	letter-spacing: .02em;
	text-transform: uppercase;
	line-height: 1;
}

.app-header-sponsor-zone {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 18px;
	background: rgba(245, 73, 62, .55);
	border-radius: 28px 0 0 28px;
	padding: 14px 18px 14px 26px;
}

.app-header-sponsored-by {
	display: inline-block;
	font-size: clamp(14px, 1.35vw, 18px);
	font-weight: 500;
	color: #fff;
	white-space: nowrap;
}

#patrocinio {
	width: 172px;
	min-height: 74px;
	background-color: #fff;
	border-radius: 8px;
	color: #1f1f1f;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1.05;
	font-weight: 700;
	text-align: center;
	padding: 6px 8px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, .2);
}

.app-menu-section {
	border-bottom: 0px solid #111;
	margin-bottom: 16px;
    margin-top:24px;
}

.app-menu-shell {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 0 0px 0px;
	background: #F9F7F4;
}

.app-menu-track {
	flex: 1;
	width: 100%;
}

.app-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	padding: 10px;
	margin: 0;
}

.app-menu-arrow {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 8px;
	background: #e8e3dd;
	color: #635f5b;
	font-family: Sohne, Arial, Helvetica, sans-serif;
	font-size: 32px;
	font-weight: 400;
	line-height: 1;
	padding: 0;
	cursor: pointer;
}

.app-menu-link {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 132px;
	height: 42px;
	padding: 0 16px;
	border: 0;
	border-radius: 8px;
	background: #F3EEE8;
	color: #0d0d0d;
	font-family: Sohne, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
	transition: opacity .2s ease;
	text-transform: uppercase;
}

.app-menu-link:hover {
	opacity: .82;
}

.app-menu-link.is-active {
	background: #f5493e;
	color: #fff;
}

.app-menu-home {
	flex: 0 0 58px;
	padding: 0 16px;
}

.app-menu-home svg {
	width: 20px;
	height: 20px;
	display: block;
}

@media (min-width: 1200px) {
	.app-menu {
		flex-wrap: nowrap;
	}

	.app-menu-link {
		flex: 1 1 0;
	}
}

@media (max-width: 1199px) {
	.app-menu-shell {
		padding: 0 6px 8px;
	}

	.app-menu-arrow {
		display: inline-flex;
		flex: 0 0 44px;
	}

	.app-menu-track {
		overflow-x: auto;
		overflow-y: hidden;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.app-menu-track::-webkit-scrollbar {
		display: none;
	}

	.app-menu {
		flex-wrap: nowrap;
		justify-content: flex-start;
		width: max-content;
		min-width: 100%;
	}

	.app-menu-link {
		flex: 0 0 auto;
	}
}

@media (max-width: 860px) {
	#app-header {
		min-height: 100px;
		padding: 12px;
	}

	.app-header-brand {
		padding: 14px 16px;
		font-size: clamp(24px, 7vw, 36px);
	}

	.app-header-sponsor-zone {
		gap: 10px;
		padding: 10px 10px 10px 14px;
	}

	.app-header-sponsored-by {
		font-size: 13px;
	}

	#patrocinio {
		width: 134px;
		min-height: 62px;
		font-size: 19px;
	}

	.app-menu {
		gap: 8px;
		padding: 8px;
	}

	.app-menu-link {
		height: 40px;
		font-size: 15px;
	}

	.app-menu-arrow {
		width: 42px;
		height: 42px;
		font-size: 30px;
	}
}

@media (max-width: 620px) {
	#app-header {
		min-height: 86px;
		padding: 8px;
		background-position: left center;
	}

	.app-header-brand {
		padding: 10px 12px;
		font-size: 20px;
	}

	.app-header-sponsor-zone {
		border-radius: 14px 0 0 14px;
		padding: 8px 8px 8px 10px;
		gap: 8px;
	}

	.app-header-sponsored-by {
		display: none;
	}

	#patrocinio {
		width: 98px;
		min-height: 44px;
		font-size: 14px;
		padding: 4px;
	}

	.app-menu-link {
		height: 38px;
		font-size: 13px;
		padding: 0 12px;
	}

	.app-menu-home {
		flex: 0 0 46px;
	}

	.app-menu-shell {
		padding: 0 0 8px;
		gap: 0;
	}

	.app-menu-arrow {
		display: none;
	}

	.app-menu-track {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.app-menu {
		flex-wrap: nowrap;
		justify-content: flex-start;
		width: max-content;
		min-width: 100%;
		padding: 8px 10px;
	}
}