/* ==========================================================================
   YakBox · tema
   Sistema: tokens → base → componentes → seções → páginas → movimento.
   Escala de tipo e espaço fixas (ver tokens). Sem gradiente de fundo.
   ========================================================================== */

/* Fontes auto-hospedadas (subconjunto latin, OFL). Os "Fallback" copiam as
   métricas das fontes reais para o texto não pular quando elas chegam. */
@font-face {
	font-family: "YB Sans";
	src: url("../fonts/manrope-variable.woff2") format("woff2");
	font-weight: 400 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "YB Display";
	src: url("../fonts/archivo-expanded-700.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "YB Sans Fallback";
	src: local("Arial"), local("ArialMT"), local("Roboto");
	size-adjust: 97.65%;
	ascent-override: 109.17%;
	descent-override: 30.72%;
	line-gap-override: 0%;
}

@font-face {
	font-family: "YB Display Fallback";
	src: local("Arial Black"), local("Arial-Black");
	font-weight: 700;
	size-adjust: 115.75%;
	ascent-override: 75.85%;
	descent-override: 18.14%;
	line-gap-override: 0%;
}

@font-face {
	font-family: "YB Display Fallback Bold";
	src: local("Arial Bold"), local("Arial-BoldMT"), local("Roboto Bold"), local("Roboto-Bold");
	font-weight: 700;
	size-adjust: 128.37%;
	ascent-override: 68.4%;
	descent-override: 16.36%;
	line-gap-override: 0%;
}

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */
:root {
	--c-bg: #080808;
	--c-bg-alt: #101010;
	--c-surface: #181818;
	--c-surface-2: #1f1f1f;
	--c-surface-3: #272727;
	--c-line: #272727;
	--c-line-strong: #313131;
	--c-text: #ffffff;
	--c-text-2: #b8b8b8;
	--c-text-3: #8f8f8f;
	--c-red: #e50914;
	--c-red-hover: #c40812;
	--c-red-deep: #980000;
	--c-red-soft: #ff5a61;
	--c-red-tint: rgba(229, 9, 20, 0.12);
	--c-gold: #f5b83d;
	--c-green: #3ddc84;
	--c-cream: #f3eee6;
	--c-ink: #0b0b0b;
	--c-whatsapp: #25d366;
	--c-whatsapp-ink: #052e16;

	--font-sans: "YB Sans", "YB Sans Fallback", system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-display: "YB Display", "YB Display Fallback", "YB Display Fallback Bold", "Arial Black", sans-serif;

	--s-25: 2px;
	--s-50: 4px;
	--s-75: 8px;
	--s-100: 12px;
	--s-200: 16px;
	--s-300: 24px;
	--s-400: 32px;
	--s-500: 40px;
	--s-600: 48px;
	--s-700: 64px;
	--s-800: 80px;
	--s-900: 96px;

	--r-sm: 4px;
	--r-lg: 8px;
	--r-xl: 12px;
	--r-2xl: 16px;
	--r-3xl: 24px;
	--r-full: 9999px;

	--ease: cubic-bezier(0.32, 0.72, 0, 1);
	--t-fast: 200ms;
	--t-base: 300ms;
	--t-slow: 700ms;

	--shadow-float: 0 12px 32px rgba(0, 0, 0, 0.45);
	--header-h: 64px;
	--gutter: 16px;
	--container: 1200px;
}

@media (min-width: 768px) {
	:root {
		--gutter: 24px;
		--header-h: 72px;
	}
}

@media (min-width: 1280px) {
	:root {
		--gutter: 32px;
	}
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-padding-top: calc(var(--header-h) + var(--s-200));
	scrollbar-gutter: stable;
	background: var(--c-bg);
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

html:has(dialog[open]) {
	overflow: hidden;
}

/* Âncora e foco não param escondidos atrás da barra do pedido ou das categorias. */
html:has(body.has-cart) {
	scroll-padding-bottom: calc(var(--s-900) + env(safe-area-inset-bottom, 0px));
}

html:has(.menu-toolbar) {
	scroll-padding-top: calc(var(--header-h) + 88px);
}

body {
	margin: 0;
	min-height: 100vh;
	background: var(--c-bg);
	color: var(--c-text);
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.5rem;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: clip;
}

img,
svg,
video,
iframe {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

h1,
h2,
h3,
h4,
p,
figure,
dl,
dd,
blockquote {
	margin: 0;
}

p {
	text-wrap: pretty;
}

ul[role="list"],
ol[role="list"] {
	list-style: none;
	margin: 0;
	padding: 0;
}

abbr[title] {
	text-decoration: none;
}

:focus-visible {
	outline: 2px solid var(--c-gold);
	outline-offset: 3px;
}

/* Dourado some no creme e no vermelho: nesses fundos o anel fica escuro. */
.section--light :focus-visible,
.cta-final__panel :focus-visible {
	outline-color: var(--c-ink);
}

::selection {
	background: var(--c-red);
	color: #fff;
}

[hidden] {
	display: none !important;
}

.visually-hidden,
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	z-index: 100;
	left: var(--s-200);
	top: -100px;
	padding: var(--s-100) var(--s-200);
	border-radius: var(--r-xl);
	background: var(--c-gold);
	color: var(--c-ink);
	font-weight: 700;
	text-decoration: none;
}

.skip-link:focus {
	top: var(--s-200);
}

.site-main:focus {
	outline: none;
}

.icon {
	flex: none;
	width: 24px;
	height: 24px;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: calc(var(--container) + var(--gutter) * 2);
	margin-inline: auto;
	padding-inline: max(var(--gutter), env(safe-area-inset-left, 0px)) max(var(--gutter), env(safe-area-inset-right, 0px));
}

.container--narrow {
	max-width: calc(760px + var(--gutter) * 2);
}

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

.section--tight {
	padding-block: var(--s-400);
}

.section--alt {
	background: var(--c-bg-alt);
}

.section--light {
	background: var(--c-cream);
	color: var(--c-ink);
}

@media (min-width: 1024px) {
	.section {
		padding-block: var(--s-900);
	}

	.section--tight {
		padding-block: var(--s-700);
	}
}

.section-head {
	display: flex;
	flex-direction: column;
	gap: var(--s-75);
	margin-bottom: var(--s-400);
}

.section-head--split {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--s-200);
}

.section-head--split > div {
	display: flex;
	flex-direction: column;
	gap: var(--s-75);
}

.section-head--center {
	align-items: center;
	text-align: center;
}

.eyebrow {
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-red-soft);
}

.section--light .eyebrow {
	color: var(--c-red-deep);
}

.section-title,
.page-title {
	font-family: var(--font-display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	text-wrap: balance;
	overflow-wrap: anywhere;
}

.section-title {
	font-size: 1.875rem;
	line-height: 2.25rem;
}

.section-title--sm {
	font-size: 1.5rem;
	line-height: 2rem;
}

.page-title {
	font-size: 2.25rem;
	line-height: 2.5rem;
}

@media (max-width: 399px) {
	.page-title {
		font-size: 1.875rem;
		line-height: 2.25rem;
	}
}

@media (min-width: 768px) {
	.section-title {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}
}

@media (min-width: 1024px) {
	.section-title {
		font-size: 3rem;
		line-height: 1;
	}

	.section-title--sm {
		font-size: 1.875rem;
		line-height: 2.25rem;
	}

	.page-title {
		font-size: 3.75rem;
		line-height: 1;
	}
}

.page-lead {
	max-width: 680px;
	color: var(--c-text-2);
	font-size: 1.125rem;
	line-height: 1.75rem;
}

/* --------------------------------------------------------------------------
   Botões e controles
   -------------------------------------------------------------------------- */
.btn {
	--btn-bg: var(--c-surface-2);
	--btn-fg: var(--c-text);
	--btn-border: transparent;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--s-75);
	min-height: 48px;
	padding: var(--s-100) var(--s-300);
	border: 1px solid var(--btn-border);
	border-radius: var(--r-full);
	background: var(--btn-bg);
	color: var(--btn-fg);
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	transition: background-color var(--t-base) var(--ease), border-color var(--t-base) var(--ease), color var(--t-base) var(--ease), transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}

.btn .icon {
	width: 20px;
	height: 20px;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn:active {
	transform: translateY(1px) scale(0.98);
}

.btn[disabled],
.btn[aria-disabled="true"] {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
}

.btn.is-loading {
	color: transparent;
	pointer-events: none;
}

.btn.is-loading .icon {
	opacity: 0;
}

.btn.is-loading::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 48px;
	height: 3px;
	margin: -1px 0 0 -24px;
	border-radius: var(--r-full);
	background: var(--btn-fg);
	transform-origin: left;
	animation: btn-loading 1s var(--ease) infinite;
}

