/* ============================================================
   COCAR SAGRADO — ESTUDO V4 · "RAIZ VIVA"
   Orgânico botânico: a paleta nasceu de uma Ficus elastica,
   então a página assume a planta. Papel quente, verdes em
   camadas (sálvia nova na família), formas assimétricas que
   RESPIRAM (blobs morphing), folhas que balançam e um ramo
   que se desenha quando a seção entra na tela.
   Tipografia: Fraunces (display) + Figtree (corpo).
   Página experimental — não altera nada do site atual.
   ============================================================ */

/* === TOKENS (mesmos nomes do site — os CSS dos modais consomem) === */
:root {
  --color-primary:          #142E20;
  --color-primary-hover:    #1F4530;
  --color-primary-deep:     #0E2117;
  --color-primary-light:    #6E8F73;
  --color-primary-whisper:  #93AC8F;

  --color-gold:             #A9873B;
  --color-gold-deep:        #8A6D2F;
  --color-gold-shadow:      #6B5526;
  --color-gold-light:       #D2BA7C;
  --color-gold-mist:        #EAE0BE;

  --color-bg-page:          #F7F3E8;
  --color-bg-section-alt:   #EDEBD9;
  --color-bg-card:          #FFFEF6;
  --color-cat-card:         #FFFEF6;
  --color-bg-dark:          #142E20;
  --color-bg-dark-deep:     #0E2117;

  --color-text-primary:     #182A1E;
  --color-text-body:        #41513F;
  --color-text-muted:       #85806B;
  --color-text-link:        #1F4530;
  --color-text-on-dark:     #F2EEDD;

  --color-neutral-white:    #FFFEF6;
  --color-neutral-ivory:    #F7F3E8;
  --color-neutral-sand:     #EDEBD9;
  --color-neutral-stone:    #D8D2B8;
  --color-neutral-driftwood:#85806B;

  --color-hover-gold:       #8A6D2F;
  --color-hover-green:      #2F5C41;
  --color-focus-ring:       #A8C49E;
  --color-success:          #3E6B45;
  --color-error:            #8B3A1E;

  --fonte-titulo: 'Fraunces', Georgia, 'Times New Roman', serif;
  --fonte-corpo:  'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --raio-sm:  6px;
  --raio-md:  10px;
  --raio-lg:  14px;
  --raio-xl:  22px;
  --borda-sutil: 1px solid var(--color-neutral-stone);
  --borda-dourada-translucida: 1px solid rgba(169, 135, 59, 0.28);

  --transicao: 0.25s ease;

  /* tokens próprios da variante */
  --v4-salvia:        #93AC8F;
  --v4-salvia-forte:  #6E8F73;
  --v4-sussurro:      #DDE5CC;
  --v4-verde-medio:   #2F5C41;
  --v4-sombra-dura:   8px 8px 0 rgba(147, 172, 143, 0.3);
  --v4-radius-a:      26px 10px 26px 10px;
  --v4-radius-a-esp:  10px 26px 10px 26px;
  --v4-radius-btn:    22px 9px 22px 9px;
  --v4-radius-btn-esp: 9px 22px 9px 22px;
  --v4-blob-a:        58% 42% 55% 45% / 45% 52% 48% 55%;

  --curva-suave: cubic-bezier(0.22, 1, 0.36, 1);
}

/* === BASE === */
html {
  scroll-behavior: smooth;
  color-scheme: light;
  -webkit-tap-highlight-color: transparent;
}

[id] { scroll-margin-top: 88px; }

body {
  font-family: var(--fonte-corpo);
  font-size: 16.5px;
  line-height: 1.65;
  background: var(--color-bg-page);
  color: var(--color-text-body);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--v4-sussurro);
  color: var(--color-primary-deep);
}

a, button, input, select, textarea, [role="button"] { touch-action: manipulation; }

img { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
  border-radius: 4px;
}

.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: absolute;
  top: -60px; left: 8px;
  z-index: 300;
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  padding: 10px 18px;
  border-radius: var(--v4-radius-btn);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 8px; }

.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* ============================================================
   PEÇAS BOTÂNICAS — grifo, folha, ramo, blob
   ============================================================ */

/* sublinhado ondulado (raiz) em palavras-chave */
.grifo {
  font-style: italic;
  font-weight: 480;
  color: var(--color-gold-deep);
}
.hero-title .grifo { font-weight: 460; }

/* folha desenhada — balança devagar */
.folha {
  position: absolute;
  color: var(--v4-salvia-forte);
  transform-origin: 50% 100%;
  animation: folha-balanca 9s ease-in-out infinite;
  pointer-events: none;
}
.folha path {
  fill: rgba(221, 229, 204, 0.55);
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}
.folha path:last-child { fill: none; }
@keyframes folha-balanca {
  0%, 100% { transform: rotate(var(--rot, 0deg)); }
  50%      { transform: rotate(calc(var(--rot, 0deg) + 7deg)); }
}

/* ramo que se desenha quando a seção fica visível */
.ramo {
  display: block;
  width: min(300px, 72vw);
  margin: 28px auto 0;
}
.ramo-path {
  fill: none;
  stroke: var(--v4-salvia-forte);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.5s ease 0.25s;
}
.ramo-path--folha { transition-delay: 0.9s; transition-duration: 0.8s; }
.catalogo .ramo-path,
.depoimentos .ramo-path { stroke: var(--color-bg-page); }
.fade-in-scroll.visible .ramo-path { stroke-dashoffset: 0; }

