@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/jost-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("assets/fonts/playfair-display-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600 700;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
}

:root {
  --forest-950: #0e2a1a;
  --forest-900: #173a23;
  --forest-800: #1e4528;
  --forest-700: #315f37;
  --forest-600: #507a3f;
  --sage-500: #7e9a33;
  --sage-300: #cbd8a3;
  --sage-150: #e4ebca;
  --sage-100: #f0f3e2;
  --cream-50: #fffdf8;
  --cream-100: #fcf8ee;
  --cream-200: #eee4cf;
  --gold-700: #806b3d;
  --gold-600: #a77d34;
  --gold-500: #b0893e;
  --gold-300: #dfc48e;
  --gold-100: #f5ead0;
  --lime-500: #a3c24b;
  --terracotta: #9c5a32;
  --ink: #19241d;
  --muted: #657069;
  --line: rgba(13, 51, 33, 0.12);
  --white: #fff;
  --whatsapp: #25d366;
  --whatsapp-dark: #075e54;
  --mercado: #ffe600;
  --shadow-sm: 0 8px 24px rgba(15, 49, 32, 0.08);
  --shadow-md: 0 18px 50px rgba(15, 49, 32, 0.12);
  --shadow-lg: 0 30px 80px rgba(8, 39, 25, 0.18);
  --font-body: "Jost", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

button,
select {
  cursor: pointer;
}

p,
h1,
h2,
h3,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

svg {
  display: block;
}

::selection {
  color: var(--white);
  background: var(--forest-700);
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--forest-950);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 104px;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-900);
  border-radius: var(--radius-pill);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--forest-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--gold-500);
  font-size: 1rem;
}

