/*
Theme Name: Menu do Dia
Theme URI: https://menuodia.com.br
Author: Menu do Dia
Author URI: https://menuodia.com.br
Description: Cardápios personalizados para sua família — Landing Page Theme
Version: 1.0.5
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: menu-do-dia
*/

/* ─────────────────────── Reset ─────────────────────── */

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

html {
	color-scheme: light;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	hanging-punctuation: first allow-end last;
	scroll-behavior: smooth;
}

/* ─────────────────────── Tokens ─────────────────────── */

:root {
	--heading: "Montserrat", sans-serif;
	--text-family: "Nunito Sans", sans-serif;

	--white: #fefefe;
	--cream: oklch(98% 0.016 87);
	--cream-2: oklch(96% 0.024 83);

	--orange: oklch(63% 0.14 50);

	--green: oklch(65% 0.101 140);
	--green-dark: oklch(55% 0.099 140);
	--green-deep: oklch(44% 0.088 140);
	--green-forest: oklch(43% 0.099 141);

	--green-soft: oklch(94% 0.03 140);
	--orange-soft: oklch(95% 0.03 75);
	--shadow-book:
		0 24px 50px -12px oklch(20% 0.04 70 / 0.35),
		0 6px 14px -6px oklch(20% 0.04 70 / 0.25);

	--text: oklch(19% 0.01 68);
	--text-heading: oklch(25% 0.01 70);
	--text-muted: oklch(43% 0.012 71);

	--line: oklch(88% 0.024 79);

	letter-spacing: 0.18px;
	color: var(--text);
	font: 18px/1.45 var(--text-family);
	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	@media (max-width: 1024px) {
		font-size: 16px;
	}
}

/* ─────────────────────── Base ─────────────────────── */

body {
	background-color: var(--cream);
	background-image: radial-gradient(
		oklch(88% 0.02 80 / 0.45) 0.5px,
		transparent 0.5px
	);
	background-size: 10px 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--heading);
}

.page {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ─────────────────────── Header ─────────────────────── */

header.site {
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 12px 0;
	background: var(--white);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid oklch(88% 0.024 79 / 0.7);
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.logo {
	display: flex;
	align-items: center;
}
.logo img {
	height: 68px;
	width: auto;
	display: block;
}
.nav-links {
	display: flex;
	gap: 28px;
	list-style: none;
	align-items: center;
}
.nav-links a {
	color: var(--text);
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
	transition: color 0.15s ease;
}
.nav-links a:hover {
	color: var(--orange);
}
.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 8px;
	color: var(--text);
	transition:
		color 0.15s ease,
		background 0.15s ease;
}
.nav-toggle:hover {
	background: oklch(88% 0.024 79 / 0.4);
	color: var(--orange);
}
.nav-toggle:focus-visible {
	outline: 2px solid var(--orange);
	outline-offset: 2px;
}
.nav-toggle-checkbox {
	display: none;
}
.nav-toggle .icon-close {
	display: none;
}
.nav-toggle-checkbox:checked ~ .page .nav-toggle .icon-menu {
	display: none;
}
.nav-toggle-checkbox:checked ~ .page .nav-toggle .icon-close {
	display: block;
}
.nav-mobile {
	display: none;
}
.nav-mobile-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}
.nav-mobile-links a {
	display: block;
	padding: 14px 0;
	color: var(--text);
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	border-bottom: 1px solid var(--line);
	transition: color 0.15s ease;
}
.nav-mobile-links a:hover {
	color: var(--orange);
}
.nav-mobile .btn-green {
	display: block;
	text-align: center;
	margin: 16px 0;
}
.btn {
	display: inline-block;
	padding: 11px 22px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
	border: none;
	cursor: pointer;
	white-space: nowrap;
	transition:
		transform 0.1s ease,
		box-shadow 0.15s ease,
		background 0.15s ease;
}
.btn-green {
	background: var(--green);
	color: var(--white);
	padding: 11px 24px;
	box-shadow: 0 4px 0 var(--green-dark);
}
.btn-green:hover {
	background: var(--green-dark);
	box-shadow: 0 2px 0 var(--green-deep);
	transform: translateY(2px);
}

/* ─────────────────────── Hero ─────────────────────── */

