/* ==========================================================================
   Adega Premium Catalão
   Distribuidora de bebidas e tabacaria.
   Moldura preta e dourada, foto colorida por cima.
   Tipografia: Bricolage Grotesque (display) + Manrope (texto).
   ========================================================================== */

:root {
  /* --- Superfícies --- */
  --void:        oklch(0.145 0.012 66);
  --void-2:      oklch(0.185 0.014 66);
  --void-3:      oklch(0.225 0.016 68);
  --bone:        oklch(0.955 0.010 84);
  --bone-2:      oklch(0.915 0.016 84);

  /* --- Tinta --- */
  --ink:         oklch(0.205 0.014 62);
  --ink-soft:    color-mix(in oklab, var(--ink) 62%, transparent);
  --cream:       oklch(0.945 0.010 84);
  --cream-soft:  color-mix(in oklab, var(--cream) 60%, transparent);

  /* --- Acento --- */
  --brass:       oklch(0.775 0.115 79);
  --brass-hi:    oklch(0.845 0.105 84);
  --brass-deep:  oklch(0.585 0.095 74);
  --zap:         oklch(0.72 0.17 150);

  /* --- Fios --- */
  --hair-dark:   color-mix(in oklab, var(--cream) 14%, transparent);
  --hair-light:  color-mix(in oklab, var(--ink) 15%, transparent);

  /* --- Tipografia --- */
  --font-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  /* --- Métrica --- */
  --page: 1320px;
  --pad: clamp(20px, 5vw, 72px);
  --section: clamp(84px, 11vw, 168px);
  --radius: 16px;

  /* --- Movimento --- */
  --e-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --e-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --e-inout: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--ink);
  font-size: clamp(0.98rem, 0.95rem + 0.2vw, 1.08rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--brass); color: var(--void); }

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

/* Grão fixo sobre a página */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--brass);
  color: var(--void);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 12px 18px;
  border-radius: 999px;
  transition: top 0.3s var(--e-expo);
}
.skip-link:focus { top: 16px; }

/* ---------- Tipografia ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.04;
  text-wrap: balance;
}

.h-lg {
  font-size: clamp(1.95rem, 1.25rem + 2.9vw, 3.4rem);
  max-width: 19ch;
}

p { max-width: 62ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow-brass { color: var(--brass); }

/* ---------- Botões ---------- */
.btn {
  --btn-bg: var(--brass);
  --btn-fg: var(--void);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 12px 12px 26px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background-color 0.45s var(--e-expo),
    color 0.45s var(--e-expo),
    border-color 0.45s var(--e-expo),
    transform 0.45s var(--e-expo);
}
.btn:hover { background: var(--brass-hi); }
.btn:active { transform: scale(0.98); }

.btn-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--void) 14%, transparent);
  transition: transform 0.5s var(--e-expo), background-color 0.5s var(--e-expo);
}
.btn-arrow svg { width: 15px; height: 15px; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover .btn-arrow {
  transform: translate3d(3px, -3px, 0) scale(1.06);
  background: color-mix(in oklab, var(--void) 22%, transparent);
}

.btn-sm { padding: 8px 8px 8px 20px; font-size: 0.82rem; gap: 10px; }
.btn-sm .btn-arrow { width: 28px; height: 28px; }
.btn-sm .btn-arrow svg { width: 13px; height: 13px; }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  padding: 13px 26px;
  border-color: var(--hair-dark);
}
.btn-ghost:hover {
  background: color-mix(in oklab, var(--cream) 8%, transparent);
  border-color: color-mix(in oklab, var(--cream) 32%, transparent);
}
.btn-ghost-dark {
  --btn-fg: var(--ink);
  border-color: var(--hair-light);
}
.btn-ghost-dark:hover {
  background: color-mix(in oklab, var(--ink) 6%, transparent);
  border-color: color-mix(in oklab, var(--ink) 34%, transparent);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: clamp(12px, 1.6vw, 22px) var(--pad) 0;
}

