/*
Theme Name: Vitalle Theme
Theme URI: https://vitalle-pizzaria.local
Author: Daniel RS
Description: Tema personalizado para a Vitalle Pizzaria.
Version: 1.0.0
Text Domain: vitalle-theme
*/

:root {
	--bg: #120c09;
	--surface: rgba(255, 248, 237, 0.07);
	--text: #f8efe5;
	--muted: rgba(248, 239, 229, 0.72);
	--line: rgba(255, 220, 185, 0.14);
	--accent: #dd8d45;
	--accent-strong: #f2b165;
	--accent-soft: rgba(221, 141, 69, 0.18);
	--shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
	--radius-lg: 32px;
	--radius-md: 20px;
	--container: min(1160px, calc(100vw - 32px));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Manrope', sans-serif;
	background:
		radial-gradient(circle at top left, rgba(221, 141, 69, 0.14), transparent 34%),
		radial-gradient(circle at top right, rgba(145, 74, 34, 0.18), transparent 30%),
		linear-gradient(180deg, #120c09 0%, #0d0806 38%, #17100c 100%);
	color: var(--text);
	min-height: 100vh;
}

img {
	display: block;
	max-width: 100%;
}

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

button,
input {
	font: inherit;
}

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

.container {
	width: var(--container);
	margin: 0 auto;
}

.site-main {
	overflow: clip;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button--solid {
	background: linear-gradient(135deg, var(--accent-strong), var(--accent));
	color: #1d120d;
	box-shadow: 0 18px 36px rgba(221, 141, 69, 0.25);
}

.button--ghost {
	background: transparent;
	border-color: var(--line);
	color: var(--text);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	padding: 18px 0;
	background: rgba(18, 12, 9, 0.72);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: padding 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.site-header.is-scrolled {
	padding: 12px 0;
	background: rgba(15, 10, 8, 0.92);
	border-color: var(--line);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
}

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

.site-brand .custom-logo-link {
	display: flex;
	align-items: center;
}

.site-brand .custom-logo {
	height: 52px;
	width: auto;
	display: block;
}

.site-brand__mark {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(242, 177, 101, 0.45);
	border-radius: 50%;
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	font-weight: 700;
	background:
		radial-gradient(circle at 30% 30%, rgba(242, 177, 101, 0.38), transparent 60%),
		linear-gradient(135deg, rgba(242, 177, 101, 0.12), rgba(18, 12, 9, 0.15));
	color: var(--accent-strong);
}

.site-brand__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.site-brand__text strong {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.35rem;
	line-height: 0.9;
	font-weight: 700;
}

.site-brand__text small {
	color: var(--muted);
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.site-nav {
	justify-self: center;
}

.vitalle-nav__list {
	display: flex;
	align-items: center;
	gap: 26px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.vitalle-nav__list a {
	position: relative;
	color: var(--muted);
	font-size: 0.95rem;
	font-weight: 600;
}

.vitalle-nav__list a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 1px;
	background: var(--accent-strong);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.vitalle-nav__list a:hover,
.vitalle-nav__list a:focus-visible {
	color: var(--text);
}

.vitalle-nav__list a:hover::after,
.vitalle-nav__list a:focus-visible::after {
	transform: scaleX(1);
}

.site-header__toggle {
	display: none;
	background: transparent;
	border: 0;
	padding: 0;
}

.site-header__toggle span {
	display: block;
	width: 26px;
	height: 2px;
	margin: 5px 0;
	background: var(--text);
	border-radius: 999px;
}

.hero {
	padding: 58px 0 34px;
}

.hero__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
	gap: 44px;
	align-items: center;
}

.hero__content,
.story,
.feature-card,
.menu-shell,
.delivery-card,
.instagram-panel,
.newsletter,
.footer-card,
.highlights__card,
.hero__visual {
	background: linear-gradient(180deg, rgba(255, 248, 237, 0.08), rgba(255, 248, 237, 0.02));
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.hero__content {
	padding: 42px;
	border-radius: var(--radius-lg);
	position: relative;
	isolation: isolate;
}

.hero__content::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top left, rgba(242, 177, 101, 0.24), transparent 40%);
	opacity: 0.9;
	pointer-events: none;
	z-index: -1;
}

.section-heading__eyebrow,
.hero__eyebrow,
.footer-card__label,
.pizza-menu-widget__detail-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--accent-strong);
	font-size: 0.77rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.section-heading__eyebrow::before,
.hero__eyebrow::before,
.footer-card__label::before,
.pizza-menu-widget__detail-kicker::before {
	content: '';
	width: 28px;
	height: 1px;
	background: currentColor;
}

.hero__title,
.section-heading h2,
.site-footer__intro h2,
.newsletter h2 {
	margin: 18px 0 16px;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(3rem, 6vw, 5.7rem);
	line-height: 0.92;
	letter-spacing: -0.03em;
}

.hero__title span,
.section-heading h2 span {
	color: var(--accent-strong);
}

.hero__content > p,
.section-heading > p,
.story__body p,
.delivery-card p,
.instagram-panel p,
.newsletter p,
.site-footer__intro p,
.footer-card p,
.pizza-menu-widget__intro,
.pizza-menu-widget__detail-body p {
	color: var(--muted);
	line-height: 1.7;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.hero__stat {
	padding: 18px;
	border-radius: var(--radius-md);
	background: rgba(18, 12, 9, 0.55);
	border: 1px solid rgba(255, 239, 219, 0.08);
}

.hero__stat strong {
	display: block;
	margin-bottom: 6px;
	font-size: 1.2rem;
	color: var(--accent-strong);
}

.hero__stat span {
	display: block;
	color: var(--muted);
	font-size: 0.9rem;
}

.hero__visual {
	position: relative;
	padding: 34px;
	border-radius: calc(var(--radius-lg) + 10px);
	min-height: 620px;
	overflow: hidden;
}

.hero__glow {
	position: absolute;
	inset: auto auto 30px -40px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(242, 177, 101, 0.25) 0%, transparent 70%);
	filter: blur(8px);
}

.hero__plate {
	position: absolute;
	inset: 78px 52px auto 52px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
	border: 1px solid rgba(255, 248, 237, 0.14);
}

.hero__image {
	position: absolute;
	object-fit: cover;
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

.hero__image--primary {
	inset: 46px 72px auto auto;
	width: min(74%, 420px);
	aspect-ratio: 1;
	border-radius: 50%;
	border: 6px solid rgba(255, 248, 237, 0.08);
}

.hero__image--secondary {
	left: 36px;
	bottom: 56px;
	width: min(42%, 220px);
	aspect-ratio: 1;
	border-radius: 28px;
	border: 1px solid rgba(255, 248, 237, 0.16);
}

.hero__ticket {
	position: absolute;
	right: 32px;
	bottom: 46px;
	max-width: 260px;
	padding: 22px;
	border-radius: 24px;
	background: rgba(16, 11, 8, 0.88);
	border: 1px solid rgba(242, 177, 101, 0.28);
}

.hero__ticket strong {
	display: block;
	margin-bottom: 8px;
	font-size: 1.35rem;
}

.hero__ticket p {
	margin: 0 0 14px;
	color: var(--muted);
	font-size: 0.92rem;
}

.hero__ticket ul {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
	color: var(--text);
	font-size: 0.92rem;
}

.hero__ticket li {
	padding-left: 18px;
	position: relative;
}

.hero__ticket li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
}

.section {
	padding: 54px 0;
}

.section-heading {
	max-width: 670px;
	margin-bottom: 28px;
}

.highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.highlights__card {
	padding: 20px;
	border-radius: 28px;
}

.highlights__card-image {
	aspect-ratio: 1.08;
	border-radius: 22px;
	object-fit: cover;
	margin-bottom: 18px;
}

.highlights__card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.highlights__card-meta strong {
	font-size: 1.25rem;
}

.highlights__price {
	color: var(--accent-strong);
	font-weight: 700;
}

.highlights__card p {
	margin: 0 0 18px;
	color: var(--muted);
	line-height: 1.7;
}

.highlights__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.highlights__tags span,
.pizza-menu-widget__ingredients span {
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--accent-soft);
	border: 1px solid rgba(242, 177, 101, 0.22);
	color: #ffd9a9;
	font-size: 0.78rem;
	font-weight: 700;
}

.story {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 30px;
	padding: 30px;
	border-radius: var(--radius-lg);
	align-items: center;
}

.story__image {
	border-radius: 26px;
	aspect-ratio: 0.96;
	object-fit: cover;
}

.story__body h2 {
	margin: 14px 0 18px;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.6rem, 4vw, 4.2rem);
	line-height: 0.94;
}

