﻿/* ==========================================================================
   Clube Sabor Landing - Base
   Mobile-first, no external dependencies.
   ========================================================================== */

/* Fonts
   ========================================================================== */

@font-face {
	font-family: "Editor Italic";
	src: url("../fonts/editor-ultralightitalic.woff2") format("woff2"),
		url("../fonts/editor-ultralightitalic.woff") format("woff");
	font-display: block;
	font-style: italic;
	font-weight: 100;
}

@font-face {
	font-family: "Editor Italic";
	src: url("../fonts/editor-italic.woff2") format("woff2"),
		url("../fonts/editor-italic.woff") format("woff");
	font-display: block;
	font-style: italic;
	font-weight: 400;
}

@font-face {
	font-family: "Editor Italic";
	src: url("../fonts/editor-UltraboldItalic.woff2") format("woff2"),
		url("../fonts/editor-UltraboldItalic.woff") format("woff");
	font-display: block;
	font-style: italic;
	font-weight: 600;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/montserrat.extralight-webfont.woff2") format("woff2"),
		url("../fonts/montserrat.extralight-webfont.woff") format("woff");
	font-display: swap;
	font-style: normal;
	font-weight: 200;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/montserrat.light-webfont.woff2") format("woff2"),
		url("../fonts/montserrat.light-webfont.woff") format("woff");
	font-display: swap;
	font-style: normal;
	font-weight: 300;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/montserrat.regular-webfont.woff2") format("woff2"),
		url("../fonts/montserrat.regular-webfont.woff") format("woff");
	font-display: swap;
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/montserrat.medium.woff2") format("woff2"),
		url("../fonts/montserrat.medium.woff") format("woff");
	font-display: swap;
	font-style: normal;
	font-weight: 500;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/montserrat.semibold-webfont.woff2") format("woff2"),
		url("../fonts/montserrat.semibold-webfont.woff") format("woff");
	font-display: swap;
	font-style: normal;
	font-weight: 600;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/montserrat.bold-webfont.woff2") format("woff2"),
		url("../fonts/montserrat.bold-webfont.woff") format("woff");
	font-display: swap;
	font-style: normal;
	font-weight: 700;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/montserrat.black-webfont.woff2") format("woff2"),
		url("../fonts/montserrat.black-webfont.woff") format("woff");
	font-display: swap;
	font-style: normal;
	font-weight: 900;
}

/* Reset
   ========================================================================== */

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

html {
	min-height: 100%;
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-size-adjust: 100%;
	text-rendering: geometricPrecision;
}

body {
	min-height: 100%;
	margin: 0;
	overflow-x: clip;
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	line-height: 1.5;
	color: #211d1a;
	background: #fffbf5;
}

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

button,
input,
select,
textarea {
	font: inherit;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

/* Accessibility
   ========================================================================== */

.skip-link {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 1000;
	padding: 0.625rem 0.875rem;
	color: #ffffff;
	background: #211d1a;
	border-radius: 0.25rem;
	transform: translateY(-150%);
	transition: transform 160ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

/* Site Header
   ========================================================================== */

.site-header {
	--site-logo-size: clamp(9.5rem, 14vw, 13rem);
	position: relative;
	z-index: 50;
	background: #fffbf5;
}

.site-header-inner {
	display: grid;
	align-items: center;
	justify-items: center;
	grid-template-columns: 1fr;
	width: min(100%, 82rem);
	min-height: 5rem;
	margin-right: auto;
	margin-left: auto;
	padding: 1rem 1.5rem;
	gap: 2rem;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
}

.site-logo img {
	display: block;
	width: var(--site-logo-size);
	height: auto;
}

.site-navigation {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	justify-self: center;
	min-width: 0;
}

.site-navigation ul,
.site-navigation .nav,
.site-navigation .menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	gap: 0.45rem 1.35rem;
	list-style: none;
}

.site-navigation a {
	display: inline-flex;
	align-items: center;
	min-height: 2.25rem;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	color: #211d1a;
}

.site-navigation a:hover,
.site-navigation a:focus-visible {
	color: #f15c16;
}

@media (max-width: 759px) {
	.site-header {
		--site-logo-size: 9.75rem;
	}

	.site-header-inner {
		align-items: center;
		flex-direction: column;
		min-height: 0;
		padding: 0.85rem 15px;
		gap: 0.75rem;
	}

	.site-navigation {
		justify-content: center;
		width: 100%;
	}

	.site-navigation ul,
	.site-navigation .nav,
	.site-navigation .menu {
		justify-content: center;
		gap: 0.25rem 1rem;
	}

	.site-navigation a {
		min-height: 2rem;
		font-size: 0.76rem;
	}
}

/* Layout
   ========================================================================== */

.landing-main {
	width: 100%;
	min-height: 100vh;
}

.landing-page {
	background: #fffbf5;
}

.landing-container {
	width: min(100%, 82rem);
	margin-right: auto;
	margin-left: auto;
}

.landing-page > section {
	margin-bottom: 15.5rem;
}

@media (max-width: 759px) {
	.landing-container {
		padding-right: 15px;
		padding-left: 15px;
	}






}

/* Joomla Component Base
   ========================================================================== */

.landing-main > *:first-child {
	margin-top: 0;
}

.landing-main > *:last-child {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	body {
		line-height: 1.6;
	}
}

/* Hero
   ========================================================================== */

.hero-section {
	width: 100%;
	padding: 0rem 0 2.5rem;
	overflow: visible;
}

.hero-intro {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.hero-eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #8a5a2b;
}

.hero-title-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.hero-title {
	max-width: 16ch;
	margin: 0;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: clamp(2.6rem, 14vw, 4.7rem);
	font-style: italic;
	font-weight: 400;
	line-height: 0.96;
	color: #211d1a;
}

.hero-title-icon {
	position: relative;
	display: none;
	flex: 0 0 auto;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid #211d1a;
	border-radius: 50%;
}

.hero-title-icon::before,
.hero-title-icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 1.25rem;
	height: 1px;
	content: "";
	background: #211d1a;
	transform-origin: center;
}

.hero-title-icon::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.hero-title-icon::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.hero-title-icon-left::before,
.hero-title-icon-right::before {
	display: none;
}

.hero-title-icon-left::after,
.hero-title-icon-right::after {
	display: none;
}

.hero-title-icon-left,
.hero-title-icon-right {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	border: 0;
	border-radius: 0;
}

.hero-title-icon-left img,
.hero-title-icon-right img {
	width: auto;
	max-width: none;
	height: auto;
	will-change: transform;
}

.hero-title-icon-left img {
	width: var(--hero-left-icon-size, 100px);
	height: auto;
}

.hero-subtitle {
	max-width: 34rem;
	margin: 1rem auto 0;
	font-size: 1.2rem;
	color: #110f0f;
}

.js .hero-title,
.js .hero-title-icon,
.js .hero-subtitle,
.js .hero-image-card,
.js .text-reveal {
	visibility: hidden;
	opacity: 0;
}

.text-reveal {
	will-change: transform, opacity, filter;
}

/* Hero Mosaic
   ========================================================================== */

.hero-mosaic {
	--hero-edge-column-offset: 0;
	--hero-inner-column-offset: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.875rem;
	width: 100%;
	margin: 2rem auto 0;
	perspective: 1200px;
}

.hero-mosaic-column {
	display: grid;
	justify-items: center;
	gap: 0.875rem;
	min-width: 0;
}

.hero-mosaic-column:first-child,
.hero-mosaic-column:last-child {
	transform: translateY(var(--hero-edge-column-offset));
}

.hero-mosaic-column:nth-child(2),
.hero-mosaic-column:nth-child(4) {
	transform: translateY(var(--hero-inner-column-offset));
}

.hero-mosaic-column-stacked {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-mosaic-column-featured {
	order: -1;
}

.hero-image-card {
	position: relative;
	justify-self: center;
	width: 100%;
	overflow: hidden;
	margin: 0;
	background: transparent;
	border-radius: 1.25rem;
	box-shadow: none;
	transform-style: preserve-3d;
	will-change: transform, opacity, filter;
}

.hero-image-card img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: none;
	margin-right: auto;
	margin-left: auto;
	object-fit: initial;
	border-radius: inherit;
	will-change: transform;
}

.hero-image-card-small {
	aspect-ratio: auto;
}

.hero-image-card-tall {
	aspect-ratio: auto;
}

.hero-image-card-main {
	aspect-ratio: auto;
	border-radius: 1.5rem;
}

.hero-action {
	display: grid;
	justify-items: center;
	gap: 0.625rem;
	margin-top: 0.375rem;
	text-align: center;
}

.hero-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1.65rem;
	min-height: 3rem;
	min-width: 17rem;
	padding: 0.875rem 2rem;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-decoration: none;
	text-transform: uppercase;
	background: #211d1a;
	border: 1px solid #211d1a;
	border-radius: 999px;
	transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.hero-button span {
	white-space: nowrap;
}

.hero-button img {
	width: var(--hero-button-icon-size, 1rem);
	max-width: none;
	height: auto;
	flex: 0 0 auto;
	will-change: transform;
}

.hero-button:hover,
.hero-button:focus {
	color: #211d1a;
	background: transparent;
	transform: translateY(-1px);
}

.hero-note {
    max-width: 18rem;
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #2d2823;
}

/* Hero Editorial
   ========================================================================== */

.hero-editorial {
	display: grid;
	gap: 1.5rem;
	width: 100%;
	margin: 2.5rem auto 0;
	padding-top: 1.5rem;

}

.hero-editorial-copy,
.hero-editorial-signature {
	min-width: 0;
}

.hero-editorial-copy {
	text-align: left;
}

.hero-editorial-icon {
	width: var(--hero-editorial-icon-size, 34px);
	max-width: none;
	height: auto;
	margin: 0 0 0.5rem;
	will-change: transform;
}

.hero-editorial-kicker {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #8a5a2b;
}

.hero-editorial-title {
	max-width: 34rem;
	margin: 0;
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	font-size: clamp(0.5rem, 8vw, 1rem);
	font-weight: 400;
	line-height: 2.08;
	color: #211d1a;
}

.hero-editorial-signature {
	display: grid;
	align-content: start;
	gap: 0;
}

.hero-editorial-number {
	margin: 0;
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	font-size: clamp(4.5rem, 21vw, 6.4rem);
	font-weight: 200;
	line-height: 0.76;
	color: #211d1a;
	letter-spacing: 0;
}

.hero-editorial-number span {
	display: inline-block;
	margin-left: 0.08em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.34em;
	font-weight: 400;
	line-height: 1;
	vertical-align: top;
}

.hero-editorial-label {
max-width: 20rem;
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    color: #1d1a1a;
    margin-top: -31px;
    background-color: #fffbf5;
    margin-left: 33px;
    padding: 10px;
}

.hero-editorial-description {
max-width: 35rem;
    margin: 0.85rem 0 0;
    font-size: 1.9375rem;
    line-height: 1.45;
    color: #070606;
    font-family: "Editor Italic", Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

@media (min-width: 560px) {
	.hero-title-icon {
		display: block;
	}

	.hero-mosaic {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}

	.hero-mosaic-column-featured {
		grid-column: 1 / -1;
	}
}

@media (min-width: 900px) {
	.hero-section {
		padding: 4.5rem 0 0rem;
	}

	.hero-title-wrap {
		gap: 1.25rem;
	}

	.hero-title {
		max-width: 26ch;
	}

	.hero-title-icon {
		width: 3rem;
		height: 3rem;
	}

	.hero-title-icon-left,
	.hero-title-icon-right {
		width: auto;
		height: auto;
	}

	.hero-subtitle {
		margin-top: 1.25rem;
		font-size: 1.2rem;
	}

	.hero-mosaic {
		--hero-edge-column-offset: -12rem;
		--hero-inner-column-offset: 25px;
		grid-template-columns: 0.82fr 0.95fr 1.1fr 0.95fr 0.82fr;
		gap: 1rem;
		align-items: center;
		margin-top: 3rem;
	}

	.hero-mosaic-column {
		gap: 1rem;
	}

	.hero-mosaic-column-stacked {
		grid-template-columns: minmax(0, 1fr);
	}

	.hero-mosaic-column-featured {
		order: 0;
		grid-column: auto;
	}

	.hero-action {
		margin-top: 1rem;
	}

	.hero-editorial {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: end;
		gap: 2rem;
		margin-top: 9.25rem;
		padding-top: 2rem;
	}

	.hero-editorial-signature {
		justify-items: start;
		justify-self: end;
		text-align: left;
	}
}

@media (min-width: 1200px) {
	.hero-section {
		padding-top: 5rem;
	}
}

/* Shopping Chaos
   ========================================================================== */

.shopping-chaos-section {
	position: relative;
	display: grid;
	min-height: 100vh;
	overflow-x: clip;
	overflow-y: visible;
	background: #f8eddf;
}

.shopping-chaos-copy {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 4rem 1.5rem;
	background: #f8eddf url("../../../images/landing/block2-background.jpg") 90% center / cover no-repeat;
}

.shopping-chaos-copy::after {
	position: absolute;
	pointer-events: none;
	content: "";
}

.shopping-chaos-copy::after {
	right: -8rem;
	bottom: -8rem;
	width: 21rem;
	height: 21rem;
	border: 1px solid rgba(226, 82, 16, 0.14);
	border-radius: 50%;
}

.shopping-chaos-copy-inner {
	position: relative;
	z-index: 1;
	max-width: 33rem;
	margin: 0 auto;
}

.shopping-chaos-title {
	position: relative;
	max-width: 14ch;
	margin: 0;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: clamp(3.25rem, 13vw, 5rem);
	font-style: italic;
	font-weight: 400;
	line-height: 0.94;
	color: #080706;
}

.shopping-chaos-title::after {
	position: absolute;
    top: -0.5em;
    right: 0.7em;
    width: 1.4em;
    height: 1.4em;
	content: "";
	background: url("../../../images/landing/full-star-icon.svg") center / contain no-repeat;
}

.shopping-chaos-list {
	display: grid;
	gap: 0.72rem;
	margin: 4.5rem 0 0;
	padding: 0;
	list-style: none;
	color: #3b312a;
	font-size: clamp(0.95rem, 2.6vw, 1.12rem);
	line-height: 1.4;
}

.shopping-chaos-list li {
	position: relative;
	padding-left: 2.1rem;
}

.shopping-chaos-list li::before {
	position: absolute;
	top: 0.05em;
	left: 0;
	content: "*" !important;
	color: #f15c16;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2rem;
	line-height: 1;
}

.shopping-chaos-quote {
	margin: 4.7rem 0 0;
	padding-left: 1.6rem;
	border-left: 1px solid #8d5a2d;
}

.shopping-chaos-quote p {
	margin: 0;
	font-size: clamp(1rem, 2.7vw, 1.15rem);
	line-height: 1.35;
	color: #2d261f;
}

.shopping-chaos-quote p + p {
	margin-top: 0.15rem;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: clamp(1.8rem, 7vw, 2.15rem);
	font-style: italic;
	color: #f15c16;
}

.shopping-chaos-problem {
	margin: 3.3rem 0 0;
	font-size: clamp(1rem, 2.8vw, 1.12rem);
	line-height: 1.55;
	color: #4a382b;
}

.shopping-chaos-problem strong {
	color: #2b2119;
}

.shopping-chaos-club {
	margin-top: 4.8rem;
}

.shopping-chaos-club p {
	max-width: 100%;
	margin: 0;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: clamp(2.1rem, 8vw, 2rem);
	font-style: italic;
	font-weight: 400;
	line-height: 1.05;
	color: #4e2c08;
}

.shopping-chaos-club span {
	position: relative;
	display: inline-block;
	margin-top: 0.85rem;
	padding-left: 1.35rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #22170f;
}

.shopping-chaos-club span::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 0.52rem;
	height: 0.52rem;
	content: "";
	background: #f15c16;
	border-radius: 50%;
	transform: translateY(-50%);
}