/* blob que respira */
.jardim-blob {
  position: absolute;
  border-radius: var(--v4-blob-a);
  animation: blob-respira 14s ease-in-out infinite;
  pointer-events: none;
}
@keyframes blob-respira {
  0%, 100% { border-radius: 58% 42% 55% 45% / 45% 52% 48% 55%; transform: rotate(0deg) scale(1); }
  33%      { border-radius: 45% 55% 48% 52% / 55% 45% 58% 42%; transform: rotate(2deg) scale(1.03); }
  66%      { border-radius: 52% 48% 42% 58% / 48% 58% 45% 52%; transform: rotate(-2deg) scale(0.985); }
}

/* ============================================================
   COMPONENTES DE TEXTO
   ============================================================ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: 18px;
}
/* filete que "abre" o olho editorial */
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}
.eyebrow--muted { color: var(--color-text-muted); }
.eyebrow--muted::before { background: var(--color-neutral-stone); }

/* centralizado: filete dos dois lados */
.section-header .eyebrow,
.depos-header .eyebrow { justify-content: center; }
.section-header .eyebrow::after,
.depos-header .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}

.section-title {
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
  font-family: var(--fonte-titulo);
  font-weight: 560;
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  line-height: 1.08;
  color: var(--color-text-primary);
  margin-bottom: 18px;
  text-wrap: balance;
}

.section-sub {
  font-size: 16px;
  color: var(--color-text-muted);
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 42px;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn-fill,
.btn-outline,
.btn-outline-small,
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--fonte-corpo);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transicao), color var(--transicao),
              border-color var(--transicao), transform var(--transicao),
              box-shadow var(--transicao), border-radius 0.45s var(--curva-suave);
}

.btn-fill {
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  font-size: 15px;
  padding: 14px 30px;
  border: none;
  border-radius: var(--v4-radius-btn);
  box-shadow: 4px 4px 0 rgba(147, 172, 143, 0.4);
}
.btn-fill:hover {
  background: var(--color-primary-hover);
  border-radius: var(--v4-radius-btn-esp);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(147, 172, 143, 0.45);
}
.btn-fill--block {
  display: flex;
  width: 100%;
  margin-top: 26px;
}
.btn-fill--ouro {
  background: var(--color-gold-deep);
  box-shadow: 4px 4px 0 rgba(107, 85, 38, 0.5);
}
.btn-fill--ouro:hover {
  background: var(--color-gold);
  box-shadow: 7px 7px 0 rgba(107, 85, 38, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  font-size: 15px;
  padding: 13px 28px;
  border: 1.5px solid var(--color-primary);
  border-radius: var(--v4-radius-btn);
}
.btn-outline:hover {
  background: var(--v4-sussurro);
  border-radius: var(--v4-radius-btn-esp);
}

.btn-outline-small {
  font-size: 13.5px;
  padding: 9px 20px;
  border: 1.5px solid var(--v4-salvia-forte);
  color: var(--v4-verde-medio);
  background: transparent;
  border-radius: 16px 6px 16px 6px;
}
.btn-outline-small:hover {
  background: var(--v4-salvia-forte);
  color: var(--color-neutral-white);
  border-radius: 6px 16px 6px 16px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 243, 232, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transicao), box-shadow var(--transicao);
}
.header.scrolled {
  border-bottom-color: rgba(147, 172, 143, 0.5);
  box-shadow: 0 14px 34px -26px rgba(24, 42, 30, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 76px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-right: auto;
}
.brand-logo {
  letter-spacing: 0.01em;
  font-family: var(--fonte-titulo);
  font-weight: 600;
  font-size: 21px;
  color: var(--color-primary);
}
.brand-sub {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-text-body);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 14px 5px 14px 5px;
  transition: background var(--transicao), color var(--transicao);
}
.nav-link:hover {
  background: var(--v4-sussurro);
  color: var(--color-primary);
}

.nav-theme-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
}

.btn-nav {
  background: transparent;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold-deep);
  font-size: 13.5px;
  padding: 10px 22px;
  border-radius: 16px 6px 16px 6px;
}
.btn-nav:hover {
  background: var(--color-gold);
  color: var(--color-neutral-white);
  border-radius: 6px 16px 6px 16px;
}

.hamburger { display: none; }

.hamburger {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1.5px solid var(--v4-salvia);
  border-radius: 46% 54% 52% 48%;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — O JARDIM
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(52% 60% at 88% 18%, rgba(221, 229, 204, 0.55), transparent 70%),
    radial-gradient(40% 46% at 4% 92%, rgba(234, 224, 190, 0.5), transparent 70%),
    var(--color-bg-page);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-block: clamp(60px, 9vh, 104px);
  min-height: min(86vh, 840px);
}

.hero-title {
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
  font-family: var(--fonte-titulo);
  font-weight: 570;
  font-size: clamp(2.5rem, 5.2vw, 4.3rem);
  line-height: 1.03;
  color: var(--color-text-primary);
  margin-bottom: 26px;
  text-wrap: balance;
}

