/**
 * Active Nutrition — folha de estilos principal.
 *
 * Reprodução 1:1 do design system do projeto original (src/styles.css):
 * mesmos tokens oklch, mesmas fontes, mesmos espaçamentos, raios, sombras,
 * animações e breakpoints do Tailwind v4 (sm: 640px / md: 768px / lg: 1024px).
 *
 * As classes utilitárias abaixo implementam exatamente as utilities usadas
 * pelos componentes React originais, com os mesmos valores computados.
 *
 * @package Active_Nutrition
 */

/* ── Tokens (idênticos ao :root do projeto original) ─────────────────── */

:root {
	--radius: 0.875rem;

	/* Base — creme claro, respiro e leveza */
	--background: oklch(0.985 0.008 110);
	--foreground: oklch(0.24 0.045 155);
	--cream: oklch(0.965 0.016 110);

	--card: oklch(1 0 0);
	--card-foreground: oklch(0.24 0.045 155);
	--popover: oklch(1 0 0);
	--popover-foreground: oklch(0.24 0.045 155);

	/* Verde Herbalife vibrante */
	--primary: oklch(0.62 0.17 143);
	--primary-foreground: oklch(0.99 0.01 110);
	--lime: oklch(0.78 0.2 133);

	/* Verde profundo institucional */
	--ink: oklch(0.235 0.05 158);
	--ink-foreground: oklch(0.97 0.015 120);
	--ink-soft: oklch(0.31 0.05 158);

	--secondary: oklch(0.94 0.02 130);
	--secondary-foreground: oklch(0.26 0.05 158);
	--muted: oklch(0.955 0.014 120);
	--muted-foreground: oklch(0.5 0.03 155);
	--accent: oklch(0.93 0.05 130);
	--accent-foreground: oklch(0.26 0.05 158);

	--destructive: oklch(0.577 0.245 27.325);
	--destructive-foreground: oklch(0.984 0.003 247.858);

	--border: oklch(0.9 0.018 130);
	--input: oklch(0.9 0.018 130);
	--ring: oklch(0.62 0.17 143);

	--whatsapp: oklch(0.68 0.17 152);
	--whatsapp-foreground: oklch(0.99 0.01 110);

	--font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
	--font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;

	--ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-default: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset (equivalente ao preflight do Tailwind) ────────────────────── */

*,
::before,
::after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
	border-color: var(--border);
}

html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	tab-size: 4;
	scroll-behavior: smooth;
	scroll-padding-top: 5rem;
}

body {
	margin: 0;
	background-color: var(--background);
	color: var(--foreground);
	font-family: var(--font-sans);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	font-family: var(--font-display);
	letter-spacing: -0.03em;
}

p, figure, blockquote, dl, dd {
	margin: 0;
}

ol, ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

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

button {
	margin: 0;
	padding: 0;
	background: transparent;
	font: inherit;
	color: inherit;
	cursor: pointer;
}

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

img {
	font-style: italic;
	vertical-align: middle;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}

/* ── Utilitários de composição do design system ──────────────────────── */

.container-page {
	width: 100%;
	margin-inline: auto;
	max-width: 76rem;
	padding-inline: 1.25rem;
}

.section-y {
	padding-block: 5rem;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--primary);
}

.display-xl {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 0.98;
	font-size: clamp(2.6rem, 7.5vw, 5rem);
}

.display-lg {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.032em;
	line-height: 1.03;
	font-size: clamp(2rem, 4.6vw, 3.35rem);
}

.glass-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 999px;
	border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
	background: color-mix(in oklab, white 82%, transparent);
	backdrop-filter: blur(10px);
	padding: 0.55rem 0.95rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--foreground);
	box-shadow: 0 18px 40px -22px color-mix(in oklab, var(--ink) 55%, transparent);
}

