/* ==========================================================================
   Bolos da Obreira — Tema
   Design replicado de cakes.vectorocean.site (artisan-cakes-theme)
   Paleta: vermelho coral, verde menta e tons creme/areia. Fontes locais.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
	/* Cores */
	--ac-bg: #f6ece9;            /* fundo geral (artisan-background) */
	--ac-ink: #5b5550;           /* texto principal (artisan-ink) */
	--ac-cream: #fcf8f4;         /* creme claro (artisan-cream) */
	--ac-coral: #da5a66;         /* vermelho coral (artisan-coral) */
	--ac-coral-hover: #cc4b57;   /* coral hover */
	--ac-green: #74c17c;         /* verde (artisan-green) */
	--ac-green-hover: #69b971;   /* verde hover */
	--ac-brick: #9f4544;         /* vermelho tijolo (produtos) */
	--ac-soft: #e8ddd9;          /* tom suave */
	--ac-mint: #e6f1dc;          /* verde menta */
	--ac-footer: #eadedd;        /* fundo do rodapé */
	--ac-stat: #e4d4d2;          /* valor das estatísticas */
	--ac-white: #ffffff;

	/* Fontes */
	--ac-font-body: 'Helvetica', Arial, sans-serif;
	--ac-font-heading: 'Bodoni Moda', Georgia, serif;
	--ac-font-detail: 'Cabrito Didone', Georgia, serif;
	--ac-font-script: 'Golden', cursive;
	--ac-font-ui: 'Instrument Sans', Arial, sans-serif;

	/* Layout */
	--ac-wide: 1200.97px;
	--ac-gutter: clamp(18px, 3.52vw, 48px);
	--ac-header-h: 72px;
	--ac-adminbar-h: 0px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--ac-font-body);
	font-weight: 300;
	font-size: 17px;
	line-height: 1.5;
	color: var(--ac-ink);
	background: var(--ac-bg);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

body.admin-bar {
	--ac-adminbar-h: 32px;
}

@media (max-width: 782px) {
	body.admin-bar {
		--ac-adminbar-h: 46px;
	}
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

p {
	margin: 0;
}

.ac-site {
	background: var(--ac-bg);
}

.ac-shell {
	width: min(var(--ac-wide), calc(100% - 96px));
	margin: 0 auto;
	box-sizing: border-box;
}

.ac-shell--narrow {
	width: min(var(--ac-wide), calc(100% - 96px));
}

.ac-shell--footer {
	width: min(var(--ac-wide), calc(100% - 72px));
}

/* --------------------------------------------------------------------------
   3. Tipografia auxiliar
   -------------------------------------------------------------------------- */
.ac-script {
	font-family: var(--ac-font-script);
	font-style: normal;
	font-weight: 400;
	text-transform: none;
	line-height: 0.86;
}

.ac-heading {
	font-family: var(--ac-font-heading);
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
	color: var(--ac-ink);
}

.ac-detail {
	font-family: var(--ac-font-detail);
	font-weight: 600;
	text-transform: uppercase;
}

.ac-eyebrow {
	display: block;
	margin: 0 0 10px;
	font-family: var(--ac-font-body);
	font-weight: 300;
	letter-spacing: 0.03em;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--ac-coral);
}

/* Seção: título */
.ac-section-title {
	margin: 0;
	font-family: var(--ac-font-heading);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--ac-ink);
	font-size: clamp(50px, 4.88vw, 66.6667px);
}

.ac-section-title .ac-script {
	display: inline;
	font-size: 1.08em;
	vertical-align: baseline;
}

.ac-section-title--center {
	text-align: center;
	margin-bottom: 30px;
}

.ac-section-title--left {
	text-align: left;
}

.ac-section-title--light {
	color: var(--ac-cream);
}

.ac-section-title--banner {
	color: #fff;
}

/* --------------------------------------------------------------------------
   4. Botões
   -------------------------------------------------------------------------- */
.ac-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 64px;
	padding: 14px 28px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	font-family: var(--ac-font-body);
	font-size: 17.3333px;
	font-weight: 400;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ac-btn:hover {
	transform: translateY(-1px);
}

.ac-btn--coral {
	background: var(--ac-coral);
	border-color: var(--ac-coral);
	color: #fff;
}

.ac-btn--coral:hover {
	background: var(--ac-coral-hover);
	border-color: var(--ac-coral-hover);
	color: #fff;
}

.ac-btn--green {
	background: #da5a66;
	border-color: #da5a66 /* var(--ac-green) */;
	color: #fff;
}

.ac-btn--green:hover {
	background: var(--ac-green-hover);
	border-color: var(--ac-green-hover);
	color: #fff;
}

.ac-btn--ghost {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(4px);
	color: #fff;
}

.ac-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: #fff;
	color: #fff;
}

.ac-btn--outline-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.85);
	color: #fff;
}

.ac-btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: #fff;
	color: #fff;
}

.ac-btn--sm {
	min-height: 54px;
	padding: 16px 32px;
}

.ac-btn-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 34px;
}

/* --------------------------------------------------------------------------
   5. Cabeçalho (header)
   -------------------------------------------------------------------------- */
.ac-header {
	position: absolute;
	top: 0;
	/* top: calc(var(--ac-adminbar-h) + 23px); */
	left: 0;
	right: 0;
	z-index: 100;
	width: 100%;
	margin-inline: 0;
	padding-inline: 0 !important;
	box-sizing: border-box;
	background-color: rgba(245, 225, 215, 0.9);
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ac-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	width: min(var(--ac-wide), calc(100% - (var(--ac-gutter) * 2)));
	margin-inline: auto;
}

.ac-header__brand {
	margin: 0;
	line-height: 0;
}

.ac-header__brand img {
	width: 148px;
	height: auto;
	display: block;
}

.ac-header__logo--dark {
	display: block;
}

.ac-header__logo--light {
	display: none;
}

.home .ac-header__logo--dark {
	display: none;
}

.home .ac-header__logo--light {
	display: block;
}

/* Transparente na home até rolar */
.home .ac-header:not(.is-solid) {
	background: transparent !important;
}

.ac-header.is-fixed {
	position: fixed;
	top: 0;
	/* top: var(--ac-adminbar-h); */
}

.ac-header.is-solid {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	background-color: rgba(245, 225, 215, 0.9);
}

.ac-header.is-hidden {
	transform: translateY(-100%);
}

body:not(.home) .ac-header {
	background: var(--ac-bg) !important;
}

body:not(.home) .ac-header .ac-nav a,
body:not(.home) .ac-header .ac-nav-toggle {
	color: var(--ac-ink) !important;
}

body:not(.home) .ac-header .ac-header__brand img {
	filter: brightness(0);
}

/* Header sólido na home (após rolar): fundo claro e links escuros */
.home .ac-header.is-solid .ac-nav a,
.home .ac-header.is-solid .ac-nav-toggle {
	color: var(--ac-ink) !important;
}

.home .ac-header.is-solid .ac-header__logo--light {
	display: none;
}

.home .ac-header.is-solid .ac-header__logo--dark {
	display: block;
}

.ac-header__nav-wrap {
	min-width: 0;
	margin: 0;
}

.ac-nav {
	display: flex;
	align-items: center;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ac-nav a {
	padding: 0;
	font-size: 18.6667px;
	font-weight: 300;
	line-height: 1.2;
	color: var(--ac-cream);
}

.ac-nav a:hover,
.ac-nav a.is-current {
	color: #d6b25f !important; /* dourado (custom-gold) */
}

.ac-header-cta {
	margin: 0;
	display: flex;
	align-items: center;
}

.ac-header-cta .ac-btn {
	min-height: 53.84px;
	min-width: 124.64px;
	padding: 0 28px;
	font-size: 14.6667px;
	line-height: 1;
	box-shadow: none;
}

/* Toggle mobile */
.ac-nav-toggle {
	display: none;
	background: none;
	border: 0;
	cursor: pointer;
	color: var(--ac-cream);
	padding: 8px;
}

.ac-nav-toggle svg {
	width: 40px;
	height: 40px;
	display: block;
}

.ac-nav-toggle__close {
	display: none;
}

/* Elementos da gaveta mobile — ocultos no desktop */
.ac-nav__drawer-head,
.ac-nav__footer {
	display: none;
}

/* --------------------------------------------------------------------------
   6. Herói (home)
   -------------------------------------------------------------------------- */
.ac-hero {
	position: relative;
	overflow: hidden;
	min-height: clamp(620px, 100svh, 900px);
}

.ac-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(65, 30, 31, 0.38) 0%, rgba(65, 30, 31, 0.18) 42%, rgba(65, 30, 31, 0.3) 100%);
	pointer-events: none;
}

.ac-hero > * {
	position: relative;
	z-index: 1;
}

.ac-hero__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ac-hero__inner {
	width: 100%;
	min-height: clamp(620px, 100svh, 900px);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 214px 0 108px;
}

.ac-hero__content {
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.ac-hero__title {
	margin: 0 0 28px;
	font-family: var(--ac-font-heading);
	font-style: normal;
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--ac-cream);
	font-size: clamp(58px, 5.65vw, 78px);
}

.ac-hero__title .ac-script {
	display: inline-block;
	font-size: 1.3em;
	line-height: 0.78;
	margin-left: 12px;
	vertical-align: middle;
}

.ac-hero__buttons .ac-btn {
	min-height: 54px;
	padding: 16px 32px;
}

/* --------------------------------------------------------------------------
   7. Faixa de benefícios
   -------------------------------------------------------------------------- */
.ac-benefits {
	min-height: clamp(140px, 10.26vw, 197px);
	position: relative;
	overflow: hidden;
	background: var(--ac-bg);
	color: var(--ac-ink);
}

.ac-benefits__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}

.ac-benefits__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, max-content);
	align-items: center;
	justify-content: space-between;
	width: min(1539px, calc(100% - 190px));
	gap: clamp(22px, 3.35vw, 64px);
	min-height: clamp(140px, 10.26vw, 197px);
	padding: 20px 0 18px;
	margin: 0 auto;
}

