@charset "UTF-8";

:root {
	--bg: #1e2026;
	--fg: #d6d6f0;
	--fg-btn: #0a0a0a;
	--primary: #f02d3a;
	--primary-fg: color-mix(in srgb, var(--primary) 70%, var(--fg) 30%);
	--secundary: #a35795;
	--highlight: #ffb30f;
	--highlight-muted: color-mix(
		in srgb,
		var(--highlight) 50%,
		transparent 50%
	);
	--action: #0075f2;
	--border: 1px solid #464646;
	--shadow-color: rgba(0, 0, 0, 0.15);
	--fg-font: "Exo 2", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

* {
	padding: 0;
	margin: 0;
}

*:where(*) {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	background-color: var(--bg);
	color: var(--fg);
	font-family: var(--fg-font);
	line-height: 1.6;
}

a {
	color: var(--highlight);
	font-weight: 600;
	text-decoration: underline var(--highlight-muted) 1px;
	transition:
		text-decoration-color 200ms ease,
		color 200ms ease;
}

a:hover {
	text-decoration-color: var(--highlight);
}

abbr {
	color: var(--highlight);
	font-weight: 600;
	cursor: help;
	text-decoration: none;
}

abbr:hover {
	text-decoration: underline dotted var(--highlight-muted);
}

button,
input {
	user-select: none;
	font-family: var(--fg-font);
	font-weight: 500;
}

button:focus,
input:focus {
	outline: 2px solid var(--highlight);
}

.normal-text {
	font-style: normal;
}

.highlight {
	color: var(--highlight);
	font-weight: 600;
}

.req {
	font-weight: 500;
}

.req::after {
	content: " *";
	font-weight: 600;
	color: var(--primary);
}

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

.align-start {
	display: flex;
	align-items: center;
	gap: 16px;
}

.container {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 16px;
	cursor: pointer;
	transition:
		box-shadow 0.3s ease-in-out,
		transform 0.3s ease-in-out;
}

.hamburger:hover {
	box-shadow: 0 0 12px var(--shadow-color);
	transform: scale(1.05);
}

.hamburger span {
	width: 26px;
	height: 3px;
	background: var(--primary);
	border-radius: 3px;
	transition: 0.3s;
}

.hero-section {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 40px;
	max-width: 1200px;
	padding: 60px 40px;
}

.hero-hqs,
.hero-text {
	width: 50%;
}

.hero-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.hero-text h2 {
	font-size: 32px;
	margin-bottom: 16px;
}

.hero-text p {
	font-size: 18px;
	text-align: center;
	line-height: 1.6;
}

.hq-card {
	cursor: pointer;
	position: relative;
	display: inline-block;
	transition: transform 400ms ease-in-out;
}

.hq-card img {
	height: 255px;
	width: 200px;
	aspect-ratio: 200 / 255;
	border-radius: 16px;
	box-shadow: 0 0 12px var(--shadow-color);
	margin: 0;
}

.flex-hqs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}

.hover-scale:hover .hq-card:not(:hover) {
	transform: scale(0.95);
}

.hover-scale .hq-card:hover {
	transform: scale(1.05);
}

header {
	background-color: color-mix(in srgb, var(--bg) 60%, transparent 40%);
	border-bottom: var(--border);
	box-shadow: 0 2px 6px var(--shadow-color);
	position: sticky;
	top: 0;
	user-select: none;
	z-index: 1000;
}

header .container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-block: 20px;
	padding-inline: 40px;
	max-width: 1200px;
}

#logo {
	display: flex;
	align-items: center;
	flex: 1;
	gap: 12px;
	text-decoration: none;
	color: inherit;
}

#logo img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	box-shadow: 0 0 12px var(--shadow-color);
}

#logo .nav-mark {
	color: var(--primary);
	font:
		600 24px "Orbitron",
		sans-serif;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 28px;
}

nav ul li a {
	color: var(--primary-fg);
	cursor: pointer;
	font-size: 18px;
	font-weight: 500;
	padding: 8px 12px;
	border-radius: 8px;
	transition:
		background-color 400ms,
		color 400ms;
	text-decoration: none;
}