.hero-quote {
  position: relative;
  font-family: var(--fonte-titulo);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  color: var(--color-text-body);
  max-width: 46ch;
  padding-left: 22px;
  border-left: 2px solid var(--color-gold-light);
  margin-bottom: 34px;
}
.hero-quote::before {
  content: "“";
  position: absolute;
  left: -14px;
  top: -30px;
  font-size: 74px;
  font-style: normal;
  color: rgba(184, 137, 60, 0.3);
  line-height: 1;
}
.hero-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--fonte-corpo);
  font-style: normal;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- o jardim (logo + blobs + folhas) --- */
.hero-right { display: flex; justify-content: center; }

.jardim {
  position: relative;
  width: min(400px, 78vw);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jardim-blob--salvia {
  width: 92%;
  height: 92%;
  background: var(--v4-salvia);
  opacity: 0.5;
  top: 2%;
  left: -4%;
}
.jardim-blob--ouro {
  width: 56%;
  height: 56%;
  background: var(--color-gold-mist);
  bottom: -4%;
  right: -6%;
  animation-delay: -7s;
}

.jardim .hero-logo-circle {
  position: relative;
  width: 76%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:
    0 26px 48px -22px rgba(24, 42, 30, 0.5),
    0 0 0 8px var(--color-bg-card),
    0 0 0 9.5px var(--v4-salvia);
}

.folha--1 { width: 34px; top: 3%; right: 7%; --rot: 18deg; }
.folha--2 { width: 26px; bottom: 9%; left: 1%; --rot: -24deg; animation-delay: -3s; }
.folha--3 { width: 20px; top: 34%; left: -7%; --rot: 40deg; animation-delay: -6s; color: var(--color-gold); }
.folha--3 path { fill: rgba(234, 224, 190, 0.6); }

/* --- entrada do hero --- */
.fade-in > * {
  opacity: 0;
  transform: translateY(20px) scale(0.99);
  animation: brota 0.9s var(--curva-suave) forwards;
}
.fade-in > *:nth-child(1) { animation-delay: 0.05s; }
.fade-in > *:nth-child(2) { animation-delay: 0.16s; }
.fade-in > *:nth-child(3) { animation-delay: 0.28s; }
.fade-in > *:nth-child(4) { animation-delay: 0.4s; }
.fade-in--delay > * { animation-delay: 0.32s; }
@keyframes brota {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- reveal no scroll --- */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(26px) scale(0.99);
  transition: opacity 0.85s var(--curva-suave), transform 0.85s var(--curva-suave);
}
.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============================================================
   SEÇÃO E-BOOK
   ============================================================ */
.ebook-sec {
  background: var(--color-bg-section-alt);
  padding-block: clamp(72px, 9vw, 108px);
}

.ebook-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.ebook-figura { display: flex; justify-content: center; }

.ebook-canteiro {
  position: relative;
  width: min(320px, 72vw);
  display: flex;
  justify-content: center;
  padding: 8% 6%;
}
.ebook-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 24px rgba(24, 42, 30, 0.3));
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ebook-canteiro:hover .ebook-img {
  transform: translateY(-6px) rotate(-1deg) scale(1.02);
}
.ebook-selo {
  position: absolute;
  top: 11%;
  right: 8%;
  z-index: 2;
  background: var(--color-gold);
  color: #1b2a1c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  transform: rotate(8deg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ebook-canteiro:hover .ebook-selo {
  transform: rotate(8deg) translateY(-6px) scale(1.02);
}
/* flutuar suave (desliga em prefers-reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  .ebook-canteiro { animation: ebook-float 6s ease-in-out infinite; }
}
@keyframes ebook-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.sobre-body {
  max-width: 52ch;
  margin-bottom: 20px;
}

.ebook-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.ebook-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
}
@supports ((-webkit-mask: url("")) or (mask: url(""))) {
  .ebook-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--v4-salvia-forte);
    -webkit-mask: var(--ico-ornamento) center / contain no-repeat;
            mask: var(--ico-ornamento) center / contain no-repeat;
  }
}

.ebook-autora {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--color-bg-card);
  border: 1.5px solid var(--v4-sussurro);
  border-radius: var(--v4-radius-a);
  width: fit-content;
  margin-bottom: 26px;
}
.ebook-autora-img {
  width: 44px;
  height: 44px;
  border-radius: 46% 54% 52% 48%;
  object-fit: cover;
  box-shadow: 0 0 0 2.5px var(--v4-salvia);
}
.ebook-autora-info { display: flex; flex-direction: column; line-height: 1.35; }
.ebook-autora-info strong { font-size: 14.5px; color: var(--color-text-primary); }
.ebook-autora-info span { font-size: 12.5px; color: var(--color-text-muted); }

.ebook-acoes {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.ebook-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-gold-deep);
  text-decoration: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='8' viewBox='0 0 24 8'%3E%3Cpath d='M0 5 Q 6 0 12 5 T 24 5' fill='none' stroke='%23A9873B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E")
    repeat-x left bottom / 20px 7px;
  padding-bottom: 5px;
  transition: color var(--transicao);
}
.ebook-link:hover { color: var(--color-primary); }

.ebook-meta {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ============================================================
   SEÇÃO CATÁLOGO
   ============================================================ */