.ac-benefit {
	display: grid;
	grid-template-columns: clamp(76px, 5.6vw, 98px) auto;
	align-items: center;
	justify-content: center;
	justify-items: start;
	column-gap: clamp(12px, 1.4vw, 20px);
}

.ac-benefit__icon {
	display: block;
	width: clamp(76px, 5.6vw, 98px);
	margin: 0;
	line-height: 0;
}

.ac-benefit__icon img {
	display: block;
	width: 100%;
	height: auto;
}

.ac-benefit__copy {
	display: grid;
	justify-items: start;
	gap: 0;
}

.ac-benefit__copy h3 {
	margin: 0;
	font-family: var(--ac-font-heading);
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	font-size: clamp(23px, 2.15vw, 29.3332px);
	color: var(--ac-ink);
}

.ac-benefit__script {
	margin: -2px 0 0;
	font-family: var(--ac-font-script);
	font-weight: 400;
	line-height: 0.88;
	font-size: clamp(34px, 3.1vw, 42.4384px);
	color: var(--ac-ink);
}

/* --------------------------------------------------------------------------
   8. Sobre (Conheça a cake artist)
   -------------------------------------------------------------------------- */
.ac-about {
	padding: 88px 0 108px;
	background: var(--ac-bg);
}

.ac-about__grid {
	display: grid;
	width: min(100%, 972px);
	margin: 0 auto;
	grid-template-columns: minmax(300px, 378px) minmax(0, 456px);
	justify-content: center;
	gap: 48px;
	align-items: center;
}

.ac-arch {
	overflow: hidden;
	border-radius: 220px 220px 0 0;
}

.ac-arch--medium {
	max-width: 378px;
}

.ac-arch--medium img {
	width: 100%;
	aspect-ratio: 0.79;
	object-fit: cover;
	display: block;
}

.ac-about__copy {
	display: grid;
	gap: 12px;
	align-items: start;
	max-width: 456px;
}

.ac-about__copy p {
	margin: 0;
	line-height: 1.5;
	font-size: 17.3334px;
}

.ac-about__copy .ac-section-title {
	font-size: clamp(50px, 4.88vw, 66.6667px);
}

.ac-about__copy .ac-btn {
	justify-self: start;
	margin-top: 18px;
	width: auto;
}

.ac-about__emphasis {
	font-style: italic;
	font-weight: 500;
}

/* --------------------------------------------------------------------------
   9. Confiança (Por que confiar / estatísticas)
   -------------------------------------------------------------------------- */
.ac-trust {
	padding: 0 0 118px;
	background: var(--ac-bg);
}

.ac-trust .ac-section-title {
	margin-top: 0;
	font-size: clamp(50px, 4.88vw, 66.6667px);
	text-align: center;
	margin-bottom: 0;
}

.ac-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: min(1606px, calc(100% - 160px));
	margin: 54px auto 0;
	gap: 18px;
}

.ac-stat {
	text-align: center;
}

.ac-stat__value {
	font-family: var(--ac-font-heading);
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: var(--ac-stat);
	font-size: clamp(72px, 7vw, 96px);
}

.ac-stat__title {
	margin: 0 0 12px;
	font-family: var(--ac-font-heading);
	font-weight: 400;
	line-height: 1.17;
	text-transform: uppercase;
	font-size: clamp(22px, 2.02vw, 27.5px);
	color: var(--ac-ink);
	white-space: nowrap;
}

.ac-stat__copy {
	margin: 10px 0 0;
	line-height: 1.4;
	font-weight: 300;
	text-transform: uppercase;
	font-size: 18.6667px;
	color: var(--ac-ink);
}

/* Cards de história */
.ac-story-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: min(1606px, calc(100% - 160px));
	gap: clamp(40px, 3.5vw, 68px);
	margin: 56px auto 0;
}

.ac-story-card {
	position: relative;
	min-height: 366px;
	overflow: hidden;
	color: var(--ac-ink);
}

.ac-story-card__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ac-story-card__inner {
	position: relative;
	display: grid;
	align-content: start;
	width: 100%;
	height: 100%;
	padding: 66px 58px 52px;
	text-align: center;
	box-sizing: border-box;
}

.ac-story-card__title {
	margin: 0 0 22px;
	font-family: var(--ac-font-script);
	line-height: 0.85;
	font-size: clamp(48px, 5vw, 72.0001px);
	color: var(--ac-ink);
}

.ac-story-card__title .ac-script {
	display: inline;
	font-size: 1.05em;
}

.ac-story-card p {
	max-width: 520px;
	margin: 0 auto;
	color: var(--ac-ink);
	line-height: 1.5;
	font-size: 17.3334px;
}

/* --------------------------------------------------------------------------
   10. Produtos (nossas especialidades)
   -------------------------------------------------------------------------- */
.ac-products {
	padding: 92px 0 92px;
	background: var(--ac-brick);
}

.ac-products .ac-section-title {
	color: var(--ac-cream);
	text-align: center;
	font-size: clamp(50px, 4.88vw, 66.6667px);
}

.ac-products .ac-section-title .ac-script {
	color: var(--ac-cream);
}

.ac-products__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 52px clamp(50px, 5vw, 92px);
	margin-top: 58px;
}

.ac-product-card {
	text-align: center;
	color: var(--ac-cream);
}

.ac-product-card__image {
	display: block;
	width: min(100%, 320px);
	aspect-ratio: 1 / 1;
	margin-inline: auto;
	overflow: hidden;
	border-radius: 50% 50% 0 0;
}

.ac-product-card__image img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	display: block;
	border-radius: 0;
}

.ac-product-card h3 {
	margin: 30px 0 8px;
	font-family: var(--ac-font-detail);
	font-weight: 600;
	line-height: 1.05;
	text-transform: uppercase;
	font-size: clamp(22px, 2.3426vw, 31.9998px);
	color: var(--ac-cream);
}

.ac-product-card p {
	margin: 0 auto;
	max-width: 300px;
	line-height: 1.5;
	font-size: 18.6667px;
	color: var(--ac-cream);
}

/* CTA dentro dos produtos */
.ac-products__cta {
	position: relative;
	width: min(980px, calc(100% - 72px));
	min-height: 178px;
	margin: 72px auto 0;
	overflow: hidden;
}

.ac-products__cta__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ac-products__cta__inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	min-height: 178px;
	padding: 30px 64px;
	box-sizing: border-box;
}

.ac-products__cta h3 {
	margin: 0;
	font-family: var(--ac-font-heading);
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
	font-size: clamp(29px, 2.78vw, 38px);
	color: var(--ac-ink);
}

.ac-products__cta h3 .ac-script {
	display: inline;
	font-size: 1.1em;
}

.ac-products__cta .ac-btn {
	flex: 0 0 auto;
	min-width: 178px;
	width: auto;
	white-space: nowrap;
}

/* --------------------------------------------------------------------------
   11. Divisor
   -------------------------------------------------------------------------- */
.ac-divider {
	margin: 0;
	line-height: 0;
}

.ac-divider img {
	display: block;
	width: 100%;
	height: clamp(260px, 22vw, 310px);
	object-fit: cover;
	object-position: center;
}

/* --------------------------------------------------------------------------
   12. Livro de receitas
   -------------------------------------------------------------------------- */
.ac-cookbook {
	padding: 88px 0 88px;
	background: var(--ac-bg);
}

.ac-cookbook__grid {
	display: grid;
	grid-template-columns: minmax(300px, 355px) minmax(0, 1fr);
	gap: 66px;
	align-items: center;
}

.ac-cookbook__cover {
	display: block;
	margin: 0;
}

.ac-cookbook__cover img {
	width: 100%;
	display: block;
}

.ac-cookbook__copy {
	display: grid;
	gap: 14px;
	max-width: 560px;
}

.ac-cookbook__copy .ac-section-title {
	font-size: clamp(50px, 4.88vw, 66.6667px);
}

.ac-cookbook__copy h3 {
	margin: 6px 0 0;
	font-family: var(--ac-font-detail);
	font-weight: 600;
	line-height: 1.3;
	font-size: 21.3335px;
	color: var(--ac-ink);
}

.ac-cookbook__copy p {
	margin: 0;
	line-height: 1.5;
	font-size: 17.3334px;
}

.ac-cookbook__copy .ac-btn {
	justify-self: start;
	margin-top: 18px;
	width: auto;
}

/* --------------------------------------------------------------------------
   13. Como pedir (passos)
   -------------------------------------------------------------------------- */
.ac-steps {
	padding: 72px 0 78px;
	background: var(--ac-bg);
}

.ac-steps__title {
	margin: 0;
	text-align: center;
	font-family: var(--ac-font-heading);
	line-height: 1;
	text-transform: uppercase;
	font-size: clamp(50px, 4.88vw, 66.6667px);
	color: var(--ac-ink);
}

.ac-steps__subtitle {
	margin: 2px 0 0;
	text-align: center;
	font-family: var(--ac-font-script);
	line-height: 0.86;
	font-size: clamp(48px, 4.8vw, 72.0001px);
	color: var(--ac-ink);
}

.ac-steps__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	margin-top: 48px;
}

.ac-step {
	text-align: center;
}

.ac-step__number {
	margin: 0 0 24px;
	font-family: var(--ac-font-heading);
	font-size: clamp(38px, 3.8vw, 52px);
	line-height: 0.82;
	color: var(--ac-coral);
	transform: translateY(-12px);
}

.ac-step h3 {
	margin: 10px 0 12px;
	font-family: var(--ac-font-detail);
	font-weight: 600;
	line-height: 1.1;
	text-transform: uppercase;
	font-size: clamp(22px, 2.3426vw, 32.0001px);
	color: var(--ac-ink);
}

.ac-step h3 .ac-script {
	display: inline;
	font-size: 1.1em;
}

