/* ==========================================================
   BASE
========================================================== */

body {
	background-color: var(--color-surface);
	background-image: url("../images/bg-pattern.png");
	background-repeat: repeat;
	background-size: auto;
	display: flex;
	flex-direction: column;
	font-family: var(--font-body);
	font-weight: var(--fw-regular);
	min-height: 100vh;
	overflow-x: clip;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 32px;
}

.container--narrow {
	max-width: var(--container-narrow);
}

.section {
	padding-block: var(--space-section);
}

/* ==========================================================
   Fim da seção BASE
========================================================== */

/* ==========================================================
   HEADER
========================================================== */

.site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;

	color: var(--color-surface);

	background: url("../images/bg-menu.jpg") center center / cover no-repeat;
	border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.home .site-header {
	position: relative;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;

	min-height: 92px;
	gap: 54px;
}

.site-branding {
	flex-shrink: 0;
	padding-top: 4px;
}

.site-logo {
	display: inline-flex;
	padding: 15px;
}

.site-logo__image {
	display: block;
	height: auto;
	min-width: 0;
	width: 146px;
}

.primary-navigation {
	flex: 1;
	display: flex;
	justify-content: center;
}

/* ===========================
   Primary Menu
=========================== */

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

	gap: 32px;

	margin: 0;
	padding: 0;

	list-style: none;
}

.primary-menu li {
	margin: 0;
	padding: 0;
}

.primary-menu a {
	display: block;

	padding: .45rem 0;

	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: var(--fw-medium);

	letter-spacing: .04em;
	text-transform: none;

	color: rgba(255, 255, 255, .85);

	border-bottom: 2px solid transparent;

	transition:
		color .25s ease,
		border-color .25s ease;
}

.primary-menu a:hover,
.primary-menu a:focus {
	color: #fff;
	border-bottom-color: var(--color-warning);
}

/* ===========================
   Header Actions
=========================== */

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.header-action {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 26px;
	height: 26px;

	flex-shrink: 0;
}

.header-action img {
	display: block;

	width: 22px;
	height: 22px;
}

.header-language {
	position: relative;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.header-language--mobile {
	display: none;
}

.header-action--language {
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
}

.header-action--language img,
.header-language__option img {
	width: 25px;
	height: 17px;
	object-fit: cover;
}

.header-language__menu {
	align-items: center;
	background: #020716;
	border: 1px solid rgba(255, 255, 255, 0.24);
	display: flex;
	flex-direction: column;
	gap: 4px;
	left: 50%;
	padding: 6px;
	position: absolute;
	top: calc(100% + 10px);
	transform: translateX(-50%);
	z-index: 30;
}

.header-language__menu[hidden] {
	display: none;
}

.header-language__option {
	align-items: center;
	border: 1px solid transparent;
	display: flex;
	height: 28px;
	justify-content: center;
	width: 36px;
}

.header-language__option:hover,
.header-language__option:focus,
.header-language__option.is-active {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--color-warning);
}

.header-search {
	align-items: center;
	display: flex;
	position: relative;
}

.header-search__input {
	background: rgba(255, 255, 255, 0.96);
	border: 0;
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: 0.85rem;
	opacity: 0;
	padding: 0.55rem 0.75rem;
	pointer-events: none;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 0.18s ease, width 0.18s ease;
	width: 0;
}

.header-search.is-open .header-search__input,
.header-search:focus-within .header-search__input {
	opacity: 1;
	pointer-events: auto;
	width: 220px;
}

.header-search__toggle {
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
}

/* ===========================
   Cart Counter
=========================== */

.header-action--cart {
	position: relative;
}

.cart-counter {
	position: absolute;

	top: -6px;
	right: -8px;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 16px;
	height: 16px;

	border-radius: 50%;

	background: #d62828;

	color: #fff;

	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}

/* ===========================
   Fim da seção HEADER
=========================== */