@keyframes btn-loading {
	0% {
		transform: scaleX(0.15);
		opacity: 0.5;
	}

	50% {
		transform: scaleX(1);
		opacity: 1;
	}

	100% {
		transform: scaleX(0.15) translateX(270px);
		opacity: 0.5;
	}
}

.btn--primary {
	--btn-bg: var(--c-red);
	--btn-fg: #fff;
}

.btn--primary:hover {
	--btn-bg: var(--c-red-hover);
}

.btn--ghost {
	--btn-bg: transparent;
	--btn-border: var(--c-line-strong);
}

.btn--ghost:hover {
	--btn-bg: var(--c-surface);
	--btn-border: #4a4a4a;
}

.btn--dark {
	--btn-bg: var(--c-ink);
	--btn-fg: #fff;
}

.btn--dark:hover {
	--btn-bg: #262626;
}

.btn--light {
	--btn-bg: #fff;
	--btn-fg: var(--c-ink);
}

.btn--light:hover {
	--btn-bg: var(--c-cream);
}

.btn--outline-light {
	--btn-bg: transparent;
	--btn-fg: #fff;
	--btn-border: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
	--btn-border: #fff;
	--btn-bg: rgba(8, 8, 8, 0.12);
}

.btn--whatsapp {
	--btn-bg: var(--c-whatsapp);
	--btn-fg: var(--c-whatsapp-ink);
}

.btn--whatsapp:hover {
	--btn-bg: #3be27a;
}

.btn--sm {
	min-height: 40px;
	padding: var(--s-75) var(--s-200);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.btn--lg {
	min-height: 56px;
	padding: var(--s-200) var(--s-400);
}

.btn--block {
	width: 100%;
}

.icon-btn {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: var(--r-full);
	background: transparent;
	color: var(--c-text);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: background-color var(--t-base) var(--ease), transform var(--t-fast) var(--ease);
}

.icon-btn:hover {
	background: var(--c-surface-2);
}

.icon-btn:active {
	transform: scale(0.94);
}

.icon-btn .icon {
	width: 22px;
	height: 22px;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: var(--s-75);
	min-height: 44px;
	color: var(--c-text);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 700;
	text-decoration: none;
}

.link-arrow .icon {
	width: 18px;
	height: 18px;
	transition: transform var(--t-base) var(--ease);
}

.link-arrow:hover .icon {
	transform: translateX(4px);
}

.link-btn {
	padding: 0;
	border: 0;
	background: none;
	color: var(--c-red-soft);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.btn-add {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: var(--r-full);
	background: var(--c-red);
	color: #fff;
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(229, 9, 20, 0.35);
	-webkit-tap-highlight-color: transparent;
	transition: transform var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
}

.btn-add .icon {
	width: 22px;
	height: 22px;
	stroke-width: 2.25;
}

.btn-add:hover {
	background: var(--c-red-hover);
	transform: scale(1.06);
}

.btn-add:active {
	transform: scale(0.92);
}

.btn-add:disabled {
	background: var(--c-surface-3);
	color: var(--c-text-3);
	box-shadow: none;
	cursor: not-allowed;
	transform: none;
}

.btn-add--lg {
	width: 48px;
	height: 48px;
}

.chips {
	display: flex;
	gap: var(--s-75);
	margin-inline: calc(var(--gutter) * -1);
	padding: var(--s-50) var(--gutter);
	overflow-x: auto;
	scroll-snap-type: x proximity;
	/* Sem isto o snap alinha o 1º chip na borda da tela, ignorando o padding. */
	scroll-padding-inline: var(--gutter);
	scrollbar-width: none;
}

.chips::-webkit-scrollbar {
	display: none;
}

.chip {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: var(--s-75);
	min-height: 44px;
	padding: var(--s-75) var(--s-200);
	border: 1px solid var(--c-line-strong);
	border-radius: var(--r-full);
	background: transparent;
	color: var(--c-text-2);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	scroll-snap-align: start;
	transition: color var(--t-base) var(--ease), background-color var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}

.chip:hover {
	border-color: #4a4a4a;
	color: var(--c-text);
}

.chip[aria-selected="true"],
.chip.is-active {
	border-color: var(--c-text);
	background: var(--c-text);
	color: var(--c-ink);
}

.chip__count {
	display: inline-grid;
	place-items: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: var(--r-full);
	background: var(--c-surface-3);
	color: var(--c-text-2);
	font-size: 0.75rem;
	line-height: 1rem;
}

.chip[aria-selected="true"] .chip__count {
	background: var(--c-red);
	color: #fff;
}

.badge {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: var(--s-25) var(--s-75);
	border-radius: var(--r-full);
	background: var(--c-gold);
	color: var(--c-ink);
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.badge--muted {
	background: var(--c-surface-3);
	color: var(--c-text-2);
}

.status {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--s-50) var(--s-75);
	padding: var(--s-50) var(--s-100);
	border: 1px solid var(--c-line-strong);
	border-radius: var(--r-full);
	background: var(--c-bg-alt);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.status__dot {
	flex: none;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--c-red-soft);
}

.status__label {
	font-weight: 800;
	color: var(--c-red-soft);
}

.status__message {
	color: var(--c-text-2);
}

.status--open .status__dot {
	background: var(--c-green);
	animation: pulse 2.4s var(--ease) infinite;
}

.status--open .status__label {
	color: var(--c-green);
}

.status--paused .status__dot {
	background: var(--c-gold);
}

.status--paused .status__label {
	color: var(--c-gold);
}

.status--compact {
	flex-wrap: nowrap;
	padding: var(--s-50) var(--s-100);
	font-size: 0.75rem;
	line-height: 1rem;
	white-space: nowrap;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.55);
	}

	70% {
		box-shadow: 0 0 0 8px rgba(61, 220, 132, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(61, 220, 132, 0);
	}
}

.price {
	display: inline-flex;
	align-items: baseline;
	gap: var(--s-75);
	white-space: nowrap;
}

.price__value {
	color: var(--c-gold);
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.price__old {
	color: var(--c-text-3);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.notice {
	display: flex;
	align-items: flex-start;
	gap: var(--s-75);
	padding: var(--s-100) var(--s-200);
	border: 1px solid var(--c-line);
	border-radius: var(--r-xl);
	background: var(--c-surface);
	color: var(--c-text-2);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.notice .icon {
	width: 18px;
	height: 18px;
	margin-top: 1px;
	color: var(--c-gold);
}

.notice a {
	color: var(--c-text);
	font-weight: 700;
}

.notice--warning {
	border-color: rgba(245, 184, 61, 0.45);
	background: rgba(245, 184, 61, 0.08);
	color: var(--c-text);
}

.notice--error {
	border-color: rgba(255, 90, 97, 0.5);
	background: rgba(229, 9, 20, 0.1);
	color: var(--c-text);
}

.empty-state {
	display: grid;
	justify-items: center;
	gap: var(--s-100);
	padding: var(--s-600) var(--s-300);
	border: 1px dashed var(--c-line-strong);
	border-radius: var(--r-2xl);
	color: var(--c-text-2);
	text-align: center;
}

.empty-state > .icon {
	width: 40px;
	height: 40px;
	color: var(--c-text-3);
}

.empty-state__title {
	color: var(--c-text);
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 800;
}

.media {
	overflow: hidden;
	background: var(--c-surface-2);
}

.media__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--t-slow) var(--ease);
}

.placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background: var(--c-surface-2);
}

.placeholder svg {
	width: 58%;
	max-width: 180px;
	height: auto;
}

/* --------------------------------------------------------------------------
   Cabeçalho
   -------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	z-index: 50;
	top: var(--wp-admin--admin-bar--height, 0px);
	background: rgba(8, 8, 8, 0.84);
	-webkit-backdrop-filter: saturate(140%) blur(16px);
	backdrop-filter: saturate(140%) blur(16px);
	transition: box-shadow var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
}

.site-header.is-scrolled {
	background: rgba(8, 8, 8, 0.95);
	box-shadow: 0 1px 0 var(--c-line);
}

@media (max-width: 600px) {
	.admin-bar .site-header {
		top: 0;
	}
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: var(--s-200);
	height: var(--header-h);
}

.brand {
	flex: none;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--c-text);
	text-decoration: none;
}

.brand__logo {
	width: auto;
	height: 36px;
}

.brand__word {
	display: inline-flex;
	align-items: center;
	font-family: var(--font-display);
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.brand__box {
	margin-left: var(--s-25);
	padding: 0 var(--s-50);
	border-radius: var(--r-sm);
	background: var(--c-red);
	color: #fff;
}

@media (min-width: 375px) {
	.brand__word {
		font-size: 1.25rem;
	}
}

@media (min-width: 768px) {
	.brand__logo {
		height: 40px;
	}
}

.site-nav {
	display: none;
	margin-left: auto;
}

.site-nav__list {
	display: flex;
	gap: var(--s-50);
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: var(--s-75) var(--s-100);
	border-radius: var(--r-full);
	color: var(--c-text-2);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 700;
	text-decoration: none;
	transition: color var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
}

.site-nav__list a:hover {
	background: var(--c-surface);
	color: var(--c-text);
}

.site-nav__list a[aria-current="page"],
.site-nav__list .current-menu-item > a {
	background: var(--c-surface-2);
	color: var(--c-text);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: var(--s-75);
	margin-left: auto;
}

.site-header__cta {
	display: none;
}

.cart-btn__count {
	position: absolute;
	top: 2px;
	right: 0;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: var(--r-full);
	background: var(--c-red);
	color: #fff;
	font-size: 0.75rem;
	line-height: 20px;
	font-weight: 800;
	text-align: center;
}

.cart-btn.is-bump {
	animation: bump 0.5s var(--ease);
}

@keyframes bump {
	40% {
		transform: scale(1.18);
	}
}

@media (max-width: 374px) {
	.site-header__inner {
		gap: var(--s-75);
	}

	.site-header__actions {
		gap: var(--s-25);
	}

	.site-header .status--compact {
		gap: var(--s-50);
		padding-inline: var(--s-50);
	}
}

@media (min-width: 1100px) {
	.site-nav {
		display: block;
	}

	.site-header__actions {
		margin-left: var(--s-200);
	}

	.site-header__cta {
		display: inline-flex;
	}

	.site-header .nav-toggle {
		display: none;
	}
}

.burger {
	position: relative;
	display: block;
	width: 20px;
	height: 14px;
}

.burger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition: transform var(--t-base) var(--ease), top var(--t-base) var(--ease);
}

.burger span:first-child {
	top: 3px;
}

.burger span:last-child {
	top: 9px;
}

.nav-toggle[aria-expanded="true"] .burger span:first-child,
.nav-toggle.is-open .burger span:first-child {
	top: 6px;
	transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .burger span:last-child,
.nav-toggle.is-open .burger span:last-child {
	top: 6px;
	transform: rotate(-45deg);
}

.nav-dialog[open] .burger span:first-child {
	animation: burger-top 0.45s var(--ease) both;
}

.nav-dialog[open] .burger span:last-child {
	animation: burger-bottom 0.45s var(--ease) both;
}

@keyframes burger-top {
	from {
		top: 3px;
		transform: none;
	}
}

@keyframes burger-bottom {
	from {
		top: 9px;
		transform: none;
	}
}

.nav-dialog {
	position: fixed;
	inset: 0;
	width: 100%;
	max-width: none;
	height: 100%;
	max-height: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgba(8, 8, 8, 0.9);
	color: var(--c-text);
	-webkit-backdrop-filter: blur(24px);
	backdrop-filter: blur(24px);
}

.nav-dialog::backdrop {
	background: transparent;
}

.nav-dialog[open] {
	display: flex;
	flex-direction: column;
	animation: fade-in 0.35s var(--ease);
}

.nav-dialog.is-closing {
	animation: fade-out 0.25s var(--ease) forwards;
}

.nav-dialog__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
}

.nav-dialog__nav {
	flex: 1;
	display: flex;
	align-items: center;
}

.nav-dialog__list {
	display: grid;
	gap: var(--s-50);
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-dialog__list a {
	display: block;
	padding: var(--s-100) 0;
	font-family: var(--font-display);
	font-size: 1.875rem;
	line-height: 2.25rem;
	text-transform: uppercase;
	text-decoration: none;
}

.nav-dialog__list a[aria-current="page"],
.nav-dialog__list .current-menu-item > a {
	color: var(--c-red-soft);
}

.nav-dialog[open] .nav-dialog__list li {
	animation: slide-up 0.6s var(--ease) both;
}

.nav-dialog__list li:nth-child(1) { animation-delay: 80ms; }
.nav-dialog__list li:nth-child(2) { animation-delay: 140ms; }
.nav-dialog__list li:nth-child(3) { animation-delay: 200ms; }
.nav-dialog__list li:nth-child(4) { animation-delay: 260ms; }
.nav-dialog__list li:nth-child(5) { animation-delay: 320ms; }
.nav-dialog__list li:nth-child(6) { animation-delay: 380ms; }
.nav-dialog__list li:nth-child(n + 7) { animation-delay: 440ms; }

.nav-dialog__footer {
	display: grid;
	justify-items: start;
	gap: var(--s-200);
	padding-block: var(--s-300) calc(var(--s-300) + env(safe-area-inset-bottom, 0px));
}

@keyframes fade-in {
	from {
		opacity: 0;
	}
}

@keyframes fade-out {
	to {
		opacity: 0;
	}
}

@keyframes slide-up {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	padding-block: var(--s-400) var(--s-600);
	overflow: hidden;
}

.hero__grid {
	display: grid;
	gap: var(--s-500);
	align-items: center;
}

.hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--s-200);
	max-width: 680px;
}

.hero__title {
	max-width: 680px;
	font-family: var(--font-display);
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	text-wrap: balance;
	background: linear-gradient(90deg, #ffffff, #9b9b9b);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__tagline {
	display: inline-flex;
	align-items: center;
	gap: var(--s-75);
	color: var(--c-red-soft);
	font-family: var(--font-display);
	font-size: 1.125rem;
	line-height: 1.75rem;
	text-transform: uppercase;
}

.hero__flame {
	width: 24px;
	height: 24px;
	color: var(--c-gold);
}

.hero__lead {
	max-width: 520px;
	color: var(--c-text-2);
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.hero__actions {
	display: flex;
	gap: var(--s-100);
	width: 100%;
	margin-top: var(--s-75);
}

.hero__actions .btn {
	flex: 1 1 0;
	min-width: 0;
	padding-inline: var(--s-200);
}

.hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-75);
	margin: var(--s-75) 0 0;
	padding: 0;
	list-style: none;
}

.hero__facts li {
	display: inline-flex;
	align-items: center;
	gap: var(--s-75);
	padding: var(--s-75) var(--s-100);
	border: 1px solid var(--c-line);
	border-radius: var(--r-full);
	background: var(--c-bg-alt);
	color: var(--c-text-2);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.hero__facts strong {
	color: var(--c-gold);
}

.hero__facts .icon {
	width: 18px;
	height: 18px;
	color: var(--c-text);
}

/* Pequeno no celular: preço e botões ficam na primeira dobra. */
.hero__visual {
	justify-self: center;
	width: 100%;
	max-width: 260px;
}

.hero-art {
	width: 100%;
	height: auto;
}

.hero__photo {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: var(--r-3xl);
}

.hero-art__steam path {
	transform-box: fill-box;
	animation: steam 3.6s var(--ease) infinite;
}

.hero-art__steam path:nth-child(2) {
	animation-delay: 0.9s;
}

.hero-art__steam path:nth-child(3) {
	animation-delay: 1.8s;
}

@keyframes steam {
	0% {
		opacity: 0;
		transform: translateY(12px);
	}

	40% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: translateY(-18px);
	}
}