.hero {
	margin-top: 40px;
	border-radius: 18px;
	padding: 40px;
	display: block;
	position: relative;
	overflow: hidden;
	min-height: 460px;
	background-color: var(--cream-2);
	display: flex;
	align-items: center;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		to right,
		oklch(98% 0.016 87 / 0.95) 0%,
		oklch(98% 0.016 87 / 0.75) 38%,
		oklch(98% 0.016 87 / 0) 62%
	);
}
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
	display: block;
}
.hero-copy {
	position: relative;
	z-index: 2;
}
.hero h1 {
	font-weight: 700;
	font-size: 46px;
	line-height: 1.08;
	color: var(--text-heading);
	letter-spacing: -0.5px;
}
.hero .subtitle {
	margin-top: 20px;
	font-size: 18px;
	color: var(--text);
	line-height: 1.55;
}
.hero-cta-row {
	margin-top: 32px;
}
.hero .btn-green {
	padding: 14px 30px;
	font-size: 16px;
}

/* ─────────────────────── Section common ─────────────────────── */

section {
	padding-block: 40px;
}
.section-title {
	width: 100%;
	text-align: center;
	font-weight: 700;
	font-size: 28px;
	color: var(--text-heading);
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 4px 18px;
}

.accent {
	position: relative;
	display: inline-block;
	font-style: italic;
	font-weight: 700;
	font-size: 1.15em;
	color: var(--orange);
	padding: 0 2px;
}
.accent::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 8px;
	/* stroke hex must match --orange; CSS vars can't be used in data URIs */
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10' preserveAspectRatio='none'><path d='M2 6 Q 30 1, 60 5 T 118 4' fill='none' stroke='%23e07a2e' stroke-width='2.5' stroke-linecap='round'/></svg>")
		no-repeat center / 100% 100%;
}

.section-title.line-through {
	display: flex;
	align-items: center;
	text-align: center;
}
.section-title.line-through::before,
.section-title.line-through::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--line);
}
.section-title.line-through span {
	padding: 0 15px;
}

/* ─────────────────────── Benefits ─────────────────────── */

#beneficios {
	position: relative;
}
#beneficios h2 {
	margin: 0 0 24px;
}
#beneficios .benefits-band {
	background-image: linear-gradient(
		to right bottom,
		var(--cream),
		var(--cream-2),
		var(--cream)
	);
	border-radius: 16px;
	position: relative;
	overflow: hidden;
}
#beneficios .section-title {
	color: var(--green-forest);
}
.benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	position: relative;
	z-index: 2;
}
.benefit {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 16px 22px;
	text-align: center;
	position: relative;
}
.benefit + .benefit::before {
	content: "";
	position: absolute;
	left: 0;
	top: 18%;
	bottom: 18%;
	width: 1px;
	background: oklch(62% 0.07 65 / 0.2);
}
.benefit .icon {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: linear-gradient(135deg, oklch(72% 0.1 59), oklch(69% 0.12 52));
	color: var(--white);
	display: grid;
	place-items: center;
	margin: 0 auto 16px;
}
.benefit .icon svg {
	width: 28px;
	height: 28px;
	stroke: var(--white);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.benefit h3 {
	font-weight: 700;
	font-size: 18px;
	color: var(--green-forest);
	letter-spacing: 0.2px;
	margin-bottom: 6px;
}
.benefit p {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.5;
}

/* ─────────────────────── Testimonials ─────────────────────── */

#testimonials .section-title {
	color: var(--green-forest);
}

.t-featured {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	max-width: 680px;
	margin: 0 auto 48px;
	text-align: center;
}

.t-featured-quote {
	font-size: 22px;
	line-height: 1.7;
	color: var(--text-heading);
	font-style: italic;
	font-weight: 400;
	text-wrap: pretty;
}

.t-featured-person {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.t-featured-av {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.t-featured-name {
	font-family: var(--heading);
	font-size: 13px;
	font-weight: 700;
	color: var(--text-heading);
	letter-spacing: 0.3px;
}

.t-divider {
	width: 100%;
	height: 1px;
	background: var(--line);
	margin-bottom: 48px;
}

.t-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.t-col {
	padding: 0 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.t-col + .t-col {
	border-left: 1px solid var(--line);
}

.t-col-quote {
	font-size: 15px;
	line-height: 1.75;
	color: var(--text);
	font-style: italic;
	flex: 1;
	text-wrap: pretty;
}

.t-col-person {
	display: flex;
	align-items: center;
	gap: 10px;
}

.t-col-av {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.t-col-name {
	font-family: var(--heading);
	font-size: 12px;
	font-weight: 700;
	color: var(--text-heading);
	letter-spacing: 0.2px;
}

.t-col-loc {
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 2px;
}

/* ─────────────────────── Como Funciona ─────────────────────── */

#como-funciona {
	position: relative;
}
#como-funciona h2 {
	margin: 0 0 32px;
	color: var(--green-forest);
}
#como-funciona .steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	position: relative;
	z-index: 2;
}
#como-funciona .step {
	background: var(--cream-2);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 24px 28px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	text-align: left;
	position: relative;
	overflow: hidden;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}