.shopping-chaos-life {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: repeat(4, minmax(9rem, 28vw));
	overflow: visible;
	background: #f2e1d1;
}

.shopping-chaos-photo {
	position: relative;
	min-width: 0;
	min-height: 0;
	margin: 0;
	overflow: hidden;
	background: #f2e1d1;
}

.shopping-chaos-photo-wide {
	grid-column: 1;
}

.shopping-chaos-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.88) contrast(1.04) sepia(0.08);
}

@media (min-width: 760px) {
	.shopping-chaos-section {
		grid-template-columns: minmax(22rem, 45%) minmax(0, 55%);
		min-height: 56rem;
	}

	.shopping-chaos-copy {
		padding: 5.5rem 2.2rem 4.5rem;
	}

	.shopping-chaos-copy-inner {
		max-width: 28rem;
	}

	.shopping-chaos-title {
		font-size: clamp(2.8rem, 5.3vw, 3rem);
	}

	.shopping-chaos-list {
		margin-top: 4.8rem;
	}

	.shopping-chaos-life {
		grid-template-rows: repeat(4, minmax(10rem, 1fr));
		min-height: 100%;
	}

}

@media (min-width: 1180px) {
	.shopping-chaos-section {
		grid-template-columns: minmax(35rem, 45%) minmax(0, 55%);
	}

	.shopping-chaos-copy {
		padding: 5.7rem 4rem 4.8rem;
	}

	.shopping-chaos-copy-inner {
		max-width: 31rem;
	}
}

/* Club Difference
   ========================================================================== */

.club-difference-section {
	position: relative;
	overflow: hidden;
	padding: 5rem 0;
	background: #fffbf5 url("../../../images/landing/bg-block3.png") right -30% / auto no-repeat;
}

.club-difference-container {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 3rem;
	padding: 0 1.5rem;
}

.club-difference-copy {
	display: grid;
	align-content: start;
	min-width: 0;
}

.club-difference-kicker {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 1.5rem;
	width: fit-content;
	margin: 0 0 3rem;
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #211d1a;
}

.club-difference-kicker::after {
	width: 6.2rem;
	height: 1.35rem;
	content: "";
	background:
		linear-gradient(#f15c16, #f15c16) left 50% / 4.6rem 1px no-repeat,
		url("../../../images/landing/star-icon.svg") right center / 1.35rem 1.35rem no-repeat;
}

.club-difference-title,
.club-difference-heading,
.club-difference-signature,
.difference-card h3 {
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-style: italic;
	font-weight: 400;
}

.club-difference-title {
	max-width: 10ch;
	margin: 0;
	font-size: clamp(2.7rem, 10vw, 3.25rem);
	line-height: 0.96;
	color: #8a8583;
}

.club-difference-heading {
	max-width: 10ch;
	margin: 4.4rem 0 0;
	font-size: clamp(2.8rem, 11vw, 3.5rem);
	line-height: 0.94;
	color: #080706;
}

.club-difference-seal {
	display: grid;
	justify-items: center;
	gap: 0.35rem;
	width: 10rem;
	margin: 2rem 0rem 0rem 0rem;
	text-align: center;
}

.club-difference-seal span {
	font-size: 0.48rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #2d2823;
}

.club-difference-seal img {
	width: 9.1rem;
	height: 9.1rem;
}

.club-difference-description {
	max-width: 22rem;
	margin: 1.4rem 0 0;
	font-size: 1rem;
	line-height: 1.85;
	color: #2f2925;
}

.club-difference-footer {
	position: relative;
	margin-top: 3.5rem;
	padding-left: 2.8rem;
}

.club-difference-footer::before {
	position: absolute;
	top: -0.2rem;
	left: 0;
	width: 1.7rem;
	height: 1.7rem;
	content: "";
	background: url("../../../images/landing/full-star-icon.svg") center / contain no-repeat;
}

.club-difference-footer p {
	margin: 0;
	font-size: 0.82rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #211d1a;
}

.club-difference-footer p span {
	color: #f15c16;
}

.club-difference-signature {
	display: block;
	margin-top: 3.55rem;
	font-size: clamp(1.35rem, 5vw, 1.9rem);
	font-weight: 400;
	line-height: 1.1;
	color: #f15c16;
}

.club-difference-cards {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.5rem;
	min-width: 0;
}

.difference-card {
	position: relative;
	min-height: 18rem;
	overflow: hidden;
	margin: 0;
	border-radius: 0.75rem;
}

.difference-card-photo {
	display: grid;
	align-content: end;
	padding: 1.35rem;
	color: #ffffff;
	background: transparent;
}

.difference-card-photo::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(10, 7, 5, 0.02) 20%, rgba(10, 7, 5, 0.78) 100%);
}

.difference-card > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.difference-card-number,
.difference-card-copy,
.difference-card-plain h3,
.difference-card-plain p,
.difference-price-chart {
	position: relative;
	z-index: 1;
}

.difference-card-number {
	display: block;
	font-size: clamp(2.3rem, 7vw, 3.25rem);
	font-weight: 300;
	line-height: 1;
	color: #ffffff;
}

.difference-card-photo .difference-card-number {
	position: absolute;
	top: 1.1rem;
	left: 1.2rem;
}

.difference-card h3 {
	margin: 0;
	font-size: clamp(1.75rem, 5vw, 1.9rem);
	line-height: 0.92;
}

.difference-card p {
	margin: 0.65rem 0 0;
	font-size: 0.87rem;
	line-height: 1.45;
}

.difference-card-plain {
	padding: 1.35rem;
	color: #160f0a;
	background: #ede4da;
}

.difference-card-plain .difference-card-number {
	margin-bottom: 1.25rem;
	color: #ffffff;
}

.difference-card-plain h3 {
	max-width: 9ch;
}

.difference-card-plain p {
	max-width: 13rem;
	color: #2d2823;
}

.difference-card-two img {
	position: relative;
	inset: auto;
	z-index: 1;
	width: 100%;
	height: auto;
	margin-top: 1.5rem;
	object-fit: contain;
}

.difference-price-chart {
	height: 8rem;
	margin-top: 2rem;
	border-bottom: 1px solid rgba(80, 55, 34, 0.26);
}

.difference-price-chart span {
	position: absolute;
	width: 0.38rem;
	height: 0.38rem;
	background: #b88d61;
	border-radius: 50%;
}

.difference-price-chart span:nth-child(1) { left: 3%; top: 8%; }
.difference-price-chart span:nth-child(2) { left: 20%; top: 42%; }
.difference-price-chart span:nth-child(3) { left: 34%; top: 42%; }
.difference-price-chart span:nth-child(4) { left: 48%; top: 70%; }
.difference-price-chart span:nth-child(5) { left: 65%; top: 56%; background: #d99f38; box-shadow: 0 0 0 0.35rem rgba(217, 159, 56, 0.2); }
.difference-price-chart span:nth-child(6) { left: 84%; top: 58%; }

.difference-price-chart::before {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(28deg, transparent 0 13%, #b88d61 13.4% 13.9%, transparent 14.3% 28%, #b88d61 28.4% 28.9%, transparent 29.3% 44%, #b88d61 44.4% 44.9%, transparent 45.3% 62%, #b88d61 62.4% 62.9%, transparent 63.3%);
	opacity: 0.68;
}

.difference-price-chart strong {
	position: absolute;
	top: 1.4rem;
	right: 0.7rem;
	padding: 0.85rem;
	font-size: 0.78rem;
	font-weight: 600;
	color: #c46a1e;
	background: rgba(255, 251, 245, 0.55);
	border: 1px solid rgba(80, 55, 34, 0.12);
	border-radius: 0.35rem;
}

.difference-card-six {
	min-height: 22rem;
}

.difference-card-six img {
	inset: auto 0 0;
	height: 42%;
	-webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%);
	mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%);
}

@media (min-width: 760px) {
	.club-difference-section {
		padding: 6rem 0;
	}

	.club-difference-container {
		grid-template-columns: minmax(17rem, 0.85fr) minmax(0, 1.75fr);
		align-items: start;
		gap: 3.2rem;
	}

	.club-difference-cards {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-auto-rows: 2.5rem;
		gap: 1.45rem;
	}

	.difference-card {
		min-height: 0;
	}

	.difference-card-one {
		grid-column: 1;
		grid-row: 1 / span 7;
	}

	.difference-card-two {
		grid-column: 2;
		grid-row: 2 / span 7;
	}

	.difference-card-three {
		grid-column: 3;
		grid-row: 4 / span 7;
	}

	.difference-card-four {
		grid-column: 1;
		grid-row: 9 / span 8;
	}

	.difference-card-five {
		grid-column: 2;
		grid-row: 10 / span 8;
	}

	.difference-card-six {
		grid-column: 3;
		grid-row: 12 / span 8;
	}
}

@media (min-width: 1180px) {
	.club-difference-section {
		padding: 7rem 0 5.5rem;
	}

	.club-difference-container {
		grid-template-columns: 23rem minmax(0, 1fr);
		gap: 5.2rem;
		padding: 0 2rem;
	}
}

/* Research
   ========================================================================== */

.research-section {
	position: relative;
	overflow: hidden;
	padding: 7rem 0 8rem;
	color: #311f12;
	background: #eadac8 url("../../../images/landing/blck4-bg.jpg") center / cover no-repeat;
}

.research-container {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	padding: 0 1.5rem;
	text-align: center;
}

.research-intro {
	display: grid;
	justify-items: center;
	max-width: 50rem;
}

.research-seal {
	width: 7.4rem;
	height: auto;
	margin-bottom: 1.9rem;
}

.research-title {
	margin: 0;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: clamp(2.5rem, 7vw, 3.6rem);
	font-style: italic;
	font-weight: 400;
	line-height: 0.95;
	color: #070606;
}

.research-title span {
	color: #f15c16;
}

.research-subtitle {
	max-width: 38rem;
	margin: 1.2rem 0 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: #211d1a;
}

.research-metrics {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 3rem;
	width: 100%;
	margin-top: 5rem;
}

.research-metric {
	display: grid;
	justify-items: center;
	align-content: start;
	color: #91480e;
}

.research-metric-value,
.research-metric-word {
	margin: 0;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-style: italic;
	font-weight: 400;
	line-height: 0.78;
	color: #b3530f;
}

.research-metric-value {
	font-size: clamp(5.2rem, 18vw, 9.5rem);
}

.research-metric-featured .research-metric-value {
	font-size: clamp(6.4rem, 22vw, 12rem);
}

.research-metric-value span {
	display: inline-block;
	margin-left: 0.06em;
	font-size: 0.28em;
	line-height: 1;
	vertical-align: top;
}

.research-metric-value strong {
	display: inline-block;
	margin-left: -0.08em;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.46em;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	vertical-align: baseline;
}

.research-metric-word {
	font-size: clamp(3.6rem, 12vw, 4.9rem);
}

.research-metric-label {
	margin: 1rem 0 0;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.1;
	text-transform: uppercase;
	color: #91480e;
}

.research-metric-overlap .research-metric-label {
	width: max-content;

	padding: 10px;
	text-align: left;
	
	border-radius: 0.75rem;
}

.research-metric-fifty .research-metric-label {
	position: relative;
	z-index: 2;
	width: max-content;

	padding: 10px;
	text-align: left;

	border-radius: 0.75rem;
}

.research-metric-thousands .research-metric-label {
	position: relative;
	z-index: 2;
	width: max-content;
	padding: 10px;
	text-align: center;
	
	border-radius: 0.75rem;
}

.research-metric-thousands .research-metric-word {
	transform: translateY(var(--research-thousands-word-y, -20px));
}