.catalogo {
  position: relative;
  background: var(--color-primary);
  padding-block: clamp(72px, 9vw, 108px);
  overflow: hidden;
}

/* folhinhas desenhadas sobre o verde escuro (mesmas da cta-bar) */
.folha--cat1 {
  width: 54px;
  top: 64px;
  left: 4%;
  --rot: 148deg;
  color: rgba(242, 238, 221, 0.4);
}
.folha--cat1 path { fill: rgba(242, 238, 221, 0.08); }
.folha--cat2 {
  width: 34px;
  bottom: -6px;
  right: 6%;
  --rot: -30deg;
  color: rgba(210, 186, 124, 0.6);
  animation-delay: -4s;
}
.folha--cat2 path { fill: rgba(210, 186, 124, 0.12); }
.folha--cat3 {
  width: 42px;
  top: 22%;
  right: 3%;
  --rot: -156deg;
  color: rgba(242, 238, 221, 0.35);
  animation-delay: -2s;
}
.folha--cat3 path { fill: rgba(242, 238, 221, 0.07); }
.folha--cat4 {
  width: 30px;
  top: 42%;
  left: 2%;
  --rot: 24deg;
  color: rgba(210, 186, 124, 0.55);
  animation-delay: -5s;
}
.folha--cat4 path { fill: rgba(210, 186, 124, 0.1); }
.folha--cat5 {
  width: 28px;
  top: 60%;
  right: 5%;
  --rot: -18deg;
  color: rgba(210, 186, 124, 0.5);
  animation-delay: -7s;
}
.folha--cat5 path { fill: rgba(210, 186, 124, 0.1); }
.folha--cat6 {
  width: 46px;
  top: 78%;
  left: 4%;
  --rot: 140deg;
  color: rgba(242, 238, 221, 0.38);
  animation-delay: -3s;
}
.folha--cat6 path { fill: rgba(242, 238, 221, 0.08); }
.folha--cat7 {
  width: 26px;
  top: 12%;
  left: 9%;
  --rot: -40deg;
  color: rgba(242, 238, 221, 0.32);
  animation-delay: -1.5s;
}
.folha--cat7 path { fill: rgba(242, 238, 221, 0.06); }
.folha--cat8 {
  width: 36px;
  top: 30%;
  left: 5%;
  --rot: 160deg;
  color: rgba(210, 186, 124, 0.5);
  animation-delay: -6s;
}
.folha--cat8 path { fill: rgba(210, 186, 124, 0.1); }
.folha--cat9 {
  width: 32px;
  top: 50%;
  right: 9%;
  --rot: 20deg;
  color: rgba(242, 238, 221, 0.35);
  animation-delay: -8s;
}
.folha--cat9 path { fill: rgba(242, 238, 221, 0.07); }
.folha--cat10 {
  width: 24px;
  top: 68%;
  left: 8%;
  --rot: -150deg;
  color: rgba(210, 186, 124, 0.55);
  animation-delay: -2.5s;
}
.folha--cat10 path { fill: rgba(210, 186, 124, 0.1); }
.folha--cat11 {
  width: 40px;
  top: 88%;
  right: 3%;
  --rot: -25deg;
  color: rgba(242, 238, 221, 0.38);
  animation-delay: -4.5s;
}
.folha--cat11 path { fill: rgba(242, 238, 221, 0.08); }
.folha--cat12 {
  width: 26px;
  top: 7%;
  right: 10%;
  --rot: 35deg;
  color: rgba(210, 186, 124, 0.5);
  animation-delay: -3.5s;
}
.folha--cat12 path { fill: rgba(210, 186, 124, 0.1); }

/* textos que ficam direto sobre o fundo escuro */
.catalogo .section-title,
.catalogo .cat-group-titulo { color: var(--color-text-on-dark); }
.catalogo .grifo { color: var(--color-gold); }
.catalogo .eyebrow { color: var(--color-gold); }
.catalogo .section-sub { color: rgba(242, 238, 221, 0.72); }
.catalogo .cat-group-avatar {
  box-shadow: 0 0 0 2.5px var(--color-primary), 0 0 0 5px var(--v4-salvia);
}
.catalogo .cat-filter.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-text-on-dark);
}

/* --- filtros: pílulas orgânicas (sem sublinhado nesta variante) --- */
.cat-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 44px;
}
.cat-filter {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--color-bg-card);
  border: 1.5px solid var(--v4-sussurro);
  border-radius: 18px 7px 18px 7px;
  cursor: pointer;
  font-family: var(--fonte-corpo);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-body);
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background var(--transicao), color var(--transicao),
              border-color var(--transicao), border-radius 0.45s var(--curva-suave),
              transform var(--transicao);
  white-space: nowrap;
}
.cat-filter:hover {
  border-color: var(--v4-salvia);
  border-radius: 7px 18px 7px 18px;
  transform: translateY(-1px);
}
.cat-filter.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-on-dark);
}
.cat-filter-ico { font-size: 15px; display: inline-flex; }

/* --- grupos --- */
.cat-group { margin-bottom: 54px; }
.cat-group:last-child { margin-bottom: 0; }
.cat-group--hidden { display: none; }