.story__checklist {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 26px;
}

.feature-card {
	padding: 20px;
	border-radius: 20px;
}

.feature-card strong {
	display: block;
	margin-bottom: 8px;
	font-size: 1.02rem;
}

.feature-card span {
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.6;
}

.menu-shell {
	padding: 34px;
	border-radius: var(--radius-lg);
}

.menu-shell__copy {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(0, 0.3fr);
	gap: 20px;
	align-items: end;
	margin-bottom: 28px;
}

.menu-shell__copy .button {
	justify-self: end;
}

.pizza-menu-widget {
	padding: 34px;
	border-radius: 30px;
	background:
		radial-gradient(circle at top left, rgba(242, 177, 101, 0.14), transparent 34%),
		linear-gradient(180deg, rgba(34, 19, 13, 0.96), rgba(18, 11, 8, 0.98));
	border: 1px solid rgba(242, 177, 101, 0.18);
	position: relative;
	overflow: hidden;
}

.pizza-menu-widget::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(242, 177, 101, 0.1) 1px, transparent 1px);
	background-size: 24px 24px;
	opacity: 0.18;
	pointer-events: none;
}

.pizza-menu-widget > * {
	position: relative;
	z-index: 1;
}

.pizza-menu-widget__header {
	text-align: center;
	margin-bottom: 26px;
}