.research-metric-fifty .research-metric-value {
	position: relative;
	display: inline-grid;
	grid-template-columns: auto 0.42em;
	grid-template-rows: 0.34em 0.42em;
	column-gap: 0.06em;
	align-items: start;
	width: max-content;
}

.research-metric-fifty .research-metric-unit {
	grid-column: 2;
	grid-row: 1;
	margin: 0;
	font-size: 0.3em;
	line-height: 0.8;
	transform: translateY(0.02em);
}

.research-metric-fifty .research-metric-value strong {
	grid-column: 2;
	grid-row: 2;
	margin: 0;
	font-size: 0.5em;
	line-height: 0.8;
	transform: translateY(-0.05em) skewX(-10deg);
	transform-origin: left center;
	margin-top: -28px;
}

.research-metric-description {
	max-width: 17rem;
	margin: 1.35rem 0 0;
	font-size: 1rem;
	line-height: 1.65;
	color: #7b461c;
	font-weight: 500;
}

.research-mission {
	display: grid;
	gap: 1.5rem;
	align-items: center;
	width: min(100%, 50rem);
	margin-top: 5.5rem;
	padding: 2rem;
	color: #9c4b10;
	border: 1px solid rgba(157, 82, 22, 0.72);
	border-radius: 0.75rem;
}

.research-mission-copy {
	display: grid;
	justify-items: center;
}

.research-mission-copy img {
	width: 1.9rem;
	height: auto;
	margin-bottom: 0.65rem;
}

.research-mission-copy p {
	margin: 0;
	font-size: 0.74rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #f15c16;
}

.research-mission-copy strong {
	display: block;
	max-width: 19rem;
	margin-top: 0.45rem;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: clamp(1.55rem, 5vw, 1.6rem);
	font-style: italic;
	font-weight: 400;
	line-height: 1.12;
	color: #823e09;
}

.research-mission-note {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.5;
	color: #9c4b10;
	text-align: center;
	font-weight: 500;
}

@media (min-width: 760px) {
	.research-section {
		padding: 8rem 0 9rem;
	}

	.research-metrics {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		align-items: end;
		gap: 2rem;
		margin-top: 6rem;
	}

	.research-mission {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 2rem;
		padding: 2.15rem 2.6rem;
		text-align: left;
	}

	.research-mission-copy {
		justify-items: center;
		padding-right: 2rem;
		border-right: 1px solid rgba(157, 82, 22, 0.58);
		text-align: center;
	}

	.research-mission-note {
		max-width: 19rem;
	}
}

@media (min-width: 1180px) {
	.research-container {
		padding: 0 2rem;
	}

	.research-metrics {
		margin-top: 6.8rem;
	}

	.research-mission {
		margin-top: 6.3rem;
	}
}

/* Pleasure Discoveries
   ========================================================================== */

.pleasure-section {
	--pleasure-cream: #fffbf5;
	--pleasure-sand: #f0dfca;
	--pleasure-ink: #130d09;
	--pleasure-orange: #f15c16;
	position: relative;
	overflow: visible;
	padding: 0 0 7rem;
	background: var(--pleasure-cream);
}

.pleasure-intro {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	min-height: 17rem;
	padding: 3rem 1.5rem 3.8rem;
}

.pleasure-title {
	max-width: 18ch;
	margin: 0;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: clamp(2.6rem, 8vw, 3.6rem);
	font-style: italic;
	font-weight: 400;
	line-height: 0.95;
	color: var(--pleasure-ink);
}

.pleasure-title-line {
	display: block;
}

.pleasure-title-line.found {
	margin-top: 20px;;
}

.pleasure-title em {
	font-style: italic;
	color: var(--pleasure-orange);
}

.pleasure-title-icon {
	display: inline-block;
	width: 0.58em;
	height: auto;
	margin-left: 0.18em;
	vertical-align: 0.08em;
}

.pleasure-hero {
	position: relative;
	z-index: 2;
	display: grid;
	justify-items: center;
	padding: 9rem 1.5rem 0;
	background: #dac6ad url("../../../images/landing/block5-bg.jpg") center top / cover no-repeat;
}

.pleasure-hero::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	opacity: 0.34;
	background: radial-gradient(ellipse at 28% 0%, rgba(48, 33, 20, 0.36), transparent 44%);
}

.pleasure-hero-card {
	position: relative;
	z-index: 3;
	width: fit-content;
	max-width: 100%;
	margin-bottom: -5.8rem;
	color: #ffffff;
}

.pleasure-hero-card > img:first-child {
	width: auto;
	max-width: 100%;
	height: auto;
	
}

.pleasure-hero-seal {
    position: absolute;
    top: -6.75rem;
    left: 7.6rem;
    z-index: 1;
    width: 16rem;
    height: auto;
}

.pleasure-hero-card p {
	position: absolute;
	left: 10.5rem;
	bottom: -0.16em;
	z-index: 1;
	margin: 0;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: clamp(2.5rem, 8vw, 8.9rem);
	font-style: italic;
	font-weight: 100;
	line-height: 0.75;
	color: #fffaf3;
}

.pleasure-hero-word {
	display: block;
	width: max-content;
}

.share-buttom{
margin-top: 10px;
}


.share-buttom .template_breda {
color: #211d1a !important;
    border: 1px solid #fff;
}

.pleasure-hero-word-one {
	position: absolute;
    top: -0.6em;
    left: 1.8em;
}

.pleasure-hero-word-two {
	position: relative;
}

.pleasure-hero-word-one,
.pleasure-hero-word-two {
	font-weight: 400;
}

.pleasure-hero-word-three {
	position: relative;
	margin-top: -0.05em;
	margin-left: -0.08em;
}

.pleasure-hero-card > span {
	position: absolute;
	top: 2rem;
	right: 2rem;
	z-index: 1;
	writing-mode: vertical-rl;
	font-size: 0.66rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #fffaf3;
}

.pleasure-stories {
	position: relative;
	z-index: 1;
	overflow: visible;
	margin-top: -5.2rem;
	padding-top: 13rem;
	background: var(--pleasure-sand);
}



.pleasure-story {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	min-height: 24rem;
	overflow: visible;
	margin-top: 5.5rem;
	background:
		radial-gradient(circle, rgba(156, 94, 45, 0.12) 0 1px, transparent 1px) 0 0 / 1.1rem 1.1rem,
		var(--pleasure-sand);
}

.pleasure-story-with-icon {
	z-index: 6;
}

.pleasure-story:first-child {
	margin-top: 0;
}

.pleasure-story figure {
	width: 100%;
	height: 100%;
	min-height: 20rem;
	margin: 0;
	overflow: hidden;
}

.pleasure-story figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pleasure-story-copy {
	position: relative;
	z-index: 1;
	padding: 2.2rem 1.5rem;
	color: #4e2c08;
}

.pleasure-story-copy p {
	max-width: 14ch;
	margin: 0 auto;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 8vw, 3rem);
	font-style: italic;
	font-weight: 400;
	line-height: 0.86;
	text-align: center;
}

.pleasure-story-copy span {
	display: inline-block;
	font-size: 1.14em;
	color: #130d09;
}

.pleasure-coffee-title {
	text-align: left;
}

.pleasure-story-copy .pleasure-coffee-line {
	display: block;
	width: max-content;
}

.pleasure-story-copy .pleasure-coffee-line-one,
.pleasure-story-copy .pleasure-coffee-line-two {
	color: #572510;
	    margin-bottom: 6px;
		font-size: 1.3em;
}

.pleasure-story-copy .pleasure-coffee-line-three,
.pleasure-story-copy .pleasure-coffee-line-four {
	color: #bc771b;
	    margin-bottom: 16px;
}

.pleasure-coffee-line-two {
	margin-top: -0.05em;
}

.pleasure-coffee-line-three {
	margin-top: 0.08em;
}

.pleasure-coffee-line-four {
	margin-top: -0.2em;
	margin-left: 1.12em;
}

.pleasure-utensil-title {
	text-align: center;
}

.pleasure-story-copy .pleasure-utensil-line {
	display: block;
	width: max-content;
}

.pleasure-story-copy .pleasure-utensil-line-one,
.pleasure-story-copy .pleasure-utensil-line-two {
	color: #572510;
}

.pleasure-story-copy .pleasure-utensil-line-three,
.pleasure-story-copy .pleasure-utensil-line-four {
	color: #bc771b;
}

.pleasure-utensil-line-one {
	margin-left: 0.75em;
}

.pleasure-utensil-line-two {
	margin-top: 0em;
	margin-left: 2.2em;

}

.pleasure-utensil-title .pleasure-utensil-line-two{
	font-size: 1.52em;
}

.pleasure-utensil-line-three {
	margin-top: 0.1em;
}

.pleasure-utensil-line-four {
	margin-top: 0em;
	margin-left: -0.62em;
}

.pleasure-find-title {
	text-align: center;
}

.pleasure-story-copy .pleasure-find-line {
	display: block;
	width: max-content;
}

.pleasure-story-copy .pleasure-find-line-one,
.pleasure-story-copy .pleasure-find-line-two {
	color: #572510;
}

.pleasure-story-copy .pleasure-find-line-two{
    font-size: 1.64em;

}

.pleasure-story-copy .pleasure-find-line-three,
.pleasure-story-copy .pleasure-find-line-four {
	color: #bc771b;
}

.pleasure-find-line-one {
	margin-left: 0.25em;
}

.pleasure-find-line-two {
	margin-top: 0em;
	margin-left: 0.85em;
	font-size: 1.16em;
}

.pleasure-find-line-three {
	margin-top: 0.18em;
	margin-left: 1.85em;
}

.pleasure-find-line-four {
	margin-top: 0em;
	margin-left: -0.22em;
}

.pleasure-chocolate-title {
	text-align: center;
}

.pleasure-story-copy .pleasure-chocolate-line {
	display: block;
	width: max-content;
}

.pleasure-story-copy .pleasure-chocolate-line-one,
.pleasure-story-copy .pleasure-chocolate-line-two {
	color: #572510;
}


.pleasure-chocolate-title .pleasure-chocolate-line-two{
font-size: 1.74em;
}

.pleasure-story-copy .pleasure-chocolate-line-three,
.pleasure-story-copy .pleasure-chocolate-line-four {
	color: #bc771b;
}

.pleasure-chocolate-line-one {
	margin-left: 0.62em;
}

.pleasure-chocolate-line-two {
	margin-top: 0em;
	margin-left: 1.55em;
	font-size: 1.18em;
}

.pleasure-chocolate-line-three {
	margin-top: 0.1em;
	margin-left: 0.42em;
}

.pleasure-chocolate-line-four {
	margin-top: 0em;
	margin-left: 0.15em;
}

.pleasure-story-icon {
	display: block;
	position: absolute;
	right: 24%;
	bottom: -15.8rem;
	z-index: 8;
	width: var(--pleasure-story-icon-size, clamp(7rem, 14vw, 17.5rem));
	height: auto;
	margin: 0;
	transform: rotate(var(--pleasure-story-icon-rotation, 25deg));
	pointer-events: none;
}

.pleasure-footer {
	display: grid;
	justify-items: center;
	gap: 1.1rem;
	max-width: 32rem;
	margin: 7rem auto 0;
	padding: 0 1.5rem;
	text-align: center;
}

.pleasure-footer img {
	width: 8.6rem;
	height: auto;
}

.pleasure-footer p {
	max-width: 28rem;
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: #321f12;
	font-weight: 500;
}

@media (min-width: 760px) {
	.pleasure-intro {
		justify-content: start;
		width: min(100%, 82rem);
		min-height: 19rem;
	}

	.pleasure-hero {
		padding-top: 15.5rem;
	}

	.pleasure-stories {
		margin-top: -5.2rem;
		padding-top: 24rem;
	}

	.pleasure-story {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		min-height: 24rem;
		width: calc(100% - var(--pleasure-story-trim, 0px));
		margin-left: var(--pleasure-story-left, 0);
		margin-right: var(--pleasure-story-right, 0);
	}

	.pleasure-story:nth-child(1) {
		--pleasure-story-trim: 3.5rem;
		--pleasure-story-right: 3.5rem;
	}

	.pleasure-story:nth-child(2) {
		--pleasure-story-trim: 4rem;
		--pleasure-story-left: 4rem;
	}

	.pleasure-story:nth-child(3) {
		--pleasure-story-trim: 5rem;
		--pleasure-story-right: 5rem;
	}

	.pleasure-story:nth-child(4) {
		--pleasure-story-trim: 3rem;
		--pleasure-story-left: 3rem;
	}

	.pleasure-story-left figure {
		order: 1;
	}

	.pleasure-story-left .pleasure-story-copy {
		order: 2;
	}

	.pleasure-story-right .pleasure-story-copy {
		order: 1;
	}

	.pleasure-story-right figure {
		order: 2;
	}

	.pleasure-story-copy {
		padding: 3rem 2rem;
	}

	.pleasure-story-with-icon .pleasure-story-copy {
		align-self: start;
		padding-top: 4.9rem;
		padding-left: 0;
	}

	.pleasure-story-with-icon .pleasure-story-copy p {
		margin-left: -5.7rem;
	}

	.pleasure-story-right .pleasure-utensil-title {
		margin-right: -3.8rem;
	}

	.pleasure-story-left .pleasure-find-title {
		margin-left: -8.2rem;
	}

	.pleasure-story-right .pleasure-chocolate-title {
		margin-right: -2.4rem;
	}
}

@media (min-width: 1180px) {
	.pleasure-section {
		padding-bottom: 0rem;
	}

	.pleasure-intro {
		padding-left: 0;
	}

	.pleasure-hero-card {
		width: fit-content;
		max-width: 100%;
	}

	.pleasure-story {
		min-height: 26rem;
	}

	.pleasure-story figure {
		min-height: 26rem;
	}

	.pleasure-story-copy p {
		font-size: clamp(2.4rem, 4.8vw, 4rem);
	}
}