.header-shell {
  max-width: var(--page);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 10px 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background-color 0.55s var(--e-expo),
    border-color 0.55s var(--e-expo),
    box-shadow 0.55s var(--e-expo);
}
.site-header.is-stuck .header-shell {
  background: color-mix(in oklab, var(--void) 84%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  border-color: var(--hair-dark);
  box-shadow: 0 18px 50px -30px oklch(0 0 0 / 0.9);
}

.scroll-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: opacity 0.4s var(--e-quart);
}
.site-header.is-stuck .scroll-progress { opacity: 0.75; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { width: 40px; height: 40px; object-fit: contain; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.brand-name em { font-style: normal; color: var(--brass); }

.nav-desktop { display: flex; gap: clamp(18px, 2.4vw, 38px); }
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream-soft);
  transition: color 0.4s var(--e-quart);
}
.nav-desktop a span { position: relative; display: inline-block; padding-bottom: 3px; }
.nav-desktop a span::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--e-expo);
}
.nav-desktop a:hover { color: var(--cream); }
.nav-desktop a:hover span::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--hair-dark);
  padding: 0 12px;
  z-index: 120;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--cream);
  transition: transform 0.5s var(--e-expo), opacity 0.3s var(--e-quart);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- Overlay de navegação ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 120px var(--pad) 48px;
  background: color-mix(in oklab, var(--void) 94%, transparent);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition:
    opacity 0.5s var(--e-quart),
    visibility 0s linear 0.5s,
    clip-path 0.7s var(--e-expo);
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transition: opacity 0.4s var(--e-quart), visibility 0s, clip-path 0.7s var(--e-expo);
}
.nav-overlay nav { display: flex; flex-direction: column; gap: 6px; }
.nav-overlay nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--cream);
  padding-block: 6px;
  border-bottom: 1px solid var(--hair-dark);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--e-quart), transform 0.7s var(--e-expo);
  transition-delay: calc(var(--i) * 60ms);
}
.nav-overlay.is-open nav a,
.nav-overlay.is-open .nav-overlay-foot { opacity: 1; transform: translateY(0); }
.nav-overlay-idx {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--brass);
}
.nav-overlay-foot {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--cream-soft);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--e-quart), transform 0.7s var(--e-expo);
  transition-delay: calc(var(--i) * 60ms);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: var(--void);
  padding: clamp(128px, 16vw, 190px) var(--pad) clamp(56px, 7vw, 96px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, color-mix(in oklab, var(--brass) 22%, transparent), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  max-width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-title {
  margin-top: 20px;
  /* 9.5vw impede que a linha mais longa quebre dentro da máscara */
  font-size: clamp(1.95rem, 5.6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--cream);
}
.hero-title em { font-style: normal; font-weight: 500; color: var(--brass); }

.hero-lead {
  margin-top: clamp(18px, 2.2vw, 26px);
  max-width: 50ch;
  color: var(--cream-soft);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(24px, 3vw, 36px);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(26px, 3vw, 38px);
}
.hero-facts li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream-soft);
  border: 1px solid var(--hair-dark);
  border-radius: 999px;
  padding: 7px 15px;
}

.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hair-dark);
  box-shadow: 0 40px 90px -50px oklch(0 0 0 / 1);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 11 / 12;
  object-fit: cover;
}

/* Entrada coreografada */
.hero-title .mask { display: block; overflow: hidden; padding-bottom: 0.18em; margin-bottom: -0.1em; }
.hero-title .mask-in {
  display: block;
  white-space: nowrap;
  transform: translateY(135%);
  transition: transform 1.1s var(--e-expo);
  transition-delay: calc(var(--i) * 90ms);
}
.hero-line {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--e-quart), transform 1s var(--e-expo);
  transition-delay: calc(var(--i) * 90ms);
}
body.is-ready .hero-title .mask-in { transform: translateY(0); }
body.is-ready .hero-line { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   MARQUEE DE MARCAS
   ========================================================================== */
.marquee {
  background: var(--void);
  border-block: 1px solid var(--hair-dark);
  padding-block: 18px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: slide 46s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--cream-soft);
  white-space: nowrap;
}
.marquee-track i { color: var(--brass); font-style: normal; }
@keyframes slide {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   REVELAÇÃO NO SCROLL
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition:
    opacity 0.85s var(--e-quart),
    transform 1s var(--e-expo),
    filter 0.85s var(--e-quart);
  transition-delay: calc(var(--i, 0) * 90ms);
}
[data-reveal].is-in { opacity: 1; transform: none; filter: blur(0); }