#como-funciona .step:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px oklch(10% 0.01 70 / 0.07);
}
#como-funciona .icon.num {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, oklch(72% 0.1 59), oklch(69% 0.12 52));
	color: var(--white);
	font-size: 22px;
	font-weight: 800;
	font-family: var(--heading);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	box-shadow: 0 4px 12px oklch(70% 0.11 58 / 0.4);
}
#como-funciona .step-text h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--green-forest);
	margin: 0 0 4px;
}
#como-funciona .step-text p {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.5;
	margin: 0;
}

/* ─────────────────────── CTA bar ─────────────────────── */

.cta-bar {
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 36px 40px;
	margin: 30px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.cta-bar h2 {
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 4px;
	color: var(--green-deep);
}
.cta-bar p {
	font-size: 15px;
	color: var(--text-muted);
	margin: 0;
}

/* ─────────────────────── Modal ─────────────────────── */

.modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: oklch(19% 0.01 68 / 0.45);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.modal-overlay[hidden] {
	display: none;
}
.modal-card {
	background: var(--white);
	border-radius: 18px;
	padding: 48px 40px 40px;
	max-width: 420px;
	width: 100%;
	text-align: center;
	position: relative;
	box-shadow:
		0 24px 60px -12px oklch(20% 0.04 70 / 0.28),
		0 8px 20px -6px oklch(20% 0.04 70 / 0.12);
}
.modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--text-muted);
	padding: 6px;
	border-radius: 8px;
	display: grid;
	place-items: center;
	transition:
		color 0.15s ease,
		background 0.15s ease;
}
.modal-close:hover {
	color: var(--text);
	background: var(--cream-2);
}
.modal-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--green-soft);
	color: var(--green-forest);
	display: grid;
	place-items: center;
	margin: 0 auto 20px;
}
.modal-card h2 {
	font-family: var(--heading);
	font-size: 24px;
	font-weight: 700;
	color: var(--text-heading);
	margin-bottom: 10px;
}
.modal-card p {
	font-size: 16px;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 28px;
}
.modal-btn-close {
	width: 100%;
	padding: 14px;
	font-size: 15px;
}

/* ─────────────────────── Footer ─────────────────────── */

footer.foot {
	margin-top: 48px;
	border-top: 1px solid var(--line);
	text-align: center;
	padding: 24px 0;
	color: var(--text-muted);
	background-color: var(--cream);
}

/* ─────────────────────── Focus & A11y ─────────────────────── */

:focus-visible {
	outline: 2px solid var(--orange);
	outline-offset: 3px;
	border-radius: 3px;
}

.btn:focus-visible {
	outline: 2px solid var(--orange);
	outline-offset: 4px;
}

.nav-links a:focus-visible {
	outline: 2px solid var(--orange);
	outline-offset: 4px;
	border-radius: 3px;
}

/* ─────────────────────── Ebook page ─────────────────────── */

.ebook {
	position: relative;
	aspect-ratio: 3 / 4;
	border-radius: 4px 10px 10px 4px;
	overflow: hidden;
	background-image: url("./assets/capa_ebook_menu_do_dia.png");
	background-size: cover;
	background-position: center;
	box-shadow: var(--shadow-book);
	isolation: isolate;
}
.ebook-inner,
.ebook-foot {
	display: none;
}
.ebook::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 14px;
	background: linear-gradient(
		90deg,
		oklch(34% 0.06 142) 0%,
		oklch(34% 0.06 142 / 0) 100%
	);
	z-index: 2;
}
.ebook::after {
	content: "";
	position: absolute;
	right: -2px;
	top: 6px;
	bottom: 6px;
	width: 4px;
	background: linear-gradient(90deg, oklch(94% 0.015 87), oklch(82% 0.02 80));
	border-radius: 0 2px 2px 0;
	z-index: 2;
}
.ebook-inner {
	position: absolute;
	inset: 0;
	padding: 22px 22px 22px 32px;
	display: flex;
	flex-direction: column;
	background-image:
		radial-gradient(
			120% 60% at 80% 110%,
			oklch(70% 0.12 60 / 0.35),
			transparent 60%
		),
		radial-gradient(
			80% 50% at 0% 0%,
			oklch(80% 0.1 100 / 0.15),
			transparent 60%
		);
}