.pizza-menu-widget__header h2 {
	margin: 16px 0 10px;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.6rem, 5vw, 4.6rem);
	line-height: 0.92;
}

.pizza-menu-widget__header h2 span {
	display: block;
	color: var(--accent-strong);
	font-size: 0.5em;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.pizza-menu-widget__divider {
	width: 86px;
	height: 2px;
	margin: 0 auto 18px;
	background: linear-gradient(90deg, transparent, var(--accent-strong), transparent);
}

/* =====================================================
   CARROSSEL DE PIZZAS
   ===================================================== */

.pmw-carousel {
	display: grid;
	grid-template-columns: 56px 1fr 56px;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.pmw-carousel__track-wrapper {
	overflow: hidden;
	border-radius: 26px;
	position: relative;
}

.pmw-carousel__track {
	position: relative;
	min-height: 420px;
}

/* ── Slide ── */
.pmw-slide {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: 0;
	background: linear-gradient(135deg, rgba(34, 19, 12, 0.98), rgba(18, 11, 8, 0.99));
	border: 1px solid rgba(242, 177, 101, 0.16);
	border-radius: 26px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateX(60px);
}

.pmw-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
	position: relative;
	inset: auto;
}

.pmw-slide.is-leaving-next {
	opacity: 0;
	transform: translateX(-60px);
}

.pmw-slide.is-leaving-prev {
	opacity: 0;
	transform: translateX(60px);
}

.pmw-slide.is-entering-next {
	opacity: 0;
	transform: translateX(60px);
}

.pmw-slide.is-entering-prev {
	opacity: 0;
	transform: translateX(-60px);
}

/* ── Imagem do slide ── */
.pmw-slide__img-wrap {
	position: relative;
	overflow: hidden;
	min-height: 380px;
}

.pmw-slide__img-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent 55%, rgba(18, 11, 8, 0.9));
	pointer-events: none;
}

.pmw-slide__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ── Corpo do slide ── */
.pmw-slide__body {
	padding: 36px 36px 36px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
}

.pmw-slide__kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--accent-strong);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin: 0;
}

.pmw-slide__kicker::before {
	content: '';
	width: 24px;
	height: 1px;
	background: currentColor;
}