.ac-step p {
	margin: 0;
	line-height: 1.5;
	font-size: 18.6667px;
	color: var(--ac-ink);
}

.ac-steps__actions {
	display: flex;
	justify-content: center;
	margin-top: 56px;
}

.ac-steps__actions .ac-btn {
	width: auto;
	min-width: 178px;
	padding-inline: 28px;
}

/* --------------------------------------------------------------------------
   14. Banner CTA
   -------------------------------------------------------------------------- */
.ac-banner {
	position: relative;
	min-height: 540px;
	overflow: hidden;
}

.ac-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(137, 77, 82, 0.5);
}

.ac-banner__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 46%;
}

.ac-banner__inner {
	position: relative;
	z-index: 1;
	min-height: inherit;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 88px 0;
}

.ac-banner__content {
	max-width: 980px;
	text-align: center;
	color: #fff;
}

.ac-banner__content .ac-section-title {
	color: #fff;
	line-height: 1.05;
	font-size: clamp(46px, 4.45vw, 60px);
}

.ac-banner__content p {
	max-width: 680px;
	margin: 18px auto 0;
	line-height: 1.5;
	font-size: 18.6667px;
}

.ac-banner__content .ac-btn {
	margin: 34px auto 0;
	width: auto;
}

/* --------------------------------------------------------------------------
   15. Depoimentos
   -------------------------------------------------------------------------- */
.ac-testimonials {
	padding: 88px 0 88px;
	background: var(--ac-bg);
}

.ac-testimonials__header {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 32px;
	margin-bottom: 58px;
}

.ac-testimonials__intro {
	max-width: 620px;
	display: grid;
	gap: 14px;
}

.ac-testimonials__intro .ac-section-title {
	font-size: clamp(32px, 4.2vw, 60px);
}

.ac-testimonials__intro p {
	margin: 0;
	line-height: 1.5;
	font-size: 18.6667px;
}

.ac-testimonials__action .ac-btn {
	width: auto;
	min-width: 178px;
	padding-inline: 28px;
}

.ac-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.ac-testimonial-card {
	position: relative;
	min-height: 230px;
	overflow: hidden;
	color: var(--ac-ink);
}

.ac-testimonial-card__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ac-testimonial-card__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 18px;
	width: 100%;
	height: 100%;
	padding: 26px 22px 22px;
	box-sizing: border-box;
}

.ac-stars {
	margin: 0;
	letter-spacing: 0.12em;
	line-height: 1;
	font-size: 18px;
	color: var(--ac-coral);
}

.ac-testimonial-card__quote {
	margin: 0;
	color: var(--ac-ink);
	line-height: 1.5;
	font-style: italic;
	font-size: 17.3333px;
}

.ac-testimonial-card__person {
	display: flex;
	align-items: center;
	gap: 14px;
}

.ac-testimonial-card__person img {
	width: 62px;
	min-width: 62px;
	height: 62px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
	overflow: hidden;
}

.ac-testimonial-card__person p {
	margin: 0;
}

.ac-testimonial-card__person strong {
	font-weight: 700;
	line-height: 1.3;
	font-size: 16px;
}

/* --------------------------------------------------------------------------
   16. Galeria
   -------------------------------------------------------------------------- */
.ac-gallery {
	position: relative;
	overflow: hidden;
	background: var(--ac-bg);
	padding-top: 40px;
	padding-bottom: 80px;
}

.ac-gallery__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
}

.ac-gallery__item {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin: 0;
}

.ac-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ac-gallery__action {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}

.ac-gallery__action .ac-btn {
	pointer-events: auto;
	min-width: 282px;
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow: 0 18px 42px rgba(39, 32, 29, 0.14);
	background: rgba(255, 255, 255, 0.55);
	color: var(--ac-ink);
	width: auto;
}

.ac-gallery__action .ac-btn:hover {
	background: #fff;
	border-color: #fff;
	color: var(--ac-coral);
}

.ac-gallery__instagram {
	display: block;
	text-align: center;
	margin-top: 32px;
	font-family: var(--ac-font-body);
	font-size: 18px;
	font-weight: 300;
	color: var(--ac-ink);
}

.ac-gallery__instagram:hover {
	color: var(--ac-coral);
}

/* --------------------------------------------------------------------------
   17. Rodapé
   -------------------------------------------------------------------------- */
.ac-footer {
	padding: 42px 0 28px;
	overflow: hidden;
	background: var(--ac-footer);
	color: var(--ac-ink);
}

.ac-footer__logo-row {
	display: flex;
	justify-content: center;
	margin-bottom: 42px;
	text-align: center;
}

.ac-footer__gallery {
	margin: 0 0 56px;
}

.ac-footer__gallery .ac-gallery__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ac-footer__gallery .ac-gallery__instagram {
	margin-top: 28px;
}

.ac-footer__logo {
	display: block;
	width: 108px;
	max-width: 108px;
	margin: 0 auto;
	line-height: 0;
}

.ac-footer__logo img {
	width: 100%;
}

.ac-footer__grid {
	display: grid;
	width: min(100%, 1200.97px);
	margin: 0 auto 64px;
	grid-template-columns: minmax(0, 650px) minmax(360px, 430px);
	gap: clamp(56px, 6vw, 88px);
	align-items: center;
	justify-content: center;
}

.ac-footer__content {
	max-width: 650px;
	justify-self: center;
	text-align: center;
	align-self: center;
}

.ac-footer__content .ac-section-title {
	font-size: clamp(40px, 4.2vw, 60px);
	margin-bottom: 0;
}

.ac-footer__content .ac-section-title .ac-script {
	font-size: 1.24em;
}

.ac-footer__content .ac-btn {
	width: min(100%, 328px);
	margin: 32px auto 34px;
}

.ac-footer__details {
	display: grid;
	gap: 26px;
	margin-top: 0;
}

.ac-footer__detail {
	text-align: center;
}

.ac-footer__detail a,
.ac-footer__detail p {
	margin: 0;
	line-height: 1.14;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	font-size: clamp(28px, 2.35vw, 31.9999px);
}

.ac-footer__detail p {
	color: var(--ac-ink);
	font-family: var(--ac-font-detail);
}

.ac-footer__detail a {
	color: inherit;
	font-family: inherit;
}

.ac-footer__detail a:hover {
	color: var(--ac-coral);
}

.ac-footer__portrait {
	display: grid;
	gap: 18px;
	justify-items: center;
	align-self: center;
	width: min(100%, 430px);
	justify-self: end;
	min-width: 0;
}

.ac-arch--footer {
	position: relative;
	display: block;
	max-width: 430px;
	width: 100%;
	height: 602px;
	border-radius: 220px 220px 0 0;
	overflow: hidden;
	margin: 0;
}

.ac-arch--footer img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	transform: scale(1.055);
	transform-origin: center bottom;
}

.ac-footer__socials {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ac-footer__socials a {
	width: 30px;
	height: 30px;
	border-radius: 999px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: var(--ac-coral);
	color: #fff;
}

.ac-footer__socials a:hover {
	background: var(--ac-coral-hover);
	color: #fff;
}

.ac-footer__socials svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.ac-footer__bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 18px;
	align-items: center;
	margin-top: 34px;
}

.ac-footer__bottom p {
	margin: 0;
	font-weight: 300;
	font-size: 17.3333px;
}

.ac-footer__top {
	justify-self: center;
	line-height: 0;
}

.ac-footer__top img {
	width: 84px;
}

.ac-footer__nav {
	display: flex;
	justify-content: flex-end;
	gap: 32px;
	flex-wrap: wrap;
}

.ac-footer__nav a {
	font-weight: 300;
	font-size: 16px;
	color: inherit;
}

.ac-footer__nav a:hover {
	color: var(--ac-coral);
}

/* --------------------------------------------------------------------------
   18. Páginas internas — base
   -------------------------------------------------------------------------- */
.ac-page {
	padding: clamp(92px, 10vw, 184px) clamp(20px, 4vw, 48px) clamp(56px, 7vw, 96px);
	background: var(--ac-bg);
	color: var(--ac-ink);
}

.ac-page__shell {
	width: min(1200px, 100%);
	margin-inline: auto;
}

.ac-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
	align-items: center;
	gap: clamp(32px, 6vw, 92px);
}

.ac-page__stack {
	display: grid;
	gap: clamp(16px, 2vw, 28px);
}

.ac-page__script {
	margin: 0;
	color: var(--ac-coral);
	font-family: var(--ac-font-script);
	font-size: clamp(58px, 8vw, 120px);
	line-height: 0.88;
}

.ac-page__title {
	margin: 0;
	font-family: var(--ac-font-heading);
	font-size: clamp(44px, 6vw, 84px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.98;
	text-transform: uppercase;
	color: var(--ac-ink);
}

.ac-page__title .ac-script {
	display: inline;
	color: var(--ac-coral);
	font-size: 1.18em;
	text-transform: none;
}

.ac-page__title--center,
.ac-page__subtitle {
	text-align: center;
}

.ac-page__copy {
	max-width: 620px;
	margin: 0;
	font-size: clamp(18px, 2vw, 23px);
	line-height: 1.55;
}

.ac-page__quote {
	margin: 0;
	font-family: var(--ac-font-heading);
	font-size: clamp(24px, 3vw, 38px);
	font-style: italic;
	line-height: 1.15;
	text-transform: uppercase;
}

.ac-page__arch {
	width: 100%;
	aspect-ratio: 0.78 / 1;
	border-radius: 999px 999px 0 0;
	overflow: hidden;
	margin: 0;
}

.ac-page__arch img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ac-page__btn .ac-btn {
	border-radius: 999px;
	background: var(--ac-coral);
	color: var(--ac-white);
	padding: 13px 28px;
	font-size: 17px;
	line-height: 1;
	width: auto;
	min-height: 0;
}

.ac-page__btn .ac-btn:hover {
	background: var(--ac-coral-hover);
}

/* --------------------------------------------------------------------------
   19. Página Sobre
   -------------------------------------------------------------------------- */
.ac-about-hero {
	padding: clamp(154px, 13.4vw, 184px) clamp(34px, 7vw, 96px) clamp(60px, 6.5vw, 94px);
	background-image: url('../images/reference/509eb96920feaeb6e74779d6b38b13d0.jpg');
	background-position: center;
	background-size: cover;
	background-color: #e7f3de;
}

.ac-about-hero__shell {
	width: min(1200.97px, 100%);
	margin-inline: auto;
}

.ac-about-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 690px) minmax(360px, 530px);
	gap: clamp(30px, 3.1vw, 38px);
	align-items: center;
}