nav ul li a:hover {
	background-color: var(--primary);
	color: var(--fg-btn);
}

div.button-wrapper button,
input[type="submit"] {
	background-color: var(--primary);
	color: var(--fg-btn);
	border: none;
	padding: 12px 20px;
	margin: 8px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 8px;
	box-shadow: 0 0 12px var(--shadow-color);
	cursor: pointer;
	transition: transform 400ms ease-in-out;
}

div.button-wrapper button:hover,
input[type="submit"]:hover {
	box-shadow: 0 0 16px var(--shadow-color);
	transform: translateY(-4px);
}

div.button-wrapper button.action-btn,
input[type="submit"] {
	background-color: var(--action);
}

main {
	width: 100%;
	margin: 0 auto;
}

main > section {
	max-width: calc(100vw - 20%);
	max-width: calc(100dvw - 20%);
	border-bottom: var(--border);
	scroll-margin-top: 88px;
	padding: 60px 40px;
	margin: 0 auto 40px;
}

main > section ~ section {
	margin-top: 40px;
}

section#inicio {
	padding-top: 0;
	height: 100vh;
	height: 100dvh;
}

main > section:not(#inicio) {
	width: 80%;
}

h1,
h2,
h3 {
	font-family: "Oxanium", sans-serif;
	color: var(--secundary);
}

h1,
h2 {
	font-size: 28px;
	margin-bottom: 16px;
}

h3 {
	font-size: 22px;
	margin-bottom: 12px;
}

main p {
	font-size: 16px;
	text-align: justify;
	line-height: 1.5;
	text-indent: 20px;
	margin-bottom: 24px;
}

.sobre-text-img {
	display: grid;
	grid-template-columns: 1fr;
	position: relative;
	padding-right: 420px;
}

.sobre-texto {
	z-index: 1;
}

.sobre-img {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
}

.sobre-img img {
	border-radius: 12px;
	box-shadow: 0 0 12px var(--shadow-color);
}

.sobre-img > figcaption {
	color: var(--fg);
	padding: 0 4px 4px;
	font-size: 0.9rem;
	text-align: center;
}

section#sobre > article {
	display: flex;
	flex-direction: row-reverse;
	align-self: center;
	align-items: center;
	border-top: var(--border);
	margin: 24px 0;
	padding: 24px 0;
	gap: 24px;
	scroll-margin-top: 88px;
	width: min(80%, 100vw - 80px);
}

section#sobre > article:nth-of-type(odd) {
	flex-direction: row;
}

section#loja {
	margin-bottom: 0;
	border-bottom: none;
}

form#form-hqs {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

fieldset {
	padding: 12px;
	border: var(--border);
	border-radius: 8px;
}

.pessoal input {
	display: block;
	margin: 4px;
	padding: 4px;
	border-radius: 4px;
}

.amostra-hqs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(8px, 4vw, 16px);
}

label,
label * {
	cursor: pointer;
	font-weight: 500;
	user-select: none;
}

div.add-label {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
	gap: 8px;
}

label input[type="checkbox"] {
	border-radius: 8px;
	height: 20px;
	width: 20px;
}

input[type="submit"] {
	padding: 12px;
	transition: all 400ms ease-in-out;
}

input[type="submit"]:disabled {
	background-color: color-mix(in srgb, var(--action) 60%, var(--bg) 30%);
	cursor: not-allowed;
}

input[type="submit"]:disabled:hover {
	transform: none;
}

#compra-realizada {
	display: none;
	border-top: var(--border);
	padding: 20px;
	margin-top: 20px;
	scroll-margin-top: 88px;
}

#compra-realizada p {
	width: 50%;
	margin-bottom: 12px;
}

#compra-realizada strong {
	color: var(--highlight);
}

#compra-realizada:target {
	display: block;
}

footer {
	background-color: color-mix(in srgb, var(--bg) 60%, transparent 40%);
	backdrop-filter: blur(8px);
	border-top: var(--border);
	box-shadow: 0 -2px 6px var(--shadow-color);
	text-align: center;
	max-width: 1200px;
	padding: 20px;
	margin: 0 auto;
}