.pmw-slide__name {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2rem, 3.5vw, 3rem);
	line-height: 0.95;
	color: var(--text);
	margin: 0;
}

.pmw-slide__desc {
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.65;
	margin: 0;
}

.pmw-slide__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.pmw-slide__tags span {
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--accent-soft);
	border: 1px solid rgba(242, 177, 101, 0.22);
	color: #ffd9a9;
	font-size: 0.75rem;
	font-weight: 700;
}

.pmw-slide__price {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--accent-strong);
	margin: 0;
	line-height: 1;
}

.pmw-slide__price small {
	font-family: 'Manrope', sans-serif;
	font-size: 0.8rem;
	color: var(--muted);
	font-weight: 500;
}

/* ── Setas ── */
.pmw-carousel__arrow {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 1px solid rgba(242, 177, 101, 0.25);
	background: rgba(255, 248, 237, 0.05);
	color: var(--text);
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
	flex-shrink: 0;
}

.pmw-carousel__arrow:hover {
	background: rgba(242, 177, 101, 0.14);
	border-color: var(--accent-strong);
	transform: scale(1.08);
}

/* ── Bolinhas ── */
.pmw-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 8px;
}

.pmw-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 248, 237, 0.18);
	cursor: pointer;
	transition: background-color 0.25s ease, transform 0.25s ease;
	padding: 0;
}

.pmw-dot.is-active {
	background: var(--accent-strong);
	transform: scale(1.35);
}

/* ── Responsivo — tablet ── */
@media (max-width: 860px) {
	.pmw-carousel {
		grid-template-columns: 44px 1fr 44px;
		gap: 8px;
	}

	.pmw-slide {
		grid-template-columns: 1fr;
	}

	.pmw-slide__img-wrap {
		min-height: 220px;
		max-height: 260px;
	}

	.pmw-slide__img-wrap::after {
		background: linear-gradient(to top, rgba(18, 11, 8, 0.85), transparent 55%);
	}

	.pmw-slide__body {
		padding: 24px 20px 28px;
		gap: 10px;
	}

	.pmw-carousel__arrow {
		width: 44px;
		height: 44px;
	}
}

/* ── Mobile: carrossel full-width (≤ 600px) ── */
@media (max-width: 600px) {

	/* carrossel vira bloco — setas saem da grid */
	.pmw-carousel {
		display: block;
		position: relative;
	}

	/* track ocupa 100% da largura */
	.pmw-carousel__track-wrapper {
		width: 100%;
		border-radius: 22px;
		overflow: hidden;
	}

	/* setas ocultas no mobile — navegação por swipe */
	.pmw-carousel__arrow {
		display: none;
	}

	/* dots abaixo */
	.pmw-carousel__dots {
		margin-top: 16px;
	}

	/* slide: imagem em cima, corpo embaixo */
	.pmw-slide {
		grid-template-columns: 1fr;
		border-radius: 22px;
	}

	/* imagem grande — destaque total */
	.pmw-slide__img-wrap {
		min-height: 340px;
		max-height: 380px;
		border-radius: 0;
	}

	.pmw-slide__img-wrap::after {
		background: linear-gradient(to top, rgba(18, 11, 8, 0.9) 0%, transparent 50%);
	}

	/* remove textos secundários no mobile */
	.pmw-slide__kicker,
	.pmw-slide__desc {
		display: none;
	}

	/* corpo limpo e arejado */
	.pmw-slide__body {
		padding: 22px 20px 26px;
		gap: 14px;
	}

	.pmw-slide__name {
		font-size: clamp(2rem, 9vw, 2.8rem);
		line-height: 1;
		margin: 0;
	}

	.pmw-slide__price {
		font-size: 1.8rem;
		line-height: 1;
		margin: 0;
	}

	.pmw-slide__tags {
		gap: 7px;
	}

	.pmw-slide__tags span {
		font-size: 0.75rem;
		padding: 6px 13px;
	}

	/* botões largura total no mobile */
	.btn-add,
	.btn-meio-a-meio {
		width: 100%;
		justify-content: center;
		padding: 15px 20px;
		font-size: 0.95rem;
		border-radius: 14px;
		margin-top: 2px;
	}

	/* container sem padding lateral excessivo */
	.pizza-menu-widget {
		padding: 22px 8px;
	}

	.menu-shell {
		padding: 20px 8px;
	}
}