/* ---------- Cabeçalho de seção ---------- */
.section-head {
  max-width: var(--page);
  margin: 0 auto clamp(28px, 4vw, 48px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.section-head .h-lg { margin-top: 14px; }
.section-note {
  max-width: 34ch;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   BEBIDAS (bento)
   ========================================================================== */
.shelf {
  background: var(--bone);
  color: var(--ink);
  padding: var(--section) var(--pad);
}

.bento {
  max-width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(190px, 21vw, 268px);
  grid-auto-flow: dense;
  gap: 14px;
}
.bento-lg { grid-column: span 2; grid-row: span 2; }

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--void-2);
  isolation: isolate;
}
.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--e-expo);
}
.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.12 0.01 66 / 0.92) 8%, oklch(0.12 0.01 66 / 0.55) 42%, transparent 78%);
}
.bento-card:hover img { transform: scale(1.05); }

.bento-text {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(18px, 2.2vw, 30px);
  color: var(--cream);
}
.bento-text h3 { font-size: clamp(1.15rem, 1.7vw, 1.7rem); }
.bento-text p {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--cream-soft);
  max-width: 42ch;
}
.bento-lg .bento-text p { font-size: 0.96rem; }

/* ==========================================================================
   TABACARIA
   ========================================================================== */
.smoke {
  background: var(--void);
  color: var(--cream);
  padding: var(--section) var(--pad);
}
.smoke-grid {
  max-width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.smoke-copy .h-lg { margin-top: 18px; color: var(--cream); max-width: 15ch; }
.smoke-copy > p { margin-top: 18px; color: var(--cream-soft); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: clamp(24px, 3vw, 34px) 0 clamp(28px, 3.4vw, 38px);
}
.chips li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream-soft);
  background: var(--void-2);
  border: 1px solid var(--hair-dark);
  border-radius: 999px;
  padding: 8px 16px;
}

.smoke-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.smoke-photos figure {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--hair-dark);
}
.smoke-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--e-expo);
}
.smoke-photos figure:hover img { transform: scale(1.05); }
.smoke-tall { grid-row: span 2; }
.smoke-tall img { aspect-ratio: 17 / 22; }
.smoke-wide img, .smoke-small img { aspect-ratio: 1; }

/* ==========================================================================
   PRESENTES
   ========================================================================== */
.gifts {
  background: var(--bone-2);
  color: var(--ink);
  padding: var(--section) var(--pad);
}
.gifts-inner {
  max-width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.gifts-copy .h-lg { margin-top: 16px; }
.gifts-copy > p { margin-top: 18px; color: var(--ink-soft); margin-bottom: clamp(26px, 3vw, 34px); }

.gifts-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
}
.gifts-photos figure:nth-child(2) { transform: translateY(clamp(16px, 3vw, 44px)); }
.gifts-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}
.gifts-photos figcaption {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   ATACADO
   ========================================================================== */
.wholesale {
  background: var(--void-2);
  color: var(--cream);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
}
.wholesale-media { position: relative; min-height: clamp(340px, 42vw, 600px); }
.wholesale-media img { width: 100%; height: 100%; object-fit: cover; }
.wholesale-content {
  padding: var(--section) var(--pad);
  max-width: 760px;
}
.wholesale-content .h-lg { margin-top: 18px; color: var(--cream); }
.wholesale-content > p { margin-top: 18px; color: var(--cream-soft); }

.rule-list {
  margin-top: clamp(24px, 3vw, 34px);
  margin-bottom: clamp(28px, 3.2vw, 38px);
  border-top: 1px solid var(--hair-dark);
}
.rule-list li {
  padding: 13px 0 13px 26px;
  position: relative;
  border-bottom: 1px solid var(--hair-dark);
  color: var(--cream-soft);
  font-size: 0.95rem;
}
.rule-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 12px;
  height: 1px;
  background: var(--brass);
}

/* ==========================================================================
   LOJAS
   ========================================================================== */
.stores {
  background: var(--bone);
  color: var(--ink);
  padding: var(--section) var(--pad);
}
.store-grid {
  max-width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}
.store-card {
  border: 1px solid var(--hair-light);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 38px);
  background: color-mix(in oklab, var(--bone-2) 55%, transparent);
  transition: border-color 0.5s var(--e-quart), transform 0.7s var(--e-expo);
}
.store-card:hover { border-color: var(--brass-deep); transform: translateY(-4px); }
.store-card h3 { font-size: clamp(1.2rem, 1.8vw, 1.6rem); }
.store-address { margin-top: 12px; color: var(--ink-soft); font-size: 0.95rem; }