@media (min-width: 400px) {
	.hero__title {
		font-size: 3rem;
		line-height: 1;
	}
}

@media (min-width: 640px) {
	.hero__actions {
		width: auto;
	}

	.hero__actions .btn {
		flex: none;
		padding-inline: var(--s-400);
	}

	.hero__visual {
		max-width: 420px;
	}
}

@media (min-width: 768px) {
	.hero__title {
		font-size: 3.75rem;
	}

	.hero__tagline {
		font-size: 1.5rem;
		line-height: 2rem;
	}
}

@media (min-width: 1024px) {
	.hero {
		padding-block: var(--s-700) var(--s-900);
	}

	.hero__grid {
		grid-template-columns: 1.1fr 0.9fr;
		gap: var(--s-600);
	}

	.hero__title {
		font-size: 4.5rem;
	}

	.hero__visual {
		justify-self: end;
		max-width: 520px;
	}
}

/* --------------------------------------------------------------------------
   Banners
   -------------------------------------------------------------------------- */
.banners {
	padding-bottom: var(--s-400);
}

.banners__list {
	display: grid;
	gap: var(--s-200);
}

.banners__list.is-multiple {
	grid-auto-flow: column;
	grid-auto-columns: 88%;
	margin-inline: calc(var(--gutter) * -1);
	padding-inline: var(--gutter);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.banners__list.is-multiple > li {
	scroll-snap-align: center;
}

.banner {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--c-line);
	border-radius: var(--r-2xl);
	background: var(--c-surface);
}

.banner__media {
	display: block;
}

.banner__img {
	width: 100%;
	aspect-ratio: 8 / 3;
	object-fit: cover;
}