.delivery-grid,
.instagram-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.delivery-card,
.instagram-panel {
	padding: 24px;
	border-radius: 28px;
}

.delivery-card strong,
.instagram-panel strong {
	display: block;
	margin-bottom: 12px;
	font-size: 1.16rem;
}

.delivery-card__number {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: rgba(242, 177, 101, 0.12);
	border: 1px solid rgba(242, 177, 101, 0.24);
	color: var(--accent-strong);
	font-weight: 800;
}

.delivery-panel {
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	gap: 22px;
}

.instagram-panel--feed {
	padding: 30px;
}

.instagram-grid__tiles {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 24px;
}

.instagram-grid__tiles img {
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 20px;
}

.newsletter {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 26px;
	align-items: center;
	padding: 34px;
	border-radius: var(--radius-lg);
}

.newsletter__form {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.newsletter__field {
	min-width: min(100%, 320px);
	flex: 1;
	padding: 16px 18px;
	border-radius: 999px;
	border: 1px solid rgba(255, 248, 237, 0.12);
	background: rgba(13, 8, 6, 0.6);
	color: var(--text);
}

.newsletter__message {
	width: 100%;
	color: var(--accent-strong);
	font-size: 0.9rem;
}

.site-footer {
	padding: 32px 0 34px;
	border-top: 1px solid var(--line);
	background: rgba(10, 7, 6, 0.72);
}

.site-footer__top {
	display: grid;
	gap: 28px;
}

.site-footer__intro h2 {
	max-width: 850px;
	font-size: clamp(2.5rem, 4vw, 4.3rem);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.footer-card {
	padding: 24px;
	border-radius: 26px;
}

.footer-card h3 {
	margin: 14px 0 10px;
	font-size: 1.2rem;
}

.footer-list {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
	color: var(--muted);
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.social-links a {
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid var(--line);
	color: var(--text);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 26px;
	margin-top: 26px;
	border-top: 1px solid rgba(255, 248, 237, 0.08);
	color: var(--muted);
}

.reveal {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1080px) {
	.hero__layout,
	.story,
	.delivery-panel,
	.newsletter {
		grid-template-columns: 1fr;
	}

	.highlights,
	.delivery-grid,
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero__visual {
		min-height: 560px;
	}

	.menu-shell__copy {
		grid-template-columns: 1fr;
	}

	.menu-shell__copy .button {
		justify-self: start;
	}
}

@media (max-width: 860px) {
	/* header: brand à esquerda, hamburguer à direita */
	.site-header__inner {
		grid-template-columns: 1fr auto;
		align-items: center;
		position: relative;
	}

	.site-header__toggle {
		display: block;
		justify-self: end;
	}

	.site-header__cta {
		display: none;
	}

	.site-nav {
		grid-column: 1 / -1;
		justify-self: stretch;
		width: 100%;
		padding: 8px 0 4px;
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.3s ease;
	}

	.site-nav.is-open {
		max-height: 320px;
	}

	.vitalle-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 4px 0;
	}

	.vitalle-nav__list li {
		border-bottom: 1px solid var(--line);
	}

	.vitalle-nav__list li:last-child {
		border-bottom: none;
	}

	.vitalle-nav__list a {
		display: block;
		padding: 14px 4px;
		font-size: 1rem;
		color: var(--text);
	}

	.vitalle-nav__list a::after {
		display: none;
	}

	.hero__content,
	.hero__visual,
	.menu-shell,
	.newsletter {
		padding: 26px;
	}

	.hero__stats,
	.story__checklist,
	.instagram-grid,
	.highlights,
	.delivery-grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.hero__image--primary {
		inset: 52px 20px auto auto;
		width: min(76%, 360px);
	}

	.hero__image--secondary {
		left: 18px;
		bottom: 28px;
		width: min(44%, 180px);
	}

	.hero__ticket {
		right: 18px;
		bottom: 18px;
		max-width: 220px;
	}

	.pizza-menu-widget {
		padding: 26px 20px;
	}

	.pizza-menu-widget__detail {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.pizza-menu-widget__detail-image {
		margin: 0 auto;
	}

	.pizza-menu-widget__ingredients {
		justify-content: center;
	}

	.site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 600px) {
	.hero {
		padding-top: 26px;
	}

	.hero__title,
	.section-heading h2,
	.site-footer__intro h2,
	.newsletter h2 {
		font-size: clamp(2.5rem, 11vw, 3.6rem);
	}

	.hero__visual {
		min-height: 480px;
	}

	.hero__image--primary {
		inset: 38px auto auto 50%;
		width: min(82%, 300px);
		transform: translateX(-50%);
	}

	.hero__image--secondary {
		left: 16px;
		bottom: 18px;
		width: 120px;
	}

	.hero__ticket {
		left: 16px;
		right: 16px;
		max-width: none;
	}

	.pizza-menu-widget__fan {
		min-height: 260px;
	}

	.pizza-menu-widget__fan-inner {
		height: 240px;
	}

	.pizza-menu-widget__card {
		width: 164px;
		height: 164px;
		margin-left: -82px;
	}

	.pizza-menu-widget__card-label {
		font-size: 0.62rem;
	}

	.newsletter__form {
		width: 100%;
	}

	.newsletter__field {
		min-width: 100%;
	}
}

/* =====================================================
   BOTÕES DE AÇÃO DO SLIDE (Adicionar + Meio a Meio)
===================================================== */
.pmw-slide__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 4px;
}

.btn-add,
.btn-meio-a-meio {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 999px;
	border: none;
	font-family: 'Manrope', sans-serif;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	flex: 1;
	justify-content: center;
	white-space: nowrap;
}

.btn-add {
	background: linear-gradient(135deg, var(--accent-strong), var(--accent));
	color: #1d120d;
	box-shadow: 0 12px 30px rgba(221, 141, 69, 0.3);
}

.btn-add:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(221, 141, 69, 0.42);
}

.btn-add:active {
	transform: translateY(0);
	box-shadow: 0 6px 16px rgba(221, 141, 69, 0.25);
}

.btn-meio-a-meio {
	background: transparent;
	color: var(--accent);
	border: 2px solid rgba(242, 177, 101, 0.45);
	box-shadow: none;
}

.btn-meio-a-meio:hover {
	background: rgba(242, 177, 101, 0.1);
	border-color: var(--accent);
	transform: translateY(-2px);
}

.btn-meio-a-meio:active {
	transform: translateY(0);
}

/* =====================================================
   PICKER MEIO A MEIO
===================================================== */
.mam-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10, 6, 4, 0.82);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	z-index: 2000;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.28s ease;
}

