:root {
	--orange: #ed6e04;
	--dark-gray: #333333;
	--light-gray: #f5f5f5;
	--white: #ffffff;
}

@font-face {
	font-family: 'Fedra';
	src: url("fonts/FedraSansPro-Bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal; 
}

@font-face {
	font-family: 'Fedra';
	src: url("fonts/FedraSansPro-Book.otf") format("opentype");
	font-weight: 500;
	font-style: normal; 
}

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Fedra", sans-serif;
	background-color: var(--white);
	color: var(--dark-gray);
	line-height: 1.6;
	display: flex;
	flex-direction: column;
}

.logo {
	display: flex;
	align-items: center;
	padding: 1rem 10%;
}

.hero {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem 10%;
	background-color: var(--light-gray);
	position: relative;
	overflow: hidden;
	min-height: 600px;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(237, 110, 4, 0.18) 0%, transparent 70%);
	border-radius: 50%;
	filter: blur(60px);
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(237, 110, 4, 0.12) 0%, transparent 70%);
	border-radius: 50%;
	filter: blur(50px);
}

.hero > * {
	position: relative;
	z-index: 1;
}

.hero-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1400px;
	gap: 2rem;
	flex-direction: row;
}

.hero-image {
	width: auto;
}

.hero-image img {
	max-height: 500px;
}

.hero-text {
	flex: 1 1 400px;
	font-weight: 400;
}

.hero-text h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.hero-text h2 .highlight {
	color: var(--orange);
}

.hero-text p {
	max-width: 500px;
	margin-bottom: 2rem;
}

.hero-text p.info {
	margin-top: 3rem;
	font-size: 0.9rem;
	color: #747474;
}

.buttons {
	display: flex;
	flex-wrap: nowrap;
	gap: 4rem;
}

.platform {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
}

.buttons img.button {
	height: 60px;
}

.buttons .qr_code {
	display: flex;
	align-items: center;
	justify-content: center;
}

.buttons .qr_code img {
	height: 120px;
}

.hero-image {
	flex: 1 1 30%;
	text-align: center;
}

.hero-image img {
	max-width: 100%;
	height: auto;
}

.points {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	padding: 3rem 5%;
	flex-wrap: wrap;
	background-color: var(--white);
	flex: 1;
}

.point {
	max-width: 350px;
	text-align: center;
}

.point img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin-bottom: 1rem;
}

.point .title {
	font-weight: 700;
}

footer {
	text-align: center;
	background-color: var(--light-gray);
	padding: 1rem;
	color: #555;
}

@media (max-width: 1100px) {
	.hero {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 2rem 5%;
	}

	.hero-text h2 {
		font-size: 1.8rem;
	}
}

@media (max-width: 800px) {
	.hero {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 2rem 5%;
		min-height: 1000px;
	}

	.hero-wrapper {
		flex-direction: column;
	}

	.logo {
		justify-content: center;
	}

	.hero-text {
		flex: 0;
		text-align: center;
		align-items: center;
	}

	.hero-text h2 {
		font-size: 1.8rem;
	}

	.buttons {
		justify-content: center;
		gap: 1rem;
		flex-wrap: wrap;
	}

	.buttons .qr_code {
		display: none;
	}

	.point {
		flex-direction: column;
		align-items: center;
	}
}