:root {
	--bg: #1E3A2F;
	--surface: #264A3C;
	--surface-2: #1A3329;
	--accent: #3A6B53;
	--gold: #D4B896;
	--gold-dim: #A8916A;
	--text: #F0EBE3;
	--muted: #9BAE9F;
	--line: rgba(212, 184, 150, 0.18);
	--line-strong: rgba(212, 184, 150, 0.4);
}

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

html {
	scroll-behavior: smooth
}

body {
	font-family: 'Inter', system-ui, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* topo */
.top-bar {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(30, 58, 47, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
	padding: 14px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.brand {
	display: flex;
	flex-direction: column;
	line-height: 1.15
}

.brand-name {
	font-family: 'Fraunces', serif;
	font-weight: 600;
	font-size: 17px;
	letter-spacing: -0.01em;
	color: var(--text);
}

.brand-sub {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--muted);
	font-weight: 500;
	margin-top: 3px;
}

.top-cta {
	background: var(--gold);
	color: var(--bg);
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
	padding: 9px 18px;
	border-radius: 100px;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: background .2s ease, transform .15s ease;
}

.top-cta:hover {
	background: #E5C9A4;
	transform: translateY(-1px)
}

/* hero */
.hero {
	max-width: 1100px;
	margin: 0 auto;
	padding: 70px 24px 50px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 60px;
	align-items: center;
	min-height: 72vh;
}

.hero-text .kicker {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--gold);
	font-weight: 500;
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.hero-text .kicker::before {
	content: '';
	width: 32px;
	height: 1px;
	background: var(--gold-dim)
}

.hero h1 {
	font-family: 'Fraunces', serif;
	font-weight: 400;
	font-size: clamp(40px, 6.2vw, 68px);
	line-height: 1.02;
	letter-spacing: -0.035em;
	margin-bottom: 26px;
	font-variation-settings: 'SOFT' 60, 'WONK' 0;
}

.hero h1 .italic {
	font-style: italic;
	color: var(--gold);
	font-weight: 300
}

.hero-text .lead {
	font-size: 17px;
	color: var(--muted);
	max-width: 500px;
	margin-bottom: 36px;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center
}

.btn-primary {
	background: var(--gold);
	color: var(--bg);
	text-decoration: none;
	padding: 15px 28px;
	border-radius: 100px;
	font-weight: 600;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: background .2s ease, transform .15s ease;
}

.btn-primary:hover {
	background: #E5C9A4;
	transform: translateY(-1px)
}

.btn-ghost {
	color: var(--text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border-bottom: 1px solid var(--line-strong);
	padding-bottom: 3px;
	transition: border-color .2s ease;
}

.btn-ghost:hover {
	border-color: var(--gold)
}

/* selo */
.seal {
	width: 220px;
	height: 220px;
	position: relative
}

.seal-ring {
	position: absolute;
	inset: 0;
	animation: spin 32s linear infinite;
}

.seal-center {
	position: absolute;
	inset: 38px;
	border-radius: 50%;
	background: var(--gold);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 8px;
}

.seal-center .biz {
	font-family: 'Fraunces', serif;
	font-size: 17px;
	font-weight: 600;
	color: var(--bg);
	line-height: 1;
	margin-bottom: 4px;
}

.seal-center .estd {
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--surface);
	font-weight: 600;
}

@keyframes spin {
	from {
		transform: rotate(0)
	}

	to {
		transform: rotate(360deg)
	}
}

@media(prefers-reduced-motion:reduce) {
	.seal-ring {
		animation: none
	}
}

/* divider com palavras */
.divider-words {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px 60px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.divider-words .line {
	flex: 1;
	height: 1px;
	background: var(--line)
}

.divider-words .text {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: var(--gold-dim);
	font-weight: 500;
}

/* catálogo */
.catalog {
	max-width: 1100px;
	margin: 0 auto;
	padding: 10px 24px 80px
}

.catalog-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 48px;
	flex-wrap: wrap;
	gap: 20px;
}

.catalog-head h2 {
	font-family: 'Fraunces', serif;
	font-weight: 400;
	font-size: clamp(28px, 3.8vw, 40px);
	letter-spacing: -0.03em;
	line-height: 1.1;
	max-width: 540px;
}

.catalog-head .note {
	font-size: 12px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.15em;
}

.products {
	border-top: 1px solid var(--line);
}

.product {
	display: grid;
	grid-template-columns: 64px 1fr auto;
	gap: 32px;
	align-items: center;
	padding: 34px 0;
	border-bottom: 1px solid var(--line);
	transition: padding-left .25s ease;
}

.product:hover {
	padding-left: 8px
}

.product:hover .product-num {
	color: var(--gold)
}

.product-num {
	font-family: 'Fraunces', serif;
	font-size: 32px;
	font-weight: 300;
	color: var(--gold-dim);
	transition: color .25s ease;
}

.product-info .badge {
	display: inline-block;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	padding: 4px 10px;
	border-radius: 100px;
	margin-bottom: 12px;
	font-weight: 500;
}

.product[data-cat="tradicional"] .badge {
	background: rgba(155, 174, 159, 0.12);
	color: var(--muted);
	border: 1px solid var(--line);
}

.product[data-cat="gourmet"] .badge {
	background: rgba(212, 184, 150, 0.14);
	color: var(--gold);
	border: 1px solid rgba(212, 184, 150, 0.25);
}

.product[data-cat="especial"] .badge {
	background: var(--gold);
	color: var(--bg);
	border: 1px solid var(--gold);
}

.product-info h3 {
	font-family: 'Fraunces', serif;
	font-size: clamp(22px, 2.4vw, 28px);
	font-weight: 500;
	letter-spacing: -0.015em;
	margin-bottom: 6px;
}

.product-info p {
	font-size: 14px;
	color: var(--muted)
}

.price-table {
	margin-top: 18px;
	max-width: 420px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: 10px;
	overflow: hidden;
}

.price-row {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	background: var(--surface-2);
	padding: 10px 14px;
}

.price-row .qty {
	font-size: 13px;
	color: var(--text);
	font-weight: 500;
}

.price-row .price {
	font-family: 'Fraunces', serif;
	font-weight: 600;
	color: var(--gold);
	font-size: 15px;
}

.price-ask {
	margin-top: 16px;
	font-size: 13px;
	color: var(--gold-dim);
	letter-spacing: 0.02em;
}

.product-order a {
	background: transparent;
	color: var(--text);
	text-decoration: none;
	border: 1px solid var(--line-strong);
	padding: 11px 18px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.product-order a:hover {
	background: var(--gold);
	color: var(--bg);
	border-color: var(--gold);
}

/* faixa da marca */
.brand-band {
	background: var(--surface-2);
	padding: 80px 24px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.brand-band-inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.brand-band .eyebrow {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: var(--gold-dim);
	margin-bottom: 24px;
	font-weight: 500;
}

.brand-band h2 {
	font-family: 'Fraunces', serif;
	font-weight: 400;
	font-size: clamp(32px, 5.2vw, 54px);
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin-bottom: 22px;
}

.brand-band h2 em {
	font-style: italic;
	color: var(--gold);
	font-weight: 300;
}

.brand-band p {
	font-size: 16px;
	color: var(--muted);
	max-width: 520px;
	margin: 0 auto;
	line-height: 1.7;
}

/* como pedir */
.how {
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 24px 60px
}

.how h2 {
	font-family: 'Fraunces', serif;
	font-weight: 400;
	font-size: clamp(28px, 3.8vw, 40px);
	letter-spacing: -0.03em;
	margin-bottom: 56px;
	max-width: 480px;
	line-height: 1.1;
}

.how-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}

.step .step-num {
	font-family: 'Fraunces', serif;
	font-size: 13px;
	font-weight: 500;
	color: var(--gold);
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.step .step-num::after {
	content: '';
	flex: 0 0 24px;
	height: 1px;
	background: var(--gold-dim)
}

.step h3 {
	font-family: 'Fraunces', serif;
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 10px;
	letter-spacing: -0.01em;
}

.step p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.65;
	max-width: 280px
}

/* entrega */
.delivery-band {
	background: var(--surface);
	padding: 36px 24px;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	text-align: center;
}

.delivery-band .pin {
	color: var(--gold);
	font-size: 18px;
	line-height: 1;
}

.delivery-band p {
	font-size: 14px;
	color: var(--text);
	font-weight: 400;
	letter-spacing: 0.01em;
}

.delivery-band strong {
	color: var(--gold);
	font-weight: 600
}

/* rodapé */
footer {
	max-width: 1100px;
	margin: 0 auto;
	padding: 60px 24px 80px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 32px;
	border-top: 1px solid var(--line);
	margin-top: 40px;
}

.footer-brand h3 {
	font-family: 'Fraunces', serif;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 6px;
	letter-spacing: -0.01em;
}

.footer-brand p {
	font-size: 13px;
	color: var(--muted)
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-end
}

.footer-contact .label {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--gold-dim);
}

.footer-contact .phone {
	font-family: 'Fraunces', serif;
	font-size: 20px;
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
	letter-spacing: -0.01em;
	transition: color .2s ease;
}

.footer-contact .phone:hover {
	color: var(--gold)
}

.footer-bottom {
	max-width: 1100px;
	margin: 0 auto;
	padding: 24px;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom span {
	font-size: 12px;
	color: var(--muted)
}

.footer-bottom .city {
	color: var(--gold-dim)
}

/* responsivo */
@media(max-width:780px) {
	.hero {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 50px 24px 40px;
		min-height: auto
	}

	.seal {
		width: 160px;
		height: 160px;
		order: -1
	}

	.product {
		grid-template-columns: 44px 1fr;
		gap: 18px
	}

	.product-order {
		grid-column: 1/-1;
		margin-top: 6px
	}

	.product-order a {
		width: 100%;
		justify-content: center
	}

	.how-steps {
		grid-template-columns: 1fr;
		gap: 36px
	}

	.top-bar {
		padding: 12px 16px
	}

	.top-cta {
		font-size: 12px;
		padding: 8px 14px
	}

	.brand-name {
		font-size: 15px
	}

	.brand-sub {
		font-size: 9px
	}

	footer {
		flex-direction: column;
		align-items: flex-start
	}

	.footer-contact {
		align-items: flex-start
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		text-align: left
	}
}