.cat-group-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.cat-group-avatar {
  width: 48px;
  height: 48px;
  border-radius: 46% 54% 52% 48%;
  object-fit: cover;
  box-shadow: 0 0 0 2.5px var(--color-bg-page), 0 0 0 5px var(--v4-salvia);
}
.cat-group-titulo {
  font-style: italic;
  font-family: var(--fonte-titulo);
  font-weight: 480;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--color-text-primary);
  white-space: nowrap;
}
.cat-group-head::after {
  content: "";
  flex: 1;
  height: 0;
  border-top: 2px dotted var(--v4-salvia);
  opacity: 0.6;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 22px;
}

/* --- card (HTML gerado pelo agendamento-system.js) --- */
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-card);
  border: 1.5px solid var(--v4-sussurro);
  border-radius: var(--v4-radius-a);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transicao), border-radius 0.5s var(--curva-suave),
              transform 0.35s var(--curva-suave), box-shadow 0.35s var(--curva-suave);
}
.cat-card:hover {
  border-color: var(--v4-salvia);
  border-radius: var(--v4-radius-a-esp);
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -26px rgba(24, 42, 30, 0.4);
}
.cat-card--destaque {
  border-color: var(--color-gold);
  box-shadow: 6px 6px 0 rgba(169, 135, 59, 0.22);
}

.cat-card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 134px;
  padding: 22px 16px 14px;
}
/* canteiro atrás da imagem */
.cat-card-img::before {
  content: "";
  position: absolute;
  width: 118px;
  height: 108px;
  background: var(--v4-sussurro);
  border-radius: 58% 42% 55% 45% / 45% 52% 48% 55%;
  transition: border-radius 0.5s var(--curva-suave), background var(--transicao);
}
.cat-card:hover .cat-card-img::before {
  border-radius: 45% 55% 48% 52% / 55% 45% 58% 42%;
  background: #D3DEBF;
}

.cat-img {
  position: relative;
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  box-shadow:
    0 10px 20px -8px rgba(24, 42, 30, 0.45),
    0 0 0 3px var(--color-bg-card),
    0 0 0 4.5px var(--color-gold-light);
}

.cat-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-card);
  color: var(--v4-verde-medio);
  font-family: var(--fonte-titulo);
  font-size: 2rem;
}

.cat-img-combo {
  position: relative;
  width: 118px;
  height: 102px;
}
.cat-img-combo .cat-img {
  position: absolute;
  width: 74px;
  height: 74px;
}
.cat-img--combo-top  { top: 0; left: 0; z-index: 2; }
.cat-img--combo-bottom { bottom: 0; right: 0; }

.cat-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-neutral-white);
  background: var(--color-gold);
  padding: 5px 12px;
  border-radius: 12px 4px 12px 4px;
  white-space: nowrap;
  box-shadow: 3px 3px 0 rgba(107, 85, 38, 0.3);
  z-index: 2;
}

.cat-body {
  padding: 14px 20px 6px;
  flex: 1;
}
.cat-name {
  font-family: var(--fonte-titulo);
  font-weight: 560;
  font-size: 1.28rem;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}
.cat-desc {
  font-size: 13.8px;
  line-height: 1.55;
  color: var(--color-text-body);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cat-vermais {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--fonte-corpo);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--v4-verde-medio);
  padding: 4px 20px 0;
  margin-bottom: 2px;
  align-self: flex-start;
  text-decoration: underline wavy var(--v4-salvia);
  text-underline-offset: 4px;
}
.cat-vermais:hover { color: var(--color-primary); }

.cat-desc-pop {
  position: fixed;
  z-index: 290;
  background: var(--color-bg-card);
  border: 1.5px solid var(--v4-salvia);
  border-radius: var(--v4-radius-a);
  box-shadow: var(--v4-sombra-dura), 0 24px 54px -18px rgba(24, 42, 30, 0.35);
  padding: 18px 20px 14px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cat-desc-pop.aberto {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cat-desc-pop-txt {
  font-size: 13.8px;
  line-height: 1.6;
  color: var(--color-text-body);
  margin-bottom: 10px;
}
.cat-desc-pop-fechar {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--fonte-corpo);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--v4-verde-medio);
  padding: 0;
  text-decoration: underline wavy var(--v4-salvia);
  text-underline-offset: 4px;
}

.cat-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 20px 20px;
  margin-top: auto;
}
.cat-footer-price {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--v4-verde-medio);
  line-height: 1;
}
.cat-footer-tiers {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
.cat-footer-tiers > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 12.5px;
  color: var(--color-text-muted);
  border-bottom: 2px dotted rgba(147, 172, 143, 0.5);
  padding-bottom: 4px;
}
.cat-footer-tiers > span:last-child { border-bottom: none; padding-bottom: 0; }
.cat-footer-tiers strong {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--v4-verde-medio);
}

.cat-btn {
  flex-shrink: 0;
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  border: none;
  border-radius: 16px 6px 16px 6px;
  font-family: var(--fonte-corpo);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  transition: background var(--transicao), border-radius 0.45s var(--curva-suave);
}
.cat-btn:hover {
  background: var(--color-primary-hover);
  border-radius: 6px 16px 6px 16px;
}