/* Community
   ========================================================================== */

.community-section {
	--community-bg: #fbfaf7;
	--community-green: #2f5d45;
	--community-orange: #f15c16;
	--community-bronze: #b57a38;
	margin-bottom: 0;
	padding: 5.2rem 0 6.4rem;
	background: var(--community-bg);
}

.community-container {
	display: grid;
	gap: 3.5rem;
	padding: 0 1.5rem;
}

.community-intro,
.community-testimonials {
	min-width: 0;
}

.community-title {
	max-width: 100%;
	margin: 0;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: clamp(3rem, 14vw, 4.15rem);
	font-style: italic;
	font-weight: 400;
	line-height: 1.09;
	color: var(--community-green);
}

.community-title img {
	display: inline-block;
	width: 0.74em;
	height: auto;
	margin-left: 0.12em;
	vertical-align: -0.08em;
}

.community-copy {
	max-width: 28rem;
	margin: 1.7rem 0 0;
	font-size: 1rem;
	line-height: 1.92;
	color: var(--community-green);
}

.community-testimonials {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.6rem;
	align-items: start;
}

.community-testimonial {
	display: grid;
	align-content: start;
	min-width: 0;
	color: var(--community-green);
}

.community-testimonial blockquote {
	position: relative;
	min-height: 9.5rem;
	margin: 0;
	padding-top: 2.25rem;
}

.community-testimonial blockquote::before {
	position: absolute;
	top: -0.36rem;
	left: 0;
	content: "\201C";
	font-family: Georgia, "Times New Roman", serif;
	font-size: 4.25rem;
	font-weight: 700;
	line-height: 1;
	color: var(--community-bronze);
}

.community-testimonial blockquote::after {
	display: block;
	width: 4.6rem;
	height: 1px;
	margin-top: 1.4rem;
	content: "";
	background: var(--community-bronze);
}

.community-testimonial p {
	max-width: 15rem;
	margin: 0;
	font-size: 0.98rem;
	font-style: italic;
	font-weight: 500;
	line-height: 1.45;
}

.community-testimonial em {
	font-style: italic;
	color: var(--community-orange);
}

.community-member {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin-top: 1.9rem;
}

.community-member img {
	flex: 0 0 auto;
	width: 4rem;
	height: 4rem;
	object-fit: cover;
	border-radius: 50%;
}

.community-member cite {
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: 1rem;
	font-style: italic;
	font-weight: 400;
	line-height: 1;
	color: #9a5a14;
}

.community-signature {
	display: flex;
	grid-column: 1 / -1;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin: 0.7rem 0 0;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: clamp(1.1rem, 7vw, 1.4rem);
	font-style: italic;
	font-weight: 400;
	line-height: 1.1;
	text-align: center;
	color: var(--community-green);
}

.community-signature span {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.88em;
	font-style: normal;
	line-height: 1;
	color: var(--community-orange);
}

@media (min-width: 760px) {
	.community-section {
		padding: 6.4rem 0 7.4rem;
	}

	.community-container {
		grid-template-columns: minmax(18rem, 0.86fr) minmax(0, 1.75fr);
		align-items: start;
		gap: 4rem;
	}

	.community-title {
		font-size: clamp(3.45rem, 6vw, 4.4rem);
	}

	.community-testimonials {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 3.3rem 2.8rem;
	}

	.community-testimonial blockquote {
		min-height: 10rem;
	}

	.community-signature {
		margin-top: 0.4rem;
	}
}

@media (min-width: 1180px) {
	.community-section {
		padding: 7.7rem 0 8.8rem;
	}




	.community-container {
		grid-template-columns: 27rem minmax(0, 1fr);
		gap: 4.8rem;
		padding: 0 2rem;
	}

	.community-title {
		font-size: 3.6rem;
	}

	.community-copy {
		margin-top: 1.45rem;
	}

	.community-testimonials {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 2.1rem;
		padding-top: 0.2rem;
	}

	.community-testimonial blockquote {
		min-height: 11.2rem;
	}

	.community-member {
		margin-top: 2.05rem;
	}

	.community-signature {
		margin-top: 1.25rem;
	}
}

/* Home Deserves
   ========================================================================== */

.home-deserves-section {
	--home-deserves-ink: #41363b;
	--home-deserves-ghost: rgba(241, 225, 200, 0.8);
	position: relative;
	overflow: hidden;
	min-height: 47rem;
	margin-bottom: 0;
	padding: 4.4rem 0 5.4rem;
}

.home-deserves-stage {
	position: relative;
	min-height: 38rem;
	padding: 0 1.5rem;
}

.home-deserves-images,
.home-deserves-typography,
.home-deserves-copy {
	position: absolute;
	inset: 0;
}

.home-deserves-images {
	z-index: 1;
}

.home-deserves-card {
	position: absolute;
	z-index: var(--home-deserves-card-z, 2);
	width: var(--home-deserves-card-width);
	margin: 0;
	overflow: hidden;
	background: #eadfce;
	border-radius: 0.45rem;
	box-shadow: 0 1.25rem 2.4rem rgba(38, 28, 20, 0.12);
}

.home-deserves-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-deserves-card-cook {
	--home-deserves-card-width: min(49vw, 19rem);
	top: 1.2rem;
	left: 5%;
	aspect-ratio: 0.84;
}

.home-deserves-card-headphones {
	--home-deserves-card-width: min(19vw, 5.9rem);
	top: 5.6rem;
	left: 58%;
	aspect-ratio: 0.8;
}

.home-deserves-card-coffee {
	--home-deserves-card-width: min(31vw, 12.2rem);
	top: 8.1rem;
	right: 4%;
	aspect-ratio: 0.86;
}

.home-deserves-card-pan {
	--home-deserves-card-width: min(28vw, 10.2rem);
	top: 15.1rem;
	right: 20%;
	aspect-ratio: 0.76;
}

.home-deserves-card-robot {
	--home-deserves-card-width: min(34vw, 12.6rem);
	bottom: 3.2rem;
	left: 3%;
	aspect-ratio: 0.65;
}

.home-deserves-card-tv {
	--home-deserves-card-width: min(36vw, 13.8rem);
	bottom: 2rem;
	left: 23%;
	aspect-ratio: 1.8;
}

.home-deserves-card-phone {
	--home-deserves-card-width: min(18vw, 5.4rem);
	right: 19%;
	bottom: 1.2rem;
	aspect-ratio: 0.52;
}

.home-deserves-card-airfryer {
	--home-deserves-card-width: min(34vw, 12.5rem);
	right: 2%;
	bottom: 2.1rem;
	aspect-ratio: 0.65;
}

.home-deserves-typography {
	z-index: 3;
	pointer-events: none;
}

.home-deserves-giant {
	position: absolute;
	margin: 0;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-style: italic;
	font-weight: 100;
	line-height: 0.76;
	letter-spacing: 0;
	color: var(--home-deserves-ghost);
	white-space: nowrap;
}

.home-deserves-giant-top {
	top: 5.9rem;
	left: 50%;
	font-size: clamp(8rem, 24vw, 16rem);
	transform: translateX(-50%);
}

.home-deserves-giant-bottom {
	left: 50%;
	bottom: 1.3rem;
	font-size: clamp(7.6rem, 23vw, 14rem);
	transform: translateX(-50%);
}

.home-deserves-copy {
	z-index: 4;
	display: grid;
	place-content: center;
	padding: 0 1.5rem;
	text-align: center;
	color: var(--home-deserves-ink);
	pointer-events: none;
}

.home-deserves-copy p,
.home-deserves-copy h2 {
	margin: 0;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-style: italic;
	letter-spacing: 0;
}

.home-deserves-copy p {
	font-size: clamp(2.1rem, 7vw, 3.5rem);
	font-weight: 200;
	line-height: 0.92;
}

.home-deserves-copy-line {
	position: relative;
	display: block;
	overflow: hidden;
}

.home-deserves-copy-line-top {
	transform: translateX(-1.72em);
}

.home-deserves-copy-line-bottom {
	transform: translateX(1.82em);
}

.home-deserves-copy h2 {
	overflow: hidden;
	font-size: clamp(4rem, 15vw, 7.2rem);
	font-weight: 600;
	line-height: 0.78;
}

.home-deserves-copy span {
	display: inline-block;
	will-change: transform, opacity, filter;
}

@media (max-width: 759px) {
	.home-deserves-section {
		min-height: 43rem;
	}

	.home-deserves-stage {
		min-height: 35rem;
	}

	.home-deserves-card-cook {
		left: -0.4rem;
	}

	.home-deserves-card-headphones {
		top: 5.1rem;
		left: 56%;
	}

	.home-deserves-card-pan {
		top: 14rem;
		right: 25%;
	}

	.home-deserves-card-tv {
		left: 26%;
	}

	.home-deserves-copy {
		padding-top: 1.2rem;
	}
}

@media (min-width: 760px) {
	.home-deserves-section {
		min-height: 55rem;
		padding: 5.5rem 0 6.4rem;
	}

	.home-deserves-stage {
		min-height: 43rem;
	}

	.home-deserves-card-cook {
		left: 4.4%;
	}

	.home-deserves-card-coffee {
		right: 6.2%;
	}

	.home-deserves-card-robot {
		left: 2.8%;
	}

	.home-deserves-card-airfryer {
		right: 2.8%;
	}
}

@media (min-width: 1180px) {
	.home-deserves-section {
		min-height: 64rem;
		padding: 0rem 0 7.9rem;
	}

	.home-deserves-stage {
		min-height: 52rem;
		padding: 0 2rem;
	}

	.home-deserves-card-cook {
		--home-deserves-card-width: 18.9rem;
		top: 0;
		left: 5.2rem;
	}

	.home-deserves-card-headphones {
		--home-deserves-card-width: 5.8rem;
		top: 3.9rem;
		left: 57.2rem;
	}

	.home-deserves-card-coffee {
		--home-deserves-card-width: 13.3rem;
		top: 6.6rem;
		right: 5.2rem;
	}

	.home-deserves-card-pan {
		--home-deserves-card-width: 9rem;
		top: 13.1rem;
		right: 18rem;
	}

	.home-deserves-card-robot {
		--home-deserves-card-width: 12.2rem;
		bottom: 3.8rem;
		left: 4rem;
	}

	.home-deserves-card-tv {
		--home-deserves-card-width: 16.2rem;
		bottom: -0.2rem;
		left: 15.2rem;
	}

	.home-deserves-card-phone {
		--home-deserves-card-width: 5.6rem;
		right: 14.3rem;
		bottom: 2.1rem;
	}

	.home-deserves-card-airfryer {
		--home-deserves-card-width: 12.4rem;
		right: 2.4rem;
		bottom: 3.7rem;
	}

	.home-deserves-giant-top {
		top: 3.9rem;
		left: 50%;
		font-size: 22.2rem;
	}

	.home-deserves-giant-bottom {
		left: 50%;
		bottom: 1.7rem;
		font-size: 19.8rem;
	}

	.home-deserves-copy {
		padding-top: 7.2rem;
	}

	.home-deserves-copy p {
		font-size: 3.4rem;
	}

	.home-deserves-copy h2 {
		font-size: 7.1rem;
	}
}

/* Early Access
   ========================================================================== */

.early-access-section {
	--early-access-orange: #f15c16;
	--early-access-ink: #070606;
	position: relative;
	overflow: hidden;
	margin-bottom: 0 !important;
	padding: 5rem 0 7rem;
	background: #ffffff;
}

.early-access-container {
	padding: 0 1.5rem;
}

.early-access-hero {
	position: relative;
	overflow: visible;
}

.early-access-photo {
	width: 100%;
	height: auto;
	object-fit: initial;
}

.early-access-seal {
	position: absolute;
	top: -2rem;
	left: 50%;
	z-index: 3;
	width: clamp(4.9rem, 8vw, 8rem);
	height: clamp(4.9rem, 8vw, 8rem);
	object-fit: contain;
	transform: translateX(-50%);
}

.early-access-hero h2 {
	position: absolute;
	left: 8.8%;
	bottom: 3.1rem;
	z-index: 2;
	max-width: 8.1ch;
	margin: 0;
	color: #ffffff;
	font-size: clamp(3.2rem, 10vw, 5.25rem);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.early-access-hero h2::after {
	display: inline-block;
	width: 0.72em;
	height: 0.72em;
	margin-left: 0.18em;
	content: "";
	background: url("../../../images/landing/star-icon.svg") center / contain no-repeat;
	filter: brightness(0) invert(1);
	vertical-align: -0.04em;
}

.early-access-benefits {
	width: min(100%, 60rem);
	margin: 1.5rem auto 0;
}

.early-access-kicker {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	width: fit-content;
	margin: 0 0 4rem;
	font-size: 0.88rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--early-access-ink);
}

.early-access-kicker span {
	display: inline-block;
	width: 5.8rem;
	height: 1.35rem;
	background:
		linear-gradient(var(--early-access-orange), var(--early-access-orange)) left 50% / 4.25rem 1px no-repeat,
		url("../../../images/landing/star-icon.svg") right center / 1.35rem 1.35rem no-repeat;
}