.mam-overlay.is-open {
	opacity: 1;
	pointer-events: all;
}

.mam-picker {
	background: var(--surface);
	border-top: 1px solid var(--line);
	border-radius: 24px 24px 0 0;
	width: 100%;
	max-width: 680px;
	max-height: 85dvh;
	display: flex;
	flex-direction: column;
	padding: 24px 20px 32px;
	transform: translateY(60px);
	transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
	overflow: hidden;
}

.mam-overlay.is-open .mam-picker {
	transform: translateY(0);
}

.mam-fechar {
	position: absolute;
	top: 16px;
	right: 18px;
	background: rgba(255,255,255,0.08);
	border: none;
	color: var(--text-muted);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-size: 0.85rem;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background 0.2s;
}

.mam-fechar:hover { background: rgba(255,255,255,0.15); }

.mam-cabecalho {
	text-align: center;
	margin-bottom: 20px;
	padding-top: 4px;
}

.mam-emoji {
	font-size: 1.8rem;
	display: block;
	margin-bottom: 6px;
}

.mam-cabecalho h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.4rem;
	color: var(--heading);
	margin: 0 0 6px;
}

.mam-cabecalho p {
	font-size: 0.88rem;
	color: var(--text-muted);
	margin: 0;
}

.mam-cabecalho strong {
	color: var(--accent);
}