.banner__content {
	position: absolute;
	left: var(--s-200);
	right: var(--s-200);
	bottom: var(--s-200);
	display: grid;
	justify-items: start;
	gap: var(--s-75);
	max-width: 460px;
	padding: var(--s-200);
	border-radius: var(--r-xl);
	background: rgba(8, 8, 8, 0.8);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.banner__title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	line-height: 1.75rem;
	text-transform: uppercase;
}

.banner__subtitle {
	color: var(--c-text-2);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

@media (max-width: 767px) {
	.banner.has-mobile .banner__img {
		aspect-ratio: 4 / 5;
	}

	.banner:not(.has-mobile) .banner__content {
		position: static;
		max-width: none;
		border-radius: 0;
		background: var(--c-surface);
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}
}

@media (min-width: 1024px) {
	.banners__list.is-multiple {
		grid-auto-flow: row;
		grid-template-columns: repeat(2, 1fr);
		margin-inline: 0;
		padding-inline: 0;
		overflow: visible;
	}
}

/* --------------------------------------------------------------------------
   Benefícios
   -------------------------------------------------------------------------- */
.benefits__grid {
	display: grid;
	gap: var(--s-100);
}

.benefit {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: var(--s-50) var(--s-200);
	padding: var(--s-200);
	border: 1px solid var(--c-line);
	border-radius: var(--r-2xl);
	background: var(--c-bg-alt);
}

.benefit__icon {
	grid-row: span 2;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: var(--r-xl);
	background: var(--c-red-tint);
	color: var(--c-red-soft);
}

.benefit__title {
	font-family: var(--font-display);
	font-size: 1rem;
	line-height: 1.5rem;
	text-transform: uppercase;
}

.benefit__text {
	color: var(--c-text-2);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

@media (min-width: 768px) {
	.benefits__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--s-200);
	}

	.benefit {
		grid-template-columns: 1fr;
		gap: var(--s-75);
		padding: var(--s-300);
	}

	.benefit__icon {
		grid-row: auto;
		margin-bottom: var(--s-100);
	}
}

/* --------------------------------------------------------------------------
   Cards de destaque
   -------------------------------------------------------------------------- */
.featured__grid {
	display: grid;
	gap: var(--s-200);
}

@media (min-width: 640px) {
	.featured__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.featured__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--s-300);
	}
}

.featured__grid > li {
	display: flex;
}

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
	border: 1px solid var(--c-line);
	border-radius: var(--r-2xl);
	background: var(--c-surface);
	transition: transform var(--t-slow) var(--ease), border-color var(--t-base) var(--ease);
}

.card:hover {
	transform: translateY(-4px);
	border-color: var(--c-line-strong);
}

.card:hover .media__img {
	transform: scale(1.04);
}

.card__media {
	position: relative;
	aspect-ratio: 4 / 3;
}

.card__badge {
	position: absolute;
	top: var(--s-100);
	left: var(--s-100);
}

.card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: var(--s-75);
	padding: var(--s-200);
}

.card__title {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 800;
}

.card__link {
	color: inherit;
	text-decoration: none;
}

.card__link::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}

.card__desc {
	display: -webkit-box;
	overflow: hidden;
	color: var(--c-text-2);
	font-size: 0.875rem;
	line-height: 1.25rem;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.card__promo {
	color: var(--c-gold);
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 700;
}

.card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-100);
	margin-top: auto;
	padding-top: var(--s-75);
}

.card .btn-add {
	position: relative;
	z-index: 2;
}

.card.is-unavailable .media__img,
.card.is-unavailable .placeholder {
	opacity: 0.5;
	filter: grayscale(1);
}

/* --------------------------------------------------------------------------
   Itens do cardápio e abas
   -------------------------------------------------------------------------- */
.menu-grid {
	display: grid;
	gap: var(--s-100);
}

@media (min-width: 900px) {
	.menu-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--s-200);
	}
}

.menu-grid > li {
	display: flex;
}

.item {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: var(--s-200);
	width: 100%;
	padding: var(--s-200);
	border: 1px solid var(--c-line);
	border-radius: var(--r-2xl);
	background: var(--c-surface);
	transition: border-color var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
}

.item:hover {
	border-color: var(--c-line-strong);
	background: #1b1b1b;
}

.item__body {
	display: flex;
	flex-direction: column;
	gap: var(--s-50);
	min-width: 0;
}

.item__title {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 800;
}

.item__link {
	color: inherit;
	text-decoration: none;
}

.item__link::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
}

.item__desc {
	display: -webkit-box;
	overflow: hidden;
	color: var(--c-text-2);
	font-size: 0.875rem;
	line-height: 1.25rem;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.item__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--s-75);
	margin-top: var(--s-50);
}

.item__media {
	position: relative;
	width: 104px;
	height: 104px;
	border-radius: var(--r-xl);
	overflow: visible;
	background: transparent;
}

.item__media > img,
.item__media > .placeholder {
	width: 100%;
	height: 100%;
	border-radius: var(--r-xl);
	object-fit: cover;
}

.item__media .placeholder svg {
	width: 78%;
}

.item .btn-add {
	position: absolute;
	z-index: 2;
	right: -6px;
	bottom: -6px;
}

.item.is-unavailable .item__media > img,
.item.is-unavailable .item__media > .placeholder {
	opacity: 0.5;
	filter: grayscale(1);
}

.item.is-addon .item__media {
	width: 72px;
	height: 72px;
}

@media (min-width: 768px) {
	.item__media {
		width: 128px;
		height: 128px;
	}
}

.menu-note {
	display: flex;
	align-items: center;
	gap: var(--s-75);
	margin-bottom: var(--s-200);
	color: var(--c-text-2);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.menu-note .icon {
	width: 18px;
	height: 18px;
	color: var(--c-gold);
}

.tabs__list {
	margin-bottom: var(--s-300);
}

.tabs__panel-title {
	margin-bottom: var(--s-200);
	font-family: var(--font-display);
	font-size: 1.25rem;
	line-height: 1.75rem;
	text-transform: uppercase;
}

html:not(.js) .tabs__list,
.no-app .tabs__list {
	display: none;
}

.js:not(.no-app) .tabs__panel:not(.is-active) {
	display: none;
}

.js:not(.no-app) .tabs__panel-title {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.tabs__panel + .tabs__panel {
	margin-top: var(--s-500);
}

.js:not(.no-app) .tabs__panel + .tabs__panel {
	margin-top: 0;
}

.js .tabs__panel.is-active {
	animation: fade-up 0.5s var(--ease);
}

@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
}

/* --------------------------------------------------------------------------
   Frase que acende
   -------------------------------------------------------------------------- */
.tagline__text {
	max-width: 1000px;
	font-family: var(--font-display);
	font-size: 1.875rem;
	line-height: 2.25rem;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	text-wrap: balance;
}

.reveal-word {
	/* 36%: texto grande (30 px ou mais) passa 3:1 mesmo antes de acender. */
	color: rgba(255, 255, 255, 0.36);
	transition: color var(--t-slow) var(--ease);
}

.reveal-word.is-lit {
	color: #fff;
}

.reveal-word.is-accent.is-lit {
	color: var(--c-red-soft);
}

html:not(.js) .reveal-word,
.no-app .reveal-word {
	color: #fff;
}

@media (min-width: 768px) {
	.tagline__text {
		font-size: 3rem;
		line-height: 1;
	}
}

@media (min-width: 1280px) {
	.tagline__text {
		font-size: 3.75rem;
	}
}

/* --------------------------------------------------------------------------
   Como pedir
   -------------------------------------------------------------------------- */
.how__steps {
	display: grid;
	gap: var(--s-200);
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 640px) {
	.how__steps {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.how__steps {
		grid-template-columns: repeat(4, 1fr);
		gap: var(--s-300);
	}
}

.step {
	display: flex;
	flex-direction: column;
	gap: var(--s-75);
	padding: var(--s-300);
	border: 1px solid #e4ddcf;
	border-radius: var(--r-2xl);
	background: #fff;
}

.step__number {
	color: var(--c-red);
	font-family: var(--font-display);
	font-size: 2.25rem;
	line-height: 2.5rem;
}

.step__title {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 800;
}

.step__text {
	color: #4a4a4a;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.how__cta {
	display: flex;
	justify-content: center;
	margin-top: var(--s-500);
}

/* --------------------------------------------------------------------------
   Delivery
   -------------------------------------------------------------------------- */
.delivery__panel {
	display: grid;
	gap: var(--s-400);
	padding: var(--s-400) var(--s-200);
	border: 1px solid var(--c-line);
	border-radius: var(--r-3xl);
	background: var(--c-surface);
}

.delivery__text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--s-200);
}