.early-access-list {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.early-access-list li {
	position: relative;
	display: block;
	min-width: 0;
	min-height: 6.2rem;
	padding-left: 0;
}

.early-access-number {
	display: block;
	color: var(--early-access-ink);
	font-size: clamp(4.5rem, 16vw, 5.6rem);
	font-weight: 200;
	line-height: 0.76;
	letter-spacing: 0;
}

.early-access-icon {
	position: absolute;
	left: clamp(4.95rem, 16vw, 6.15rem);
	top: 0.72rem;
	width: var(--early-access-icon-size, 2.05rem);
	height: var(--early-access-icon-size, 2.05rem);
	object-fit: contain;
}

.early-access-list li:nth-child(2) .early-access-icon {
	--early-access-icon-size: 2.25rem;
	top: 0.62rem;
}

.early-access-list li:nth-child(3) .early-access-icon {
	--early-access-icon-size: 2rem;
	top: 0.74rem;
}

.early-access-list li:nth-child(4) .early-access-icon {
	--early-access-icon-size: 1.92rem;
	top: 0.8rem;
}

.early-access-list p {
	position: relative;
	z-index: 1;
	max-width: 13.5rem;
	margin: -1.03rem 0 0 2.1rem;
	padding: 0.28rem 0.55rem 0.22rem;
	color: var(--early-access-ink);
	font-size: 0.67rem;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: #fffaf3;
}

.early-access-list strong {
	color: var(--early-access-orange);
	font-weight: 800;
}

@media (min-width: 760px) {
	.early-access-section {
		padding: 6rem 0 7.6rem;
	}

	.early-access-container {
		padding: 0 2rem;
	}

	.early-access-benefits {
		margin-top: 1.7rem;
	}

	.early-access-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 3.1rem 4rem;
	}
}

@media (min-width: 1180px) {
	.early-access-section {
		padding: 16rem 0rem;
	}

	.early-access-container {
		padding: 0;
	}

	.early-access-seal {
		top: -4rem;
	}

	.early-access-hero h2 {
		left: 6.7rem;
		bottom: 3.15rem;
		font-size: 4.65rem;
	}

	.early-access-benefits {
		width: calc(100% - 13rem);
		margin-top: 1.65rem;
	}

	.early-access-list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 3rem;
	}

	.early-access-number {
		font-size: 6.25rem;
	}

	.early-access-icon {
		left: 6.2rem;
		top: -0.18rem;
		width: var(--early-access-icon-size, 2.18rem);
		height: var(--early-access-icon-size, 2.18rem);
	}

	.early-access-list li:nth-child(2) .early-access-icon {
		--early-access-icon-size: 2.42rem;
		top: -0.18rem;
		left: 8rem;
	}

	.early-access-list li:nth-child(3) .early-access-icon {
		--early-access-icon-size: 2.12rem;
		top: -0.18rem;
		left: 8rem;
	}

	.early-access-list li:nth-child(4) .early-access-icon {
		--early-access-icon-size: 2.05rem;
		top: -0.18rem;
		left: 8rem;
	}

	.early-access-list p {
		max-width: 12.5rem;
		margin-left: 2.15rem;
	}
}

/* Channel
   ========================================================================== */

.channel-section {
	--channel-cream: #f4eadb;
	--channel-orange: #d95508;
	--channel-ink: #0d0a08;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	overflow: hidden;
	margin-bottom: 0 !important;
	background: var(--channel-cream);
}

#clube-sabor-registro {
	scroll-margin-top: clamp(2rem, 8vh, 5rem);
}

.channel-visual {
	position: relative;
	min-height: 30rem;
	overflow: hidden;
	background: #d9c5ad;
}

.channel-visual img {
	width: 100%;
	height: 100%;
	min-height: 30rem;
	object-fit: cover;
	object-position: right center;
}

.channel-visual p {
	position: absolute;
	top: 50%;
	right: -0.18em;
	bottom: auto;
	margin: 0;
	color: #f4efe2;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: clamp(6.8rem, 17vw, 11rem);
	font-style: italic;
	font-weight: 100;
	line-height: 0.72;
	letter-spacing: 0;
	writing-mode: vertical-rl;
	transform: translateY(-50%) rotate(180deg);
	pointer-events: none;
}

.channel-panel {
	position: relative;
	display: grid;
	align-items: center;
	min-height: 34rem;
	padding: 4.2rem 1.5rem;
	background: var(--channel-cream) url("../../../images/landing/blck9-bg.jpg") center / cover no-repeat;
}

.channel-panel-inner {
	position: relative;
	display: grid;
	justify-items: center;
	width: min(100%, 36rem);
	margin: 0 auto;
	text-align: center;
}

.channel-seal {
	width: 7.1rem;
	height: auto;
	margin-bottom: 1.6rem;
}

.channel-panel h2 {
	max-width: 34rem;
	margin: 0;
	color: var(--channel-ink);
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 7vw, 2.65rem);
	font-style: italic;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0;
}

.channel-panel h2 em {
	color: var(--channel-orange);
	font-style: italic;
}

.channel-form {
	display: grid;
	gap: 1.1rem;
	width: min(100%, 34rem);
	margin-top: 2.2rem;
}

.channel-brevo,
.channel-sib-container {
	display: grid;
	justify-items: center;
	width: 100%;
}

.channel-message {
	display: none;
	width: min(100%, 34rem);
	margin: 1.15rem 0 0;
	padding: 0.9rem 1rem;
	font-size: 0.82rem;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	border-radius: 1rem;
}

.channel-message-error {
	color: #661d1d;
	background: #ffeded;
}

.channel-message-success {
	color: #085229;
	background: #e7faf0;
}

.channel-form .sib-input,
.channel-form .form__entry,
.channel-form .form__label-row,
.channel-form .entry__field {
	width: 100%;
}

.channel-form input {
	width: 100%;
	min-height: 2.85rem;
	padding: 0 1.2rem;
	color: var(--channel-ink);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	background: #ffffff;
	border: 0;
	border-radius: 999px;
	outline: 0;
}

.channel-form input::placeholder {
	color: #1b1511;
	opacity: 1;
	transition: opacity 160ms ease;
}

.channel-form input:focus::placeholder {
	opacity: 0;
}

.channel-form .entry__error {
	display: block;
	margin-top: 0.35rem;
	color: #661d1d;
	font-size: 0.72rem;
	font-weight: 500;
	line-height: 1.25;
	text-align: left;
}

.channel-form .input--hidden {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.channel-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 3.35rem;
	width: 100%;
	padding: 1rem 1.45rem;
	color: #ffffff;
	font: inherit;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	background: var(--channel-ink);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transition: transform 180ms ease, background 180ms ease;
}

.channel-submit svg {
	width: 1rem;
	height: 1rem;
	fill: currentColor;
}

.channel-submit .sib-hide-loader-icon {
	display: none;
}

.channel-submit-loader {
	display: none;
	align-items: center;
	justify-content: center;
	min-height: 3.35rem;
	width: 100%;
	padding: 1rem 1.45rem;
	color: #ffffff;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	background: var(--channel-ink);
	border-radius: 999px;
}

.channel-submit:hover,
.channel-submit:focus {
	background: #000000;
	transform: translateY(-1px);
}

.channel-recaptcha-note {
	max-width: 28rem;
	margin: -0.2rem auto 0;
	color: rgba(13, 10, 8, 0.58);
	font-size: 0.62rem;
	font-weight: 400;
	line-height: 1.35;
	text-align: center;
	text-transform: none;
}

.grecaptcha-badge {
	visibility: hidden;
}

.channel-actions {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1rem;
	width: min(100%, 34rem);
	margin-top: 1rem;
}

.channel-button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.1rem;
	min-height: 3.35rem;
	width: 100%;
	padding: 1rem 1.2rem 1rem 1.45rem;
	color: #ffffff;
	font-size: 0.92rem;
	font-weight: 500;
	line-height: 1.05;
	text-align: left;
	text-decoration: none;
	background: var(--channel-orange);
	border-radius: 999px;
	transition: transform 180ms ease, background 180ms ease;
}

.channel-button:hover,
.channel-button:focus {
	background: #bf4704;
	transform: translateY(-1px);
}

.channel-actions.is-locked .channel-button {
	color: rgba(255, 255, 255, 0.74);
	background: #a9a19a;
	cursor: not-allowed;
	pointer-events: none;
}

.channel-actions.is-locked .channel-button img,
.channel-button.is-disabled img {
	opacity: 0.55;
}

.channel-button.is-disabled {
	color: rgba(255, 255, 255, 0.74);
	background: #a9a19a;
	cursor: not-allowed;
	pointer-events: none;
}

.channel-button img {
	flex: 0 0 auto;
	width: 1rem;
	height: auto;
	filter: brightness(0) invert(1);
}

.channel-signature {
	margin: 2.2rem 0 0;
	color: var(--channel-ink);
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: clamp(1.65rem, 6vw, 1.7rem);
	font-style: italic;
	font-weight: 400;
	line-height: 0.96;
}

@media (min-width: 760px) {
	.channel-section {
		grid-template-columns: minmax(0, 44%) minmax(0, 56%);
	}

	.channel-visual,
	.channel-visual img,
	.channel-panel {
		min-height: 42rem;
	}

	.channel-panel {
		padding: 4.5rem 2rem;
	}

	.channel-actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}

}

@media (min-width: 1180px) {
	.channel-section {
		grid-template-columns: 43.8% 56.2%;
	}

	.channel-visual,
	.channel-visual img,
	.channel-panel {
		min-height: 45.5rem;
	}

	.channel-panel {
		padding: 4.8rem 3rem;
	}

	.channel-visual p {
		right: 0.02em;
		font-size: 13.8rem;
	}

	.channel-panel-inner {
		width: 39rem;
	}

	.channel-seal {
		margin-bottom: 1.9rem;
	}

	.channel-panel h2 {
		font-size: 2rem;
	}

	.channel-form {
		width: 36rem;
		margin-top: 2.55rem;
	}

	.channel-signature {
		margin-top: 2.35rem;
	}
}

/* FAQ
   ========================================================================== */

.faq-section {
	--faq-orange: #f15c16;
	--faq-ink: #151312;
	--faq-dark: #373331;
	overflow: hidden;
	margin-bottom: 0 !important;
	padding: 5.5rem 0 7rem;
	background: #ffffff;
}

.faq-container {
	padding: 0 1.5rem;
}

.faq-header {
	display: grid;
	justify-items: center;
	text-align: center;
}

.faq-header p,
.faq-header h2 {
	margin: 0;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-style: italic;
	letter-spacing: 0;
}

.faq-header p {
	color: var(--faq-orange);
	font-size: clamp(3rem, 10vw, 4.1rem);
	font-weight: 400;
	line-height: 0.8;
}

.faq-header h2 {
	color: var(--faq-ink);
	font-size: clamp(3rem, 10vw, 4.8rem);
	font-weight: 400;
	line-height: 0.86;
}

.faq-header span {
	display: block;
	margin-top: 1rem;
	color: var(--faq-ink);
	font-size: 1.05rem;
	font-weight: 400;
	line-height: 1.2;
}

.faq-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: start;
	gap: 1rem;
	width: min(100%, 60rem);
	margin: 4rem auto 0;
}

.faq-column {
	display: grid;
	align-content: start;
	gap: 1rem;
	min-width: 0;
}

.faq-item {
	border: 1px solid var(--faq-dark);
	border-radius: 0.48rem;
	background: #ffffff;
	transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.faq-item.is-open {
	color: #ffffff;
	background: var(--faq-dark);
	border-color: var(--faq-dark);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	min-height: 3.55rem;
	padding: 0.9rem 1.25rem;
	color: inherit;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: left;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.faq-question i {
	position: relative;
	flex: 0 0 auto;
	width: 1.32rem;
	height: 1.32rem;
	background: var(--faq-orange);
	border-radius: 50%;
}

.faq-question i::before,
.faq-question i::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.52rem;
	height: 2px;
	content: "";
	background: #ffffff;
	border-radius: 999px;
	transform: translate(-50%, -50%);
}

.faq-question i::after {
	transform: translate(-50%, -50%) rotate(90deg);
	transition: transform 180ms ease;
}

.faq-item.is-open .faq-question i::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
	padding: 0 1.25rem 1.45rem;
}

.faq-answer p {
	max-width: 27rem;
	margin: 0;
	color: inherit;
	font-size: 0.98rem;
	font-weight: 400;
	line-height: 1.62;
}

@media (min-width: 760px) {
	.faq-section {
		padding: 6.5rem 0 8rem;
	}

	.faq-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.35rem;
	}

	.faq-column {
		gap: 1.15rem;
	}

	.faq-item.is-open .faq-question {
		padding: 2.2rem 2.2rem 1.2rem;
	}

	.faq-item.is-open .faq-answer {
		padding: 0.65rem 2.2rem 2.35rem;
	}
}

@media (min-width: 1180px) {
	.faq-section {
		padding: 12rem 0 8.8rem;
	}

	.faq-container {
		padding: 0 2rem;
	}

	.faq-grid {
		width: 64rem;
		margin-top: 4.4rem;
	}
}

/* Footer
   ========================================================================== */

.landing-footer {
	--footer-cream: #f4efe7;
	--footer-brown: #4a2b17;
	--footer-ink: #151312;
	margin-bottom: 0;
	padding: 5.5rem 0 4.8rem;
	background: var(--footer-cream);
}

.landing-footer-container {
	display: grid;
	justify-items: center;
	gap: 4.4rem;
	padding: 0 1.5rem;
	text-align: center;
}

.landing-footer-brand {
	display: grid;
	justify-items: center;
	gap: 0.75rem;
	color: var(--footer-ink);
}

.landing-footer-logo {
	width: min(100%, 15.5rem);
	height: auto;
}

.landing-footer-brand p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.2;
	color: #2b211d;
}

.landing-footer-slogan {
	max-width: 30rem;
	margin: 0;
	color: var(--footer-brown);
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: clamp(2.8rem, 11vw, 4.6rem);
	font-style: italic;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
}

.landing-footer-credit {
	display: grid;
	justify-items: center;
	gap: 0.15rem;
	color: var(--footer-ink);
}

.landing-footer-credit p {
	margin: 0 0 0.45rem;
	font-size: 0.95rem;
}

.landing-footer-credit img {
	width: 5.8rem;
	height: auto;
}

.landing-footer-credit a {
	font-size: 0.95rem;
	text-decoration: none;
}