.eyebrow--light {
  color: var(--gold-300);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading h2,
.about__content h2,
.faq__intro h2,
.contact__card h2,
.whatsapp-promo h2 {
  margin-bottom: 16px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-heading > div > p:last-child,
.section-heading--center > p:last-child,
.about__content > p,
.faq__intro > p,
.contact__card > div:first-child > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--center {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--primary {
  color: var(--white);
  background: var(--forest-800);
  box-shadow: 0 12px 30px rgba(13, 51, 33, 0.2);
}

.button--primary:hover {
  background: var(--forest-700);
  box-shadow: 0 16px 34px rgba(13, 51, 33, 0.26);
}

.button--ghost {
  color: var(--forest-900);
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(13, 51, 33, 0.2);
}

.button--marketplace {
  min-width: 206px;
  color: #2d3277;
  background: var(--mercado);
  border-color: #dfca00;
  box-shadow: 0 10px 24px rgba(75, 66, 0, 0.14);
}

.button--marketplace:hover {
  background: #ffed4a;
  border-color: #cdb900;
  box-shadow: 0 14px 28px rgba(75, 66, 0, 0.2);
}

.whatsapp-mark,
.mercado-livre-mark {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.whatsapp-mark {
  width: 23px;
  height: 23px;
}

.mercado-livre-mark {
  width: 120px;
  height: auto;
}

.button--ghost:hover,
.button--secondary:hover {
  color: var(--white);
  background: var(--forest-800);
  border-color: var(--forest-800);
}

.button--secondary {
  color: var(--forest-800);
  background: transparent;
  border-color: rgba(13, 51, 33, 0.25);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-700);
  font-size: 0.92rem;
  font-weight: 700;
}

.text-link:hover {
  color: var(--gold-700);
}

.text-link svg {
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* Announcement and navigation */
.offer-bar {
  position: relative;
  z-index: 40;
  color: var(--cream-50);
  background: var(--forest-950);
}

.offer-bar__content {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.79rem;
  letter-spacing: 0.02em;
}

.offer-bar p {
  margin: 0;
}

.offer-bar strong {
  color: var(--gold-300);
}

.offer-bar__spark {
  color: var(--gold-300);
}

.offer-bar a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 700;
}

.offer-bar a:hover {
  color: var(--gold-300);
}

.offer-bar a svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(253, 251, 246, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 35px rgba(13, 51, 33, 0.06);
}

.nav-shell {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand__mark {
  display: grid;
  width: 48px;
  height: 48px;
  overflow: hidden;
  flex: 0 0 auto;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 14px;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__text strong {
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.brand__text small {
  margin-top: 4px;
  color: var(--gold-700);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.primary-nav a {
  position: relative;
  color: #34443a;
  font-size: 0.88rem;
  font-weight: 600;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-500);
  border-radius: var(--radius-pill);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav__whatsapp {
  display: none;
}

.button--nav {
  min-height: 44px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--forest-800);
  font-size: 0.82rem;
}

.button--nav svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.button--nav .whatsapp-mark {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--forest-900);
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fefcf5 0%, #f8f1e0 40%, #f0e8d2 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.3;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(167, 125, 52, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 85%, rgba(49, 95, 55, 0.15) 0%, transparent 45%);
  pointer-events: none;
}

.hero__bg-shape {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 58%;
  height: 120%;
  background: linear-gradient(145deg, var(--forest-800) 0%, var(--forest-950) 100%);
  border-radius: 60px 0 0 60px;
  transform: skewX(-3deg);
  box-shadow:
    -40px 0 80px rgba(14, 42, 26, 0.3),
    inset 0 0 120px rgba(14, 42, 26, 0.4);
}

.hero__bg-shape::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(223, 196, 142, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(126, 154, 51, 0.3) 0%, transparent 40%);
  border-radius: inherit;
}

.hero__bg-shape::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  content: "";
  background: linear-gradient(to top, rgba(14, 42, 26, 0.4), transparent);
  border-radius: inherit;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 48px;
  padding-block: 62px 82px;
}

.hero__content {
  max-width: 540px;
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.2vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.hero h1 em {
  display: block;
  margin-top: 12px;
  color: var(--gold-600);
  font-family: var(--font-accent);
  font-size: 1.05em;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.hero__intro {
  max-width: 460px;
  margin-bottom: 34px;
  color: #56635b;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #536158;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero__trust svg {
  width: 21px;
  height: 21px;
  padding: 3px;
  color: var(--forest-700);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  background: var(--sage-150);
  border-radius: 50%;
}

/* Hero Showcase (right panel) */
.hero__showcase {
  position: relative;
  min-height: 560px;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__showcase-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__showcase-ring {
  position: absolute;
  width: min(32vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(223, 196, 142, 0.2);
  border-radius: 50%;
  animation: ring-pulse 8s ease-in-out infinite;
}

.hero__showcase-ring--2 {
  width: min(42vw, 540px);
  border-color: rgba(223, 196, 142, 0.1);
  animation-delay: -4s;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.6; }
}

.hero-product {
  position: absolute;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 30px 60px rgba(8, 39, 25, 0.35),
    0 10px 20px rgba(8, 39, 25, 0.2);
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-product--main {
  position: relative;
  z-index: 3;
  width: min(30vw, 370px);
  border-radius: 190px 190px 16px 16px;
  display: flex;
  flex-direction: column;
  transform: translateY(-10px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-product--main:hover {
  transform: translateY(-18px);
}

.hero-product--main img {
  height: 390px;
  padding: 10px;
  object-position: center;
  border-radius: 190px 190px 0 0;
}

.hero-product__tag {
  position: absolute;
  z-index: 4;
  top: 46px;
  left: 50%;
  padding: 8px 16px;
  color: var(--forest-900);
  background: var(--gold-300);
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
  transform: translateX(-50%);
  box-shadow: 0 4px 14px rgba(167, 125, 52, 0.35);
}

.hero-product__caption {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  color: var(--cream-50);
  background: var(--forest-900);
  border-radius: 0 0 15px 15px;
  gap: 12px;
  flex-shrink: 0;
}

.hero-product__caption span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  white-space: nowrap;
}

.hero-product__caption strong {
  color: var(--gold-300);
  font-size: 0.72rem;
  white-space: nowrap;
  text-align: right;
}

.hero-product--small {
  z-index: 2;
  width: 140px;
  height: 170px;
  border: 6px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-product--small:hover {
  transform: scale(1.06) !important;
}

.hero-product--small img {
  padding: 4px;
  background: var(--cream-100);
  border-radius: 16px;
}

.hero-product--fruit {
  top: 40px;
  right: 10px;
  transform: rotate(6deg);
}

.hero-product--pistachio {
  bottom: 20px;
  left: 18px;
  transform: rotate(-7deg);
}

.hero__leaf {
  position: absolute;
  z-index: 1;
  opacity: 0.18;
  border: 2px solid var(--sage-500);
  border-radius: 100% 0 100% 0;
}

.hero__leaf--one {
  bottom: -50px;
  left: -35px;
  width: 170px;
  height: 250px;
  transform: rotate(-28deg);
}

.hero__leaf--two {
  top: 95px;
  right: -50px;
  width: 120px;
  height: 185px;
  transform: rotate(32deg);
}

/* Assurance */
.assurance {
  position: relative;
  z-index: 3;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.assurance__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.assurance__item {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 14px;
  padding: 20px 27px;
  border-right: 1px solid var(--line);
}

.assurance__item:first-child {
  padding-left: 0;
}

.assurance__item:last-child {
  padding-right: 0;
  border-right: 0;
}

.assurance__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--forest-700);
  background: var(--sage-100);
  border-radius: 50%;
}

.assurance__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.assurance__item div {
  display: grid;
  gap: 2px;
}

.assurance__item strong {
  color: var(--forest-900);
  font-size: 0.86rem;
}

.assurance__item small {
  color: var(--muted);
  font-size: 0.72rem;
}

/* Official storefront photography */
.story-banner {
  padding-block: 72px 12px;
  background: var(--cream-50);
}

.story-banner__card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.story-banner__card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-banner__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 29, 19, 0.94) 0%, rgba(6, 29, 19, 0.76) 38%, rgba(6, 29, 19, 0.1) 76%);
}

.story-banner__content {
  display: flex;
  min-height: 470px;
  max-width: 620px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 58px 64px;
}

.story-banner__content h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.story-banner__content > p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.story-banner__source {
  position: absolute;
  right: 20px;
  bottom: 17px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(6, 29, 19, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  font-size: 0.59rem;
  backdrop-filter: blur(8px);
}

/* Catalog */
.catalog-section {
  background: var(--cream-50);
}

.section-heading--catalog {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading--catalog > div {
  max-width: 720px;
}

.catalog-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-chip {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  color: #526057;
  background: var(--white);
  border: 1px solid rgba(13, 51, 33, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.79rem;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.filter-chip span {
  display: inline-grid;
  min-width: 23px;
  height: 23px;
  padding-inline: 5px;
  place-content: center;
  color: var(--forest-700);
  background: var(--sage-100);
  border-radius: 50%;
  font-size: 0.66rem;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: var(--white);
  background: var(--forest-800);
  border-color: var(--forest-800);
}

.filter-chip.is-active span {
  color: var(--forest-900);
  background: var(--gold-300);
}

.catalog-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-field {
  position: relative;
  display: flex;
  min-width: 230px;
  align-items: center;
}

.search-field svg {
  position: absolute;
  left: 14px;
  width: 19px;
  height: 19px;
  color: var(--muted);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
  pointer-events: none;
}

.search-field input,
.sort-field select {
  height: 44px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(13, 51, 33, 0.15);
  border-radius: var(--radius-pill);
  outline: 0;
}

.search-field input {
  width: 100%;
  padding: 10px 14px 10px 42px;
  font-size: 0.8rem;
}

.search-field input::placeholder {
  color: #8d9791;
}

.search-field input:focus,
.sort-field select:focus {
  border-color: var(--forest-600);
  box-shadow: 0 0 0 3px rgba(38, 112, 79, 0.1);
}

.sort-field {
  position: relative;
}

.sort-field select {
  min-width: 150px;
  padding: 10px 38px 10px 15px;
  appearance: none;
  font-size: 0.8rem;
  font-weight: 600;
}

.sort-field svg {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--forest-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  pointer-events: none;
  transform: translateY(-50%);
}

.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-block: 20px 22px;
  color: var(--muted);
  font-size: 0.74rem;
}

.catalog-meta p {
  margin: 0;
}

.catalog-meta p:first-child {
  color: var(--forest-800);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(13, 51, 33, 0.07);
  border-radius: 16px;
  box-shadow:
    0 1px 3px rgba(13, 51, 33, 0.04),
    0 8px 24px rgba(13, 51, 33, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  animation: card-in 0.42s both;
}

.product-card:hover {
  border-color: rgba(155, 107, 36, 0.18);
  box-shadow:
    0 4px 12px rgba(13, 51, 33, 0.06),
    0 20px 48px rgba(13, 51, 33, 0.12);
  transform: translateY(-7px);
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(180deg, #faf7f0 0%, #f5f0e4 100%);
  border-bottom: 1px solid rgba(13, 51, 33, 0.05);
}

.product-card__media > a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.product-card__discount {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  padding: 6px 9px;
  color: var(--white);
  background: var(--forest-700);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.product-card__shipping {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  color: var(--forest-700);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 51, 33, 0.08);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-size: 0.68rem;
  font-weight: 700;
  backdrop-filter: blur(7px);
}

.product-card__shipping svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-card__category {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: var(--gold-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.product-card__category::before {
  width: 6px;
  height: 6px;
  content: "";
  background: var(--gold-500);
  border-radius: 50%;
}

.product-card h3 {
  min-height: 45px;
  margin-bottom: 14px;
  color: var(--forest-900);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.product-card h3 a:hover {
  color: var(--gold-700);
}

.product-card__prices {
  margin-top: auto;
}

.product-card__old-price {
  display: block;
  min-height: 20px;
  color: #626c66;
  font-size: 0.74rem;
  text-decoration: line-through;
}

.product-card__market-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.product-card__market-price strong {
  color: var(--forest-900);
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}

.product-card__market-price span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin-top: 14px;
}

.product-card__actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 0;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.product-card__actions a:hover {
  transform: translateY(-2px);
}

.product-card__actions svg {
  width: 17px;
  height: 17px;
}

/* WhatsApp CTA — vibrant green, irresistible */
.product-card__whatsapp {
  position: relative;
  color: var(--white);
  background: linear-gradient(135deg, #25d366 0%, #1eba5a 100%);
  min-height: 48px;
  padding: 0 16px;
  gap: 9px;
  overflow: hidden;
  box-shadow:
    0 3px 12px rgba(37, 211, 102, 0.3),
    0 1px 3px rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.product-card__whatsapp::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.product-card__whatsapp:hover::before {
  left: 120%;
}

.product-card__whatsapp .whatsapp-mark {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: brightness(10);
}

.product-card__whatsapp span {
  min-width: 0;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.product-card__whatsapp span strong {
  color: #fff;
  font-weight: 800;
  opacity: 0.95;
}

.product-card__whatsapp:hover {
  background: linear-gradient(135deg, #22c55e 0%, #1aa34e 100%);
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.4),
    0 2px 6px rgba(37, 211, 102, 0.25);
  transform: translateY(-2px);
}

/* Mercado Livre button — compact */
.product-card__marketplace {
  color: #252a68;
  background: var(--mercado);
  border: 1px solid #e0cb00;
  min-height: 44px;
  padding: 6px 12px;
}

.product-card__marketplace .mercado-livre-mark {
  width: 100px;
  max-width: 100%;
}

.product-card__marketplace-prefix {
  color: #252a68;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.product-card__marketplace:hover {
  background: #ffed4a;
  border-color: #cdb900;
  box-shadow: 0 4px 12px rgba(200, 170, 0, 0.2);
}

.show-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.show-more.is-expanded svg {
  transform: rotate(180deg);
}

.catalog-empty {
  padding: 70px 20px;
  text-align: center;
}

.catalog-empty > span {
  display: block;
  margin-bottom: 14px;
  font-size: 2.6rem;
}

.catalog-empty h3 {
  margin-bottom: 6px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.catalog-empty p {
  margin-bottom: 22px;
  color: var(--muted);
}

.catalog-note {
  max-width: 840px;
  margin: 34px auto 0;
  color: #59645d;
  font-size: 0.74rem;
  line-height: 1.6;
  text-align: center;
}

/* WhatsApp promo */
.whatsapp-promo {
  padding-top: 12px;
  background: var(--cream-50);
}

.whatsapp-promo__card {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  padding: 64px 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 20%, rgba(201, 154, 80, 0.28), transparent 28%),
    linear-gradient(130deg, var(--forest-950), var(--forest-700));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.whatsapp-promo__pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.whatsapp-promo__content {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.whatsapp-promo h2 {
  max-width: 620px;
  color: var(--white);
}

.whatsapp-promo h2 em {
  color: var(--gold-300);
  font-family: var(--font-accent);
  font-size: 1.08em;
  font-weight: 700;
}

.whatsapp-promo__content > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.button--whatsapp {
  color: var(--forest-950);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.button--whatsapp:hover {
  color: var(--white);
  background: var(--whatsapp-dark);
}

.button--whatsapp .whatsapp-mark {
  width: 24px;
  height: 24px;
}

.whatsapp-promo__products {
  position: relative;
  align-self: stretch;
}

.promo-pack {
  position: absolute;
  bottom: 12px;
  width: 270px;
  filter: drop-shadow(0 25px 24px rgba(0, 0, 0, 0.2));
  mix-blend-mode: multiply;
}

.promo-pack--back {
  right: 10px;
  bottom: 25px;
  width: 235px;
  opacity: 0.88;
  transform: rotate(9deg);
}

.promo-pack--front {
  right: 105px;
  z-index: 2;
  transform: rotate(-5deg);
}

.whatsapp-promo__badge {
  position: absolute;
  z-index: 5;
  top: 30px;
  right: 35px;
  display: grid;
  width: 112px;
  height: 112px;
  place-content: center;
  color: var(--forest-950);
  background: var(--gold-300);
  border: 4px solid var(--forest-700);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold-300);
  line-height: 1;
  text-align: center;
  transform: rotate(6deg);
}

.whatsapp-promo__badge span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-promo__badge strong {
  margin-top: 2px;
  font-family: var(--font-display);
  font-size: 2.15rem;
}

/* About */
.about {
  background: var(--cream-100);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.about__visual {
  position: relative;
  max-width: 520px;
}

.about__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-200);
  border-radius: 34px;
  box-shadow: var(--shadow-md);
}

.about__image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 -70px 100px rgba(13, 51, 33, 0.06);
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about__location {
  position: absolute;
  right: -44px;
  bottom: 46px;
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  background: var(--white);
  border: 1px solid rgba(13, 51, 33, 0.1);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.about__location svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--gold-700);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  background: var(--gold-100);
  border-radius: 50%;
}

.about__location span {
  display: grid;
  color: var(--muted);
  font-size: 0.66rem;
}

.about__location strong {
  color: var(--forest-900);
  font-size: 0.78rem;
}

.about__content > p {
  max-width: 630px;
  margin-bottom: 16px;
  line-height: 1.75;
}

.about__features {
  display: grid;
  gap: 4px;
  margin-top: 34px;
}

.about-feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.about-feature > span {
  color: var(--gold-600);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.about-feature div {
  display: grid;
  gap: 2px;
}

.about__features strong {
  color: var(--forest-900);
  font-size: 0.93rem;
}

.about__features p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

/* Real brand photography */
.real-gallery {
  background: var(--white);
}

.real-gallery__grid {
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  margin: 0;
  background: var(--cream-100);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 25px rgba(13, 51, 33, 0.06);
}

.gallery-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-card::after {
  position: absolute;
  inset: 35% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(6, 29, 19, 0.76));
  pointer-events: none;
}

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  padding: 20px;
  color: var(--white);
  line-height: 1.25;
}

.gallery-card figcaption span {
  margin-bottom: 3px;
  color: var(--gold-300);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card figcaption strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.gallery-card--featured figcaption {
  padding: 28px;
}

.gallery-card--featured figcaption strong {
  font-size: 1.75rem;
}

.gallery-card__link {
  position: absolute;
  z-index: 3;
  inset: 0;
}

.gallery-card__link:focus-visible {
  outline-offset: -5px;
}

/* Steps */
.steps {
  background: var(--cream-100);
}

.steps__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 22px;
}

.step-card {
  position: relative;
  min-height: 300px;
  padding: 44px 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(13, 51, 33, 0.06);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(13, 51, 33, 0.05);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-card:hover {
  box-shadow:
    0 16px 40px rgba(13, 51, 33, 0.1),
    0 4px 12px rgba(13, 51, 33, 0.06);
  transform: translateY(-8px);
}

.step-card__number {
  position: absolute;
  top: 16px;
  right: 20px;
  color: rgba(13, 51, 33, 0.06);
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.step-card__icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 4px auto 26px;
  place-items: center;
  color: var(--white);
  background: var(--forest-700);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(30, 69, 40, 0.25);
}

.step-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.step-card h3 {
  margin-bottom: 12px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 240px;
}

.steps__arrow {
  color: var(--sage-300);
  font-size: 1.6rem;
  align-self: center;
}

/* FAQ */
.faq {
  background: var(--cream-100);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 90px;
}

.faq__intro {
  position: sticky;
  top: 122px;
}

.faq__intro .text-link {
  margin-top: 8px;
}

.faq__list {
  border-top: 1px solid rgba(13, 51, 33, 0.2);
}

.faq details {
  border-bottom: 1px solid rgba(13, 51, 33, 0.2);
}

.faq summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  color: var(--forest-900);
  font-size: 0.97rem;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid rgba(13, 51, 33, 0.25);
  border-radius: 50%;
}

.faq summary span::before,
.faq summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  content: "";
  background: var(--forest-700);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq details p {
  max-width: 670px;
  margin: -4px 54px 24px 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

/* Contact */
.contact {
  padding-block: 84px;
  color: var(--white);
  background: var(--forest-950);
}

.contact__card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.contact__card h2 {
  color: var(--white);
}

.contact__card > div:first-child > p:last-child {
  color: rgba(255, 255, 255, 0.63);
}

.contact__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact__links a {
  display: grid;
  min-width: 0;
  grid-template-columns: 42px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.contact__links a:nth-child(3) {
  grid-column: 1 / -1;
}

.contact__links a:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(223, 196, 142, 0.4);
  transform: translateY(-2px);
}

.contact__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold-300);
  background: rgba(223, 196, 142, 0.1);
  border-radius: 50%;
}

.contact__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact__icon--whatsapp {
  background: rgba(255, 255, 255, 0.08);
}

.contact__icon--whatsapp .whatsapp-mark {
  width: 24px;
  height: 24px;
}

.contact__links a > span:nth-child(2) {
  display: grid;
  min-width: 0;
}

.contact__links small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.contact__links strong {
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  white-space: normal;
}

.contact__arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold-300);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.66);
  background: #061d13;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.7fr);
  gap: 58px;
  padding-block: 70px 56px;
}

.brand--footer .brand__text strong {
  color: var(--white);
}

.footer__brand > p {
  max-width: 340px;
  margin: 22px 0 24px;
  font-size: 0.79rem;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--gold-300);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.social-links a:hover {
  color: var(--forest-950);
  background: var(--gold-300);
  border-color: var(--gold-300);
}

.social-links .social-links__marketplace {
  width: 124px;
  height: 48px;
  padding-inline: 5px;
  background: transparent;
  border-color: transparent;
  border-radius: var(--radius-pill);
}

.social-links .social-links__marketplace:hover {
  background: transparent;
  border-color: transparent;
  transform: translateY(-2px);
}

.social-links__marketplace .mercado-livre-mark {
  width: 112px;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.social-links .fill-icon {
  fill: currentColor;
  stroke: none;
}

.footer__column {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 11px;
  overflow-wrap: anywhere;
}

.footer__column h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__column a,
.footer__column span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 32px;
  align-items: center;
  font-size: 0.76rem;
  overflow-wrap: anywhere;
}

.footer__column a:hover {
  color: var(--gold-300);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.footer__bottom p {
  margin: 0;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  z-index: 25;
  right: max(22px, calc(env(safe-area-inset-right) + 12px));
  bottom: max(22px, calc(env(safe-area-inset-bottom) + 12px));
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: drop-shadow(0 10px 22px rgba(12, 67, 37, 0.3));
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0s linear 0.2s;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.floating-whatsapp__label {
  display: none;
}

.floating-whatsapp__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  background: var(--whatsapp);
  border: 0;
  border-radius: 50%;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.floating-whatsapp__icon .whatsapp-mark {
  width: 29px;
  height: 29px;
}

.floating-whatsapp:hover .floating-whatsapp__icon {
  background: #1fbd59;
  transform: scale(1.07);
}

.noscript-message {
  position: fixed;
  z-index: 100;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--forest-900);
  border-radius: 10px;
  text-align: center;
}

.noscript-message a {
  color: var(--gold-300);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1120px) {
  .nav-shell {
    gap: 22px;
  }

  .primary-nav {
    gap: 20px;
  }

  .primary-nav a {
    font-size: 0.81rem;
  }

  .hero__grid {
    gap: 28px;
  }

  .hero-product--main {
    width: min(33vw, 350px);
  }

  .hero-product--small {
    width: 120px;
    height: 148px;
  }

  .hero__bg-shape {
    width: 55%;
  }

  .assurance__item {
    padding-inline: 17px;
  }

  .catalog-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-actions {
    justify-content: flex-end;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .whatsapp-promo__card {
    padding-inline: 55px;
  }

  .promo-pack--front {
    right: 55px;
  }

  .faq__grid {
    gap: 60px;
  }
}

@media (max-width: 920px) {
  .section {
    padding-block: 82px;
  }

  .nav-shell {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    position: absolute;
    z-index: 45;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    justify-content: stretch;
    gap: 0;
    padding-inline: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: var(--cream-50);
    box-shadow: 0 22px 34px rgba(13, 51, 33, 0.1);
    transition:
      max-height 0.3s ease,
      opacity 0.2s ease,
      padding 0.3s ease,
      visibility 0s linear 0.3s;
  }

  .primary-nav.is-open {
    max-height: 430px;
    padding-block: 14px 22px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .primary-nav a {
    padding: 14px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 0.94rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav .primary-nav__whatsapp {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 12px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--forest-800);
    border: 0;
    border-radius: var(--radius-pill);
    font-weight: 700;
  }

  .primary-nav__whatsapp img {
    width: 22px;
    height: 22px;
  }

  .button--nav {
    display: none;
  }

  .hero,
  .hero__grid {
    min-height: auto;
  }

  .hero__bg-shape {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 48px 60px;
  }

  .hero__content {
    max-width: 720px;
    text-align: center;
  }

  .hero__content .eyebrow,
  .hero__actions,
  .hero__trust {
    justify-content: center;
  }

  .hero__trust {
    margin-top: 24px;
    gap: 16px;
  }

  .hero__intro {
    margin-inline: auto;
    max-width: 520px;
  }

  .hero__showcase {
    position: relative;
    min-height: 500px;
    max-width: 580px;
    width: 100%;
    margin-inline: auto;
    padding: 32px 16px;
    background: linear-gradient(145deg, var(--forest-800) 0%, var(--forest-950) 100%);
    border-radius: 32px;
    box-shadow:
      0 16px 40px rgba(14, 42, 26, 0.2),
      inset 0 0 60px rgba(14, 42, 26, 0.35);
    overflow: hidden;
  }

  .hero__showcase-ring {
    width: min(80vw, 380px);
  }

  .hero__showcase-ring--2 {
    width: min(95vw, 480px);
  }

  .hero-product--main {
    width: 320px;
  }

  .hero-product--fruit {
    right: 20px;
    top: 30px;
  }

  .hero-product--pistachio {
    left: 20px;
    bottom: 20px;
  }

  .assurance__grid {
    grid-template-columns: 1fr 1fr;
  }

  .assurance__item,
  .assurance__item:first-child,
  .assurance__item:last-child {
    padding-inline: 24px;
    border-bottom: 1px solid var(--line);
  }

  .assurance__item:nth-child(2) {
    border-right: 0;
  }

  .assurance__item:nth-child(3),
  .assurance__item:nth-child(4) {
    border-bottom: 0;
  }

  .story-banner__card,
  .story-banner__content {
    min-height: 430px;
  }

  .story-banner__content {
    max-width: 560px;
    padding-inline: 46px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .whatsapp-promo {
    padding-top: 0;
  }

  .whatsapp-promo__card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 56px 52px 30px;
  }

  .whatsapp-promo__content {
    max-width: 620px;
  }

  .whatsapp-promo__products {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 330px;
    flex: 0 0 auto;
    margin-top: 24px;
  }

  .whatsapp-promo__badge {
    display: none;
  }

  .promo-pack--front {
    right: 40%;
    width: 280px;
  }

  .promo-pack--back {
    right: 19%;
    width: 245px;
  }

  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 55px;
  }

  .about__location {
    right: -20px;
  }

  .real-gallery__grid {
    grid-auto-rows: auto;
  }

  .steps__grid {
    grid-template-columns: 1fr;
  }

  .steps__arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

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

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq__intro {
    position: static;
    max-width: 660px;
  }

  .contact__card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__column,
  .footer__column a {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 78px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 68px;
  }

  .offer-bar__content {
    min-height: 36px;
    justify-content: center;
    gap: 7px;
    font-size: 0.74rem;
  }

  .offer-bar__spark,
  .offer-bar a svg {
    display: none;
  }

  .offer-bar a {
    padding-left: 7px;
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__text strong {
    font-size: 1.07rem;
  }

  .brand__text small {
    font-size: 0.68rem;
  }

  .hero__grid {
    padding-block: 36px 48px;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.2rem);
    letter-spacing: -0.035em;
    line-height: 1.05;
  }

  .hero__intro {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero__actions {
    display: grid;
    gap: 10px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    gap: 12px;
    margin-top: 20px;
  }

  .hero__showcase {
    min-height: 440px;
    padding: 24px 12px;
    border-radius: 24px;
  }

  .hero-product--main {
    width: min(78vw, 300px);
  }

  .hero-product--main img {
    height: 320px;
    padding: 6px;
  }

  .hero-product--small {
    display: none;
  }

  .hero-product__caption {
    gap: 8px;
    padding-inline: 18px;
  }

  .hero-product__caption span {
    font-size: 0.92rem;
  }

  .hero-product__caption strong {
    font-size: 0.7rem;
    line-height: 1.2;
    text-align: right;
  }

  .assurance__grid {
    grid-template-columns: 1fr;
  }

  .assurance__item,
  .assurance__item:first-child,
  .assurance__item:last-child,
  .assurance__item:nth-child(3) {
    min-height: 88px;
    padding-inline: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .assurance__item:last-child {
    border-bottom: 0;
  }

  .story-banner {
    padding-block: 46px 0;
  }

  .story-banner__card,
  .story-banner__content {
    min-height: 0;
  }

  .story-banner__card {
    display: grid;
    border-radius: 22px;
  }

  .story-banner__card > img {
    position: relative;
    z-index: 0;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 670;
    object-fit: contain;
    object-position: center;
  }

  .story-banner__shade {
    display: none;
  }

  .story-banner__content {
    justify-content: flex-start;
    padding: 34px 25px 44px;
    background: var(--forest-900);
  }

  .story-banner__content h2 {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  .story-banner__source {
    display: none;
  }

  .section-heading--catalog {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .section-heading h2,
  .about__content h2,
  .faq__intro h2,
  .contact__card h2,
  .whatsapp-promo h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .category-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-inline: -14px;
    padding: 0 14px 7px;
    scrollbar-width: none;
  }

  .category-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-chip {
    flex: 0 0 auto;
  }

  .catalog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .search-field {
    min-width: 0;
  }

  .search-field input,
  .sort-field select {
    font-size: 16px;
  }

  .sort-field select {
    width: 100%;
    min-width: 0;
  }

  .catalog-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

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

  .product-card {
    border-radius: 15px;
  }

  .product-card__media {
    aspect-ratio: 1;
  }

  .product-card__shipping {
    display: none;
  }

  .product-card__discount {
    top: 8px;
    left: 8px;
    padding: 4px 7px;
    font-size: 0.7rem;
  }

  .product-card__body {
    padding: 12px;
  }

  .product-card__category {
    margin-bottom: 5px;
    font-size: 0.75rem;
  }

  .product-card h3 {
    min-height: 56px;
    margin-bottom: 9px;
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .product-card__old-price {
    min-height: 17px;
    font-size: 0.75rem;
  }

  .product-card__market-price {
    display: grid;
    gap: 0;
  }

  .product-card__market-price strong {
    font-size: 1.05rem;
  }

  .product-card__market-price span {
    font-size: 0.72rem;
  }

  .product-card__actions {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .product-card__actions a {
    min-height: 58px;
    font-size: 0.8rem;
  }

  .catalog-note {
    text-align: left;
  }

  .whatsapp-promo__card {
    min-height: 685px;
    padding: 44px 25px;
    border-radius: 24px;
  }

  .whatsapp-promo__badge {
    top: auto;
    right: 18px;
    bottom: 232px;
    width: 95px;
    height: 95px;
  }

  .whatsapp-promo__badge strong {
    font-size: 1.8rem;
  }

  .whatsapp-promo__products {
    height: 300px;
  }

  .promo-pack--front {
    right: 34%;
    bottom: 12px;
    width: 235px;
  }

  .promo-pack--back {
    right: 5%;
    bottom: 28px;
    width: 205px;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__visual {
    max-width: 440px;
    width: 100%;
  }

  .about__location {
    right: 12px;
    bottom: 24px;
    width: min(230px, calc(100% - 24px));
    min-width: 0;
  }

  .about-feature {
    grid-template-columns: 40px 1fr;
  }

  .real-gallery__grid {
    grid-auto-rows: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .gallery-card--featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-card {
    border-radius: 14px;
  }

  .gallery-card figcaption {
    padding: 13px;
  }

  .gallery-card figcaption strong {
    font-size: 0.92rem;
  }

  .gallery-card--featured figcaption {
    padding: 20px;
  }

  .gallery-card--featured figcaption strong {
    font-size: 1.4rem;
  }

  .steps__grid {
    gap: 13px;
  }

  .step-card {
    padding-inline: 22px;
  }

  .faq summary {
    min-height: 70px;
    font-size: 0.86rem;
  }

  .faq details p {
    margin-right: 20px;
    font-size: 0.79rem;
  }

  .contact {
    padding-block: 65px;
  }

  .contact__links {
    grid-template-columns: 1fr;
  }

  .contact__links a:nth-child(3) {
    grid-column: auto;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer__column a {
    min-height: 44px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__column--contact {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .floating-whatsapp {
    right: max(13px, calc(env(safe-area-inset-right) + 8px));
    bottom: max(13px, calc(env(safe-area-inset-bottom) + 8px));
  }

  .floating-whatsapp__label {
    display: none;
  }

  .floating-whatsapp__icon {
    width: 52px;
    height: 52px;
  }

  .whatsapp-promo__card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding-bottom: 24px;
  }

  .whatsapp-promo__badge {
    display: none;
  }

  .whatsapp-promo__products {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    flex: 0 0 auto;
    margin-top: 24px;
  }

  .footer__bottom {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 575px) {
  .offer-bar a {
    display: none;
  }

  .offer-bar__content {
    text-align: center;
  }

  .catalog-actions {
    grid-template-columns: 1fr;
  }

  .search-field,
  .sort-field,
  .sort-field select {
    width: 100%;
  }

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

  .product-card__media {
    aspect-ratio: 1;
  }

  .product-card__body {
    padding: 17px;
  }

  .product-card__category {
    font-size: 0.75rem;
  }

  .product-card h3 {
    min-height: 0;
    font-size: 1rem;
  }

  .product-card__market-price {
    display: flex;
  }

  .product-card__market-price strong {
    font-size: 1.35rem;
  }

  .product-card__market-price span {
    font-size: 0.75rem;
  }

  .product-card__actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-card__actions a {
    min-height: 60px;
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  .product-card__marketplace .mercado-livre-mark {
    width: 120px;
  }

  .whatsapp-promo__products {
    height: 230px;
  }

  .promo-pack--front {
    right: 24%;
    bottom: 4px;
    width: min(56vw, 190px);
  }

  .promo-pack--back {
    right: 4%;
    bottom: 14px;
    width: min(46vw, 165px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