.ac-about-hero__stack {
	display: grid;
	gap: 27px;
}

.ac-about-hero__stack .ac-page__script {
	color: var(--ac-ink);
	font-size: clamp(56px, 4.69vw, 64px);
	line-height: 0.94;
}

.ac-about-hero__stack .ac-page__title {
	max-width: 690px;
	margin-bottom: 12px;
	font-size: clamp(36px, 3.05vw, 40px);
	line-height: 1;
}

.ac-about-hero__quote {
	position: relative;
	max-width: 690px;
	margin: 0;
	font-family: var(--ac-font-heading);
	font-size: clamp(28px, 2.38vw, 31px);
	line-height: 1.1;
	text-transform: none;
	color: var(--ac-ink);
}

.ac-about-hero__quote::before {
	content: "\201C";
	position: absolute;
	left: -2px;
	top: -25px;
	z-index: 0;
	color: rgba(91, 85, 80, 0.14);
	font-family: var(--ac-font-heading);
	font-size: 118px;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
	pointer-events: none;
}

.ac-about-hero__arch {
	width: min(100%, 530px);
	aspect-ratio: 1 / 1;
	justify-self: end;
	border-radius: 999px 999px 0 0;
	overflow: hidden;
	margin: 0;
}

.ac-about-hero__arch img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

/* Seção "Por que escolher" */
.ac-about-why {
	padding: 88px 0 84px;
	background: var(--ac-bg);
}

.ac-about-why__shell {
	width: min(1186px, calc(100% - 72px));
	margin-inline: auto;
}

.ac-about-why__title {
	margin: 0;
	font-family: var(--ac-font-heading);
	font-size: 66.6667px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
	color: var(--ac-ink);
	text-align: center;
}

.ac-about-why__title .ac-script {
	display: inline;
	font-size: 1.1em;
	color: var(--ac-ink);
}

.ac-about-values {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 300px));
	justify-content: space-between;
	align-items: start;
	gap: 84px;
	width: min(1089.07px, 100%);
	margin: 54px auto 0;
}

.ac-about-value {
	display: grid;
	align-content: start;
	justify-items: center;
	gap: 20px;
	text-align: center;
}

.ac-about-value__icon {
	width: 86.74px;
	height: 86.74px;
	margin: 0;
	background: var(--ac-coral);
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.ac-about-value__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
}

.ac-about-value:nth-child(1) .ac-about-value__icon {
	-webkit-mask-image: url('../images/reference/01f99f83ee77159d54a7edb29b525e90.svg');
	mask-image: url('../images/reference/01f99f83ee77159d54a7edb29b525e90.svg');
}

.ac-about-value:nth-child(2) .ac-about-value__icon {
	-webkit-mask-image: url('../images/reference/f0ae602ef0becad9b9d9e9e1a21134a8.svg');
	mask-image: url('../images/reference/f0ae602ef0becad9b9d9e9e1a21134a8.svg');
}

.ac-about-value:nth-child(3) .ac-about-value__icon {
	-webkit-mask-image: url('../images/reference/b7bd0d9b3fd2ec652a4047313032020d.svg');
	mask-image: url('../images/reference/b7bd0d9b3fd2ec652a4047313032020d.svg');
}

.ac-about-value h3 {
	max-width: 236.36px;
	min-height: 70px;
	margin: 0;
	font-family: var(--ac-font-detail);
	font-size: 29.3332px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	color: var(--ac-ink);
}

.ac-about-value h3 span {
	display: block;
	font-family: var(--ac-font-script);
	font-size: 42.4384px;
	line-height: 0.86;
	text-transform: none;
	white-space: nowrap;
	color: var(--ac-ink);
}

.ac-about-value p {
	max-width: 299.81px;
	margin: 0;
	font-size: 17.3333px;
	font-weight: 300;
	line-height: 1.32;
	color: var(--ac-ink);
}

/* Seção "anos de experiência" */
.ac-about-years {
	position: relative;
	min-height: 606px;
	overflow: hidden;
	background: #6d6052;
	color: var(--ac-cream);
}

.ac-about-years::after {
	content: "";
	position: absolute;
	inset: 0;
	background: #6d6052;
	opacity: 0.42;
}

.ac-about-years__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0.86;
}

.ac-about-years__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: 606px;
	width: min(1179.24px, calc(100% - 186px));
	margin-inline: auto;
}

.ac-about-years__content {
	display: grid;
	justify-items: start;
	gap: 26px;
	width: 470px;
	margin: 0;
	text-align: left;
}

.ac-about-years__title {
	margin: 0;
	color: var(--ac-cream);
	font-family: var(--ac-font-heading);
	font-size: 66.6667px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.ac-about-years__title span {
	display: block;
	color: var(--ac-cream);
	font-size: 72.0001px;
	line-height: 0.72;
	font-family: var(--ac-font-script);
	text-transform: none;
	white-space: normal;
}

.ac-about-years p {
	max-width: 363.05px;
	font-size: 18.6667px;
	font-weight: 300;
	line-height: 1.36;
	color: var(--ac-cream);
}

.ac-about-years .ac-btn {
	width: auto;
	margin-top: 2px;
}

/* Seção celebração */
.ac-about-celebration {
	position: relative;
	overflow: hidden;
	padding: 100px 0 104px;
	background: var(--ac-bg);
}

.ac-about-celebration__shell {
	width: min(1186px, calc(100% - 72px));
	margin-inline: auto;
}

.ac-about-celebration__title {
	font-size: 66.6667px;
	line-height: 0.98;
	text-align: center;
}

.ac-about-celebration__body {
	position: relative;
	min-height: 538px;
	margin-top: 64px;
}

.ac-about-checklist {
	display: grid;
	width: 533.11px;
	max-width: 100%;
	padding-top: 74px;
	gap: 20px;
}

.ac-about-checkitem {
	display: grid;
	grid-template-columns: 62.38px minmax(0, 1fr);
	align-items: center;
	gap: 22px;
	min-height: 118.09px;
	margin: 0;
	padding: 18px 44px 18px 24.86px;
	background: url('../images/reference/509eb96920feaeb6e74779d6b38b13d0.jpg') center / cover no-repeat;
}

.ac-about-checkitem__icon {
	width: 62.38px;
	height: 62.38px;
	margin: 0;
	background: var(--ac-coral);
	-webkit-mask: url('../images/reference/6dc800cbdaeda634660900cd8e636704.svg') center / contain no-repeat;
	mask: url('../images/reference/6dc800cbdaeda634660900cd8e636704.svg') center / contain no-repeat;
}

.ac-about-checkitem__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
}

.ac-about-checkitem p {
	margin: 0;
	color: var(--ac-ink);
	font-size: 21.3335px;
	font-weight: 300;
	line-height: 1.18;
}

.ac-about-celebration__image {
	position: absolute;
	top: 0;
	right: 0;
	width: 420px;
	aspect-ratio: 0.78 / 1;
	margin: 0;
	border-radius: 999px 999px 0 0;
	overflow: hidden;
}

.ac-about-celebration__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.ac-about-order-cta {
	display: grid;
	justify-items: center;
	gap: 0;
	margin-top: 78px;
	text-align: center;
}

.ac-about-order-cta__title {
	margin: 0;
	font-family: var(--ac-font-heading);
	font-size: 53.3333px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
	color: var(--ac-ink);
}

.ac-about-order-cta__title span {
	display: inline-block;
	margin-left: 12px;
	color: var(--ac-ink);
	font-size: 64px;
	line-height: 0.76;
	font-family: var(--ac-font-script);
	text-transform: none;
	transform: translateY(-7px);
}

.ac-about-order-cta .ac-btn {
	width: auto;
	margin-top: 22px;
}

/* --------------------------------------------------------------------------
   20. Página Menu
   -------------------------------------------------------------------------- */
.ac-menu-page__title {
	font-size: clamp(36px, 4.3vw, 62px);
	margin-bottom: 20px;
}

.ac-menu-page__subtitle {
	max-width: 460px;
	margin: 12px auto 42px;
	font-size: clamp(15px, 1.25vw, 18px);
	line-height: 1.55;
}

.ac-menu-page__script {
	margin-bottom: 18px;
	text-align: center;
	font-size: clamp(48px, 5vw, 72px);
}

.ac-menu-list {
	display: grid;
	gap: 0;
}

.ac-menu-category {
	text-align: center;
	font-family: var(--ac-font-script);
	font-size: clamp(48px, 5vw, 72px);
	color: var(--ac-coral);
	margin: 0 0 40px;
}

.ac-menu-row {
	display: grid;
	grid-template-columns: 220px minmax(200px, 360px) minmax(0, 400px) auto;
	align-items: center;
	gap: clamp(24px, 3vw, 44px);
	padding: 24px 0;
}

.ac-menu-row__arch {
	width: 220px;
	overflow: hidden;
	border-radius: 110px 110px 0 0;
	margin: 0;
}

.ac-menu-row__arch img {
	display: block;
	width: 220px;
	height: 220px;
	object-fit: cover;
	object-position: center top;
}

.ac-menu-row__name {
	display: grid;
	align-content: start;
	gap: 8px;
	text-align: center;
}

.ac-menu-row h2 {
	margin: 0;
	font-family: var(--ac-font-heading);
	font-size: clamp(26px, 2.8vw, 40px);
	font-weight: 400;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	color: var(--ac-ink);
}