.store-actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.store-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  background: color-mix(in oklab, var(--zap) 22%, transparent);
  border-radius: 999px;
  padding: 9px 18px;
  transition: background-color 0.45s var(--e-quart);
}
.store-wa svg { width: 17px; height: 17px; color: oklch(0.5 0.14 150); }
.store-wa:hover { background: color-mix(in oklab, var(--zap) 34%, transparent); }
.store-map {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brass-deep);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.4s var(--e-quart);
}
.store-map:hover { border-color: var(--brass-deep); }

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta {
  background: var(--brass);
  color: var(--void);
  padding: var(--section) var(--pad);
}
.cta .eyebrow { color: color-mix(in oklab, var(--void) 66%, transparent); }
.cta-inner { max-width: var(--page); margin-inline: auto; }
.cta-title {
  margin-top: 16px;
  font-size: clamp(2.1rem, 1rem + 4.6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.035em;
  max-width: 16ch;
}
.cta-inner > p {
  margin-top: 20px;
  max-width: 48ch;
  color: color-mix(in oklab, var(--void) 78%, transparent);
}

.cta-links {
  margin-top: clamp(32px, 4.5vw, 58px);
  border-top: 1px solid color-mix(in oklab, var(--void) 22%, transparent);
}
.cta-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: clamp(16px, 2vw, 24px) 0;
  border-bottom: 1px solid color-mix(in oklab, var(--void) 22%, transparent);
  transition: transform 0.7s var(--e-expo);
}
.cta-link:hover { transform: translateX(12px); }
.cta-link-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--void) 60%, transparent);
}
.cta-link-value {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--void);
  color: var(--cream);
  padding: clamp(52px, 7vw, 88px) var(--pad) 28px;
}
.footer-grid {
  max-width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(32px, 4vw, 52px);
}
.footer-brand p {
  margin-top: 18px;
  max-width: 32ch;
  font-size: 0.9rem;
  color: var(--cream-soft);
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
}
.footer-col a, .footer-col span {
  font-size: 0.9rem;
  color: var(--cream-soft);
  transition: color 0.4s var(--e-quart);
}
.footer-col a:hover { color: var(--cream); }

.legal {
  max-width: var(--page);
  margin: 0 auto;
  padding-bottom: 22px;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  color: color-mix(in oklab, var(--cream) 45%, transparent);
}

.footer-bottom {
  max-width: var(--page);
  margin-inline: auto;
  padding-top: 22px;
  border-top: 1px solid var(--hair-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--cream-soft);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--cream); }

/* ==========================================================================
   BOTÃO FLUTUANTE DE WHATSAPP
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  display: none;
  align-items: center;
  gap: 9px;
  padding: 13px 20px 13px 16px;
  border-radius: 999px;
  background: oklch(0.62 0.16 150);
  color: oklch(0.99 0 0);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 16px 34px -16px oklch(0 0 0 / 0.85);
  transition: transform 0.45s var(--e-expo);
}
.wa-float svg { width: 20px; height: 20px; }
.wa-float:active { transform: scale(0.96); }

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 1080px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .wa-float { display: inline-flex; }

  .hero-grid { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 44px); }
  .hero-photo { order: -1; }
  .hero-photo img { aspect-ratio: 16 / 11; }

  .bento { grid-auto-rows: clamp(180px, 30vw, 240px); grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-lg { grid-column: span 2; grid-row: span 1; }

  .smoke-grid, .gifts-inner { grid-template-columns: 1fr; }
  .wholesale { grid-template-columns: 1fr; }
  .wholesale-media { min-height: 52vw; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .hero-facts li { font-size: 0.74rem; padding: 6px 13px; }
  .gifts-photos figure:nth-child(2) { transform: none; }
}

@media (max-width: 640px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: space-between; width: 100%; }
  .header-actions .btn-sm { display: none; }

  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-lg, .bento-card { grid-column: 1; grid-row: auto; aspect-ratio: 5 / 4; }

  .smoke-photos { grid-template-columns: 1fr 1fr; }
  .smoke-tall { grid-row: span 2; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .marquee-track { animation-duration: 30s; }
}

/* ==========================================================================
   MOVIMENTO REDUZIDO
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
  .hero-title .mask-in { transform: none; }
  .hero-line { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