.delivery__lead {
	max-width: 520px;
	color: var(--c-text-2);
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.delivery__fee {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--s-100);
	padding: var(--s-300);
	border: 1px solid var(--c-line);
	border-radius: var(--r-2xl);
	background: var(--c-bg);
}

.delivery__icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: var(--r-full);
	background: var(--c-red);
	color: #fff;
}

.delivery__icon .icon {
	width: 28px;
	height: 28px;
}

.delivery__label {
	color: var(--c-text-2);
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.delivery__value {
	color: var(--c-gold);
	font-family: var(--font-display);
	font-size: 3rem;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.delivery__min {
	color: var(--c-text-2);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

@media (min-width: 768px) {
	.delivery__panel {
		padding: var(--s-600);
	}
}

@media (min-width: 900px) {
	.delivery__panel {
		grid-template-columns: 1.3fr 1fr;
		align-items: center;
		padding: var(--s-700);
	}

	.delivery__fee {
		padding: var(--s-400);
	}
}

@media (min-width: 1024px) {
	.delivery__value {
		font-size: 3.75rem;
	}
}

/* --------------------------------------------------------------------------
   Horário e pagamento
   -------------------------------------------------------------------------- */
.hours__grid {
	display: grid;
	gap: var(--s-200);
}

@media (min-width: 1024px) {
	.hours__grid {
		grid-template-columns: 1.5fr 1fr;
		gap: var(--s-300);
	}
}

.panel {
	padding: var(--s-300) var(--s-200);
	border: 1px solid var(--c-line);
	border-radius: var(--r-2xl);
	background: var(--c-surface);
}

@media (min-width: 768px) {
	.panel {
		padding: var(--s-400);
	}
}

.panel__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--s-200);
	margin-bottom: var(--s-300);
}

.panel__head > div {
	display: grid;
	gap: var(--s-75);
}

.week {
	display: grid;
	gap: var(--s-75);
	margin: 0;
	padding: 0;
	list-style: none;
}

.week__day {
	display: grid;
	grid-template-columns: 56px 1fr auto;
	align-items: center;
	gap: var(--s-100);
	min-height: 48px;
	padding: var(--s-75) var(--s-200);
	border: 1px solid transparent;
	border-radius: var(--r-xl);
	background: var(--c-bg-alt);
}

.week__name {
	font-weight: 800;
}

.week__hours {
	font-variant-numeric: tabular-nums;
}

.week__day.is-closed .week__hours {
	color: var(--c-text-3);
}

.week__today {
	display: none;
	color: var(--c-red-soft);
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.week__day.is-today {
	border-color: var(--c-red);
	background: rgba(229, 9, 20, 0.08);
}

.week__day.is-today .week__today {
	display: inline;
}

@media (min-width: 1280px) {
	.hours__panel .week {
		grid-template-columns: repeat(7, 1fr);
	}

	.hours__panel .week__day {
		grid-template-columns: 1fr;
		justify-items: center;
		align-content: center;
		gap: var(--s-50);
		min-height: 128px;
		padding: var(--s-200) var(--s-75);
		text-align: center;
	}

	.hours__panel .week__today {
		display: inline;
		visibility: hidden;
	}

	.hours__panel .week__day.is-today .week__today {
		visibility: visible;
	}
}

.week--compact {
	gap: 0;
}

.week--compact .week__day {
	grid-template-columns: 44px 1fr;
	min-height: 0;
	padding: var(--s-25) 0;
	border: 0;
	background: none;
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.week--compact .week__name {
	color: var(--c-text-2);
}

.week--compact .week__hours {
	color: var(--c-text-2);
}

.week--compact .week__day.is-today .week__name,
.week--compact .week__day.is-today .week__hours {
	color: var(--c-text);
}

.week--compact .week__today,
.week--compact .week__day.is-today .week__today {
	display: none;
}

.payments {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--s-100);
}

.payment {
	display: flex;
	align-items: center;
	gap: var(--s-100);
	min-height: 56px;
	padding: var(--s-100) var(--s-200);
	border: 1px solid var(--c-line);
	border-radius: var(--r-xl);
	background: var(--c-bg-alt);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 700;
}

.payment__icon {
	display: inline-flex;
	color: var(--c-gold);
}

.payment__icon .icon {
	width: 22px;
	height: 22px;
}

.payments__note {
	margin-top: var(--s-200);
	color: var(--c-text-3);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

/* --------------------------------------------------------------------------
   Chamada final
   -------------------------------------------------------------------------- */
.cta-final__panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--s-200);
	padding: var(--s-600) var(--s-200);
	border-radius: var(--r-3xl);
	background: var(--c-red);
	color: #fff;
	text-align: center;
}

.cta-final__title {
	font-family: var(--font-display);
	font-size: 2.25rem;
	line-height: 2.5rem;
	text-transform: uppercase;
	text-wrap: balance;
}

.cta-final__lead {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.cta-final__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--s-100);
	margin-top: var(--s-75);
}

.cta-final__status {
	max-width: 520px;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

@media (min-width: 768px) {
	.cta-final__panel {
		padding: var(--s-800) var(--s-600);
	}

	.cta-final__title {
		font-size: 3.75rem;
		line-height: 1;
	}
}

/* --------------------------------------------------------------------------
   Rodapé
   -------------------------------------------------------------------------- */
.site-footer {
	padding-block: var(--s-700) var(--s-300);
	background: #000;
	box-shadow: inset 0 1px 0 var(--c-line);
}

.site-footer__grid {
	display: grid;
	gap: var(--s-500);
}

@media (min-width: 640px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.site-footer__grid {
		grid-template-columns: 1.3fr 1fr 1fr 1fr;
		gap: var(--s-400);
	}
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--s-200);
}

.site-footer__tagline {
	color: var(--c-red-soft);
	font-family: var(--font-display);
	font-size: 1rem;
	line-height: 1.5rem;
	text-transform: uppercase;
}