.ac-menu-row__desc {
	margin: 0;
	font-size: 18px;
	line-height: 1.45;
	text-align: center;
	color: var(--ac-ink);
}

.ac-menu-price {
	color: var(--ac-coral);
	font-family: var(--ac-font-detail);
	font-size: 22px;
	margin: 0;
	text-align: center;
}

.ac-row-arrow .ac-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	border-radius: 999px;
	background: #EDDDDC;
	border: none;
	color: var(--ac-ink);
	padding: 0;
	font-size: 0;
	flex-shrink: 0;
	width: 68px;
	min-width: 68px;
	min-height: 68px;
}

.ac-row-arrow .ac-btn::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: rotate(45deg) translate(-2px, 2px);
}

.ac-menu-desserts .ac-row-arrow .ac-btn {
	background: #CEE6BF;
}

.ac-menu-cta {
	display: grid;
	justify-items: center;
	gap: 24px;
	margin-top: clamp(48px, 6vw, 80px);
	text-align: center;
}

.ac-menu-cta__heading {
	margin: 0;
	font-family: var(--ac-font-heading);
	font-size: clamp(42px, 5vw, 68px);
	line-height: 1;
	text-transform: uppercase;
	color: var(--ac-ink);
}

.ac-menu-cta .ac-btn {
	width: auto;
}

.ac-menu-testimonial {
	padding: clamp(56px, 7vw, 100px) clamp(20px, 4vw, 48px);
	text-align: center;
	background: var(--ac-bg);
}

.ac-menu-testimonial__title {
	margin: 0;
	font-family: var(--ac-font-heading);
	font-size: clamp(30px, 4.2vw, 60px);
	font-weight: 400;
	line-height: 1.05;
	text-transform: uppercase;
	color: var(--ac-ink);
}

.ac-menu-testimonial__title .ac-script {
	display: block;
	font-size: 0.85em;
}

.ac-menu-testimonial .ac-stars {
	margin: 0;
	font-size: 28px;
	line-height: 1;
}

.ac-menu-testimonial__quote {
	max-width: 680px;
	margin: 0 auto;
	font-size: 22px;
	line-height: 1.6;
	color: var(--ac-ink);
}

.ac-menu-testimonial__person {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 12px;
	justify-content: center;
}

.ac-menu-testimonial__person img {
	width: 100px;
	height: 100px;
	border-radius: 50% !important;
	-webkit-border-radius: 50% !important;
	overflow: hidden;
	margin: 0;
	flex-shrink: 0;
	object-fit: cover;
}

.ac-menu-testimonial__person p {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--ac-ink);
}

/* --------------------------------------------------------------------------
   21. Página Galeria
   -------------------------------------------------------------------------- */
.ac-gallery-page__title {
	font-size: clamp(36px, 4.3vw, 62px);
	margin-bottom: 20px;
}

.ac-gallery-page__subtitle {
	max-width: 520px;
	margin: 0 auto 42px;
	font-size: clamp(15px, 1.25vw, 18px);
	line-height: 1.55;
}

.ac-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(28px, 4vw, 70px);
	margin-bottom: 40px;
}

.ac-gallery-grid .ac-page__arch {
	aspect-ratio: 0.88 / 1;
}

.ac-gallery-page__actions {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 10px;
	flex-wrap: wrap;
}

.ac-gallery-page__actions .ac-btn--ghost {
	background: transparent;
	border-color: var(--ac-ink);
	color: var(--ac-ink) !important;
	width: auto;
}

.ac-gallery-page__actions .ac-btn--ghost:hover {
	background: rgba(91, 85, 80, 0.08);
	border-color: var(--ac-ink);
	color: var(--ac-ink);
}

/* --------------------------------------------------------------------------
   22. Página FAQ
   -------------------------------------------------------------------------- */
.ac-faq-page__title {
	font-size: clamp(36px, 4.3vw, 62px);
	margin-bottom: 20px;
}

.ac-faq-page__subtitle {
	max-width: 520px;
	margin: 0 auto 0;
	font-size: clamp(15px, 1.25vw, 18px);
	line-height: 1.55;
}

.ac-faq-list {
	display: grid;
	gap: clamp(12px, 1.5vw, 18px);
	width: min(973px, 100%);
	margin: clamp(36px, 4vw, 56px) auto 0;
}

.ac-faq-item {
	padding: clamp(28px, 3.5vw, 46px);
	background: url('../images/reference/2ced6414569e4edc2ab7d56e47c743ac.jpg') center / cover no-repeat;
}

.ac-faq-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 0;
	font-family: var(--ac-font-heading);
	font-size: clamp(20px, 1.95vw, 28px);
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
	color: var(--ac-ink);
	cursor: pointer;
}

.ac-faq-item__question .ac-faq-arrow {
	flex-shrink: 0;
	display: inline-flex;
	transition: transform 0.3s ease;
}

.ac-faq-item.is-open .ac-faq-arrow {
	transform: rotate(180deg);
}

.ac-faq-item__answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	padding: 0 1rem;
	transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.25s ease;
	margin: 0;
	font-size: clamp(16px, 1.4vw, 19px);
	line-height: 1.65;
	color: var(--ac-ink);
}

.ac-faq-item.is-open .ac-faq-item__answer {
	opacity: 1;
	padding: 1rem;
	max-height: 500px;
}

.ac-faq-cta {
	display: grid;
	justify-items: center;
	gap: 24px;
	margin-top: clamp(48px, 6vw, 80px);
	text-align: center;
}

.ac-faq-cta__heading {
	margin: 0;
	font-family: var(--ac-font-heading);
	font-size: clamp(40px, 4.5vw, 64px);
	line-height: 1;
	text-transform: uppercase;
	color: var(--ac-ink);
}

.ac-faq-cta .ac-btn {
	width: auto;
}

/* --------------------------------------------------------------------------
   23. Página Depoimentos
   -------------------------------------------------------------------------- */
.ac-testimonials-hero {
	padding: clamp(154px, 13.4vw, 184px) clamp(34px, 7vw, 96px) clamp(60px, 6.5vw, 94px);
	background-image: url('../images/reference/509eb96920feaeb6e74779d6b38b13d0.jpg');
	background-position: center;
	background-size: cover;
	background-color: var(--ac-bg);
}

.ac-testimonials-hero .ac-page__title {
	font-size: clamp(36px, 4.3vw, 62px);
	margin-bottom: 16px;
}

.ac-testimonials-hero p {
	font-size: clamp(16px, 1.5vw, 20px);
}

.ac-testimonials-hero__grid {
	display: grid;
	grid-template-columns: 1fr minmax(300px, 420px);
	align-items: center;
	gap: 180px;
}

.ac-testimonials-hero__arch {
	width: min(100%, 420px);
	aspect-ratio: 0.92 / 1;
	justify-self: end;
	border-radius: 999px 999px 0 0;
	overflow: hidden;
	margin: 0;
}

.ac-testimonials-hero__arch img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ac-testimonials-rating {
	margin: 0 0 56px;
	font-size: clamp(15px, 1.4vw, 20px);
	font-weight: 700;
	color: var(--ac-ink);
}

.ac-stars-source {
	margin: 0 0 20px;
	color: var(--ac-coral);
	font-size: 30px;
	font-weight: 800;
	letter-spacing: 4px;
	line-height: 1;
}

.ac-testimonials-hero .ac-page__quote {
	font-family: var(--ac-font-body);
	font-size: clamp(17px, 1.5vw, 21px);
	font-style: normal;
	line-height: 1.35;
	text-transform: none;
	margin: 0 0 28px;
}

.ac-testimonial-person {
	display: flex;
	align-items: center;
	gap: 16px;
}

.ac-testimonial-initials {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--ac-coral);
	color: #fff;
	font-family: var(--ac-font-detail);
	font-size: 16px;
	font-weight: 700;
	flex-shrink: 0;
	margin: 0;
}

.ac-testimonial-person__info {
	display: grid;
	gap: 0;
}

.ac-testimonial-person__name {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--ac-ink);
}

.ac-testimonial-person__role {
	margin: 0;
	font-size: 14px;
	opacity: 0.75;
	color: var(--ac-ink);
}

.ac-test-grid-section {
	padding: clamp(56px, 7vw, 96px) clamp(20px, 4vw, 48px);
	background: var(--ac-bg);
}

.ac-test-grid-section__title {
	margin: 0 auto 80px;
	max-width: 800px;
	font-family: var(--ac-font-heading);
	font-size: clamp(26px, 3.2vw, 46px);
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
	text-align: center;
	color: var(--ac-ink);
}

.ac-test-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: clamp(16px, 2vw, 24px);
	row-gap: 40px;
}

.ac-test-card {
	position: relative;
	padding: clamp(24px, 3vw, 40px);
	padding-top: 40px;
	background: url('../images/reference/dda73183fc444cbb2d1295118783c9a1.jpg') center / cover no-repeat;
	display: flex;
	flex-direction: column;
	min-height: 300px;
}

.ac-test-card::before {
	content: '\201C';
	position: absolute;
	top: -10px;
	left: clamp(24px, 3vw, 40px);
	font-family: var(--ac-font-heading);
	font-size: 135px;
	font-weight: 700;
	line-height: 0.9;
	color: var(--ac-coral);
}

.ac-test-card__quote {
	flex: 1;
	display: flex;
	align-items: center;
	margin: 0 0 24px;
	font-size: clamp(14px, 1.2vw, 16px);
	line-height: 1.65;
	color: var(--ac-ink);
}

.ac-test-card__person {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ac-test-card__avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0;
	flex-shrink: 0;
}

.ac-test-card__avatar img {
	width: 46px;
	height: 46px;
	object-fit: cover;
	display: block;
}

.ac-test-card__name {
	margin: 0;
	font-family: var(--ac-font-detail);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--ac-ink);
}