/* preços com promoção (discount-system.js) */
.cat-price-group { display: flex; flex-direction: column; line-height: 1.2; }
.cat-price-original,
.cat-price-original-small {
  font-size: 12px;
  color: var(--color-text-muted);
  text-decoration: line-through;
}
.cat-price-desconto,
.cat-price-desconto-small {
  color: var(--color-gold-deep);
}
.cat-tier-prices { display: inline-flex; gap: 6px; align-items: baseline; }

/* animações de filtro */
.cat-card.hidden { display: none; }
.cat-card.entrando { animation: cat-in 0.35s var(--curva-suave); }
.cat-card.saindo   { animation: cat-out 0.22s ease forwards; }
@keyframes cat-in  { from { opacity: 0; transform: scale(0.95) rotate(-0.5deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes cat-out { to   { opacity: 0; transform: scale(0.95); } }

/* --- skeletons --- */
.cat-skel {
  background: var(--color-bg-card);
  border: 1.5px solid var(--v4-sussurro);
  border-radius: var(--v4-radius-a);
  padding: 22px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cat-skel-img,
.cat-skel-line,
.cat-skel-btn {
  background: linear-gradient(100deg, var(--color-neutral-sand) 40%, #F3F1E2 50%, var(--color-neutral-sand) 60%);
  background-size: 200% 100%;
  animation: skel-shimmer 1.4s linear infinite;
}
.cat-skel-img {
  width: 108px;
  height: 100px;
  border-radius: 58% 42% 55% 45% / 45% 52% 48% 55%;
}
.cat-skel-line {
  width: 70%;
  height: 14px;
  border-radius: 7px;
}
.cat-skel-line--short { width: 45%; }
.cat-skel-btn {
  width: 112px;
  height: 38px;
  border-radius: 16px 6px 16px 6px;
  margin-top: 6px;
}
@keyframes skel-shimmer {
  from { background-position: 180% 0; }
  to   { background-position: -20% 0; }
}

/* ============================================================
   SEÇÃO CONECTAR + CONTATO
   ============================================================ */
.conectar {
  position: relative;
  background: var(--color-bg-section-alt);
  padding-block: clamp(72px, 9vw, 108px);
  overflow: hidden;
}
.folha--conectar {
  width: 44px;
  top: 34px;
  right: 5%;
  --rot: 26deg;
  opacity: 0.8;
}

.conectar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: start;
}

.col-ig-body {
  max-width: 46ch;
  margin-bottom: 26px;
}

.ig-posts-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
}
.ig-post {
  display: block;
  overflow: hidden;
  border: 1.5px solid var(--v4-sussurro);
  background: var(--color-bg-card);
  transition: border-color var(--transicao), border-radius 0.5s var(--curva-suave);
}
.ig-post--main {
  grid-row: span 2;
  border-radius: 34px 12px 34px 12px;
}
.ig-post:nth-child(2) { border-radius: 12px 26px 12px 26px; }
.ig-post:nth-child(3) { border-radius: 26px 12px 26px 12px; }
.ig-post:hover { border-color: var(--v4-salvia); }
.ig-post--main:hover { border-radius: 12px 34px 12px 34px; }
.ig-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--curva-suave);
}
.ig-post:hover img { transform: scale(1.045); }

.ig-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}
.ig-handle {
  font-style: italic;
  font-family: var(--fonte-titulo);
  font-size: 17px;
  color: var(--v4-verde-medio);
}

.col-contact-intro {
  max-width: 48ch;
  margin-bottom: 26px;
}

.person-cards { display: grid; gap: 14px; }
.person-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-bg-card);
  border: 1.5px solid var(--v4-sussurro);
  border-radius: var(--v4-radius-a);
  padding: 16px 18px;
  transition: border-color var(--transicao), border-radius 0.5s var(--curva-suave),
              transform var(--transicao), box-shadow var(--transicao);
}
.person-card:hover {
  border-color: var(--v4-salvia);
  border-radius: var(--v4-radius-a-esp);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -22px rgba(24, 42, 30, 0.35);
}

.person-avatar-wrap { position: relative; flex-shrink: 0; }
.person-avatar {
  width: 64px;
  height: 64px;
  border-radius: 46% 54% 52% 48%;
  overflow: hidden;
  box-shadow: 0 0 0 2.5px var(--color-bg-card), 0 0 0 5px var(--v4-salvia);
}
.person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.person-status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2.5px solid var(--color-bg-card);
  background: var(--color-neutral-stone);
}
.person-status-dot.online {
  background: #3FAE5A;
  box-shadow: 0 0 0 3px rgba(63, 174, 90, 0.25);
}

.person-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.person-name {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  font-size: 19px;
  color: var(--color-text-primary);
}
.person-services {
  font-size: 12.8px;
  line-height: 1.5;
  color: var(--color-text-muted);
}
.person-wa {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--v4-verde-medio);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(147, 172, 143, 0.6);
  width: fit-content;
  transition: color var(--transicao);
}
.person-wa:hover { color: var(--color-gold-deep); }

.contact-extras {
  margin-top: 24px;
  border-top: 2px dotted var(--v4-salvia);
  padding-top: 20px;
  display: grid;
  gap: 16px;
}
.contact-email-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.contact-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.contact-val {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='8' viewBox='0 0 24 8'%3E%3Cpath d='M0 5 Q 6 0 12 5 T 24 5' fill='none' stroke='%2393AC8F' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E")
    repeat-x left bottom / 20px 7px;
  padding-bottom: 5px;
  transition: color var(--transicao);
}
.contact-val:hover { color: var(--color-gold-deep); }