.site-footer__text {
	max-width: 320px;
	color: var(--c-text-2);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.site-footer__title {
	margin-bottom: var(--s-200);
	color: var(--c-text-3);
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.site-footer__title--spaced {
	margin-top: var(--s-400);
}

.footer-contact,
.footer-links,
.footer-payments {
	display: grid;
	gap: var(--s-50);
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-contact a,
.footer-contact span,
.footer-links a,
.footer-payments li {
	display: inline-flex;
	align-items: center;
	gap: var(--s-75);
	min-height: 40px;
	color: var(--c-text-2);
	font-size: 0.875rem;
	line-height: 1.25rem;
	text-decoration: none;
}

.footer-contact a:hover,
.footer-links a:hover {
	color: var(--c-text);
}

.footer-contact .icon,
.footer-payments .icon {
	width: 18px;
	height: 18px;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: var(--s-100) var(--s-300);
	margin-top: var(--s-600);
	padding-top: var(--s-300);
	box-shadow: inset 0 1px 0 var(--c-line);
	color: var(--c-text-3);
	font-size: 0.75rem;
	line-height: 1rem;
}

.site-footer__bottom a {
	color: var(--c-text-2);
}

.site-footer__privacy {
	margin-left: var(--s-100);
}

.site-footer__bottom .link-btn {
	color: var(--c-text-2);
	font-size: inherit;
	line-height: inherit;
	font-weight: 400;
}

.site-footer__credit a {
	color: var(--c-text-2);
	font-weight: 700;
	text-decoration: none;
}

.site-footer__credit a:hover {
	color: var(--c-text);
}

/* --------------------------------------------------------------------------
   Flutuantes: WhatsApp e barra do pedido
   -------------------------------------------------------------------------- */
.floating {
	position: fixed;
	z-index: 40;
	left: var(--s-200);
	right: var(--s-200);
	bottom: calc(var(--s-200) + env(safe-area-inset-bottom, 0px));
	display: flex;
	justify-content: flex-end;
	pointer-events: none;
}

.floating > * {
	pointer-events: auto;
}

.fab-whatsapp {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: var(--r-full);
	background: var(--c-whatsapp);
	color: var(--c-whatsapp-ink);
	box-shadow: var(--shadow-float);
	transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease), visibility 0s linear;
}

/* Sobre a lista de itens o botão cobriria os "+" da borda direita. Some de
   verdade (visibility) para não receber foco nem toque invisível. */
.floating.is-muted .fab-whatsapp {
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px) scale(0.9);
	pointer-events: none;
	transition-delay: 0s, 0s, var(--t-base);
}

.fab-whatsapp .icon {
	width: 28px;
	height: 28px;
}

.fab-whatsapp:hover {
	transform: scale(1.06);
}

.floating.has-cart .fab-whatsapp {
	display: none;
}

.cart-bar {
	display: flex;
	align-items: center;
	gap: var(--s-100);
	width: 100%;
	min-height: 56px;
	padding: var(--s-75) var(--s-300) var(--s-75) var(--s-100);
	border: 0;
	border-radius: var(--r-full);
	background: var(--c-red);
	color: #fff;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 16px 40px rgba(229, 9, 20, 0.35);
	animation: slide-up 0.5s var(--ease);
	-webkit-tap-highlight-color: transparent;
}

.cart-bar:active {
	transform: scale(0.98);
}

.cart-bar__count {
	padding: var(--s-75) var(--s-100);
	border-radius: var(--r-full);
	background: rgba(8, 8, 8, 0.28);
	font-size: 0.75rem;
	line-height: 1rem;
	white-space: nowrap;
}

.cart-bar__label {
	flex: 1;
	text-align: left;
}

.cart-bar__total {
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

body.has-cart .site-footer {
	padding-bottom: calc(var(--s-900) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
	.cart-bar {
		width: auto;
		min-width: 340px;
	}
}

/* --------------------------------------------------------------------------
   Gavetas e modais
   -------------------------------------------------------------------------- */
.sheet {
	width: 100%;
	max-width: 100%;
	max-height: 100%;
	margin: auto 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--c-text);
	overflow: visible;
}

.sheet::backdrop {
	background: rgba(0, 0, 0, 0.72);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

.sheet[open] {
	display: flex;
}

.sheet[open]::backdrop {
	animation: fade-in 0.3s var(--ease);
}

.sheet.is-closing::backdrop {
	animation: fade-out 0.3s var(--ease) forwards;
}

.sheet__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-height: 92dvh;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--c-line);
	border-bottom: 0;
	border-radius: var(--r-3xl) var(--r-3xl) 0 0;
	background: var(--c-bg-alt);
}

.sheet[open] .sheet__panel {
	animation: sheet-up 0.5s var(--ease);
}

.sheet.is-closing .sheet__panel {
	animation: sheet-down 0.3s var(--ease) forwards;
}

@keyframes sheet-up {
	from {
		transform: translateY(100%);
	}
}

@keyframes sheet-down {
	to {
		transform: translateY(100%);
	}
}

.sheet__header {
	display: flex;
	align-items: center;
	gap: var(--s-75);
	padding: var(--s-75) var(--s-100);
	box-shadow: inset 0 -1px 0 var(--c-line);
}

.sheet__title {
	font-family: var(--font-display);
	font-size: 1.125rem;
	line-height: 1.75rem;
	text-transform: uppercase;
}

.sheet__title:focus {
	outline: none;
}

.sheet__body {
	flex: 1;
	min-height: 0;
	padding: var(--s-300) var(--s-200);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.sheet__footer {
	padding: var(--s-200) var(--s-200) calc(var(--s-200) + env(safe-area-inset-bottom, 0px));
	background: var(--c-bg-alt);
	box-shadow: inset 0 1px 0 var(--c-line);
}

.sheet__close {
	position: absolute;
	z-index: 3;
	top: var(--s-100);
	right: var(--s-100);
	background: rgba(8, 8, 8, 0.72);
}

.sheet__close:hover {
	background: rgba(8, 8, 8, 0.9);
}

@media (min-width: 768px) {
	.product-dialog {
		width: min(560px, calc(100% - var(--s-600)));
		margin: auto;
	}

	.product-dialog .sheet__panel {
		max-height: min(88dvh, 880px);
		border-bottom: 1px solid var(--c-line);
		border-radius: var(--r-3xl);
	}

	.product-dialog[open] .sheet__panel {
		animation: pop-in 0.4s var(--ease);
	}

	.product-dialog.is-closing .sheet__panel {
		animation: pop-out 0.25s var(--ease) forwards;
	}

	.cart {
		width: min(460px, 100%);
		height: 100%;
		margin: 0 0 0 auto;
	}

	.cart .sheet__panel {
		height: 100%;
		max-height: 100dvh;
		border: 0;
		border-radius: var(--r-3xl) 0 0 var(--r-3xl);
		box-shadow: -1px 0 0 var(--c-line);
	}

	.cart[open] .sheet__panel {
		animation: slide-in-right 0.5s var(--ease);
	}

	.cart.is-closing .sheet__panel {
		animation: slide-out-right 0.3s var(--ease) forwards;
	}
}

@keyframes pop-in {
	from {
		opacity: 0;
		transform: translateY(16px) scale(0.98);
	}
}

@keyframes pop-out {
	to {
		opacity: 0;
		transform: translateY(16px) scale(0.98);
	}
}

@keyframes slide-in-right {
	from {
		transform: translateX(100%);
	}
}

@keyframes slide-out-right {
	to {
		transform: translateX(100%);
	}
}

/* Produto */
.product-dialog__body {
	padding: 0;
}

.product-dialog__media {
	aspect-ratio: 16 / 10;
}

.product-dialog__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-dialog__info {
	display: flex;
	flex-direction: column;
	gap: var(--s-100);
	padding: var(--s-300) var(--s-200);
}

.product-dialog__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	line-height: 2rem;
	text-transform: uppercase;
	text-wrap: balance;
}

.product-dialog__desc {
	color: var(--c-text-2);
}

.product-dialog__price .price__value {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.product-dialog__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--s-100);
}

/* Até ~360 px o botão desce para a linha de baixo em vez de espremer o total. */
.product-dialog__submit {
	flex: 1 1 190px;
	justify-content: space-between;
	min-width: 0;
	padding-inline: var(--s-200);
	white-space: normal;
}

.product-dialog__total {
	font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
	.product-dialog__media {
		aspect-ratio: 4 / 3;
	}

	.product-dialog__info {
		padding: var(--s-300);
	}
}

.stepper {
	display: inline-flex;
	flex: none;
	align-items: center;
	gap: var(--s-50);
	padding: var(--s-50);
	border: 1px solid var(--c-line-strong);
	border-radius: var(--r-full);
	background: var(--c-bg);
}

.stepper__btn {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: var(--r-full);
	background: var(--c-surface-2);
	color: var(--c-text);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: background-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.stepper__btn:hover {
	background: var(--c-surface-3);
}

.stepper__btn:active {
	transform: scale(0.9);
}

.stepper__btn:disabled,
.stepper__btn[aria-disabled="true"] {
	opacity: 0.35;
	cursor: not-allowed;
	transform: none;
}

.stepper__btn .icon {
	width: 18px;
	height: 18px;
	stroke-width: 2.25;
}

.stepper__value {
	min-width: 28px;
	font-weight: 800;
	text-align: center;
	font-variant-numeric: tabular-nums;
}

.stepper--sm .stepper__btn {
	width: 40px;
	height: 40px;
}

.addons {
	min-width: 0;
	margin: var(--s-100) 0 0;
	padding: 0;
	border: 0;
}

.addons__legend {
	display: flex;
	align-items: baseline;
	gap: var(--s-75);
	margin-bottom: var(--s-100);
	padding: 0;
	font-weight: 800;
}

.addons__hint {
	color: var(--c-text-3);
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 700;
}

.addons__list {
	display: grid;
	gap: var(--s-75);
	margin: 0;
	padding: 0;
	list-style: none;
}

.addon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-100);
	padding: var(--s-50) var(--s-50) var(--s-50) var(--s-200);
	border: 1px solid var(--c-line);
	border-radius: var(--r-full);
	background: var(--c-surface);
	transition: border-color var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
}

.addon.is-selected {
	border-color: var(--c-red);
	background: rgba(229, 9, 20, 0.08);
}

.addon.is-unavailable {
	opacity: 0.55;
}

.addon__info {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.addon__name {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 700;
}

.addon__price {
	color: var(--c-gold);
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 700;
}

.addon .stepper {
	border: 0;
	background: transparent;
}

/* Formulários */
.form {
	display: grid;
	gap: var(--s-200);
}

.form__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 112px;
	gap: var(--s-100);
}

.field {
	display: grid;
	gap: var(--s-75);
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.field__label {
	padding: 0;
	color: var(--c-text);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 700;
}

.field__req {
	color: var(--c-red-soft);
}

.field__optional {
	color: var(--c-text-3);
	font-weight: 600;
}

.field__input {
	width: 100%;
	min-height: 48px;
	padding: var(--s-100) var(--s-200);
	border: 1px solid var(--c-line-strong);
	border-radius: var(--r-xl);
	background: var(--c-bg);
	color: var(--c-text);
	font-size: 1rem;
	line-height: 1.5rem;
	-webkit-appearance: none;
	appearance: none;
	transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

textarea.field__input {
	min-height: 80px;
	resize: vertical;
}

.field__input::placeholder {
	color: var(--c-text-3);
}

.field__input:hover {
	border-color: #4a4a4a;
}

.field__input:focus {
	outline: none;
	border-color: var(--c-gold);
	box-shadow: 0 0 0 3px rgba(245, 184, 61, 0.25);
}

.field__input[aria-invalid="true"] {
	border-color: var(--c-red-soft);
}

.field__error {
	color: var(--c-red-soft);
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 700;
}

.choices__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--s-75);
}