.mam-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 12px;
	overflow-y: auto;
	padding-right: 4px;
}

.mam-card {
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
	transition: border-color 0.2s, transform 0.2s;
}

.mam-card:hover {
	border-color: var(--accent);
	transform: translateY(-2px);
}

.mam-card img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
}

.mam-card strong {
	font-size: 0.82rem;
	color: var(--heading);
	font-weight: 700;
	line-height: 1.3;
}

.mam-card__price {
	font-size: 0.78rem;
	color: var(--text-muted);
}

.mam-escolher {
	width: 100%;
	padding: 7px 10px;
	border-radius: 999px;
	border: 2px solid var(--accent);
	background: transparent;
	color: var(--accent);
	font-family: 'Manrope', sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.mam-escolher:hover {
	background: var(--accent);
	color: #1d120d;
}

/* =====================================================
   CARRINHO — CONTAINER
===================================================== */
.carrinho {
	margin-top: 28px;
	padding: 28px 30px;
	border-radius: var(--radius-md);
	background: linear-gradient(180deg, rgba(255, 248, 237, 0.06), rgba(255, 248, 237, 0.02));
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.carrinho h3 {
	margin: 0 0 18px;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--accent-strong);
}

/* lista de itens */
#lista-carrinho {
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 20px;
}

#lista-carrinho:empty::before {
	content: 'Nenhum item adicionado ainda.';
	display: block;
	color: var(--muted);
	font-size: 0.9rem;
	font-style: italic;
	padding: 6px 0;
}

#lista-carrinho li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 16px;
	border-radius: 12px;
	background: rgba(255, 248, 237, 0.04);
	border: 1px solid rgba(255, 220, 185, 0.1);
	font-size: 0.92rem;
	color: var(--text);
	animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* botão remover */
.remover-item {
	flex-shrink: 0;
	background: rgba(255, 80, 80, 0.1);
	border: 1px solid rgba(255, 80, 80, 0.25);
	color: rgba(255, 120, 120, 0.85);
	cursor: pointer;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	transition: background 0.2s, color 0.2s;
	line-height: 1.4;
}

.remover-item:hover {
	background: rgba(255, 80, 80, 0.22);
	color: #ff6b6b;
}

/* total */
#total {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.55rem;
	font-weight: 700;
	color: var(--text);
	text-align: right;
	padding: 14px 0 18px;
	border-top: 1px solid var(--line);
	margin: 0 0 18px;
}

/* botão finalizar */
#finalizar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 15px 24px;
	border-radius: 999px;
	border: none;
	background: linear-gradient(135deg, #25d366, #128c4a);
	color: #fff;
	font-family: 'Manrope', sans-serif;
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	cursor: pointer;
	box-shadow: 0 12px 32px rgba(37, 211, 102, 0.28);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#finalizar:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 44px rgba(37, 211, 102, 0.38);
}

#finalizar:active {
	transform: translateY(0);
}

/* responsivo mobile */
@media (max-width: 600px) {
	.carrinho {
		padding: 22px 18px;
	}

	.carrinho h3 {
		font-size: 1.35rem;
	}

	#total {
		font-size: 1.3rem;
	}
}

/* =====================================================
   MODAL DE FINALIZAÇÃO DO PEDIDO (vpm = vitalle pedido modal)
===================================================== */

.vpm-overlay {
	position: fixed;
	inset: 0;
	z-index: 9000;
	background: rgba(10, 6, 4, 0.82);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.vpm-overlay.is-open {
	opacity: 1;
	pointer-events: all;
}

.vpm-modal {
	position: relative;
	width: 100%;
	max-width: 520px;
	max-height: 90dvh;
	overflow-y: auto;
	background: #1e130e;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px 24px 36px;
	transform: scale(0.94) translateY(12px);
	transition: transform 0.35s cubic-bezier(0.34, 1.04, 0.64, 1);
}

.vpm-overlay.is-open .vpm-modal {
	transform: scale(1) translateY(0);
}

/* scrollbar discreta */
.vpm-modal::-webkit-scrollbar { width: 4px; }
.vpm-modal::-webkit-scrollbar-track { background: transparent; }
.vpm-modal::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }

/* botão fechar */
.vpm-fechar {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: var(--surface);
	color: var(--muted);
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s;
}
.vpm-fechar:hover { background: var(--accent-soft); color: var(--accent-strong); }

/* cabeçalho */
.vpm-cabecalho {
	text-align: center;
	margin-bottom: 20px;
}
.vpm-emoji {
	font-size: 2.2rem;
	display: block;
	margin-bottom: 6px;
}
.vpm-cabecalho h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--accent-strong);
	margin: 0 0 4px;
}
.vpm-cabecalho p {
	color: var(--muted);
	font-size: 0.88rem;
	margin: 0;
}

/* resumo do carrinho */
.vpm-resumo {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 14px 18px;
	margin-bottom: 22px;
	font-size: 0.9rem;
	color: var(--muted);
	line-height: 1.7;
}
.vpm-resumo strong {
	display: block;
	color: var(--text);
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.vpm-resumo-item {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	padding: 4px 0;
	border-bottom: 1px solid var(--line);
}
.vpm-resumo-item:last-child { border-bottom: none; }
.vpm-resumo-total {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid var(--line);
	font-weight: 700;
	color: var(--accent-strong);
}

/* campos do formulário */
.vpm-campo {
	margin-bottom: 18px;
}
.vpm-campo label {
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 8px;
}
.vpm-campo input,
.vpm-campo textarea {
	width: 100%;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 13px 16px;
	color: var(--text);
	font-family: 'Manrope', sans-serif;
	font-size: 0.95rem;
	outline: none;
	transition: border-color 0.2s;
	resize: none;
}
.vpm-campo input::placeholder,
.vpm-campo textarea::placeholder { color: rgba(248,239,229,0.32); }
.vpm-campo input:focus,
.vpm-campo textarea:focus { border-color: var(--accent); }

/* campo oculto */
.vpm-campo--oculto { display: none; }

/* botões de opção (delivery/pagamento) */
.vpm-opcoes {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.vpm-opcao {
	flex: 1;
	min-width: 0;
	padding: 10px 14px;
	border-radius: 99px;
	border: 1px solid var(--line);
	background: var(--surface);
	color: var(--muted);
	font-family: 'Manrope', sans-serif;
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
}
.vpm-opcao:hover { border-color: var(--accent); color: var(--accent); }
.vpm-opcao--ativo {
	background: var(--accent-soft);
	border-color: var(--accent);
	color: var(--accent-strong);
}

/* wrap de endereço com botão GPS */
.vpm-endereco-wrap {
	display: flex;
	gap: 8px;
}
.vpm-endereco-wrap input { flex: 1; }
.vpm-gps {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: var(--surface);
	font-size: 1.25rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, border-color 0.2s;
}
.vpm-gps:hover { background: var(--accent-soft); border-color: var(--accent); }
.vpm-gps-status {
	display: block;
	margin-top: 6px;
	font-size: 0.8rem;
	color: var(--muted);
	min-height: 18px;
}

/* botão enviar */
.vpm-enviar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-top: 8px;
	padding: 15px 24px;
	border-radius: 999px;
	border: none;
	background: linear-gradient(135deg, #25d366, #128c4a);
	color: #fff;
	font-family: 'Manrope', sans-serif;
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	cursor: pointer;
	box-shadow: 0 12px 32px rgba(37, 211, 102, 0.28);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vpm-enviar:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 44px rgba(37, 211, 102, 0.38);
}
.vpm-enviar:active { transform: translateY(0); }

/* erro de validação */
.vpm-campo--erro input,
.vpm-campo--erro textarea {
	border-color: #e05555;
}
.vpm-campo__erro-msg {
	display: none;
	font-size: 0.78rem;
	color: #e05555;
	margin-top: 5px;
}
.vpm-campo--erro .vpm-campo__erro-msg { display: block; }

/* ── mobile: padding lateral menor ── */
@media (max-width: 480px) {
	.vpm-overlay {
		padding: 12px;
	}
	.vpm-modal {
		padding: 28px 18px 32px;
	}
}