@media (min-width: 760px) {
	.landing-footer {
		padding: 7.2rem 0 5.4rem;
	}

	.landing-footer-container {
		grid-template-columns: max-content auto max-content;
		align-items: center;
		justify-content: center;
		gap: 3.2rem;
	}

	.landing-footer-brand {
		justify-self: end;
	}

	.landing-footer-container::before {
		grid-column: 2;
		grid-row: 1;
		width: 1px;
		height: 6.3rem;
		content: "";
		background: var(--footer-brown);
	}

	.landing-footer-slogan {
		grid-column: 3;
		justify-self: start;
		max-width: 34rem;
		text-align: left;
		font-size: clamp(3.5rem, 6vw, 4.7rem);
	}

	.landing-footer-credit {
		grid-column: 1 / -1;
		margin-top: 4.2rem;
	}
}

@media (min-width: 1180px) {
	.landing-footer {
		padding: 8rem 0 5.2rem;
	}

	.landing-footer-container {
		gap: 4.6rem;
	}

	.landing-footer-logo {
		width: 16.4rem;
	}

	.landing-footer-slogan {
		max-width: 35rem;
		font-size: 3.3rem;
	}

	.landing-footer-credit {
		margin-top: 5.4rem;
	}
}

/* Temporary Preview Sections
   ========================================================================== */

.landing-placeholder-section {
	padding: 7rem 0;
	border-top: 1px solid rgba(21, 18, 15, 0.12);
}

.landing-placeholder-kicker {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #8a5a2b;
}

.landing-placeholder-title {
	max-width: 42rem;
	margin: 0;
	font-family: "Editor Italic", Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 7vw, 4rem);
	font-style: italic;
	font-weight: 400;
	line-height: 0.98;
	color: #211d1a;
}

/* Responsive Workbench
   Keep this section at the end so viewport-specific refinements override the
   component rules above.
   ========================================================================== */

@media (max-width: 559px) {
	/* Mobile pequeno: 320px a 559px. */

	.site-header {
		--site-logo-size: 9.75rem;
	}

	.hero-title-wrap {
		display: grid;
		grid-template-columns: repeat(2, max-content);
		justify-content: center;
		align-items: center;
		gap: 0.65rem 1.25rem;
	}

	.club-difference-signature {

    margin-bottom: 80px;
	}

	.hero-title {
		grid-column: 1 / -1;
		order: 3;
		font-size: clamp(2.6rem, 11vw, 4.7rem);
		        padding: 17px 0px 10px 0px;
	}

	.hero-title-icon-left {
		order: 1;
		justify-self: right;
				padding-right: 50px;
	}

	.hero-title-icon-right {
		order: 2;
		justify-self: left;

	}


	.hero-title-icon-right img {
		max-width: 100px;
	}
		.hero-title-icon-left img{
		max-width: 75px;
		}

.hero-subtitle {
    max-width: 18rem;
    font-size: 1rem;
}

	.hero-mosaic {
		position: relative;
		display: block;
		height: 30rem;
		margin-top: 1.8rem;
		overflow: visible;
	}

	.hero-mosaic-column {
		display: block;
	}

	.hero-image-card {
		position: absolute;
		width: auto;
	}

	.hero-image-card img {
		width: 100%;
		max-width: none;
	}

	.hero-image-card-main {
		top: 0;
		left: 24.9%;
		width: 50.2%;
		z-index: 2;
	}

	.hero-mosaic-column:first-child .hero-image-card:nth-child(1) {
	top: 16.5rem;
        left: -3%;
        width: 27.1%;
	}

	.hero-mosaic-column:first-child .hero-image-card:nth-child(2) {
		top: 23.2rem;
		right: -1%;
		width: 23.8%;
	}

	.hero-mosaic-column:nth-child(2) .hero-image-card {
        top: 1.8rem;
        left: -5%;
		width: 29%;
	}

	.hero-mosaic-column:nth-child(4) .hero-image-card {
        top: 2.4rem;
        right: -5%;
		width: 29%;
	}

	.hero-mosaic-column:last-child .hero-image-card:nth-child(1) {
		top: 25.2rem;
		left: -4%;
		width: 22.4%;
	}

	.hero-mosaic-column:last-child .hero-image-card:nth-child(2) {
top: 17rem;
        right: -3%;
        width: 26.4%;
	}

	.hero-action {
		position: absolute;
		right: 0;
		bottom: -94px;
		left: 0;
	}
	.hero-editorial-copy {

    margin-top: 100px;
}

.community-signature span {

    font-size: 1.88em;
}

.hero-editorial-signature {
    margin-top: 60px;
}

.shopping-chaos-copy {
    padding: 10rem 1.5rem;
}

.shopping-chaos-title::after {
    top: -1.5em;
    right: 0.3em;
}

.shopping-chaos-list {
    font-size: clamp(1rem, 2.6vw, 1.12rem);
}

.club-difference-section {

    background: #fffbf5 url(../../../images/landing/bg-block3.png) right 10% / auto no-repeat;
}

	.club-difference-cards {
		grid-template-columns: minmax(0, 1fr);
		gap: 1.25rem;
	}

	.club-difference-cards > .difference-card {
		height: 24rem;
		min-height: 28rem;
		aspect-ratio: auto;
	}

	.difference-card-photo {
		aspect-ratio: auto;
	}

	.difference-card-plain {
		min-height: 0;
	}

	.difference-card-two {
		min-height: 0;
	}

	.difference-card-six {
		min-height: 0;
	}

.research-section {
    padding: 10rem 0 8rem;
}

.research-metric-value {
    font-size: clamp(10.2rem, 18vw, 9.5rem);
}

.research-metric-label {
    font-size: 1.1rem;
}

.research-metrics {

    gap: 9rem;
}


.research-metric-featured .research-metric-value {
    font-size: clamp(10.4rem, 22vw, 12rem);
}


.research-metric-word {
    font-size: clamp(4.6rem, 12vw, 4.9rem);
}

	.pleasure-section,
	.pleasure-hero {
		overflow-x: clip;
	}

	.pleasure-hero {
		padding-right: 0;
		padding-left: 0;
	}

	.pleasure-hero-card {
		justify-self: center;
		width: calc(110vw + 154px);
		max-width: none;
		margin-right: calc((-10vw - 154px) / 2);
		margin-left: calc((-10vw - 154px) / 2);
	}

	.pleasure-hero-card > img:first-child {
		width: 100%;
		max-width: none;
	}

	.pleasure-hero-card p {
		font-size: clamp(3rem, 8.8vw, 9.79rem);
		left: 3em;
	}



.pleasure-hero-seal {
    top: -6.75rem;
    left: 18.6rem;
    width: 9rem;
}

.pleasure-stories {
    padding-top: 18rem;
	padding-bottom: 50px;
}

	.pleasure-story-copy .pleasure-coffee-title {
		position: relative;
		z-index: 2;
		margin: -4rem auto 0;
	}

	.pleasure-story-copy .pleasure-utensil-title,
	.pleasure-story-copy .pleasure-find-title,
	.pleasure-story-copy .pleasure-chocolate-title {
		position: relative;
		z-index: 2;
		margin: -3.5rem auto 0;
	}

	.pleasure-story-right figure {
		order: 1;
	}

	.pleasure-story-right .pleasure-story-copy {
		order: 2;
	}

	.community-testimonials {
		justify-items: center;
		text-align: center;
	}

	.community-testimonial {
		align-content: start;
		justify-items: center;
		margin-bottom: 70px;
	}

	.community-testimonial blockquote {
		display: grid;
		align-content: start;
		min-height: 0;
	}

	.community-member {
		align-self: start;
	}

	.community-member {
		margin-top: 1.1rem;
	}

	.community-testimonial blockquote::before {
		left: 50%;
		transform: translateX(-50%);
	}

	.community-testimonial blockquote::after {
		margin-right: auto;
		margin-left: auto;
	}

	.community-member {
		justify-content: center;
	}

	.home-deserves-card-cook {
		--home-deserves-card-width: min(58.8vw, 22.8rem);
		top: -5.8rem;
		left: -0.4rem;
	}

	.home-deserves-card-headphones {
		--home-deserves-card-width: min(22.8vw, 7.08rem);
        top: 1.1rem;
        left: 51%;
	}

	.home-deserves-card-coffee {
		--home-deserves-card-width: min(37.2vw, 14.64rem);
top: -8.9rem;
        right: -5%;
	}

	.home-deserves-card-pan {
		--home-deserves-card-width: min(33.6vw, 12.24rem);
top: 2rem;
        right: -6%;
	}

	.home-deserves-card-robot {
		--home-deserves-card-width: min(40.8vw, 15.12rem);
        bottom: -5.8rem;
        left: -2%;
	}

	.home-deserves-card-tv {
		--home-deserves-card-width: min(43.2vw, 16.56rem);
		bottom: -8rem;
		left: 13%;
	}

	.home-deserves-card-phone {
		--home-deserves-card-width: min(21.6vw, 6.48rem);
        right: 38%;
        bottom: 0.2rem;
	}

	.home-deserves-card-airfryer {
		--home-deserves-card-width: min(40.8vw, 15rem);
right: 0%;
        bottom: -6.9rem;
	}

.research-metric-description {

    margin: 0rem 0 0;
}

.home-deserves-copy p {

    line-height: 1.2;
}
.home-deserves-giant-top {
    top: 0.9rem;
    font-size: clamp(13rem, 24vw, 16rem);
}
.home-deserves-giant-bottom {
    left: 78%;
    bottom: -1.7rem;
    font-size: clamp(12.6rem, 23vw, 14rem);
    transform: translateX(-50%);
}

.early-access-hero h2 {

    bottom: 0.1rem;


    font-size: clamp(1.2rem, 8vw, 5.25rem);

}

.early-access-seal {
    top: -2.5rem;
}



.pleasure-story-icon {
    right: 9%;
    bottom: -6.8rem;
}

.landing-page  .pleasure-section{
	margin-bottom: 3.5rem;
}

.community-signature {
    font-size: clamp(1.1rem, 7vw, 1.2rem);

}

    .home-deserves-section {
        min-height: 57rem;
		display: grid;
		align-items: center;
    }

	.home-deserves-stage {
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}

	.early-access-hero {
		width: 100vw;
		margin-right: calc(50% - 50vw);
		margin-left: calc(50% - 50vw);
		overflow-x: clip;
		overflow-y: visible;
	}

	.early-access-photo {
		width: 100%;
		max-width: none;
		margin-right: 0;
		margin-left: 0;
	}

	.early-access-benefits {
		width: fit-content;
		margin-right: auto;
		margin-left: auto;
	}

	.early-access-kicker {
		margin-right: 0;
		margin-left: 0;
	}

	.early-access-list {
		width: fit-content;
		margin-right: auto;
		margin-left: auto;
	}


.early-access-number {

    font-size: clamp(5.5rem, 16vw, 5.6rem);
}

.early-access-icon {

    left: clamp(7rem, 16vw, 6.15rem);
}
.early-access-list p {

    margin: -1.03rem 0 0 1rem;
}

.early-access-list {

    gap: 5.4rem;

}

.channel-visual p {
    right: 0em;
    font-size: clamp(8.8rem, 17vw, 11rem);

}




}