.choice {
	position: relative;
	display: block;
	cursor: pointer;
}

.choice input {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.choice__box {
	display: flex;
	align-items: center;
	gap: var(--s-75);
	min-height: 56px;
	padding: var(--s-100);
	border: 1px solid var(--c-line-strong);
	border-radius: var(--r-xl);
	background: var(--c-bg);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 700;
	transition: border-color var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
}

.choice__box .icon {
	width: 22px;
	height: 22px;
	color: var(--c-gold);
}

.choice input:checked + .choice__box {
	border-color: var(--c-red);
	background: rgba(229, 9, 20, 0.1);
}

.choice input:focus-visible + .choice__box {
	outline: 2px solid var(--c-gold);
	outline-offset: 2px;
}

.choice input[aria-invalid="true"] + .choice__box {
	border-color: var(--c-red-soft);
}

.segmented__options {
	display: inline-grid;
	grid-template-columns: repeat(2, minmax(88px, 1fr));
	padding: var(--s-50);
	border: 1px solid var(--c-line-strong);
	border-radius: var(--r-full);
	background: var(--c-bg);
	justify-self: start;
}

.segmented__option {
	position: relative;
}

.segmented__option input {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.segmented__option span {
	display: grid;
	place-items: center;
	min-height: 44px;
	padding: 0 var(--s-200);
	border-radius: var(--r-full);
	font-size: 0.875rem;
	font-weight: 700;
	transition: background-color var(--t-base) var(--ease), color var(--t-base) var(--ease);
}

.segmented__option input:checked + span {
	background: var(--c-text);
	color: var(--c-ink);
}

.segmented__option input:focus-visible + span {
	outline: 2px solid var(--c-gold);
	outline-offset: 2px;
}

.change {
	display: grid;
	gap: var(--s-200);
}

.location {
	display: grid;
	justify-items: start;
	gap: var(--s-75);
}

.location__status {
	color: var(--c-text-2);
	font-size: 0.75rem;
	line-height: 1rem;
}

.location__status:empty {
	display: none;
}

/* Carrinho */
.cart__header {
	min-height: 64px;
}

.cart__heading {
	flex: 1;
	min-width: 0;
	padding-left: var(--s-75);
}

.cart__step-label {
	color: var(--c-text-3);
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 700;
}

.cart__step-label:empty {
	display: none;
}

.cart__progress {
	height: 2px;
	background: var(--c-line);
}

.cart__progress span {
	display: block;
	width: 25%;
	height: 100%;
	background: var(--c-red);
	transition: width var(--t-slow) var(--ease);
}

.cart__body {
	display: grid;
	align-content: start;
	gap: var(--s-200);
}

.cart__notices {
	display: grid;
	gap: var(--s-75);
	margin: 0;
	padding: 0;
	list-style: none;
}

.cart__notices:empty {
	display: none;
}

.cart .empty-state {
	padding-block: var(--s-700);
	border: 0;
}

.lines {
	display: grid;
	gap: var(--s-100);
	margin: 0;
	padding: 0;
	list-style: none;
}

.line {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: var(--s-100) var(--s-200);
	padding: var(--s-100);
	border: 1px solid var(--c-line);
	border-radius: var(--r-2xl);
	background: var(--c-surface);
}

.line.is-unavailable {
	border-color: rgba(255, 90, 97, 0.5);
}

.line__media {
	width: 64px;
	height: 64px;
	overflow: hidden;
	border-radius: var(--r-sm);
	background: var(--c-surface-2);
}

.line__media img,
.line__media .placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.line__main {
	display: grid;
	gap: var(--s-25);
	min-width: 0;
}

.line__top {
	display: flex;
	justify-content: space-between;
	gap: var(--s-100);
}

.line__name {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 800;
}

.line__total {
	color: var(--c-gold);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 800;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.line__detail {
	color: var(--c-text-2);
	font-size: 0.75rem;
	line-height: 1rem;
	overflow-wrap: anywhere;
}

.line__warning {
	color: var(--c-red-soft);
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 700;
}

.line__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-100);
	margin-top: var(--s-75);
}

.line__remove {
	color: var(--c-text-3);
}

.line__remove:hover {
	color: var(--c-red-soft);
}

.totals {
	display: grid;
	gap: var(--s-25);
	margin: 0 0 var(--s-200);
}

.totals__row {
	display: flex;
	justify-content: space-between;
	gap: var(--s-200);
	color: var(--c-text-2);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.totals__row dd {
	margin: 0;
	color: var(--c-text);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.totals__row--grand {
	margin-top: var(--s-50);
	color: var(--c-text);
	font-size: 1rem;
	line-height: 1.75rem;
	font-weight: 800;
}

.totals__row--grand dd {
	color: var(--c-gold);
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.cart__footer {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--s-75);
}

.cart__footer .btn {
	white-space: normal;
}

.cart__hint {
	color: var(--c-text-2);
	font-size: 0.75rem;
	line-height: 1rem;
	text-align: center;
}

.review {
	display: grid;
	gap: var(--s-200);
}

.review__title {
	color: var(--c-text-3);
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.review__lines {
	display: grid;
	gap: var(--s-100);
	margin: 0;
	padding: 0;
	list-style: none;
}

.review__line {
	display: flex;
	justify-content: space-between;
	gap: var(--s-200);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.review__line > span {
	display: grid;
	min-width: 0;
}

.review__line small {
	color: var(--c-text-2);
	font-size: 0.75rem;
	line-height: 1rem;
	overflow-wrap: anywhere;
}

.review__line strong {
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.review__grid {
	display: grid;
	gap: var(--s-100);
}

@media (min-width: 420px) {
	.review__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.review__block {
	display: grid;
	align-content: start;
	gap: var(--s-50);
	padding: var(--s-200);
	border: 1px solid var(--c-line);
	border-radius: var(--r-xl);
	background: var(--c-surface);
}

.review__text {
	font-size: 0.875rem;
	line-height: 1.25rem;
	white-space: pre-line;
	overflow-wrap: anywhere;
}

.review__block .link-btn {
	justify-self: start;
	margin-top: var(--s-50);
}

.review__message summary {
	color: var(--c-text-2);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 700;
	cursor: pointer;
}

.review__message pre {
	max-height: 320px;
	margin: var(--s-100) 0 0;
	padding: var(--s-200);
	overflow: auto;
	border: 1px solid var(--c-line);
	border-radius: var(--r-xl);
	background: var(--c-bg);
	color: var(--c-text-2);
	font-family: var(--font-sans);
	font-size: 0.875rem;
	line-height: 1.25rem;
	white-space: pre-wrap;
	overflow-wrap: anywhere;
}

.skeleton {
	display: grid;
	gap: var(--s-100);
}

.skeleton span {
	display: block;
	height: 56px;
	border-radius: var(--r-xl);
	background: var(--c-surface);
	animation: skeleton 1.4s ease-in-out infinite;
}

.skeleton span:first-child {
	height: 96px;
}

.skeleton span:nth-child(2) {
	animation-delay: 0.15s;
}

.skeleton span:nth-child(3) {
	animation-delay: 0.3s;
}

.skeleton span:nth-child(4) {
	width: 60%;
	animation-delay: 0.45s;
}

@keyframes skeleton {
	50% {
		opacity: 0.45;
	}
}

.cart__sent {
	display: grid;
	justify-items: center;
	gap: var(--s-200);
	padding-block: var(--s-400);
	text-align: center;
}

.cart__sent-icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border-radius: var(--r-full);
	background: var(--c-whatsapp);
	color: var(--c-whatsapp-ink);
}

.cart__sent-icon .icon {
	width: 32px;
	height: 32px;
	stroke-width: 2.5;
}

.cart__sent-title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	line-height: 1.75rem;
	text-transform: uppercase;
}

.cart__sent-actions {
	display: grid;
	gap: var(--s-75);
	width: 100%;
}

.toast {
	position: fixed;
	z-index: 60;
	left: 50%;
	bottom: calc(96px + env(safe-area-inset-bottom, 0px));
	max-width: calc(100% - var(--s-400));
	padding: var(--s-100) var(--s-300);
	border-radius: var(--r-full);
	background: var(--c-text);
	color: var(--c-ink);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 800;
	text-align: center;
	box-shadow: var(--shadow-float);
	transform: translateX(-50%);
	animation: toast-in 0.4s var(--ease);
}

@keyframes toast-in {
	from {
		opacity: 0;
		transform: translate(-50%, 12px);
	}
}

/* --------------------------------------------------------------------------
   Páginas internas
   -------------------------------------------------------------------------- */
.page-hero {
	padding-block: var(--s-500) var(--s-400);
}

.page-hero .eyebrow {
	display: block;
	margin-bottom: var(--s-100);
}

.page-hero .page-lead {
	margin-top: var(--s-200);
}

.page-hero__facts {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--s-100) var(--s-300);
	margin: var(--s-300) 0 0;
	padding: 0;
	list-style: none;
}

.page-hero__facts li {
	display: inline-flex;
	align-items: center;
	gap: var(--s-75);
	color: var(--c-text-2);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.page-hero__facts .icon {
	width: 18px;
	height: 18px;
	color: var(--c-text);
}

@media (min-width: 1024px) {
	.page-hero {
		padding-block: var(--s-800) var(--s-500);
	}
}

.menu-toolbar {
	position: sticky;
	z-index: 30;
	top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--header-h));
	background: rgba(8, 8, 8, 0.94);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	box-shadow: 0 1px 0 var(--c-line), 0 -1px 0 var(--c-line);
}

@media (max-width: 600px) {
	.admin-bar .menu-toolbar {
		top: var(--header-h);
	}
}

.menu-toolbar__inner {
	padding-block: var(--s-100);
}

.page-hero__search {
	max-width: 480px;
	margin-top: var(--s-300);
}

.search {
	position: relative;
}

.search__icon {
	position: absolute;
	top: 50%;
	left: var(--s-200);
	width: 18px;
	height: 18px;
	color: var(--c-text-3);
	transform: translateY(-50%);
	pointer-events: none;
}

.search__input {
	width: 100%;
	min-height: 44px;
	padding: var(--s-75) var(--s-200) var(--s-75) var(--s-600);
	border: 1px solid var(--c-line-strong);
	border-radius: var(--r-full);
	background: var(--c-bg-alt);
	color: var(--c-text);
	font-size: 1rem;
	line-height: 1.5rem;
	-webkit-appearance: none;
	appearance: none;
}

.search__input::placeholder {
	color: var(--c-text-3);
}

.search__input:focus {
	outline: none;
	border-color: var(--c-gold);
	box-shadow: 0 0 0 3px rgba(245, 184, 61, 0.25);
}

@media (min-width: 900px) {
	.menu-toolbar__chips {
		margin-inline: 0;
		padding-inline: 0;
	}
}

.menu-page {
	display: grid;
	gap: var(--s-600);
	padding-block: var(--s-400) var(--s-800);
}

.menu-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--s-200);
	margin-bottom: var(--s-200);
}

.menu-section__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	line-height: 2rem;
	text-transform: uppercase;
}