.ebook--tilt-left {
	transform: rotate(-4deg);
}

.ebook-hero {
	background: var(--cream-2);
	border-radius: 18px;
	margin-top: 40px;
	padding: 56px;
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 64px;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.ebook-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: radial-gradient(
		oklch(88% 0.02 80 / 0.55) 0.8px,
		transparent 0.8px
	);
	background-size: 14px 14px;
	mask-image: radial-gradient(120% 80% at 90% 0%, #000 0%, transparent 60%);
	-webkit-mask-image: radial-gradient(
		120% 80% at 90% 0%,
		#000 0%,
		transparent 60%
	);
}
.hero-book {
	position: relative;
	z-index: 1;
}
.hero-book .ebook {
	width: 100%;
}
.hero-copy {
	position: relative;
	z-index: 2;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--green-forest);
	font-family: var(--heading);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.eyebrow::before {
	content: "";
	width: 24px;
	height: 2px;
	background: var(--green-forest);
	border-radius: 2px;
}
.ebook-hero h1 {
	color: var(--text-heading);
	font-size: 44px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.5px;
	text-wrap: pretty;
}
.ebook-hero .lede {
	color: var(--text-muted);
	font-size: 18px;
	line-height: 1.6;
	margin-top: 18px;
	max-width: 48ch;
}
.hero-list {
	margin-top: 26px;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 28px;
	padding: 0;
}
.hero-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--text);
	font-size: 15px;
	line-height: 1.45;
}
.hero-list svg {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: var(--green-dark);
	margin-top: 1px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.hero-cta {
	margin-top: 32px;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	font-family: var(--heading);
}
.price .strike {
	color: var(--text-muted);
	font-size: 16px;
	text-decoration: line-through;
	text-decoration-color: var(--orange);
}
.price .now {
	color: var(--text-heading);
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.5px;
}
.price .currency {
	font-size: 18px;
	font-weight: 700;
}
.hero-trust {
	color: var(--text-muted);
	font-size: 13px;
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.hero-trust svg {
	width: 14px;
	height: 14px;
}

.audience {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 32px;
}
.audience .card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 28px 24px;
}
.audience .card h3 {
	font-family: var(--heading);
	color: var(--text-heading);
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 6px;
}
.audience .card p {
	color: var(--text-muted);
	font-size: 14.5px;
	line-height: 1.55;
}

#conteudo {
	background: var(--cream-2);
	border-radius: 18px;
	padding: 56px 48px;
}
#conteudo .section-title {
	color: var(--green-forest);
}
.chapters {
	margin-top: 36px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 24px;
}
.chapter {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 18px 22px;
	display: flex;
	align-items: center;
	gap: 18px;
	transition:
		transform 0.15s,
		box-shadow 0.15s;
}
.chapter:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px oklch(10% 0.01 70 / 0.06);
}
.chapter .num {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: linear-gradient(135deg, oklch(72% 0.1 59), oklch(69% 0.12 52));
	color: var(--white);
	font-family: var(--heading);
	font-weight: 800;
	font-size: 14px;
	display: grid;
	place-items: center;
	box-shadow: 0 4px 10px oklch(70% 0.11 58 / 0.35);
}
.chapter h3 {
	font-family: var(--heading);
	color: var(--text-heading);
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 2px;
}
.chapter p {
	color: var(--text-muted);
	font-size: 13.5px;
	line-height: 1.45;
}