footer p {
	font-size: 14px;
	color: var(--fg);
}

footer p:last-child {
	margin-top: 20px;
}

footer div.footer-contact h4 {
	margin: 16px 0 8px;
}

footer ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
}

footer ul li a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--primary-fg);
	padding: 8px 12px;
	border-radius: 10px;
	background: transparent;
	transition: all 300ms ease-in-out;
}

footer ul li a:hover {
	background-color: var(--primary);
	color: var(--fg-btn);
	transform: translateY(-3px);
	box-shadow: 0 8px 24px var(--shadow-color);
	outline: none;
}

footer ul li a svg {
	fill: var(--primary-fg);
	width: 20px;
	height: 20px;
	display: inline-block;
	transition: fill 300ms ease-in-out;
}

footer ul li a:hover svg {
	fill: var(--fg-btn);
}

.footer-brand h3 {
	font-family: "Orbitron", sans-serif;
	color: var(--primary);
	margin-bottom: 12px;
}

.footer-brand p {
	line-height: 1.6;
	opacity: 0.85;
}

.footer-contact h4 {
	font-family: "Oxanium", sans-serif;
	color: var(--highlight);
	margin-bottom: 12px;
}

.footer-copy {
	grid-column: 1 / -1;
	text-align: center;
	margin-top: 20px;
	opacity: 0.6;
	font-size: 14px;
}

@keyframes slideOut {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}

@keyframes slideIn {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}

@media (max-width: 1100px) {
	.sobre-text-img {
		grid-template: 2fr;
		margin: 0;
		padding: 0;
	}
	.sobre-texto {
		position: static;
		z-index: 0;
	}
	.sobre-img {
		position: static;
		justify-content: center;
		margin-top: 1rem;
		z-index: 0;
	}
	.sobre-img img {
		width: 70vw;
		height: auto;
	}
}

@media (max-width: 910px) {
	.hero-section {
		flex-direction: column;
		text-align: center;
	}
	.hero-hqs,
	.hero-text {
		width: 100%;
	}
	main section {
		padding: 20px;
	}
	main > section:not(#inicio) {
		width: 100%;
		padding: 40px 20px;
	}
	main section#sobre article {
		flex-direction: column;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 12px;
		padding: 12px 0;
		width: 100%;
	}
	main section#sobre article img {
		max-width: 100%;
		height: auto;
		border-radius: 12px;
		margin: 0 auto;
		order: 0;
	}
	main section#sobre article > div {
		text-align: left;
	}
}

@media (max-width: 820px) {
	header .container {
		padding-inline: 20px;
	}
	nav {
		animation-duration: 300ms;
		animation-fill-mode: forwards;
		background-color: color-mix(in srgb, var(--bg) 80%, transparent 20%);
		border-right: var(--border);
		box-shadow: 2px 0 6px var(--shadow-color);
		height: 100vh;
		position: absolute;
		top: 92px;
		left: 0;
		z-index: 999;
	}
	nav ul {
		width: 200px;
		padding: 20px;
		flex-direction: column;
		gap: 15px;
		display: none;
	}
	nav ul.active,
	nav ul.animate {
		display: flex;
	}
	nav:has(ul.animate) {
		animation-name: slideIn;
	}
	nav:has(ul:not(.animate)) {
		animation-name: slideOut;
	}
	nav ul li {
		margin: 12px 4px;
	}
	.hamburger {
		display: flex;
	}
}

@media (max-width: 750px) {
	.hero-section {
		padding: 40px 20px;
		justify-items: start;
	}
	.hero-hqs,
	.hero-hqs * {
		display: none;
	}
	.hero-hqs * {
		flex-wrap: nowrap;
	}
}

@media (max-width: 700px) {
	.amostra-hqs .hq-card img {
		border-radius: 8px;
		width: 25vw;
		width: 24dvw;
		height: auto;
	}
	footer ul {
		flex-direction: column;
		gap: 16px;
	}
}

@media (max-width: 460px) {
	#logo img {
		display: none;
	}
}

@media (max-width: 390px) {
	#logo h1 {
		font-size: 6vw;
	}
}