/* ==========================================================
   INTRO
========================================================== */

.intro {
	padding-bottom: 64px;
	padding-top: 46px;
}

/* ===========================
   Media Strip
=========================== */

.media-strip {
	display: flex;
	gap: 6px;

	margin-bottom: 40px;
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.gameplay-carousel {
	padding-inline: 32px;
	position: relative;
}

.gameplay-carousel__viewport {
	overflow: hidden;
}

.gameplay-carousel__slide {
	aspect-ratio: 390 / 290;
	flex: 0 0 calc((100% - 12px) / 3);
	margin: 0;
	overflow: hidden;
}

.media-strip img {
	aspect-ratio: auto;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.gameplay-carousel__dots {
	display: none;
}

.gameplay-carousel__arrow {
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 34px;
	border: 0;
	cursor: pointer;
	display: block;
	height: 46px;
	position: absolute;
	top: calc(50% - 20px);
	width: 32px;
	z-index: 2;
}

.gameplay-carousel__arrow--prev {
	background-image: url("../icons/seta-esq.svg");
	left: 0;
}

.gameplay-carousel__arrow--next {
	background-image: url("../icons/seta-dir.svg");
	right: 0;
}

/* ===========================
   Intro Grid
=========================== */

.intro__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 48px;
	align-items: start;
}

.intro__grid h2 {
	font-family: var(--font-display);
	font-weight: var(--fw-black);
	font-size: clamp(2.25rem, 3.2vw, 3.15rem);
	line-height: 1.05;
	margin-bottom: 20px;
}

.intro__grid h2 span {
	display: block;
	white-space: nowrap;
}

.intro__copy {
	border-left: 3px solid var(--color-accent);
	padding-left: 28px;
}

.intro__grid p {
	font-family: var(--font-body);
	font-size: 0.98rem;
	line-height: 1.72;
	color: var(--color-ink-soft);
}

.intro__grid p+p {
	margin-top: 1rem;
}

/* ===========================
   Quote Row
=========================== */

.quote-row {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, 1fr);
	max-width: 700px;
	margin: 44px auto 0;
}

.quote-row__item {
	aspect-ratio: 710.06 / 352.79;
	display: block;
	overflow: hidden;
}

.quote-row img {
	height: auto;
	max-width: none;
	width: 300%;
}

.quote-row__item--second img {
	transform: translateX(-33.3333%);
}

.quote-row__item--third img {
	transform: translateX(-66.6667%);
}

/* ===========================
   Fim da seção INTRO
=========================== */


/* ================================
   Mobile Navigation
================================ */

.nav-toggle {
	background: transparent;
	border: 0;
	display: none;
	height: 44px;
	justify-self: end;
	padding: 0;
	width: 44px;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
	background: var(--color-surface);
	content: "";
	display: block;
	height: 2px;
	width: 28px;
}

.nav-toggle__bar::before {
	transform: translateY(-8px);
}

.nav-toggle__bar::after {
	transform: translateY(6px);
}

/* ================================
   Fim seção Mobile Navigation
================================ */

/* ===========================
   HERO
=========================== */

.hero {
	background: var(--color-night);
	color: var(--color-surface);
	min-height: 700px;
	overflow: hidden;
	position: relative;
}