.ac-testimonial-cta {
	display: grid;
	justify-items: center;
	gap: 24px;
	margin-top: clamp(48px, 6vw, 80px);
	text-align: center;
}

.ac-testimonial-cta__heading {
	margin: 0;
	font-family: var(--ac-font-heading);
	font-size: clamp(40px, 4.5vw, 64px);
	line-height: 1;
	text-transform: uppercase;
	color: var(--ac-ink);
}

.ac-testimonial-cta .ac-btn {
	width: auto;
}

/* --------------------------------------------------------------------------
   24. Página Contato
   -------------------------------------------------------------------------- */
.ac-contact-page {
	padding: clamp(154px, 13.4vw, 184px) clamp(34px, 7vw, 96px) clamp(60px, 6.5vw, 94px);
}

.ac-contact-page__title {
	font-size: clamp(36px, 4.3vw, 62px);
	margin-bottom: 16px;
}

.ac-contact-subtitle {
	margin: 0 0 36px;
	font-size: clamp(15px, 1.3vw, 18px);
	line-height: 1.6;
}

.ac-contact-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1fr);
	align-items: stretch;
	gap: clamp(28px, 5vw, 76px);
}

.ac-contact-items {
	display: grid;
	gap: 28px;
}

.ac-contact-item {
	display: flex;
	align-items: center;
	gap: 20px;
}

.ac-contact-item__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	min-width: 68px;
	border-radius: 12px;
	background: var(--ac-coral);
	padding: 16px;
	box-sizing: border-box;
}

.ac-contact-item__icon svg {
	width: 100%;
	height: 100%;
	fill: #fff;
	display: block;
}

.ac-contact-item__text {
	display: grid;
	gap: 4px;
	align-content: start;
	flex: 1;
	min-width: 0;
}

.ac-contact-item__label {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ac-ink);
}

.ac-contact-item__value {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	opacity: 0.75;
	color: var(--ac-ink);
}

/* Formulário de contato */
.ac-contact-form {
	padding: clamp(28px, 4vw, 48px);
	background: var(--ac-white);
	border-radius: 8px;
	min-height: 100%;
}

.ac-contact-form .ac-field {
	display: grid;
	gap: 6px;
	margin: 0 0 18px;
}

.ac-contact-form label {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--ac-ink);
}

.ac-contact-form input[type="text"],
.ac-contact-form input[type="email"],
.ac-contact-form input[type="tel"],
.ac-contact-form input[type="url"],
.ac-contact-form input[type="number"],
.ac-contact-form select,
.ac-contact-form textarea {
	width: 100%;
	padding: 12px 16px;
	font-family: var(--ac-font-body);
	font-size: 15px;
	font-weight: 300;
	color: var(--ac-ink);
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(91, 85, 80, 0.22);
	border-radius: 6px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
	appearance: none;
	-webkit-appearance: none;
}

.ac-contact-form textarea {
	min-height: 140px;
	resize: vertical;
	line-height: 1.6;
}

.ac-contact-form input:focus,
.ac-contact-form select:focus,
.ac-contact-form textarea:focus {
	border-color: var(--ac-coral);
	box-shadow: 0 0 0 3px rgba(196, 130, 110, 0.12);
}

.ac-contact-form .ac-btn {
	width: auto;
	min-height: 56px;
}

/* --------------------------------------------------------------------------
   24b. Widgets adicionais
   -------------------------------------------------------------------------- */
/* Cabeçalho de página (widget) */
.ac-page-header {
	padding: clamp(154px, 13.4vw, 184px) clamp(34px, 7vw, 96px) clamp(56px, 7vw, 96px);
}

.ac-page-header .ac-page__script--center {
	text-align: center;
}

/* Bloco de contato (widget) — sem o grande espaçamento do topo */
.ac-contact-block {
	padding: 0 0 clamp(56px, 7vw, 96px);
}

/* CTA genérico (widget) */
.ac-generic-cta {
	display: grid;
	justify-items: center;
	gap: 24px;
	padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
	text-align: center;
	background: var(--ac-bg);
}

.ac-generic-cta__title {
	margin: 0;
	font-family: var(--ac-font-heading);
	font-size: clamp(40px, 4.5vw, 64px);
	line-height: 1;
	text-transform: uppercase;
	color: var(--ac-ink);
}

.ac-generic-cta__title .ac-script {
	display: inline;
	font-size: 1.1em;
}

.ac-generic-cta .ac-btn {
	width: auto;
}

@media (max-width: 700px) {
	.ac-generic-cta__title {
		font-size: clamp(34px, 10vw, 44px);
	}
}

/* --------------------------------------------------------------------------
   25. Utilidades e animações
   -------------------------------------------------------------------------- */
.up-animation {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.4s ease-out, transform 0.4s ease-out;
	will-change: opacity, transform;
}

.up-animation.in-view {
	opacity: 1;
	transform: translateY(0);
}

/* Texto rolante */
.ac-scrolling-text {
	overflow: hidden;
	white-space: nowrap;
	position: relative;
}

.ac-scrolling-text p {
	display: inline-block;
	padding-left: 100%;
	animation: ac-scroll-left 70s linear infinite;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: var(--ac-font-heading);
	font-size: 44px;
	color: var(--ac-ink);
}

@keyframes ac-scroll-left {
	0% { transform: translateX(0); }
	100% { transform: translateX(-100%); }
}

/* Voltar ao topo */
.ac-backtop {
	display: inline-flex;
	line-height: 0;
}

.ac-backtop img {
	width: 84px;
	height: auto;
}

/* Acessibilidade */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100000;
	background: var(--ac-ink);
	color: var(--ac-cream);
	padding: 10px 16px;
}