.contact-social-row { display: flex; gap: 10px; }
.social-pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-body);
  text-decoration: none;
  border: 1.5px solid var(--v4-sussurro);
  border-radius: 14px 5px 14px 5px;
  padding: 7px 16px;
  background: var(--color-bg-card);
  transition: background var(--transicao), color var(--transicao),
              border-color var(--transicao), border-radius 0.45s var(--curva-suave);
}
.social-pill:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-on-dark);
  border-radius: 5px 14px 5px 14px;
}

/* ============================================================
   SEÇÃO DEPOIMENTOS — HERBÁRIO
   ============================================================ */
.depoimentos {
  position: relative;
  background: var(--color-primary);
  padding-block: clamp(72px, 9vw, 108px);
  overflow: hidden;
}

/* folhinhas sobre o verde escuro (espelhadas em relação ao catálogo) */
.folha--dep1 {
  width: 54px;
  top: 48px;
  right: 4%;
  --rot: -148deg;
  color: rgba(242, 238, 221, 0.55);
}
.folha--dep1 path { fill: rgba(242, 238, 221, 0.12); }
.folha--dep2 {
  width: 34px;
  bottom: -6px;
  left: 6%;
  --rot: 30deg;
  color: rgba(210, 186, 124, 0.75);
  animation-delay: -4s;
}
.folha--dep2 path { fill: rgba(210, 186, 124, 0.18); }
.folha--dep3 {
  width: 28px;
  top: 26%;
  left: 3%;
  --rot: -20deg;
  color: rgba(210, 186, 124, 0.68);
  animation-delay: -2s;
}
.folha--dep3 path { fill: rgba(210, 186, 124, 0.16); }
.folha--dep4 {
  width: 32px;
  top: 52%;
  right: 2%;
  --rot: 150deg;
  color: rgba(242, 238, 221, 0.5);
  animation-delay: -6s;
}
.folha--dep4 path { fill: rgba(242, 238, 221, 0.11); }
.folha--dep5 {
  width: 24px;
  bottom: 28px;
  right: 14%;
  --rot: 18deg;
  color: rgba(210, 186, 124, 0.68);
  animation-delay: -7.5s;
}
.folha--dep5 path { fill: rgba(210, 186, 124, 0.16); }

/* textos direto sobre o fundo escuro */
.depoimentos .section-title { color: var(--color-text-on-dark); }
.depoimentos .eyebrow { color: var(--color-gold); }
.depoimentos .depos-count { color: rgba(242, 238, 221, 0.72); }
.depos-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 46px;
}
.depos-count {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.depos-carousel {
  overflow: hidden;
  padding-block: 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.depos-track {
  --depo-gap: 28px;
  --depo-card-w: min(330px, 76vw);
  --depo-duration: 46s;
  display: flex;
  gap: var(--depo-gap);
  width: max-content;
  animation: depos-marquee var(--depo-duration) linear infinite;
  will-change: transform;
  cursor: grab;
}
.depos-track.is-js { animation: none; }
.depos-track.dragging { cursor: grabbing; }
@keyframes depos-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-50% - var(--depo-gap) / 2), 0, 0); }
}

/* espécime prensado: papel, fita adesiva e leve rotação */
.depo-card {
  position: relative;
  flex: 0 0 var(--depo-card-w);
  width: var(--depo-card-w);
  aspect-ratio: 4 / 5;
  background: var(--color-bg-card);
  border: 1px solid var(--color-neutral-stone);
  border-radius: 4px;
  overflow: visible;
  padding: 12px;
  box-shadow: 0 16px 30px -20px rgba(24, 42, 30, 0.4);
  transition: transform 0.4s var(--curva-suave), box-shadow 0.4s var(--curva-suave);
}
.depo-card:nth-child(odd)  { transform: rotate(-1.3deg); }
.depo-card:nth-child(even) { transform: rotate(1.5deg); }
.depo-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 24px 44px -22px rgba(24, 42, 30, 0.5);
  z-index: 2;
}
/* fitas adesivas translúcidas nos cantos superiores */
.depo-card::before,
.depo-card::after {
  content: "";
  position: absolute;
  top: -9px;
  width: 62px;
  height: 20px;
  background: rgba(147, 172, 143, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.depo-card::before { left: -14px; transform: rotate(-38deg); }
.depo-card::after  { right: -14px; transform: rotate(38deg); }
.depo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

/* ============================================================
   BARRA CTA FINAL
   ============================================================ */
.cta-bar {
  position: relative;
  background: var(--color-bg-page);
  padding-block: 52px;
  overflow: hidden;
}
.cta-bar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.cta-bar-title {
  font-family: var(--fonte-titulo);
  font-weight: 570;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--color-text-primary);
  margin-bottom: 4px;
}
.cta-bar-sub {
  font-size: 14.5px;
  color: var(--color-text-muted);
}

/* Guias das modalidades — parágrafo discreto abaixo do catálogo
   (fica sobre o fundo escuro da seção: texto claro, links dourados) */
.cat-guias {
  margin-top: 34px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(242, 238, 221, 0.72);
}
.cat-guias a {
  color: var(--color-gold-light);
  font-weight: 500;
}
.cat-guias a:hover { color: var(--color-gold-mist); }

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
  background: var(--color-bg-dark-deep);
  border-top: 2px dotted var(--v4-salvia-forte);
  padding-block: 30px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-brand {
  font-size: 13.5px;
  color: rgba(242, 238, 221, 0.72);
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-link {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(242, 238, 221, 0.72);
  text-decoration: none;
  transition: color var(--transicao);
}
.footer-link:hover { color: var(--color-gold-light); }

/* ============================================================
   MODAL NAVEGADOR IN-APP
   ============================================================ */
.inapp-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(14, 33, 23, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.inapp-backdrop.inapp--visible { display: flex; }
.inapp-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1.5px solid var(--v4-salvia);
  border-radius: var(--v4-radius-a);
  padding: 34px 28px 28px;
  max-width: 360px;
  text-align: center;
  box-shadow: var(--v4-sombra-dura), 0 30px 60px -20px rgba(0, 0, 0, 0.45);
}
.inapp-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 6px;
}
.inapp-text {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-text-primary);
}
.inapp-dots-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  border-radius: 8px 3px 8px 3px;
  background: var(--v4-sussurro);
  border: 1px solid var(--v4-salvia);
  font-weight: 700;
}