@media (min-width: 560px) and (max-width: 759px) {
	/* Mobile grande: ajuste entre a base mobile e o tablet. */

	.site-header {
		--site-logo-size: 10.5rem;
	}


.hero-title {

    font-size: clamp(2.6rem, 14vw, 3.7rem);

}

	/* Hero mosaic - marcadores para 560px a 759px. */
	.hero-mosaic {
		position: relative;
		display: block;
		height: 36rem;
		margin-top: 2rem;
		overflow: visible;
	}

	.hero-mosaic-column {
		display: block;
	}

	.hero-image-card {
		position: absolute;
		width: auto;
	}

	.hero-image-card img {
		width: 100%;
		max-width: none;
	}

	/* Casal */
	.hero-image-card-main {
		top: 0;
		left: 27.5%;
		width: 45%;
		z-index: 2;
	}

	/* Garrafa de vinho */
	.hero-mosaic-column:first-child .hero-image-card:nth-child(1) {
top: 26.5rem;
        left: -1%;
		width: 27.1%;
	}

	/* Prato de macarrao */
	.hero-mosaic-column:first-child .hero-image-card:nth-child(2) {
		top: 39.5rem;
		right: -6%;
		width: 23.8%;
	}

	/* Panela */
	.hero-mosaic-column:nth-child(2) .hero-image-card {
		top: 1.8rem;
		left: -3%;
		width: 29%;
	}

	/* Cafeteira */
	.hero-mosaic-column:nth-child(4) .hero-image-card {
top: 2.4rem;
        right: -3%;
        width: 29%;
	}

	/* Purificador */
	.hero-mosaic-column:last-child .hero-image-card:nth-child(1) {
		top: 38.7rem;
		left: -4%;
		width: 21.4%;
	}

	/* Tabua de frios */
	.hero-mosaic-column:last-child .hero-image-card:nth-child(2) {
		top: 27rem;
		right: -2.3%;
		width: 28.4%;
	}

	.hero-action {
		position: absolute;
		right: 0;
		bottom: -145px;
		left: 0;
	}

	/* Shopping chaos - mesma logica do mobile pequeno. */
	.shopping-chaos-copy {
		padding: 10rem 1.5rem;
	}

	.shopping-chaos-title::after {
		top: -1.5em;
		right: 0.3em;
	}

	.shopping-chaos-list {
		font-size: clamp(1rem, 2.6vw, 1.12rem);
	}

	/* Club difference - mesma logica do mobile pequeno. */
	.club-difference-section {
		background: #fffbf5 url(../../../images/landing/bg-block3.png) right 50% / auto no-repeat;
	}

	.club-difference-cards {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.difference-card {
		grid-column: auto;
		grid-row: auto;
		height: 30rem;
		min-height: 0;
		aspect-ratio: auto;
	}

	.difference-card-photo {
		aspect-ratio: auto;
	}

	.difference-card-plain {
		min-height: 0;
	}

	.difference-card-two {
		min-height: 0;
	}

	.difference-card-six {
		min-height: 0;
	}

	/* Research - mesma logica do mobile pequeno. */
	.research-section {
		padding: 10rem 0 8rem;
	}

	.research-metrics {
		gap: 9rem;
	}

	.research-metric-value {
		font-size: clamp(10.2rem, 18vw, 9.5rem);
	}

	.research-metric-featured .research-metric-value {
		font-size: clamp(10.4rem, 22vw, 12rem);
	}

	.research-metric-word {
		font-size: clamp(4.6rem, 12vw, 4.9rem);
	}

	.research-metric-label {
		font-size: 1.1rem;
	}

	/* Pleasure discoveries - mesma logica do mobile pequeno. */
	.pleasure-section,
	.pleasure-hero {
		overflow-x: clip;
	}

	.pleasure-hero {
		padding-right: 0;
		padding-left: 0;
	}

	.pleasure-hero-card {
		justify-self: center;
		width: calc(110vw + 154px);
		max-width: none;
		margin-right: calc((-10vw - 154px) / 2);
		margin-left: calc((-10vw - 154px) / 2);
	}

	.pleasure-hero-card > img:first-child {
		width: 100%;
		max-width: none;
	}

	.pleasure-hero-card p {
font-size: clamp(3rem, 11.8vw, 9.79rem);
        left: 2.5em;
	}


    .pleasure-hero-seal {
        top: -4.75rem;
        left: 31.6rem;
        width: 9rem;
    }


	.pleasure-stories {
		padding-top: 18rem;
		padding-bottom: 50px;
	}

	.pleasure-story-copy .pleasure-coffee-title {
		position: relative;
		z-index: 2;
		margin: -4rem auto 0;
	}

	.pleasure-story-copy .pleasure-utensil-title,
	.pleasure-story-copy .pleasure-find-title,
	.pleasure-story-copy .pleasure-chocolate-title {
		position: relative;
		z-index: 2;
		margin: -3.5rem auto 0;
	}

	.pleasure-story-right figure {
		order: 1;
	}

	.pleasure-story-right .pleasure-story-copy {
		order: 2;
	}

	.pleasure-story-icon {
		right: 9%;
		bottom: -6.8rem;
	}

	.landing-page .pleasure-section {
		margin-bottom: 3.5rem;
	}

	/* Community - mesma logica do mobile pequeno. */
	.community-testimonials {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 3.3rem 2.8rem;
		justify-items: center;
		text-align: center;
	}

	.community-testimonial {
		justify-items: center;
		margin-bottom: 70px;
	}

	.community-testimonial blockquote {
		min-height: 0;
	}

	.community-testimonial blockquote::before {
		left: 50%;
		transform: translateX(-50%);
	}

	.community-testimonial blockquote::after {
		margin-right: auto;
		margin-left: auto;
	}

	.community-member {
		justify-content: center;
		margin-top: 1.1rem;
	}

	.community-signature {
		font-size: clamp(1.1rem, 7vw, 1.2rem);
	}

	.community-signature span {
		font-size: 1.88em;
	}

	/* Home deserves - mesma logica do mobile pequeno. */
	.home-deserves-section {
		min-height: 67rem;
		display: grid;
		align-items: center;
	}

	.home-deserves-stage {
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}

	.home-deserves-card-cook {
        --home-deserves-card-width: min(58.8vw, 19.8rem);
        top: -12.8rem;
        left: -1.4rem;
	}

	.home-deserves-card-headphones {
		--home-deserves-card-width: min(22.8vw, 7.08rem);
		top: 1.1rem;
		left: 51%;
	}

	.home-deserves-card-coffee {
--home-deserves-card-width: min(37.2vw, 13.64rem);
        top: -11.9rem;
        right: -1%;
	}

	.home-deserves-card-pan {
--home-deserves-card-width: min(33.6vw, 10.24rem);
        top: -1rem;
        right: -3%;
	}

	.home-deserves-card-robot {
		--home-deserves-card-width: min(40.8vw, 15.12rem);
		bottom: -10.8rem;
		left: -2%;
	}

	.home-deserves-card-tv {
		--home-deserves-card-width: min(43.2vw, 16.56rem);
bottom: -12rem;
        left: 20%;
	}

	.home-deserves-card-phone {
		--home-deserves-card-width: min(21.6vw, 6.48rem);
right: 34%;
        bottom: -5.8rem;
	}

	.home-deserves-card-airfryer {
		--home-deserves-card-width: min(40.8vw, 15rem);
        right: -4%;
        bottom: -12.9rem;
	}

	.home-deserves-copy p {
		line-height: 1.2;
	}

	.home-deserves-giant-top {
top: -4.1rem;
        font-size: clamp(20rem, 24vw, 16rem);
	}

	.home-deserves-giant-bottom {
left: 75%;
        bottom: -4.7rem;
        font-size: clamp(19.6rem, 23vw, 14rem);
        transform: translateX(-50%);
	}

	/* Early access - mesma logica do mobile pequeno. */
	.early-access-hero {
		width: 100vw;
		margin-right: calc(50% - 50vw);
		margin-left: calc(50% - 50vw);
		overflow-x: clip;
		overflow-y: visible;
	}

	.early-access-photo {
		width: 100%;
		max-width: none;
		margin-right: 0;
		margin-left: 0;
	}

	.early-access-hero h2 {
		bottom: 0.1rem;
		font-size: clamp(1.2rem, 8vw, 5.25rem);
	}

	.early-access-seal {
		top: -2.5rem;
	}

	.early-access-benefits {
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}

	.early-access-list {
		width: fit-content;
		margin-right: auto;
		margin-left: auto;
	}

	.early-access-kicker {
		margin-right: 0;
		margin-left: 0;
	}

	.early-access-number {
		font-size: clamp(5.5rem, 16vw, 5.6rem);
	}

	.early-access-icon {
		left: clamp(7rem, 16vw, 6.15rem);
	}

	.early-access-list {
		gap: 5.4rem;
	}

	.early-access-list p {
		margin: -1.03rem 0 0 1rem;
	}

	/* Channel - mesma logica do mobile pequeno. */
	.channel-visual p {
		right: 0;
		font-size: clamp(8.8rem, 17vw, 11rem);
	}





.hero-editorial {

    margin: 13.5rem auto 0;
}

.hero-editorial-signature {

    margin-top: 100px;
}

.hero-subtitle {

    margin: 2rem auto 0;
}

.shopping-chaos-title {

    font-size: clamp(3.25rem, 13vw, 4rem);
}


.club-difference-signature {

    width: 64%;
}













}























@media (max-width: 360px) {
	/* Hero mosaic - ajustes especificos para 360px e menores. */

	.hero-mosaic {
		height: 30rem;
	}

	/* Casal */
	.hero-image-card-main {
		top: 0;
		left: 24.9%;
		width: 50.2%;
	}

	/* Garrafa de vinho */
	.hero-mosaic-column:first-child .hero-image-card:nth-child(1) {
        top: 15.2rem;
        left: -5.1%;
        width: 29.1%;
	}

	/* Prato de macarrao */
	.hero-mosaic-column:first-child .hero-image-card:nth-child(2) {
		top: 23.2rem;
		right: -1%;
		width: 32.8%;
	}

	/* Panela */
	.hero-mosaic-column:nth-child(2) .hero-image-card {
		top: 1.8rem;
		left: -5.1%;
		width: 29%;
	}

	/* Cafeteira */
	.hero-mosaic-column:nth-child(4) .hero-image-card {
		top: 2.4rem;
		right: -5%;
		width: 29%;
	}

	/* Purificador */
	.hero-mosaic-column:last-child .hero-image-card:nth-child(1) {
        top: 25rem;
        left: 1%;
        width: 26.4%;
	}

	/* Tabua de frios */
	.hero-mosaic-column:last-child .hero-image-card:nth-child(2) {
        top: 15.8rem;
        right: -6.5%;
        width: 30.4%;
	}
}

@media (max-width: 330px) {
	/* Hero extremo - ajustes especificos para 320px. */

	.hero-title {
		max-width: 12.2ch;
		font-size: clamp(2.25rem, 11vw, 3rem);
	}

		.hero-section {

    padding: 0rem 0 2.5rem;
	}

	.pleasure-title {

    font-size: clamp(2.4rem, 8vw, 3.6rem);
	}
	    .pleasure-hero-seal {
   
        left: 16.6rem;
		}

	.hero-button {
		width: min(100%, 17.5rem);
		min-width: 0;
		gap: 0.9rem;
		padding-right: 1rem;
		padding-left: 1rem;
		font-size: 0.72rem;
	}

	.hero-button span {
		white-space: normal;
	}

	.hero-mosaic {
		height: 30rem;
	}

	/* Casal */
	.hero-image-card-main {
		top: 0;
		left: 24.9%;
		width: 50.2%;
	}

	/* Garrafa de vinho */
	.hero-mosaic-column:first-child .hero-image-card:nth-child(1) {
		top: 15.2rem;
		left: -5.1%;
		width: 29.1%;
	}

	/* Prato de macarrao */
	.hero-mosaic-column:first-child .hero-image-card:nth-child(2) {
		top: 23.2rem;
		right: -1%;
		width: 32.8%;
	}

	/* Panela */
	.hero-mosaic-column:nth-child(2) .hero-image-card {
		top: 1.8rem;
		left: -5.1%;
		width: 29%;
	}

	/* Cafeteira */
	.hero-mosaic-column:nth-child(4) .hero-image-card {
		top: 2.4rem;
		right: -5%;
		width: 29%;
	}

	/* Purificador */
	.hero-mosaic-column:last-child .hero-image-card:nth-child(1) {
		top: 25rem;
		left: 1%;
		width: 26.4%;
	}

	/* Tabua de frios */
	.hero-mosaic-column:last-child .hero-image-card:nth-child(2) {
		top: 15.8rem;
		right: -6.5%;
		width: 30.4%;
	}

	/* Pleasure stories - ajuste horizontal individual dos textos no 320px. */
	.pleasure-story-copy .pleasure-coffee-title {
		left: -14px;
	}

	.pleasure-story-copy .pleasure-utensil-title {
		left: 0;
	}

	.pleasure-story-copy .pleasure-find-title {
		left: 0;
	}

	.pleasure-story-copy .pleasure-chocolate-title {
		left: -19px;
	}
}

@media (min-width: 400px) and (max-width: 559px) {
	/* Hero mosaic - ajustes especificos para 430px e mobiles maiores. */

	.hero-mosaic {
		height: 33rem;
	}

		.hero-section {

    padding: 0rem 0 2.5rem;
	}

	/* Casal */
	.hero-image-card-main {
		top: 0;
		left: 24.9%;
		width: 50.2%;
	}

	    .club-difference-cards > .difference-card {
        height: 24rem;
        min-height: 32rem;

		}

	/* Garrafa de vinho */
	.hero-mosaic-column:first-child .hero-image-card:nth-child(1) {
		top: 18rem;
		left: -3%;
		width: 27.1%;
	}

	/* Prato de macarrao */
	.hero-mosaic-column:first-child .hero-image-card:nth-child(2) {
        top: 26.5rem;
        right: -6%;
        width: 26.8%;
	}

	/* Panela */
	.hero-mosaic-column:nth-child(2) .hero-image-card {
		top: 1.8rem;
		left: -5%;
		width: 29%;
	}

	/* Cafeteira */
	.hero-mosaic-column:nth-child(4) .hero-image-card {
		top: 2.4rem;
		right: -5%;
		width: 29%;
	}

	/* Purificador */
	.hero-mosaic-column:last-child .hero-image-card:nth-child(1) {
top: 27.7rem;
        left: -4%;
        width: 25.4%;
	}

	/* Tabua de frios */
	.hero-mosaic-column:last-child .hero-image-card:nth-child(2) {
        top: 19rem;
        right: -5%;
        width: 28.4%;
	}
}

@media (min-width: 500px) and (max-width: 559px) {
	/* Club difference - iguala altura dos cards 02 e 06 no topo do mobile. */

	.club-difference-cards {
		grid-template-columns: minmax(0, 1fr);
	}

	.club-difference-cards > .difference-card {
		height: 36rem;
		min-height: 0;
		aspect-ratio: auto;
	}

	.difference-card h3 {
		font-size: clamp(2.275rem, 6.5vw, 2.47rem);
	}

	.difference-card p {
		font-size: 1.13rem;
	}

	.difference-card-number {
		font-size: clamp(2.99rem, 9.1vw, 4.225rem);
	}

	.difference-card-two h3,
	.difference-card-six h3,
	.difference-card-two p,
	.difference-card-six p {
		max-width: none;
	}

	.difference-card-two,
	.difference-card-six {
		padding-right: 2.2rem;
		padding-left: 2.2rem;
	}

	    .home-deserves-section {
        min-height: 67rem;
		}

		    .home-deserves-giant-bottom {
        left: 77%;
        bottom: -2.7rem;
        font-size: clamp(16.6rem, 23vw, 14rem);
        transform: translateX(-50%);
    }

	.home-deserves-card-cook {
        --home-deserves-card-width: min(53.8vw, 22.8rem);
        top: -11.29rem;
	}

	.home-deserves-card-headphones {
		--home-deserves-card-width: min(22.8vw, 7.08rem);
		top: 0.69rem;
	}

	.home-deserves-giant-top {
        top: -2.1rem;
        font-size: clamp(17rem, 24vw, 16rem);
    }

	.home-deserves-card-coffee {
		--home-deserves-card-width: min(37.2vw, 14.64rem);
		top: -12.73rem;
	}

	.home-deserves-card-pan {
        --home-deserves-card-width: min(27.6vw, 12.24rem);
        top: 1.26rem;
	}

	.home-deserves-card-robot {
		--home-deserves-card-width: min(40.8vw, 15.12rem);
		bottom: -9.8rem;
	}

	.home-deserves-card-tv {
		--home-deserves-card-width: min(43.2vw, 16.56rem);
		bottom: -11.52rem;
	}

	.home-deserves-card-phone {
		--home-deserves-card-width: min(21.6vw, 6.48rem);
		bottom: -2.82rem;
	}

	.home-deserves-card-airfryer {
		--home-deserves-card-width: min(40.8vw, 15rem);
		bottom: -11.66rem;
	}
}

@media (min-width: 760px) and (max-width: 899px) {
	/* Tablet estreito: primeira virada estrutural da maioria das secoes. */

	.site-header {
		--site-logo-size: 11.5rem;
	}

	/* Hero mosaic - mesma composicao do 560px a 759px. */
	.hero-mosaic {
		position: relative;
		display: block;
		height: 36rem;
		margin-top: 2rem;
		overflow: visible;
	}

	.hero-mosaic-column {
		display: block;
	}

	.hero-image-card {
		position: absolute;
		width: auto;
	}

	.hero-image-card img {
		width: 100%;
		max-width: none;
	}

	/* Casal */
	.hero-image-card-main {
		top: 0;
		left: 27.5%;
		width: 45%;
		z-index: 2;
	}

	/* Garrafa de vinho */
	.hero-mosaic-column:first-child .hero-image-card:nth-child(1) {
		top: 26.5rem;
		left: -1%;
		width: 27.1%;
	}

	/* Prato de macarrao */
	.hero-mosaic-column:first-child .hero-image-card:nth-child(2) {
		top: 39.5rem;
		right: -6%;
		width: 23.8%;
	}

	/* Panela */
	.hero-mosaic-column:nth-child(2) .hero-image-card {
		top: 1.8rem;
		left: -3%;
		width: 29%;
	}

	/* Cafeteira */
	.hero-mosaic-column:nth-child(4) .hero-image-card {
		top: 2.4rem;
		right: -3%;
		width: 29%;
	}

	/* Purificador */
	.hero-mosaic-column:last-child .hero-image-card:nth-child(1) {
		top: 38.7rem;
		left: -4%;
		width: 21.4%;
	}

	/* Tabua de frios */
	.hero-mosaic-column:last-child .hero-image-card:nth-child(2) {
		top: 27rem;
		right: -2.3%;
		width: 28.4%;
	}

	.hero-action {
		position: absolute;
		right: 0;
		bottom: -302px;
		left: 0;
	}


	.pleasure-hero-seal {
  
    top: -6.75rem;
    left: 20.6rem;

    width: 11rem;
	}

.pleasure-hero-card p {

    left: 6.5rem;
    bottom: -0.3em;

    font-size: clamp(2.5rem, 9vw, 8.9rem);

}



.hero-title {

    font-size: clamp(2.6rem, 14vw, 3.7rem);
}
.hero-editorial {
        padding: 45px;
    margin: 21.5rem auto 0;
}

.hero-editorial-signature {

    margin-top: 74px;
}


.hero-subtitle {
    max-width: 34rem;
    margin: 2rem auto 0;
}

	.club-difference-cards {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: auto;
		gap: 1.25rem;
	}

	.club-difference-cards > .difference-card {
		grid-column: auto;
		grid-row: auto;
		height: 24rem;
		min-height: 0;
		aspect-ratio: auto;
	}

	.research-section {
		padding: 10rem 0 8rem;
	}

	.research-metrics {
		grid-template-columns: minmax(0, 1fr);
		gap: 9rem;
		margin-top: 5rem;
	}

	.research-metric-value {
		font-size: clamp(10.2rem, 18vw, 9.5rem);
	}

	.research-metric-featured .research-metric-value {
		font-size: clamp(10.4rem, 22vw, 12rem);
	}

	.research-metric-word {
		font-size: clamp(4.6rem, 12vw, 4.9rem);
	}

	.research-metric-label {
		font-size: 1.1rem;
	}

	/* Home deserves - marcadores para ajuste manual no 768px. */
	.home-deserves-card-cook {
        --home-deserves-card-width: min(49vw, 20rem);
        top: -10.8rem;
        left: -0.6%;
	}

	.home-deserves-card-headphones {
--home-deserves-card-width: min(19vw, 8.9rem);
        top: -7.4rem;
        left: 51%;
	}

	.home-deserves-section {
        min-height: 67rem;
		display: grid;
		align-items: center;
	}

	.home-deserves-stage {
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}

	.home-deserves-card-coffee {
        --home-deserves-card-width: min(33vw, 18.2rem);
        top: -9.9rem;
        right: -0.8%;
	}

	.home-deserves-card-pan {
		--home-deserves-card-width: min(28vw, 10.2rem);
		        top: 1.1rem;
		right: 20%;
	}

	.home-deserves-card-robot {
--home-deserves-card-width: min(34vw, 14.6rem);
        bottom: -7.8rem;
        left: 1.8%;
	}

	.home-deserves-card-tv {
		--home-deserves-card-width: min(36vw, 15.8rem);
        bottom: -10rem;
        left: 19%;
	}

.home-deserves-giant-top {
    top: -4.1rem;
    left: 49%;
    font-size: clamp(8rem, 48vw, 26rem);
    transform: translateX(-50%);
}

.landing-page .pleasure-section{
	margin-bottom: 5rem;
}

.early-access-hero h2 {

    font-size: clamp(2.2rem, 6vw, 5.25rem);
}

.early-access-icon {
    position: absolute;
    left: clamp(4.95rem, 16vw, 8.15rem);
}

	.channel-visual img {
		object-position: 80% center;
	}

	.channel-actions {
		grid-template-columns: minmax(0, 1fr);
	}

.home-deserves-giant-bottom {
    left: 50%;
    bottom: 3.3rem;
    font-size: clamp(7.6rem, 36vw, 17rem);
}

.landing-footer-slogan {

        max-width: 20rem;
		font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.channel-visual p {
    right: 0em;
    font-size: clamp(6.8rem, 25vw, 16rem);
}
	.home-deserves-card-phone {
        --home-deserves-card-width: min(18vw, 7.4rem);
        right: 31%;
        bottom: -3.8rem;
	}

	.home-deserves-card-airfryer {
        --home-deserves-card-width: min(34vw, 15.5rem);
        right: -0.2%;
        bottom: -10.9rem;
	}

}

@media (min-width: 900px) and (max-width: 1179px) {
	/* Desktop compacto: hero ja usa composicao desktop. */

	.site-header {
		--site-logo-size: 12.5rem;
	}

	/* Hero mosaic - marcadores para ajuste manual no desktop compacto. */
	.hero-mosaic {
		position: relative;
		display: block;
		height: 34rem;
		margin-top: 3rem;
		overflow: visible;
	}

	.hero-mosaic-column {
		display: block;
		transform: none !important;
	}

	.hero-mosaic-column-featured {
		justify-items: center;
	}

	.hero-image-card {
		position: absolute;
		width: auto;
		margin: 0;
	}

	.hero-image-card img {
		width: 100%;
		max-width: none;
	}

	/* Garrafa de vinho */
	.hero-mosaic-column:first-child .hero-image-card:nth-child(1) {
		top: 0.5rem;
		left: 0;
		width: 16%;
	}

	/* Prato de macarrao */
	.hero-mosaic-column:first-child .hero-image-card:nth-child(2) {
		top: 15.8rem;
		left: 0;
		width: 17%;
	}

	/* Panela */
	.hero-mosaic-column:nth-child(2) .hero-image-card {
top: 6.5rem;
        left: 17.7%;
		width: 19%;
	}

	/* Casal */
	.hero-image-card-main {
		top: 1.8rem;
		left: 37.5%;
		width: 25%;
		z-index: 2;
	}

	/* Cafeteira */
	.hero-mosaic-column:nth-child(4) .hero-image-card {
        top: 6.5rem;
        right: 17.8%;
		width: 19%;
	}

	/* Purificador */
	.hero-mosaic-column:last-child .hero-image-card:nth-child(1) {
		top: 0.5rem;
		right: 0;
		width: 16%;
	}

	/* Tabua de frios */
	.hero-mosaic-column:last-child .hero-image-card:nth-child(2) {
		top: 15.8rem;
		right: 0;
		width: 17%;
	}

	.hero-title {

    font-size: clamp(2.6rem, 14vw, 4rem);
	}


    .pleasure-story-with-icon .pleasure-story-copy p {
        margin-left: -1.7rem;
    }


	.hero-editorial {
margin-top: 12.25rem;
        padding: 2rem;
		}
.research-metric-word {
    font-size: clamp(3.6rem, 12vw, 3.9rem);
}

.landing-page > section {
    margin-bottom: 9.5rem;
}

	    .hero-title-icon-left {

        margin-left: 10px;

		}

		.hero-title-icon-right{
			margin-right: 10px;
		}

	.hero-action {
		position: absolute;
		right: 0;
		bottom: -7.5rem;
		left: 0;
	}

	/* Home deserves - marcadores para ajuste manual no desktop compacto. */
	.home-deserves-card-cook {
--home-deserves-card-width: 16.9rem;
        top: -79px;
        left: -0.8rem;
	}

	.home-deserves-card-headphones {
        --home-deserves-card-width: 7.8rem;
top: -2.1rem;
        left: 35.2rem;
	}

	.home-deserves-card-coffee {
--home-deserves-card-width: 16.3rem;
        top: -2.4rem;
        right: -0.8rem;
	}

	.home-deserves-card-pan {
		--home-deserves-card-width: 9rem;
top: 6.1rem;
        right: 14rem;
	}

	.home-deserves-card-robot {
        --home-deserves-card-width: 13.2rem;
        bottom: -2.2rem;
        left: 0rem;
	}

	.home-deserves-card-tv {
		--home-deserves-card-width: 16.2rem;
        bottom: -0.2rem;
        left: 12.2rem;
	}

	.home-deserves-card-phone {
--home-deserves-card-width: 6.6rem;
        right: 15.3rem;
        bottom: -0.9rem;
    
	}

	.home-deserves-card-airfryer {
--home-deserves-card-width: 14.4rem;
        right: 0.4rem;
        bottom: -4.3rem;
	}

	.early-access-list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	
	}
.home-deserves-giant-top {
    top: -1.1rem;
    left: 11%;
    font-size: clamp(8rem, 33vw, 25rem);
}

.home-deserves-giant-bottom {
    font-size: clamp(7.6rem, 29vw, 23rem);
}

.early-access-icon {
    left: clamp(4.95rem, 16vw, 7.45rem);
}

.early-access-hero h2 {

    font-size: clamp(3.2rem, 10vw, 4.25rem);
}

.community-member {
    margin-top: 0rem;
    margin-bottom: 29px;
}

.pleasure-hero-card p {
  
    left: 6.5rem;
    bottom: -0.26em;

    font-size: clamp(2.5rem, 10vw, 8.9rem);

}


.channel-visual p {

    top: 13%;
    right: 0em;
    font-size: clamp(6.8rem, 20vw, 12rem);

}

.research-metric-value {
    font-size: clamp(5.2rem, 18vw, 7.5rem);
}

.research-metric-featured .research-metric-value {
    font-size: clamp(6.4rem, 22vw, 11rem);
}

.landing-footer-slogan {
        grid-column: 3;
        justify-self: start;
        max-width: 28rem;
        text-align: left;
        font-size: clamp(2.5rem, 4vw, 3.7rem);
}

.pleasure-story-icon {
    right: 9%;
    bottom: -9.8rem;

}




}

@media (min-width: 800px) and (max-width: 899px) {
	.hero-action {
		bottom: -336px;
	}
}

@media (min-width: 1080px) and (max-width: 1179px) {
	/* Ajustes finos para o topo do desktop compacto. */
	    .hero-action {
        bottom: -12.5rem;
		}


    .hero-editorial {
        margin-top: 18.25rem;
	}

	    .home-deserves-giant-top {
        top: -4.1rem;
		}


.hero-mosaic-column:first-child .hero-image-card:nth-child(2) {
        top: 17.2rem;
}
    .hero-mosaic-column:last-child .hero-image-card:nth-child(2) {
        top: 17.2rem;
	}






}

@media (min-width: 1180px) {
	/* Desktop amplo: refinamentos finais. */

	.site-header {
		--site-logo-size: 13rem;
	}
}

@media (min-width: 1180px) and (max-width: 1279px) {
	/* Ajustes finos para desktop amplo inicial. */

	.site-header {
		--site-logo-size: 13rem;
	}



	.hero-title-icon-left img {
    margin-left: 20px;

	}

	.hero-title-icon-right img{
		margin-right: 20px;;

	}


	.hero-editorial {
        padding: 2rem;
    }


    .pleasure-intro {
        padding-left: 2rem;
    }



.pleasure-story-icon {
    right: 15%;
    bottom: -8.8rem;
}

	.community-member {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}




    .community-container {
     
        gap: 2.8rem;
	}




}

@media (min-width: 1280px) and (max-width: 1439px) {
	/* Desktop padrao - mesmos ajustes do desktop amplo inicial. */

	.site-header {
		--site-logo-size: 13.5rem;
	}

	.hero-title-icon-left img {
		margin-left: 20px;
	}

	.hero-title-icon-right img {
		margin-right: 20px;
	}

	.hero-editorial {
		padding: 2rem;
	}

	.pleasure-intro {
		padding-left: 2rem;
	}

	.pleasure-story-icon {
		right: 15%;
		bottom: -8.8rem;
	}

	.community-member {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.community-container {
		gap: 2.8rem;
	}
}