.menu-section__count {
	color: var(--c-text-3);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.menu-section__desc {
	margin-bottom: var(--s-200);
	color: var(--c-text-2);
}

@media (min-width: 768px) {
	.menu-section__title {
		font-size: 1.875rem;
		line-height: 2.25rem;
	}
}

.contact {
	padding-bottom: var(--s-800);
}

.contact__grid {
	display: grid;
	align-items: start;
	gap: var(--s-200);
}

@media (min-width: 768px) {
	.contact__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-card--wide {
		grid-column: 1 / -1;
	}
}

.contact-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--s-100);
}

.contact-card__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: var(--r-xl);
	background: var(--c-red-tint);
	color: var(--c-red-soft);
}

.contact-card--whatsapp .contact-card__icon {
	background: rgba(37, 211, 102, 0.14);
	color: var(--c-whatsapp);
}

.contact-card__title {
	font-family: var(--font-display);
	font-size: 1.125rem;
	line-height: 1.75rem;
	text-transform: uppercase;
}

.contact-card__value {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 700;
}

.contact-card .week {
	width: 100%;
}

.contact-card__links {
	display: grid;
	gap: var(--s-50);
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-card__links a {
	display: inline-flex;
	align-items: center;
	gap: var(--s-75);
	min-height: 44px;
	color: var(--c-text);
	font-weight: 700;
	text-decoration: none;
}

.map {
	display: grid;
	justify-items: start;
	gap: var(--s-75);
	width: 100%;
	margin-top: var(--s-100);
}

.map iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: var(--r-xl);
}

.map__note {
	color: var(--c-text-3);
	font-size: 0.75rem;
	line-height: 1rem;
}

.contact__content,
.menu-page__content {
	margin-top: var(--s-600);
}

.product-page {
	padding-block: var(--s-400) var(--s-800);
}

.product-page__grid {
	display: grid;
	gap: var(--s-400);
}

@media (min-width: 1024px) {
	.product-page {
		padding-top: var(--s-700);
	}

	.product-page__grid {
		grid-template-columns: 1fr 1fr;
		align-items: start;
		gap: var(--s-700);
	}
}

.product-page__cover {
	aspect-ratio: 4 / 3;
	border-radius: var(--r-3xl);
}

.product-page__gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--s-75);
	margin: var(--s-100) 0 0;
	padding: 0;
	list-style: none;
}

.product-page__gallery img {
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: var(--r-xl);
}

.product-page__info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--s-200);
}

.product-page__price .price__value {
	font-size: 1.875rem;
	line-height: 2.25rem;
}

.product-page__promo {
	color: var(--c-gold);
	font-weight: 700;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-75);
	color: var(--c-text-3);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.breadcrumb a {
	color: var(--c-text-2);
}

.prose {
	padding-bottom: var(--s-800);
	color: var(--c-text-2);
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.prose > * + * {
	margin-top: var(--s-200);
}

.prose h2 {
	margin-top: var(--s-500);
	color: var(--c-text);
	font-family: var(--font-display);
	font-size: 1.5rem;
	line-height: 2rem;
	text-transform: uppercase;
}

.prose h3 {
	margin-top: var(--s-400);
	color: var(--c-text);
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 800;
}

.prose a {
	color: var(--c-red-soft);
}

.prose strong {
	color: var(--c-text);
}

.prose ul,
.prose ol {
	padding-left: var(--s-300);
}

.prose img {
	border-radius: var(--r-2xl);
}

.prose__cover {
	margin-bottom: var(--s-400);
	border-radius: var(--r-2xl);
}

.product-page .prose {
	padding-bottom: 0;
	font-size: 1rem;
	line-height: 1.5rem;
}

.post-list {
	display: grid;
	gap: var(--s-200);
	margin: 0;
	padding: 0 0 var(--s-500);
	list-style: none;
}

.post-list__item {
	padding: var(--s-300);
	border: 1px solid var(--c-line);
	border-radius: var(--r-2xl);
	background: var(--c-surface);
}

.post-list__title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 800;
}

.post-list__title a {
	text-decoration: none;
}

.post-list__meta {
	margin-top: var(--s-50);
	color: var(--c-text-3);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.post-list__excerpt {
	margin-top: var(--s-100);
	color: var(--c-text-2);
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-75);
	padding-bottom: var(--s-800);
}

.nav-links .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 var(--s-100);
	border: 1px solid var(--c-line-strong);
	border-radius: var(--r-full);
	text-decoration: none;
}

.nav-links .current {
	background: var(--c-text);
	color: var(--c-ink);
}

.not-found {
	padding-block: var(--s-700) var(--s-900);
}

.not-found__code {
	color: var(--c-red);
	font-family: var(--font-display);
	font-size: 6rem;
	line-height: 1;
}

.not-found .page-lead {
	margin-top: var(--s-200);
}

.not-found .notice {
	margin-top: var(--s-300);
}

.not-found__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-100);
	margin-top: var(--s-400);
}

/* --------------------------------------------------------------------------
   Movimento
   -------------------------------------------------------------------------- */
.js .reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
	transition-delay: calc(var(--delay, 0) * 80ms);
}

.js .reveal.is-visible,
.no-app .reveal {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		transition-delay: 0s !important;
	}

	.js .reveal {
		opacity: 1;
		transform: none;
	}

	.reveal-word {
		color: #fff;
	}

	.reveal-word.is-accent {
		color: var(--c-red-soft);
	}

	.hero-art__steam {
		display: none;
	}
}

@media (forced-colors: active) {
	.hero__title {
		background: none;
		color: CanvasText;
	}

	/* No alto contraste fundo e cor somem: o item escolhido ganha contorno. */
	.chip[aria-selected="true"],
	.chip.is-active,
	.addon.is-selected,
	.choice input:checked + .choice__box,
	.segmented__option input:checked + span {
		outline: 3px solid Highlight;
		outline-offset: -3px;
	}

	.stepper__btn[aria-disabled="true"] {
		color: GrayText;
	}
}

@media print {
	.site-header,
	.floating,
	.site-footer,
	.sheet,
	.nav-dialog {
		display: none !important;
	}
}