.nav-link {
	position: relative;
	font-weight: 600;
	color: color-mix(in oklab, var(--foreground) 78%, transparent);
	transition: color 0.2s ease;
}
.nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	height: 2px;
	width: 100%;
	border-radius: 2px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.28s var(--ease-out-expo);
}
.nav-link:hover {
	color: var(--primary);
}
.nav-link:hover::after {
	transform: scaleX(1);
}

/* ── Animações (idênticas ao original) ───────────────────────────────── */

@keyframes rise-in {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: none; }
}

.rise {
	animation: rise-in 0.6s var(--ease-out-expo) both;
}

@keyframes float-soft {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.float-soft {
	animation: float-soft 6s ease-in-out infinite;
}

@keyframes ping {
	75%, 100% { transform: scale(2); opacity: 0; }
}

.animate-ping {
	animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Reveal — fade + rise ao entrar na viewport (espelho de Reveal.tsx).
   Só oculta quando há JS disponível (html.js). */
.js [data-reveal] {
	opacity: 0;
	transform: translateY(1.5rem);
	transition-property: opacity, transform;
	transition-duration: 700ms;
	transition-timing-function: var(--ease-out-expo);
}
.js [data-reveal].is-shown {
	opacity: 1;
	transform: none;
}

/* ── Display / posição ───────────────────────────────────────────────── */

.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-x-0 { left: 0; right: 0; }
.inset-x-4 { left: 1rem; right: 1rem; }
.top-0 { top: 0; }
.top-6 { top: 1.5rem; }
.top-10 { top: 2.5rem; }
.top-1\/3 { top: 33.333333%; }
.-top-16 { top: -4rem; }
.-top-20 { top: -5rem; }
.-top-32 { top: -8rem; }
.-top-56 { top: -14rem; }
.right-0 { right: 0; }
.right-6 { right: 1.5rem; }
.-right-6 { right: -1.5rem; }
.-right-10 { right: -2.5rem; }
.-right-16 { right: -4rem; }
.-right-40 { right: -10rem; }
.bottom-0 { bottom: 0; }
.bottom-2 { bottom: 0.5rem; }
.bottom-6 { bottom: 1.5rem; }
.bottom-8 { bottom: 2rem; }
.bottom-10 { bottom: 2.5rem; }
.-bottom-1 { bottom: -0.25rem; }
.-bottom-6 { bottom: -1.5rem; }
.-bottom-40 { bottom: -10rem; }
.left-0 { left: 0; }
.left-2 { left: 0.5rem; }
.left-6 { left: 1.5rem; }
.left-1\/2 { left: 50%; }
.-left-24 { left: -6rem; }
.-left-32 { left: -8rem; }
.-left-40 { left: -10rem; }
.z-50 { z-index: 50; }

/* ── Flex / Grid ─────────────────────────────────────────────────────── */

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.place-items-center { place-items: center; }
.self-start { align-self: flex-start; }
.shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }
.order-1 { order: 1; }
.order-2 { order: 2; }

.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-\[minmax\(0\2c 1fr\)_auto\] { grid-template-columns: minmax(0, 1fr) auto; }

.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-14 { gap: 3.5rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-2 { row-gap: 0.5rem; }
.gap-y-5 { row-gap: 1.25rem; }

/* ── Tamanhos ────────────────────────────────────────────────────────── */

.size-1\.5 { width: 0.375rem; height: 0.375rem; }
.size-2\.5 { width: 0.625rem; height: 0.625rem; }
.size-4 { width: 1rem; height: 1rem; }
.size-5 { width: 1.25rem; height: 1.25rem; }
.size-6 { width: 1.5rem; height: 1.5rem; }
.size-8 { width: 2rem; height: 2rem; }
.size-9 { width: 2.25rem; height: 2.25rem; }
.size-10 { width: 2.5rem; height: 2.5rem; }
.size-12 { width: 3rem; height: 3rem; }
.size-16 { width: 4rem; height: 4rem; }
.size-56 { width: 14rem; height: 14rem; }
.size-72 { width: 18rem; height: 18rem; }
.size-\[1\.15em\] { width: 1.15em; height: 1.15em; }
.size-\[1\.15rem\] { width: 1.15rem; height: 1.15rem; }
.size-\[30rem\] { width: 30rem; height: 30rem; }
.size-\[32rem\] { width: 32rem; height: 32rem; }
.size-\[36rem\] { width: 36rem; height: 36rem; }
.size-\[42rem\] { width: 42rem; height: 42rem; }
.size-full { width: 100%; height: 100%; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.w-\[15rem\] { width: 15rem; }

.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-24 { height: 6rem; }
.h-28 { height: 7rem; }
.h-32 { height: 8rem; }
.h-36 { height: 9rem; }
.h-40 { height: 10rem; }
.h-44 { height: 11rem; }
.h-48 { height: 12rem; }
.h-52 { height: 13rem; }
.h-60 { height: 15rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-\[0\.18em\] { height: 0.18em; }
.h-\[15rem\] { height: 15rem; }
.h-\[17rem\] { height: 17rem; }
.h-\[21rem\] { height: 21rem; }
.h-\[24rem\] { height: 24rem; }
.h-\[30rem\] { height: 30rem; }

.min-h-screen { min-height: 100vh; }

.max-w-xl { max-width: 36rem; }
.max-w-lg { max-width: 32rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-\[26rem\] { max-width: 26rem; }

/* ── Espaçamento ─────────────────────────────────────────────────────── */

.p-3 { padding: 0.75rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }

.px-2 { padding-inline: 0.5rem; }
.px-3 { padding-inline: 0.75rem; }
.px-4 { padding-inline: 1rem; }
.px-5 { padding-inline: 1.25rem; }
.px-6 { padding-inline: 1.5rem; }
.px-7 { padding-inline: 1.75rem; }
.px-8 { padding-inline: 2rem; }
.px-9 { padding-inline: 2.25rem; }

.py-1 { padding-block: 0.25rem; }
.py-2 { padding-block: 0.5rem; }
.py-3\.5 { padding-block: 0.875rem; }
.py-4 { padding-block: 1rem; }
.py-5 { padding-block: 1.25rem; }
.py-7 { padding-block: 1.75rem; }
.py-8 { padding-block: 2rem; }
.py-12 { padding-block: 3rem; }
.py-14 { padding-block: 3.5rem; }
.py-20 { padding-block: 5rem; }
.py-24 { padding-block: 6rem; }

.pt-6 { padding-top: 1.5rem; }
.pt-9 { padding-top: 2.25rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-12 { padding-top: 3rem; }

.pb-6 { padding-bottom: 1.5rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-28 { padding-bottom: 7rem; }
.pb-safe { padding-bottom: max(0.75rem, env(safe-area-inset-bottom)); }

.mt-1 { margin-top: 0.25rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-2\.5 { margin-top: 0.625rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }

.my-4 { margin-block: 1rem; }
.mx-auto { margin-inline: auto; }

/* ── Tipografia ──────────────────────────────────────────────────────── */

.font-display { font-family: var(--font-display); }
.font-sans { font-family: var(--font-sans); }

.text-\[0\.62rem\] { font-size: 0.62rem; }
.text-\[0\.65rem\] { font-size: 0.65rem; }
.text-\[0\.68rem\] { font-size: 0.68rem; }
.text-\[0\.7rem\] { font-size: 0.7rem; }
.text-\[0\.72rem\] { font-size: 0.72rem; }
.text-\[0\.75rem\] { font-size: 0.75rem; }
.text-\[0\.8rem\] { font-size: 0.8rem; }
.text-\[0\.82rem\] { font-size: 0.82rem; }
.text-\[0\.95rem\] { font-size: 0.95rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.tracking-\[0\.04em\] { letter-spacing: 0.04em; }
.tracking-\[0\.06em\] { letter-spacing: 0.06em; }
.tracking-\[0\.14em\] { letter-spacing: 0.14em; }
.tracking-\[0\.16em\] { letter-spacing: 0.16em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }

.uppercase { text-transform: uppercase; }
.leading-none { line-height: 1; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* ── Cores (texto) ───────────────────────────────────────────────────── */

.text-foreground { color: var(--foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-ink-foreground { color: var(--ink-foreground); }
.text-ink-foreground\/60 { color: color-mix(in oklab, var(--ink-foreground) 60%, transparent); }
.text-ink-foreground\/65 { color: color-mix(in oklab, var(--ink-foreground) 65%, transparent); }
.text-ink-foreground\/70 { color: color-mix(in oklab, var(--ink-foreground) 70%, transparent); }
.text-ink-foreground\/80 { color: color-mix(in oklab, var(--ink-foreground) 80%, transparent); }
.text-ink-foreground\/90 { color: color-mix(in oklab, var(--ink-foreground) 90%, transparent); }
.text-lime { color: var(--lime); }
.text-lime\/80 { color: color-mix(in oklab, var(--lime) 80%, transparent); }
.text-whatsapp-foreground { color: var(--whatsapp-foreground); }

/* ── Cores (fundo) ───────────────────────────────────────────────────── */

.bg-transparent { background-color: transparent; }
.bg-background { background-color: var(--background); }
.bg-background\/90 { background-color: color-mix(in oklab, var(--background) 90%, transparent); }
.bg-card { background-color: var(--card); }
.bg-card\/60 { background-color: color-mix(in oklab, var(--card) 60%, transparent); }
.bg-ink { background-color: var(--ink); }
.bg-ink-03 { background-color: color-mix(in oklab, var(--ink) 3%, transparent); }
.bg-ink-04 { background-color: color-mix(in oklab, var(--ink) 4%, transparent); }
.bg-ink-soft\/50 { background-color: color-mix(in oklab, var(--ink-soft) 50%, transparent); }
.bg-primary { background-color: var(--primary); }
.bg-primary\/10 { background-color: color-mix(in oklab, var(--primary) 10%, transparent); }
.bg-primary\/25 { background-color: color-mix(in oklab, var(--primary) 25%, transparent); }
.bg-primary\/60 { background-color: color-mix(in oklab, var(--primary) 60%, transparent); }
.bg-lime\/20 { background-color: color-mix(in oklab, var(--lime) 20%, transparent); }
.bg-lime\/25 { background-color: color-mix(in oklab, var(--lime) 25%, transparent); }
.bg-lime\/70 { background-color: color-mix(in oklab, var(--lime) 70%, transparent); }
.bg-cream { background-color: var(--cream); }
.bg-cream\/60 { background-color: color-mix(in oklab, var(--cream) 60%, transparent); }
.bg-cream\/70 { background-color: color-mix(in oklab, var(--cream) 70%, transparent); }
.bg-whatsapp { background-color: var(--whatsapp); }

.bg-gradient-to-b {
	background-image: linear-gradient(to bottom, var(--cream) 0%, var(--background) 50%, var(--background) 100%);
}

/* ── Bordas e raios ──────────────────────────────────────────────────── */

.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }
.border-dashed { border-style: dashed; }
.last\:border-0:last-child { border-width: 0; }

.border-border { border-color: var(--border); }
.border-border\/60 { border-color: color-mix(in oklab, var(--border) 60%, transparent); }
.border-border\/70 { border-color: color-mix(in oklab, var(--border) 70%, transparent); }
.border-primary\/40 { border-color: color-mix(in oklab, var(--primary) 40%, transparent); }
.border-ink\/25 { border-color: color-mix(in oklab, var(--ink) 25%, transparent); }
.border-ink-foreground\/10 { border-color: color-mix(in oklab, var(--ink-foreground) 10%, transparent); }
.border-ink-foreground\/12 { border-color: color-mix(in oklab, var(--ink-foreground) 12%, transparent); }
.border-ink-foreground\/15 { border-color: color-mix(in oklab, var(--ink-foreground) 15%, transparent); }
.border-ink-foreground\/20 { border-color: color-mix(in oklab, var(--ink-foreground) 20%, transparent); }

.rounded-xl { border-radius: calc(var(--radius) + 4px); }
.rounded-2xl { border-radius: calc(var(--radius) + 8px); }
.rounded-3xl { border-radius: calc(var(--radius) + 12px); }
.rounded-full { border-radius: 999px; }
.rounded-\[1\.75rem\] { border-radius: 1.75rem; }
.rounded-\[2\.25rem\] { border-radius: 2.25rem; }
.rounded-\[2\.5rem\] { border-radius: 2.5rem; }
.rounded-\[3rem\] { border-radius: 3rem; }

/* ── Sombras (valores arbitrários idênticos ao original) ─────────────── */

.shadow-cta-primary { box-shadow: 0 10px 30px -12px var(--primary); }
.shadow-hero-card { box-shadow: 0 40px 80px -40px color-mix(in oklab, var(--ink) 45%, transparent); }
.shadow-hero-float { box-shadow: 0 28px 50px -26px color-mix(in oklab, var(--ink) 55%, transparent); }
.shadow-dark-card { box-shadow: 0 40px 80px -40px rgb(0 0 0 / 0.55); }
.shadow-wa-icon { box-shadow: 0 24px 50px -18px var(--whatsapp); }
.shadow-float-wa { box-shadow: 0 18px 40px -12px var(--whatsapp); }
.shadow-bar-wa { box-shadow: 0 14px 30px -12px var(--whatsapp); }

.hover\:shadow-card-lift:hover { box-shadow: 0 34px 60px -34px color-mix(in oklab, var(--ink) 50%, transparent); }
.hover\:shadow-card-lift-32:hover { box-shadow: 0 34px 60px -32px color-mix(in oklab, var(--ink) 50%, transparent); }
.group:hover .group-hover\:shadow-cta-glow { box-shadow: 0 18px 38px -14px var(--primary); }

/* ── Efeitos ─────────────────────────────────────────────────────────── */

.blur-3xl { filter: blur(64px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

.opacity-\[0\.14\] { opacity: 0.14; }
.group:hover .group-hover\:opacity-25 { opacity: 0.25; }

.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.pointer-events-none { pointer-events: none; }

.no-scrollbar { scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

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

/* ── Transições ──────────────────────────────────────────────────────── */

.transition-all {
	transition-property: all;
	transition-timing-function: var(--ease-default);
}
.transition-colors {
	transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke;
	transition-timing-function: var(--ease-default);
}
.transition-transform {
	transition-property: transform, translate, scale, rotate;
	transition-timing-function: var(--ease-default);
}
.transition-shadow {
	transition-property: box-shadow;
	transition-timing-function: var(--ease-default);
}

.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }

.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }

/* ── Transforms (translate/scale/rotate via propriedades dedicadas,
       iguais ao Tailwind v4) ─────────────────────────────────────────── */

.hover\:-translate-y-0\.5:hover { translate: 0 -0.125rem; }
.hover\:-translate-y-1\.5:hover { translate: 0 -0.375rem; }
.hover\:-translate-y-2:hover { translate: 0 -0.5rem; }
.-translate-x-1\/2 { translate: -50% 0; }
.group:hover .group-hover\:translate-x-1 { translate: 0.25rem 0; }

.group:hover .group-hover\:scale-105 { scale: 1.05; }
.group:hover .group-hover\:scale-110 { scale: 1.1; }
.group:hover .group-hover\:scale-\[1\.07\] { scale: 1.07; }
.hover\:scale-\[1\.04\]:hover { scale: 1.04; }

/* ── Hover de cores ──────────────────────────────────────────────────── */

.hover\:bg-primary\/90:hover { background-color: color-mix(in oklab, var(--primary) 90%, transparent); }
.hover\:bg-ink-soft:hover { background-color: var(--ink-soft); }
.hover\:border-primary:hover { border-color: var(--primary); }
.hover\:border-primary\/40:hover { border-color: color-mix(in oklab, var(--primary) 40%, transparent); }
.hover\:border-lime:hover { border-color: var(--lime); }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:text-lime:hover { color: var(--lime); }
.hover\:text-ink-foreground:hover { color: var(--ink-foreground); }

/* ── Foco (ring) ─────────────────────────────────────────────────────── */

.focus-visible\:outline-none:focus-visible {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.focus-visible\:ring-2:focus-visible {
	box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--ring);
}

/* ── Snap (carrossel de sabores) ─────────────────────────────────────── */

.snap-x { scroll-snap-type: x var(--tw-scroll-snap-strictness, mandatory); }
.snap-mandatory { --tw-scroll-snap-strictness: mandatory; }
.snap-start { scroll-snap-align: start; }

/* ── FAQ (acordeão com grid-rows animado, igual ao original) ─────────── */

.faq-answer {
	grid-template-rows: 0fr;
	opacity: 0;
}
.faq-item.is-open .faq-answer {
	grid-template-rows: 1fr;
	opacity: 1;
}
.faq-item.is-open {
	border-color: color-mix(in oklab, var(--primary) 40%, transparent);
	background-color: var(--card);
}
.faq-item.is-open .faq-icon {
	rotate: 45deg;
	border-color: color-mix(in oklab, var(--primary) 50%, transparent);
}

/* ── Header fixo após scroll (espelho do estado `solid`) ─────────────── */

#site-header.is-solid {
	border-bottom-width: 1px;
	border-color: color-mix(in oklab, var(--border) 70%, transparent);
	background-color: color-mix(in oklab, var(--background) 90%, transparent);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

/* Compensação da admin bar do WordPress (apenas para admins logados) */
body.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) {
	body.admin-bar #site-header { top: 46px; }
	body.admin-bar .fixed.bottom-6 { bottom: 1.5rem; }
}

/* ── Conteúdo de páginas/posts (blog) ────────────────────────────────── */

.an-content > * + * {
	margin-top: 1.25rem;
}
.an-content h2 {
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 800;
	color: var(--foreground);
	margin-top: 2.5rem;
}
.an-content h3 {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 800;
	color: var(--foreground);
	margin-top: 2rem;
}
.an-content a {
	color: var(--primary);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.an-content ul {
	list-style: disc;
	padding-left: 1.5rem;
}
.an-content ol {
	list-style: decimal;
	padding-left: 1.5rem;
}
.an-content img {
	border-radius: 1.75rem;
}
.an-content blockquote {
	border-left: 3px solid var(--primary);
	padding-left: 1.25rem;
	color: var(--muted-foreground);
}

.an-sidebar .widget {
	margin-bottom: 1.5rem;
	padding: 1.5rem;
	border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
	border-radius: 1.75rem;
	background: var(--card);
}
.an-sidebar .widget-title {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--foreground);
	margin-bottom: 0.75rem;
}
.an-sidebar ul li {
	padding-block: 0.375rem;
	font-size: 0.875rem;
}
.an-sidebar a:hover {
	color: var(--primary);
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding-inline: 0.75rem;
	border-radius: 999px;
	border: 1px solid var(--border);
	font-size: 0.875rem;
	font-weight: 700;
}
.pagination .page-numbers.current {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--primary-foreground);
}

.aligncenter { margin-inline: auto; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: var(--muted-foreground); }
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}
.bypostauthor { /* requerido pelo Theme Check */ }
.sticky-post { /* requerido pelo Theme Check */ }

/* ══ Responsivo — sm: 640px ═══════════════════════════════════════════ */

@media (min-width: 640px) {
	.section-y { padding-block: 7.5rem; }

	.sm\:block { display: block; }
	.sm\:inline-flex { display: inline-flex; }
	.sm\:hidden { display: none; }
	.sm\:flex-row { flex-direction: row; }
	.sm\:items-center { align-items: center; }
	.sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sm\:grid-cols-\[1fr_auto\] { grid-template-columns: minmax(0, 1fr) auto; }

	.sm\:-left-6 { left: -1.5rem; }
	.sm\:-right-4 { right: -1rem; }
	.sm\:left-6 { left: 1.5rem; }

	.sm\:h-36 { height: 9rem; }
	.sm\:h-40 { height: 10rem; }
	.sm\:h-52 { height: 13rem; }
	.sm\:h-64 { height: 16rem; }
	.sm\:h-80 { height: 20rem; }
	.sm\:h-\[21rem\] { height: 21rem; }
	.sm\:h-\[24rem\] { height: 24rem; }

	.sm\:w-auto { width: auto; }

	.sm\:p-6 { padding: 1.5rem; }
	.sm\:p-8 { padding: 2rem; }
	.sm\:p-10 { padding: 2.5rem; }
	.sm\:p-12 { padding: 3rem; }
	.sm\:px-8 { padding-inline: 2rem; }
	.sm\:py-20 { padding-block: 5rem; }
	.sm\:py-28 { padding-block: 7rem; }
	.sm\:py-32 { padding-block: 8rem; }
	.sm\:pb-10 { padding-bottom: 2.5rem; }

	.sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
	.sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
	.sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }

	.sm\:translate-y-8 { translate: 0 2rem; }
}

/* ══ Responsivo — md: 768px ═══════════════════════════════════════════ */

@media (min-width: 768px) {
	.md\:grid-cols-\[1fr_auto\] { grid-template-columns: minmax(0, 1fr) auto; }
	.md\:items-end { align-items: end; }
	.md\:mb-2 { margin-bottom: 0.5rem; }
}

/* ══ Responsivo — lg: 1024px ══════════════════════════════════════════ */

@media (min-width: 1024px) {
	.section-y { padding-block: 9rem; }

	.lg\:flex { display: flex; }
	.lg\:hidden { display: none; }

	.lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.lg\:grid-cols-\[1\.02fr_1fr\] { grid-template-columns: 1.02fr 1fr; }
	.lg\:grid-cols-\[1fr_1fr\] { grid-template-columns: 1fr 1fr; }
	.lg\:grid-cols-\[1\.15fr_1fr\] { grid-template-columns: 1.15fr 1fr; }
	.lg\:grid-cols-\[0\.85fr_1\.15fr\] { grid-template-columns: 0.85fr 1.15fr; }
	.lg\:grid-cols-\[0\.75fr_1\.25fr\] { grid-template-columns: 0.75fr 1.25fr; }
	.lg\:grid-cols-\[1fr_20rem\] { grid-template-columns: minmax(0, 1fr) 20rem; }
	.lg\:grid-rows-2 { grid-template-rows: repeat(2, minmax(0, 1fr)); }

	.lg\:items-center { align-items: center; }
	.lg\:order-1 { order: 1; }
	.lg\:order-2 { order: 2; }

	.lg\:gap-8 { gap: 2rem; }

	.lg\:h-40 { height: 10rem; }
	.lg\:h-44 { height: 11rem; }
	.lg\:h-\[24rem\] { height: 24rem; }
	.lg\:h-\[30rem\] { height: 30rem; }

	.lg\:py-24 { padding-block: 6rem; }
	.lg\:py-32 { padding-block: 8rem; }

	.lg\:px-carousel {
		padding-inline: max(1.25rem, calc((100vw - 76rem) / 2 + 1.25rem));
	}
}