/* ============================================================
   BANNER DE DESCONTO
   ============================================================ */
#banner-desconto {
  background: var(--color-primary);
  color: var(--color-text-on-dark);
}
.desconto-inner {
  max-width: 1180px;
  margin-inline: auto;
  padding: 10px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.desconto-texto { font-size: 13.5px; }
.desconto-texto strong { color: var(--color-gold-light); }
.desconto-texto em { opacity: 0.75; font-style: normal; margin-left: 6px; }
.desconto-fechar {
  background: none;
  border: none;
  color: inherit;
  font-size: 15px;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.8;
}
.desconto-fechar:hover { opacity: 1; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1023px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 52px 64px;
    text-align: center;
  }
  .hero-left { order: 2; display: flex; flex-direction: column; align-items: center; }
  .hero-right { order: 1; }
  .hero-btns { justify-content: center; }
  .eyebrow { justify-content: center; }
  .eyebrow::before { display: none; }
  .hero-quote { padding-left: 0; border-left: none; }
  .hero-quote::before { display: none; }
  .jardim { width: min(300px, 72vw); }

  .ebook-inner { grid-template-columns: 1fr; }
  .ebook-figura { margin-bottom: 14px; }
  .conectar-grid { grid-template-columns: 1fr; }
  .folha--conectar { display: none; }
}

@media (max-width: 919px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--color-bg-card);
    border-bottom: 1.5px solid var(--v4-sussurro);
    box-shadow: 0 30px 44px -28px rgba(24, 42, 30, 0.45);
    padding: 12px clamp(12px, 3vw, 24px) 16px;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 13px 16px; font-size: 16px; }
  .nav-theme-wrapper { display: none; }
  .btn-nav { margin-left: auto; }
  .hamburger { display: inline-flex; }
}

@media (max-width: 599px) {
  body { font-size: 15.5px; }
  .btn-nav { display: none; }
  .header-inner { gap: 10px; min-height: 66px; }
  [id] { scroll-margin-top: 74px; }

  .hero-title { font-size: clamp(2.1rem, 9vw, 2.6rem); }
  .jardim { width: min(250px, 78vw); }

  /* filtros viram fileira deslizável (uma linha, swipe horizontal) */
  .cat-filters {
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    margin-inline: calc(-1 * clamp(20px, 4vw, 40px));
    padding-inline: clamp(20px, 4vw, 40px);
    padding-block: 4px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
  }
  .cat-filters::-webkit-scrollbar { display: none; }
  .cat-filter {
    font-size: 12.5px;
    padding: 9px 15px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-card-img { min-height: 110px; padding: 16px 10px 10px; }
  .cat-card-img::before { width: 96px; height: 88px; }
  .cat-img { width: 72px; height: 72px; }
  .cat-img-combo { width: 94px; height: 86px; transform: scale(0.88); }
  .cat-body { padding: 10px 14px 4px; }
  .cat-name { font-size: 1.08rem; }
  .cat-desc { font-size: 12.8px; }
  .cat-vermais { padding: 4px 14px 0; }
  .cat-footer { flex-direction: column; align-items: stretch; padding: 10px 14px 16px; gap: 10px; }
  .cat-footer-price { text-align: left; }
  .cat-btn { width: 100%; }

  .ig-posts-grid { gap: 8px; }
  .ig-footer { flex-direction: column; align-items: flex-start; }
  .person-card { align-items: flex-start; }
  .cta-bar-inner { justify-content: center; text-align: center; }
  .footer-inner { justify-content: center; text-align: center; }
}

/* ============================================================
   MOVIMENTO REDUZIDO
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in > * { opacity: 1; transform: none; animation: none; }
  .fade-in-scroll { opacity: 1; transform: none; }
  .jardim-blob, .folha { animation: none; }
  .ramo-path { stroke-dashoffset: 0; transition: none; }
  .depos-track { animation: none; }
  .depo-card:nth-child(odd), .depo-card:nth-child(even) { transform: none; }
}