.hero__media {
	background-image:
		linear-gradient(90deg,
				rgba(2, 7, 22, .02) 0%,
				rgba(2, 7, 22, .10) 46%,
				rgba(2, 7, 22, .62) 70%,
				rgba(2, 7, 22, .95) 100%),
				
		url("../images/hero.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	inset: 0;
	position: absolute;
}

.hero__logo {
	width: min(100%, 640px);
	margin-inline: auto;
}

.hero__content {
	align-items: center;
	display: flex;
	justify-content: flex-end;
	min-height: 700px;
	padding-top: 0;
	position: relative;
	z-index: 1;
}

.hero__copy {
	margin-left: auto;
	margin-top: -112px;
	max-width: 640px;
	padding-top: 24px;
	text-align: center;
	transform: translateY(-26px);
}

.hero__copy p:not(.eyebrow) {
	font-weight: 800;
	margin: 22px auto 22px;
	max-width: 390px;
}

.hero__cta {
	align-items: flex-end;
	display: flex;
	flex-direction: column;
	margin-left: auto;
	max-width: 500px;
	text-align: center;
}

.hero__copy p.hero__description {
	display: grid;
	gap: 5px;
	margin: 18px 0 0;
	max-width: 500px;
	text-align: right;
}

.hero__description-title {
	display: block;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: var(--fw-black);
	line-height: 1.2;
	text-wrap: balance;
	text-transform: none;
}

.hero__description-text {
	display: block;
	font-size: 1rem;
	font-weight: var(--fw-medium);
	line-height: 1.5;
	text-wrap: pretty;
}

.hero__copy .button {
	box-shadow: 0 10px 28px rgba(255, 10, 138, 0.24);
	margin-top: 18px;
	min-width: 160px;
}

.hero__release {

	display: flex;

	flex-direction: column;

	align-items: flex-end;

	margin-bottom: 14px;
	padding-right: 10px;

	font-family: var(--font-mono);
	font-size: 0.86rem;
	letter-spacing: 0.06em;

}

.eyebrow {

	font-family: var(--font-mono);

	font-weight: 700;

	text-transform: uppercase;

}

/* ===========================
   Fim da seção HERO
=========================== */

/* ===========================
   DETAILS
=========================== */

.details {
	background: var(--color-surface);
	padding-top: 64px;
}

.details h2 {
	font-size: clamp(2.75rem, 4vw, 4.6rem);
	margin-top: 8px;
}

.details .section-kicker,
.details .caption {
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
}

.details > .container > p:not(.section-kicker):not(.caption) {
	color: var(--color-muted);
	margin-top: 8px;
}

.details__image {
	-webkit-mask-image: radial-gradient(ellipse 82% 78% at 50% 50%, #000 58%, rgba(0, 0, 0, 0.94) 72%, transparent 100%);
	aspect-ratio: 16 / 9;
	display: block;
	height: auto;
	mask-image: radial-gradient(ellipse 82% 78% at 50% 50%, #000 58%, rgba(0, 0, 0, 0.94) 72%, transparent 100%);
	object-fit: contain;
	width: 100%;
	filter: drop-shadow(0 34px 70px rgba(6, 18, 60, 0.14));
}

.details__viewport {
	overflow: hidden;
	position: relative;
}

.details__track {
	display: flex;
	transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.details__slide {
	flex: 0 0 100%;
	margin: 0;
}

.details__showcase {
	align-items: center;
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 44px;
	margin: 48px auto 10px;
	max-width: 1320px;
	width: calc(100% + 80px);
	margin-left: -40px;
}

.details__arrow {
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 56px;
	border: 0;
	cursor: pointer;
	height: 76px;
	position: relative;
	width: 44px;
}

.details__arrow--prev {
	background-image: url("../icons/seta-esq.svg");
}

.details__arrow--next {
	background-image: url("../icons/seta-dir.svg");
}

.details__dots {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin: 12px 0 24px;
}

.details__dots span,
.details__dots button {
	background: rgba(255, 10, 138, 0.25);
	border: 0;
	border-radius: 50%;
	height: 7px;
	padding: 0;
	width: 7px;
}

.details__dots .is-active,
.details__dots button[aria-current="true"] {
	background: var(--color-accent);
}

.details__zoom {
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(6, 18, 60, 0.2);
	border-radius: 50%;
	bottom: 20px;
	cursor: zoom-in;
	height: 46px;
	position: absolute;
	right: 22px;
	width: 46px;
	z-index: 2;
}

.details__zoom::before {
	border: 3px solid var(--color-ink);
	border-radius: 50%;
	content: "";
	height: 15px;
	left: 11px;
	position: absolute;
	top: 10px;
	width: 15px;
}

.details__zoom::after {
	background: var(--color-ink);
	content: "";
	height: 3px;
	left: 27px;
	position: absolute;
	top: 27px;
	transform: rotate(45deg);
	transform-origin: left center;
	width: 11px;
}

.details__zoom:hover,
.details__zoom:focus-visible {
	background: var(--color-accent);
	border-color: var(--color-accent);
	outline: 0;
}

html.has-details-modal {
	overflow: hidden;
}

.details-modal {
	background: transparent;
	border: 0;
	height: 100dvh;
	inset: 0;
	margin: 0;
	max-height: none;
	max-width: none;
	overflow: hidden;
	padding: 0;
	width: 100vw;
}

.details-modal:not([open]) {
	display: none;
}

.details-modal::backdrop {
	background: rgba(2, 7, 22, 0.94);
}

.details-modal__content {
	align-items: center;
	display: grid;
	grid-template-columns: minmax(48px, 7vw) minmax(0, 1fr) minmax(48px, 7vw);
	height: 100%;
	justify-items: center;
	padding: 34px 20px 24px;
	position: relative;
	width: 100%;
}

.details-modal__figure {
	align-items: center;
	display: flex;
	flex-direction: column;
	grid-column: 2;
	grid-row: 1;
	height: 100%;
	justify-content: center;
	margin: 0;
	min-height: 0;
	min-width: 0;
}

.details-modal__figure img {
	display: block;
	max-height: 88vh;
	max-width: 92vw;
	object-fit: contain;
	width: auto;
}

.details-modal__counter {
	background: rgba(2, 7, 22, 0.74);
	border-radius: 999px;
	bottom: 18px;
	color: #fff;
	font-family: var(--font-mono);
	font-size: 0.82rem;
	left: 50%;
	line-height: 1;
	padding: 8px 13px;
	position: absolute;
	transform: translateX(-50%);
	white-space: nowrap;
}

.details-modal__close,
.details-modal__arrow {
	align-items: center;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	justify-content: center;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.details-modal__close:hover,
.details-modal__close:focus-visible,
.details-modal__arrow:hover,
.details-modal__arrow:focus-visible {
	background: var(--color-accent);
	border-color: var(--color-accent);
	outline: 0;
	transform: scale(1.06);
}

.details-modal__close {
	font-family: Arial, sans-serif;
	font-size: 2rem;
	height: 44px;
	line-height: 1;
	position: absolute;
	right: 20px;
	top: 18px;
	width: 44px;
	z-index: 2;
}

.details-modal__close span {
	margin-top: -3px;
}

.details-modal__arrow {
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 24px;
	height: 52px;
	width: 52px;
}

.details-modal__arrow--prev {
	background-image: url("../icons/seta-esq.svg");
	grid-column: 1;
	grid-row: 1;
}

.details-modal__arrow--next {
	background-image: url("../icons/seta-dir.svg");
	grid-column: 3;
	grid-row: 1;
}

.caption {
	color: rgba(6, 18, 60, 0.22);
	margin-bottom: 62px;
	text-align: left;
}

.feature-grid {
	display: grid;
	gap: 34px 68px;
	grid-template-columns: repeat(3, 1fr);
}

.feature-grid article h3 {
	font-family: var(--font-mono);
	font-size: 1.15rem;
	font-weight: var(--fw-bold);
	line-height: 1.1;
}

.feature-grid article p {
	color: var(--color-muted);
	font-size: 0.84rem;
	line-height: 1.35;
	margin-top: 8px;
}

/* ===========================
   Fim da seção DETAILS
=========================== */

/* ===========================
   PHYSICAL
=========================== */

.physical {
	overflow-x: clip;
}

.physical__grid {
	align-items: center;
	display: grid;
	column-gap: clamp(72px, 8vw, 140px);
	grid-template-columns: minmax(500px, 0.9fr) 1.1fr;
	row-gap: 24px;
}

.physical__copy {
	padding-left: 24px;
	position: relative;
	z-index: 2;
}

.physical__copy h2 {
	font-size: clamp(2.8rem, 3.35vw, 3.35rem);
	max-width: none;
}

.physical__copy h2 span {
	display: block;
	white-space: nowrap;
}

.physical .section-kicker,
.physical .product-code {
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
}

.physical__copy>p:not(.section-kicker):not(.product-code) {
	color: var(--color-muted);
	line-height: 1.55;
	margin-top: 20px;
	max-width: 420px;
}

.physical__copy .button {
	margin-top: 52px;
}

.physical__copy .button:disabled {
	cursor: default;
	opacity: 1;
}

.physical__media {
	cursor: pointer;
	isolation: isolate;
	justify-self: end;
	max-width: 820px;
	overflow: visible;
	position: relative;
	width: 100%;
	z-index: 1;
}

.physical__media:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 8px;
}

.physical img {
	aspect-ratio: 16 / 9;
	display: block;
	filter: drop-shadow(0 34px 90px rgba(6, 18, 60, 0.2));
	height: auto;
	margin-left: 0;
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	width: 100%;
}

.physical__image {
	transform: translate(44px, -20px) scale(2);
	transform-origin: 50% 50%;
	transition: opacity 320ms ease;
}

.physical__image--closed {
	opacity: 1;
	position: relative;
}

.physical__image--open {
	inset: 0;
	opacity: 0;
	position: absolute;
}

.physical__media:hover .physical__image--closed,
.physical__media:focus-visible .physical__image--closed {
	opacity: 0;
}

.physical__media:hover .physical__image--open,
.physical__media:focus-visible .physical__image--open {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.physical__image,
	.details-modal__close,
	.details-modal__arrow {
		transition: none;
	}
}

/* ===========================
   Fim da seção PHYSICAL
=========================== */

/* ===========================
   PRODUCT
=========================== */

.product-code {
	color: var(--color-ink);
	margin-top: 18px;
}

.products h2 {
	margin-bottom: 34px;
}

.home .products {
	padding-bottom: 36px;
}

.product-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(3, 1fr);
}

.content-area {
	padding-top: 90px;
}

.entry+.entry {
	border-top: 1px solid var(--color-border);
	margin-top: 2rem;
	padding-top: 2rem;
}

.entry__title {
	margin-bottom: 1rem;
}

.entry__content {
	color: var(--color-ink-soft);
}

/* ===========================
   Fim da seção PRODUCT
=========================== */

/* ===========================
   ABOUT
=========================== */

.about-page {
	--about-yellow: #f2a905;
	background-color: var(--color-surface);
	background-image: url("../images/bg-pattern.png");
	background-repeat: repeat;
	background-size: auto;
}

.about-hero {
	padding-block: 112px 64px;
}

.breadcrumb {
	align-items: center;
	color: rgba(6, 18, 60, 0.55);
	display: flex;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	gap: 9px;
	margin-bottom: 26px;
}

.breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.about-hero h1 {
	font-size: clamp(3.5rem, 5.6vw, 5.2rem);
	line-height: 1.03;
	max-width: 760px;
	text-transform: none;
}

.about-hero__title-line {
	display: block;
	white-space: nowrap;
}

.about-hero__title-line--accent {
	color: var(--about-yellow);
}

.about-hero__copy {
	display: grid;
	gap: 94px;
	grid-template-columns: 1fr 1fr;
	margin-top: 64px;
}

.about-hero__copy p {
	color: var(--color-ink-soft);
	font-size: 1.04rem;
	line-height: 1.58;
}

.about-hero__copy p + p {
	margin-top: 22px;
}

.about-hero__statement {
	border-left: 3px solid var(--color-warning);
	margin-top: 24px;
	padding-left: 12px;
}

.about-hero__statement p {
	color: var(--color-ink);
	font-family: var(--font-display);
	font-weight: var(--fw-black);
	line-height: 1.15;
}

.about-video {
	aspect-ratio: 16 / 9;
	background:
		linear-gradient(rgba(2, 7, 22, 0.18), rgba(2, 7, 22, 0.18)),
		url("../images/bg-footer.jpg") center / cover no-repeat;
	margin: 62px auto 0;
	max-width: 1120px;
	overflow: hidden;
	position: relative;
}

.about-video iframe,
.about-video video {
	border: 0;
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.about-powered {
	align-items: center;
	display: grid;
	gap: 28px;
	grid-template-columns: 260px minmax(0, 1fr);
	margin: 28px auto 0;
	max-width: 720px;
}

.about-powered__logo {
	border-right: 1px solid rgba(6, 18, 60, 0.22);
	padding-right: 24px;
}

.about-powered__logo span {
	color: rgba(6, 18, 60, 0.48);
	display: block;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-style: italic;
	font-weight: 700;
	margin-bottom: 6px;
}

.about-powered__logo img {
	display: block;
	filter: grayscale(1) brightness(0.58);
	opacity: 0.68;
	width: 220px;
}

.about-powered p {
	color: var(--color-ink-soft);
	font-size: 0.9rem;
	line-height: 1.55;
}

.about-principles {
	background: var(--color-surface);
	padding-block: 42px 108px;
}

.about-principles .section-kicker {
	color: var(--about-yellow);
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	margin-bottom: 6px;
}

.about-principles h2 {
	font-size: clamp(2.6rem, 4.2vw, 3.9rem);
	margin-bottom: 60px;
	text-transform: none;
}

.about-principles__grid {
	display: grid;
	gap: 70px;
	grid-template-columns: repeat(3, 1fr);
}

.about-principles__grid span {
	color: var(--about-yellow);
	display: block;
	font-family: var(--font-mono);
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.about-principles__grid h3 {
	font-size: 1.35rem;
	line-height: 1;
	text-transform: uppercase;
}

.about-principles__grid p {
	color: var(--color-ink-soft);
	font-size: 0.92rem;
	line-height: 1.5;
	margin-top: 10px;
}

/* ===========================
   Fim da seção ABOUT
=========================== */

/* ===========================
   INTERNAL PAGES
=========================== */

.games-page,
.contact-page,
.shop-page,
.wishlist-page,
.search-page {
	background-color: var(--color-surface);
	background-image: url("../images/bg-pattern.png");
	background-repeat: repeat;
	background-size: auto;
}

.page-heading {
	padding-block: 112px 30px;
}

.page-heading h1,
.contact-copy h1 {
	font-size: clamp(3.3rem, 5vw, 5.2rem);
	line-height: 0.96;
	text-transform: none;
}

.games-page .products {
	padding-top: 34px;
}

.shop-products,
.search-products {
	padding-top: 34px;
}

.product-grid__empty {
	color: var(--color-ink-soft);
	font-size: 1.05rem;
	grid-column: 1 / -1;
}

.contact-section {
	min-height: 960px;
	padding-block: 112px 132px;
}

.contact-grid {
	align-items: start;
	display: grid;
	gap: clamp(64px, 8vw, 112px);
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
	margin-top: 14px;
}

.contact-copy h1 {
	font-size: clamp(3.1rem, 4.5vw, 4.65rem);
	max-width: 610px;
}

.contact-copy p {
	color: var(--color-ink-soft);
	font-size: 1.08rem;
	line-height: 1.5;
	margin-top: 28px;
}

.contact-form {
	display: grid;
	gap: 14px;
}

.contact-form__row {
	display: grid;
	gap: 5px;
}

.contact-form__trap {
	height: 1px;
	left: -10000px;
	overflow: hidden;
	position: absolute;
	top: auto;
	width: 1px;
}

.contact-form__notice {
	border-left: 3px solid currentColor;
	font-size: 1rem;
	line-height: 1.45;
	margin-bottom: 4px;
	padding: 10px 12px;
}

.contact-form__notice.is-success {
	background: rgba(25, 135, 84, 0.08);
	color: #146c43;
}

.contact-form__notice.is-error {
	background: rgba(180, 35, 35, 0.08);
	color: #9f1f1f;
}

.contact-form label {
	color: rgba(6, 18, 60, 0.58);
	font-family: var(--font-mono);
	font-size: 0.78rem;
	font-weight: var(--fw-regular);
	letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(6, 18, 60, 0.2);
	border-radius: 0;
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: 0.95rem;
	min-height: 38px;
	padding: 0.55rem 0.7rem;
	width: 100%;
}

.contact-form textarea {
	min-height: 218px;
	resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--color-warning);
	outline: 2px solid rgba(241, 154, 24, 0.16);
}

.contact-form__submit {
	background: var(--color-warning);
	color: var(--color-surface);
	font-family: var(--font-mono);
	font-size: 0.86rem;
	font-weight: var(--fw-bold);
	justify-self: end;
	margin-top: -4px;
	min-height: 34px;
	padding: 0.55rem 0.75rem;
}

.contact-details {
	display: grid;
	gap: 34px;
	padding-top: 46px;
}

.contact-details__item h2 {
	font-size: 1.42rem;
	line-height: 1.1;
	text-transform: none;
}

.contact-details__item p {
	color: var(--color-ink-soft);
	font-size: 0.98rem;
	line-height: 1.55;
	margin-top: 8px;
	max-width: 470px;
}

.contact-details__item a {
	color: var(--color-warning);
	display: inline-block;
	font-family: var(--font-body);
	font-size: 1.08rem;
	font-style: italic;
	font-weight: var(--fw-medium);
	margin-top: 12px;
	text-decoration: none;
}

/* ===========================
   Fim da seção INTERNAL PAGES
=========================== */

/* ==========================
   COMPONENTS
========================== */

.button {

	font-family: var(--font-mono);

	font-weight: var(--fw-bold);

}

/* =============================
   Fim seção COMPONENTS
============================= */

/* ===========================
   Início da seção FOOTER
=========================== */

.footer-brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.footer-brand__logo {
	display: block;
	width: 216px;
	height: auto;
	max-width: 100%;
}

.footer-brand p {
	font-size: 1.02rem;
	margin-top: 14px;
}

.primary-navigation {
	justify-self: center;
}

.site-footer {
	background: var(--color-night) url("../images/bg-footer.jpg") center / cover no-repeat;
	color: var(--color-surface);
	margin-top: auto;
	padding-block: 40px 20px;
}

.site-footer__inner {
	align-items: center;
	display: grid;
	gap: 48px;
	grid-template-columns: 1fr 0.75fr 1.15fr;
}

.site-footer p,
.site-footer a {
	color: rgba(255, 255, 255, 0.78);
}

.footer-menu {
	align-items: flex-start;
	display: grid;
	gap: 12px 42px;
	grid-template-columns: repeat(2, auto);
	list-style: none;
	margin: 0;
	padding: 0;
}

.newsletter label {
	display: block;
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: var(--fw-black);
	line-height: 1;
	margin-bottom: 12px;
}

.newsletter__row {
	display: flex;
	margin-top: 16px;
	max-width: 450px;
}

.newsletter input {
	background: var(--color-surface);
	border: 0;
	min-width: 0;
	padding: 0.85rem 1rem;
	width: 100%;
}

.newsletter button {
	background: var(--color-warning);
	border: 0;
	color: var(--color-surface);
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	padding-inline: 1rem;
}

.site-footer__credits {
	margin-top: 24px;
	text-align: right;
}

/* ===========================
   Fim da seção FOOTER
=========================== */