.skip-link:focus {
	left: 6px;
	top: 6px;
}

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 1100px) {
	.ac-testimonials__header {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.ac-products__cta__inner {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}

	.ac-footer__grid {
		grid-template-columns: 1fr;
	}

	.ac-footer__portrait {
		max-width: 402px;
		margin: 0 auto;
		justify-self: center;
	}

	.ac-testimonials-hero__grid {
		gap: 80px;
	}
}

@media (max-width: 900px) {
	.ac-hero__inner {
		min-height: clamp(620px, 100svh, 760px);
		padding-top: 178px;
		padding-bottom: 90px;
	}

	.ac-benefits__grid {
		grid-template-columns: 1fr;
		justify-content: center;
		width: min(360px, calc(100% - 72px));
		gap: 20px;
	}

	.ac-about__grid,
	.ac-cookbook__grid,
	.ac-story-grid,
	.ac-steps__grid,
	.ac-about-hero__grid,
	.ac-contact-grid {
		grid-template-columns: 1fr;
	}

	.ac-arch--medium,
	.ac-cookbook__cover {
		max-width: 360px;
		width: 100%;
		margin: 0 auto;
	}

	.ac-about__copy,
	.ac-cookbook__copy {
		justify-self: center;
		text-align: center;
	}

	.ac-about__copy .ac-section-title,
	.ac-cookbook__copy .ac-section-title {
		text-align: center;
	}

	.ac-about__copy .ac-btn,
	.ac-cookbook__copy .ac-btn {
		justify-self: center;
	}

	.ac-products__grid,
	.ac-testimonials__grid,
	.ac-test-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ac-gallery__grid,
	.ac-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ac-footer__bottom {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.ac-footer__nav {
		justify-content: center;
	}

	.ac-arch--footer {
		height: 520px;
	}

	.ac-stats,
	.ac-about-values {
		grid-template-columns: 1fr;
		justify-content: center;
		width: min(430px, 100%);
	}

	.ac-about-hero__arch {
		width: min(100%, 340px);
		justify-self: center;
		transform: none;
	}

	.ac-testimonials-hero__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ac-testimonials-hero__arch {
		width: min(100%, 300px);
		justify-self: center;
		order: -1;
	}
}

@media (max-width: 782px) {
	.ac-header__row {
		width: calc(100% - 36px) !important;
		gap: 12px;
	}

	.ac-header-cta {
		display: none !important;
	}

	/* --- Menu mobile: gaveta (drawer) abaixo do header --- */
	.ac-nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		padding: 0;
		border-radius: 999px;
		transition: background-color 0.2s ease, color 0.2s ease;
	}

	.ac-nav-toggle:hover {
		background: rgba(255, 255, 255, 0.12);
	}

	body:not(.home) .ac-nav-toggle:hover,
	.home .ac-header.is-solid .ac-nav-toggle:hover {
		background: rgba(91, 85, 80, 0.08);
	}

	.ac-nav-toggle svg {
		width: 28px;
		height: 28px;
	}

	body.ac-menu-open .ac-nav-toggle {
		background: rgba(91, 85, 80, 0.08);
		color: var(--ac-ink) !important;
	}

	body.ac-menu-open .ac-nav-toggle__open {
		display: none;
	}

	body.ac-menu-open .ac-nav-toggle__close {
		display: block;
	}

	/* Gaveta (drawer) */
	.ac-header__nav-wrap {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: calc(var(--ac-adminbar-h) + var(--ac-header-h));
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 90;
		background: var(--ac-cream);
		padding: 18px 28px calc(30px + env(safe-area-inset-bottom));
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-16px);
		pointer-events: none;
		transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
	}

	.ac-header__nav-wrap.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
		transition: opacity 0.3s ease, transform 0.3s ease;
	}

	/* Cabeçalho da gaveta: título + botão fechar */
	.ac-nav__drawer-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 10px;
		padding-bottom: 14px;
		border-bottom: 1px solid rgba(91, 85, 80, 0.12);
	}

	.ac-nav__drawer-title {
		font-family: var(--ac-font-detail);
		font-size: 13px;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: var(--ac-ink);
		opacity: 0.55;
	}

	.ac-nav-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		padding: 0;
		border: 0;
		border-radius: 999px;
		background: rgba(91, 85, 80, 0.08);
		color: var(--ac-ink);
		cursor: pointer;
		transition: background-color 0.2s ease, transform 0.2s ease;
	}

	.ac-nav-close:hover {
		background: rgba(91, 85, 80, 0.16);
		transform: rotate(90deg);
	}

	.ac-nav-close svg {
		width: 20px;
		height: 20px;
	}

	/* Lista do menu */
	.ac-nav {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.ac-nav > li {
		border-bottom: 1px solid rgba(91, 85, 80, 0.1);
	}

	.ac-nav a {
		display: flex;
		align-items: center;
		min-height: 56px;
		padding: 0 4px;
		font-size: 22px;
		font-weight: 300;
		line-height: 1.2;
		color: var(--ac-ink) !important;
		opacity: 0;
		transform: translateY(10px);
		transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
	}

	.ac-nav a:hover,
	.ac-nav a.is-current {
		color: var(--ac-coral) !important;
	}

	.ac-header__nav-wrap.is-open .ac-nav a {
		opacity: 1;
		transform: none;
	}

	/* Entrada escalonada dos itens */
	.ac-header__nav-wrap.is-open .ac-nav > li:nth-child(1) a { transition-delay: 0.04s; }
	.ac-header__nav-wrap.is-open .ac-nav > li:nth-child(2) a { transition-delay: 0.08s; }
	.ac-header__nav-wrap.is-open .ac-nav > li:nth-child(3) a { transition-delay: 0.12s; }
	.ac-header__nav-wrap.is-open .ac-nav > li:nth-child(4) a { transition-delay: 0.16s; }
	.ac-header__nav-wrap.is-open .ac-nav > li:nth-child(5) a { transition-delay: 0.2s; }
	.ac-header__nav-wrap.is-open .ac-nav > li:nth-child(6) a { transition-delay: 0.24s; }
	.ac-header__nav-wrap.is-open .ac-nav > li:nth-child(7) a { transition-delay: 0.28s; }

	/* Rodapé da gaveta: CTA */
	.ac-nav__footer {
		display: grid;
		gap: 14px;
		margin-top: auto;
		padding-top: 24px;
	}

	.ac-nav__footer .ac-btn {
		width: 100%;
	}

	/* Trava o scroll do body com o menu aberto */
	body.ac-menu-open {
		overflow: hidden;
	}

	.ac-hero__inner,
	.ac-hero {
		min-height: clamp(620px, 100svh, 760px);
	}

	.ac-hero__inner {
		padding: 140px 25px 90px;
	}

	.ac-hero__title {
		font-size: 56px !important;
		line-height: 1 !important;
	}

	.ac-hero__buttons {
		flex-flow: column;
	}

	.ac-hero__buttons .ac-btn {
		width: 100%;
	}

	.ac-about,
	.ac-trust,
	.ac-products,
	.ac-cookbook,
	.ac-steps,
	.ac-testimonials,
	.ac-footer {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.ac-gallery__action .ac-btn {
		min-width: 0;
	}

	.ac-gallery__instagram {
		margin-top: 32px;
	}
}

@media (max-width: 767px) {
	.ac-nav-toggle svg {
		width: 28px;
		height: 28px;
	}

	.ac-page {
		padding-top: 118px;
	}
}

@media (max-width: 700px) {
	.ac-shell,
	.ac-shell--footer {
		width: calc(100% - 36px);
		padding-inline: 0;
	}

	.ac-shell--hero {
		min-height: 620px;
		padding-top: 132px;
		padding-bottom: 70px;
	}

	.ac-hero__inner,
	.ac-hero {
		min-height: clamp(560px, 100svh, 610px);
	}

	.ac-hero__inner {
		padding: 116px 0 54px;
	}

	.ac-hero__content {
		max-width: 342px;
	}

	.ac-hero__title {
		font-size: clamp(31px, 8.9vw, 38px) !important;
		line-height: 1.03;
		margin-bottom: 18px;
	}

	.ac-hero__title .ac-script {
		font-size: 1.16em;
		margin-left: 5px;
	}

	.ac-hero__buttons {
		width: min(100%, 318px);
		margin: 0 auto;
		gap: 10px;
	}

	.ac-hero__buttons .ac-btn {
		min-height: 44px;
		padding: 11px 20px;
		font-size: 14px;
	}

	.ac-btn-row {
		flex-direction: column;
	}

	.ac-btn-row .ac-btn {
		width: 100%;
	}

	.ac-benefits {
		min-height: 0;
	}

	.ac-benefits__grid {
		grid-template-columns: 1fr;
		min-height: 0;
		padding-top: 28px;
		padding-bottom: 30px;
		gap: 18px;
	}

	.ac-benefit {
		grid-template-columns: 52px auto;
		justify-content: start;
		width: min(100%, 320px);
		margin: 0 auto;
		column-gap: 10px;
	}

	.ac-benefit__icon {
		width: 52px;
	}

	.ac-benefit__copy h3 {
		font-size: 23px;
	}

	.ac-benefit__script {
		font-size: 34px;
	}

	.ac-about,
	.ac-trust,
	.ac-products,
	.ac-cookbook,
	.ac-steps,
	.ac-testimonials,
	.ac-footer {
		padding-top: 62px;
		padding-bottom: 66px;
	}

	.ac-about {
		padding-top: 58px;
	}

	.ac-arch--medium,
	.ac-cookbook__cover {
		max-width: 300px;
	}

	.ac-about__copy,
	.ac-cookbook__copy,
	.ac-testimonials__intro {
		width: min(100%, 330px);
		justify-self: center;
		justify-items: center;
		text-align: center;
	}

	.ac-about__copy p,
	.ac-cookbook__copy p,
	.ac-banner__content p,
	.ac-step p,
	.ac-testimonials__intro p {
		font-size: 15.5px;
		line-height: 1.48;
	}

	.ac-about__copy .ac-btn,
	.ac-cookbook__copy .ac-btn {
		justify-self: center;
	}

	.ac-section-title,
	.ac-trust .ac-section-title,
	.ac-about .ac-section-title,
	.ac-cookbook .ac-section-title,
	.ac-products .ac-section-title,
	.ac-steps .ac-section-title,
	.ac-testimonials .ac-section-title,
	.ac-banner .ac-section-title {
		font-size: clamp(38px, 11.2vw, 48px);
	}

	.ac-trust .ac-section-title {
		font-size: clamp(40px, 11vw, 48px);
	}

	.ac-stats {
		grid-template-columns: 1fr;
		width: min(320px, calc(100% - 32px));
		gap: 26px;
		margin-top: 34px;
	}

	.ac-stat__value {
		font-size: clamp(68px, 18vw, 82px) !important;
		line-height: 0.92;
	}

	.ac-stat__title {
		font-size: clamp(21px, 5.8vw, 25px);
		line-height: 1.1;
		white-space: normal;
	}

	.ac-stat__copy {
		font-size: 14px;
		line-height: 1.28;
	}

	.ac-story-grid {
		width: min(326px, calc(100% - 32px));
		grid-template-columns: 1fr;
		gap: 24px;
		margin-top: 36px;
	}

	.ac-story-card {
		min-height: 0;
	}

	.ac-story-card__inner {
		padding: 32px 22px;
	}

	.ac-story-card__title {
		font-size: 44px;
	}

	.ac-products {
		padding-top: 72px;
		padding-bottom: 68px;
	}

	.ac-products__grid {
		grid-template-columns: 1fr;
		gap: 46px;
		margin-top: 42px;
	}

	.ac-product-card {
		width: min(100%, 340px);
		margin-inline: auto;
	}

	.ac-product-card__image {
		width: min(100%, 330px);
	}

	.ac-product-card h3 {
		font-size: 24px;
	}

	.ac-product-card p {
		font-size: 15px;
		line-height: 1.4;
	}

	.ac-products__cta {
		width: min(374px, calc(100% - 16px));
		min-height: 164px;
		margin-top: 48px;
	}

	.ac-products__cta__inner {
		min-height: 164px;
		padding: 24px 16px;
		gap: 18px;
	}

	.ac-products__cta h3 {
		width: 100%;
		font-size: clamp(20px, 5.5vw, 23px);
		line-height: 1.08;
	}

	.ac-products__cta .ac-btn {
		min-width: 0;
		width: 100%;
	}

	.ac-divider img {
		height: 210px;
	}

	.ac-cookbook__grid {
		gap: 42px;
	}

	.ac-cookbook__copy h3 {
		font-size: 18px !important;
	}

	.ac-steps__subtitle {
		font-size: 44px;
	}

	.ac-steps__grid {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-top: 32px;
	}

	.ac-step__number {
		margin-bottom: 8px;
		font-size: 42px !important;
		transform: none;
	}

	.ac-step h3 {
		margin-top: 4px;
		margin-bottom: 8px;
		font-size: 24px;
	}

	.ac-steps__actions {
		margin-top: 38px;
	}

	.ac-steps__actions .ac-btn {
		width: auto;
		min-width: 178px;
	}

	.ac-banner {
		min-height: 540px;
	}

	.ac-banner::after {
		background: rgba(126, 75, 80, 0.68);
	}

	.ac-banner__inner {
		padding: 76px 0;
	}

	.ac-banner__content {
		width: min(100%, 330px);
	}

	.ac-testimonials__header {
		gap: 18px;
		margin-bottom: 28px;
	}

	.ac-testimonials__intro .ac-section-title {
		text-align: center;
	}

	.ac-testimonials__grid {
		grid-template-columns: 1fr;
		width: min(100%, 330px);
		margin-inline: auto;
		gap: 18px;
	}

	.ac-testimonial-card__inner {
		padding: 22px 20px;
	}

	.ac-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ac-gallery__action .ac-btn {
		width: min(310px, calc(100% - 32px));
		min-width: 0;
	}

	.ac-footer {
		padding-top: 42px;
		padding-bottom: 38px;
	}

	.ac-footer__logo-row {
		margin-bottom: 28px;
	}

	.ac-footer__grid {
		gap: 38px;
		margin-bottom: 38px;
	}

	.ac-footer__content .ac-section-title {
		font-size: clamp(36px, 10.8vw, 46px);
	}

	.ac-footer__content .ac-btn {
		width: min(100%, 300px);
		margin-top: 24px;
		margin-bottom: 24px;
	}

	.ac-footer__details {
		gap: 18px;
	}

	.ac-footer__detail a,
	.ac-footer__detail p {
		font-size: clamp(20px, 6vw, 24px);
	}

	.ac-footer__portrait {
		width: min(100%, 300px);
		gap: 14px;
		justify-self: center;
	}

	.ac-arch--footer {
		max-width: 300px;
		height: 420px;
	}

	.ac-footer__bottom {
		gap: 18px;
		margin-top: 24px;
	}

	.ac-footer__top img {
		width: 74px;
	}

	.ac-footer__nav {
		gap: 12px 22px;
	}

	.ac-shell--footer {
		width: calc(100% - 32px);
	}

	/* Menu / páginas internas */
	.ac-menu-row {
		grid-template-columns: 1fr auto;
		gap: 12px 16px;
	}

	.ac-menu-row__arch {
		grid-column: 1 / -1;
		width: 200px;
		margin: 0 auto !important;
		border-radius: 100px 100px 0 0;
	}

	.ac-menu-row__arch img {
		width: 200px;
		height: 200px;
	}

	.ac-menu-row__name {
		grid-column: 1 / -1;
	}

	.ac-menu-row__desc {
		grid-column: 1;
		grid-row: auto;
		font-size: 15px;
		text-align: left;
		align-self: center;
	}

	.ac-row-arrow {
		grid-column: 2;
		align-self: center;
	}

	.ac-row-arrow .ac-btn {
		width: 52px;
		min-width: 52px;
		height: 52px;
		min-height: 52px;
	}

	.ac-gallery-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.ac-gallery-grid .ac-page__arch {
		width: 75%;
		margin-inline: auto;
	}

	.ac-test-grid {
		grid-template-columns: 1fr;
		row-gap: 24px;
	}

	.ac-test-grid-section__title {
		font-size: clamp(20px, 5vw, 30px);
		margin-bottom: 40px;
	}

	.ac-test-card {
		padding: 32px 24px 24px;
		padding-top: 32px;
		min-height: 260px;
	}

	.ac-test-card::before {
		font-size: 100px;
		top: -8px;
	}

	.ac-test-card__quote {
		font-size: 14px;
	}

	.ac-contact-page {
		padding: 135px 22px 64px;
	}

	.ac-contact-grid {
		gap: 30px;
	}

	.ac-about-why {
		min-height: 0;
		padding: 58px 0 64px;
	}

	.ac-about-why__shell,
	.ac-about-celebration__shell {
		width: calc(100% - 40px);
	}

	.ac-about-why__title,
	.ac-about-celebration__title {
		font-size: clamp(39px, 11.2vw, 50px);
	}

	.ac-about-values {
		gap: 42px;
		margin-top: 42px;
	}

	.ac-about-value h3 {
		font-size: clamp(26px, 8vw, 30px);
	}

	.ac-about-value h3 span {
		font-size: clamp(37px, 11vw, 42px);
	}

	.ac-about-years,
	.ac-about-years__inner {
		min-height: 430px !important;
	}

	.ac-about-years__inner {
		justify-content: center;
		width: calc(100% - 44px);
	}

	.ac-about-years__content {
		justify-items: center;
		width: min(363px, 100%);
		text-align: center;
	}

	.ac-about-years__title {
		font-size: clamp(50px, 15vw, 68px);
	}

	.ac-about-years__title span {
		font-size: clamp(54px, 16vw, 72px);
	}

	.ac-about-years p {
		font-size: clamp(17px, 5vw, 20px);
	}

	.ac-about-celebration {
		padding: 66px 0 76px;
	}

	.ac-about-celebration__title span {
		font-size: clamp(46px, 13vw, 58px);
	}

	.ac-about-checkitem {
		grid-template-columns: 52px minmax(0, 1fr);
		gap: 16px;
		min-height: 104px;
		padding: 16px 22px;
	}

	.ac-about-checkitem__icon {
		width: 52px;
		height: 52px;
	}

	.ac-about-checkitem p {
		font-size: clamp(18px, 5.4vw, 21.3335px);
	}

	.ac-about-celebration__image {
		position: relative;
		top: auto;
		right: auto;
		width: min(100%, 310px);
		margin: 30px auto 0;
	}

	.ac-about-celebration__body {
		display: grid;
		justify-items: center;
		gap: 34px;
		min-height: 0;
		margin-top: 38px;
	}

	.ac-about-checklist {
		width: min(533px, 100%);
		padding-top: 0;
	}

	.ac-about-order-cta {
		margin-top: 48px;
	}

	.ac-about-order-cta__title {
		font-size: clamp(36px, 10vw, 48px);
	}

	.ac-about-order-cta__title span {
		display: block;
		margin: 2px 0 0;
		font-size: clamp(48px, 14vw, 62px);
		transform: none;
	}
}

@media (max-width: 640px) {
	/* .ac-header__nav-wrap{
		display: none;
	} */

	.ac-page {
		padding-top: 104px;
	}

	.ac-source-page {
		padding-top: 104px;
	}

	.ac-page__title {
		font-size: clamp(38px, 13vw, 56px);
	}

	.ac-page__script {
		font-size: clamp(56px, 18vw, 84px);
	}
}

@media (max-width: 420px) {
	.ac-footer__bottom p,
	.ac-footer__nav a {
		font-size: 13px;
	}

	.ac-footer__title .ac-script {
		display: block;
		margin-top: 4px;
		margin-left: 0;
	}
}

@media (max-width: 360px) {
	.ac-footer__title {
		font-size: 30px !important;
		line-height: 1.02;
	}
}

/* ==========================================================================
   Elementor — ajustes de integração
   ========================================================================== */
.elementor-widget-container > .ac-section,
.elementor-widget-container > .ac-hero,
.elementor-widget-container > .ac-footer,
.elementor-widget-container > .ac-banner {
	margin: 0;
}

/* Evita margens padrão do Elementor nos nossos blocos */
.elementor .ac-section,
.elementor .ac-hero,
.elementor .ac-banner,
.elementor .ac-footer,
.elementor .ac-page,
.elementor .ac-gallery {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

/* Imagens de fundo que devem preencher o bloco inteiro: a regra global do
   Elementor (img { height: auto; }) tem especificidade maior que a nossa
   base, então reforçamos o preenchimento com um seletor mais específico. */
.elementor .ac-hero__media,
.elementor .ac-benefits__media,
.elementor .ac-story-card__media,
.elementor .ac-products__cta__media,
.elementor .ac-banner__media,
.elementor .ac-testimonial-card__media,
.elementor .ac-about-years__media {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

/* Blocos do tema definem a própria altura (ex.: .ac-hero tem min-height,
   .ac-benefits é uma faixa compacta). Se a seção Elementor tiver "altura
   cheia" (100vh) ou centralização vertical, anula para não sobrar espaço
   vazio entre um bloco e o próximo. */
.elementor-section:has(> .elementor-container > .elementor-column > .elementor-widget-wrap > .elementor-widget > .elementor-widget-container > .ac-section) > .elementor-container {
	min-height: 0 !important;
	align-items: stretch !important;
}
/* --------------------------------------------------------------------------
   Splash screen — animação de entrada (replicada de bolosdaobreira.com.br)
   -------------------------------------------------------------------------- */
.splash {
        position: fixed;
        inset: 0;
        z-index: 9999;
        overflow: hidden;
        pointer-events: none;
}

.splash__panel {
        position: absolute;
        top: 0;
        height: 100%;
        background: #3a3a3a;
        z-index: 20;
}

.splash__panel--left {
        left: 0;
        width: calc(50% + 0.5px);
        transform: translateX(0);
        transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

.splash__panel--right {
        right: 0;
        width: calc(50% + 0.5px);
        transform: translateX(0);
        transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

.splash.is-split .splash__panel--left {
        transform: translateX(-100%);
}

.splash.is-split .splash__panel--right {
        transform: translateX(100%);
}

.splash__content {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 30;
}

.splash__inner {
        text-align: center;
        opacity: 0;
        transform: scale(0.85);
        transition: opacity 0.6s cubic-bezier(0.25, 0.4, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.4, 0.25, 1);
}

.splash.is-logo .splash__inner {
        opacity: 1;
        transform: scale(1);
}

.splash.is-split .splash__inner {
        opacity: 0;
        transform: scale(0.5) translateY(-30px);
}

.splash__logo {
        display: block;
        height: 72px;
        width: auto;
        margin: 0 auto 20px;
        filter: brightness(0) invert(1);
}

.splash__nome {
        font-family: var(--ac-font-heading);
        color: #fff;
        font-size: 1.6rem;
        font-weight: 700;
        margin: 0 0 6px;
        letter-spacing: 0.02em;
}

.splash__tagline {
        font-family: var(--ac-font-ui);
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.8rem;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        font-weight: 300;
        margin: 0;
}

.splash__dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 36px;
}

.splash__dot {
        display: block;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--ac-coral); /* vermelho */
        animation: ac-splash-pulse 1.2s ease-in-out infinite;
}

.splash__dot--2 {
        background: #ef9a52; /* laranja */
        animation-delay: 0.2s;
}

.splash__dot--3 {
        background: var(--ac-green); /* verde */
        animation-delay: 0.4s;
}

.splash.is-gone {
        display: none;
}

@keyframes ac-splash-pulse {
        0%, 100% {
                opacity: 0.25;
                transform: scale(0.8);
        }
        50% {
                opacity: 1;
                transform: scale(1.2);
        }
}

@media (min-width: 768px) {
        .splash__logo {
                height: 96px;
        }
        .splash__nome {
                font-size: 2rem;
        }
        .splash__tagline {
                font-size: 0.875rem;
        }
}