.preview {
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 56px;
	align-items: center;
}
.preview-copy h2 {
	color: var(--text-heading);
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -0.3px;
	line-height: 1.15;
}
.preview-copy p {
	color: var(--text-muted);
	font-size: 16px;
	line-height: 1.6;
	margin-top: 14px;
}
.preview-copy .tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--orange-soft);
	color: oklch(45% 0.12 50);
	padding: 5px 12px;
	border-radius: 999px;
	font-family: var(--heading);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.preview-art {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--cream-2);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 28px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.preview-page {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 14px 14px;
	box-shadow: 0 4px 12px oklch(20% 0.04 70 / 0.06);
	display: flex;
	flex-direction: column;
	gap: 7px;
	overflow: hidden;
}
.pp-title {
	font-family: var(--heading);
	color: var(--green-forest);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.pp-h {
	font-family: var(--heading);
	color: var(--text-heading);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.15;
}
.pp-line {
	height: 4px;
	background: var(--cream-2);
	border-radius: 2px;
}
.pp-line.short {
	width: 65%;
}
.pp-line.med {
	width: 80%;
}
.pp-img {
	margin-top: 4px;
	aspect-ratio: 16/9;
	background-image: url("./assets/plate-1100w.webp");
	background-size: cover;
	background-position: center;
	border-radius: 4px;
}
.pp-rows {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 2px;
}
.pp-row {
	display: flex;
	gap: 6px;
	align-items: center;
}
.pp-row::before {
	content: "";
	flex-shrink: 0;
	width: 5px;
	height: 5px;
	background: var(--orange);
	border-radius: 50%;
}
.pp-foot {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	font-family: var(--heading);
	font-size: 9px;
	color: var(--text-muted);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.pricing {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 0;
	overflow: hidden;
	box-shadow: 0 12px 30px -10px oklch(20% 0.04 70 / 0.12);
	max-width: 760px;
	margin: 0 auto;
}
.pricing-head {
	background: var(--green-forest);
	color: var(--white);
	padding: 14px 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--heading);
}
.pricing-head .name {
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
.pricing-head .tag {
	background: var(--orange);
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
.pricing-body {
	padding: 36px 36px 32px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
	align-items: center;
}
.pricing-left h3 {
	font-family: var(--heading);
	color: var(--text-heading);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.3px;
}
.pricing-left p {
	color: var(--text-muted);
	font-size: 14.5px;
	margin-top: 8px;
	line-height: 1.55;
}
.pricing-features {
	list-style: none;
	margin-top: 18px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.pricing-features li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: var(--text);
	font-size: 14.5px;
}
.pricing-features svg {
	width: 18px;
	height: 18px;
	color: var(--green-dark);
	flex-shrink: 0;
	margin-top: 1px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.pricing-right {
	text-align: center;
}
.pricing-right .strike {
	color: var(--text-muted);
	font-size: 18px;
	text-decoration: line-through;
	text-decoration-color: var(--orange);
	font-family: var(--heading);
	font-weight: 700;
}
.pricing-right .now {
	color: var(--text-heading);
	font-family: var(--heading);
	font-size: 56px;
	font-weight: 800;
	letter-spacing: -1px;
	line-height: 1;
	margin-top: 4px;
}
.pricing-right .now .currency {
	font-size: 24px;
	vertical-align: super;
	font-weight: 700;
}
.pricing-right .terms {
	color: var(--text-muted);
	font-size: 13px;
	margin-top: 8px;
	font-family: var(--heading);
	font-weight: 600;
}
.pricing-right .btn-green {
	margin-top: 18px;
	padding: 14px 24px;
	font-size: 15px;
	width: 100%;
	text-align: center;
	display: inline-block;
}
.pricing-right .guarantee {
	margin-top: 14px;
	color: var(--text-muted);
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.pricing-right .guarantee svg {
	width: 14px;
	height: 14px;
}

.author {
	margin-top: 40px;
	background: var(--cream-2);
	border-radius: 18px;
	padding: 40px 48px;
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 24px;
	align-items: center;
}
.author-av {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-image: url("./assets/nutri.jpeg");
	background-size: cover;
	background-position: center;
	border: 3px solid var(--white);
	box-shadow: 0 4px 12px oklch(20% 0.04 70 / 0.15);
}
.author-text .label {
	color: var(--green-forest);
	font-family: var(--heading);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
.author-text h3 {
	font-family: var(--heading);
	color: var(--text-heading);
	font-size: 20px;
	font-weight: 700;
	margin-top: 4px;
}
.author-text p {
	color: var(--text-muted);
	font-size: 14.5px;
	line-height: 1.6;
	margin-top: 6px;
	max-width: 60ch;
}

.faq {
	max-width: 760px;
	margin: 32px auto 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.faq details {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 0;
	transition: box-shadow 0.15s;
}
.faq details[open] {
	box-shadow: 0 6px 16px oklch(20% 0.04 70 / 0.06);
}
.faq summary {
	list-style: none;
	cursor: pointer;
	padding: 18px 22px;
	font-family: var(--heading);
	font-weight: 700;
	color: var(--text-heading);
	font-size: 15.5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}
.faq summary::-webkit-details-marker {
	display: none;
}
.faq summary::after {
	content: "+";
	color: var(--orange);
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	transition: transform 0.15s;
}
.faq details[open] summary::after {
	content: "−";
}
.faq .answer {
	padding: 0 22px 20px;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.6;
	max-width: 64ch;
}

.cta-bar.ebook-final {
	background: var(--green-forest);
	border: none;
	color: var(--white);
	padding: 40px 48px;
}
.cta-bar.ebook-final h2 {
	color: var(--white);
	font-size: 26px;
}
.cta-bar.ebook-final p {
	color: oklch(95% 0.02 87 / 0.85);
}
.cta-bar.ebook-final .btn-green {
	background: var(--white);
	color: var(--green-deep);
	box-shadow: 0 4px 0 oklch(70% 0.03 80);
}
.cta-bar.ebook-final .btn-green:hover {
	background: oklch(96% 0.02 87);
	box-shadow: 0 2px 0 oklch(60% 0.04 80);
}

/* ─────────────────────── Responsive ─────────────────────── */

/* nav content overflows before 860px, so it collapses earlier */
@media (max-width: 920px) {
	.nav {
		justify-content: space-between;
	}
	.nav .btn.btn-green,
	.nav-links {
		display: none;
	}
	.nav-toggle {
		display: flex;
	}
	.nav-mobile {
		display: block;
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}
	.nav-toggle-checkbox:checked ~ .nav-mobile {
		max-height: 500px;
		border-top: 1px solid var(--line);
	}
}

@media (max-width: 860px) {
	.page {
		padding: 0 18px;
	}
	.hero {
		padding: 40px 28px;
		min-height: auto;
	}
	.hero::before {
		background: linear-gradient(
			to bottom,
			oklch(98% 0.016 87 / 0.96) 0%,
			oklch(98% 0.016 87 / 0.88) 55%,
			oklch(98% 0.016 87 / 0.7) 100%
		);
	}
	.hero-copy {
		max-width: 100%;
	}
	.hero h1 {
		font-size: 32px;
	}
	.benefits,
	#como-funciona .steps {
		grid-template-columns: 1fr;
	}
	.benefit + .benefit::before {
		display: none;
	}
	.benefit + .benefit {
		border-top: 1px solid oklch(62% 0.07 65 / 0.15);
		padding-top: 20px;
		margin-top: 4px;
	}
	#como-funciona .step {
		flex-direction: column;
		text-align: center;
		align-items: center;
		padding: 24px;
	}
	#como-funciona .icon.num {
		margin: 0 auto;
	}
	#como-funciona .step-text h3,
	#como-funciona .step-text p {
		text-align: center;
	}
	.cta-bar {
		flex-direction: column;
		text-align: center;
		gap: 20px;
		padding: 28px 24px;
	}
	.logo img {
		height: 48px;
	}
	.section-title {
		font-size: 22px;
		gap: 4px 12px;
	}
	.t-featured {
		gap: 20px;
		margin-bottom: 32px;
	}
	.t-featured-quote {
		font-size: 18px;
	}
	.t-divider {
		margin-bottom: 32px;
	}
	.t-cols {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.t-col {
		padding: 0;
	}
	.t-col + .t-col {
		border-left: none;
		border-top: 1px solid var(--line);
		padding-top: 24px;
	}

	.ebook-hero {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 40px 28px;
	}
	.hero-book {
		max-width: 260px;
		margin: 0 auto;
	}
	.ebook-hero h1 {
		font-size: 30px;
	}
	.hero-list {
		grid-template-columns: 1fr;
	}
	.audience {
		grid-template-columns: 1fr;
	}
	.chapters {
		grid-template-columns: 1fr;
	}
	.preview {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.pricing-body {
		grid-template-columns: 1fr;
		gap: 24px;
		text-align: center;
	}
	.pricing-features {
		text-align: left;
	}
	#conteudo {
		padding: 40px 24px;
	}
	.author {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 28px 24px;
	}
	.author-av {
		margin: 0 auto;
	}
	.cta-bar.ebook-final {
		padding: 28px 24px;
	}
	.cta-bar.ebook-final h2 {
		font-size: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

@media (max-width: 768px) {
	section {
		padding-block: 28px;
	}
}
