/* ==========================================================================
   EXCLUSIVE GIFTS — Design System
   Palette:
     --ink        #14100D  fundo principal escuro (quase preto, quente)
     --ink-2      #1F1811  superfície escura secundária (cards no dark)
     --cream      #F4EDE1  fundo claro das seções institucionais
     --cream-2    #EAE0D0  superfície clara secundária
     --gold       #C89B6C  acento primário (cobre/dourado do logo)
     --gold-deep  #8B6239  acento profundo (hover, sombra, texto sobre claro)
     --rose       #B97363  acento secundário (terracota)
   Type:
     Display — "Cormorant Garamond" (serifada, ecoa o wordmark EXCLUSIVE)
     Corpo/UI — "Manrope" (sans neutra, boa em pesos variados)
   Signature: ícone linha "panela + coração" desenhado a traço (stroke reveal)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #14100D;
  --ink-2: #1F1811;
  --ink-3: #2A2018;
  --cream: #F4EDE1;
  --cream-2: #EAE0D0;
  --gold: #C89B6C;
  --gold-deep: #8B6239;
  --gold-light: #E4C79A;
  --rose: #B97363;
  --line: rgba(200, 155, 108, 0.25);
  --line-dark: rgba(244, 237, 225, 0.12);
  --wpp: #25D366;
  --wpp-dark: #128C7E;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, sans-serif;

  --container: 1240px;
  --radius: 2px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* O <picture> e so um envelope para oferecer WebP: nao deve criar caixa
   propria, senao o <img> deixaria de ser o item flex/grid do container. */
picture { display: contents; }

html { scroll-behavior: smooth; }

@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;
  }
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-deep);
}
section.dark .eyebrow,
.dark .eyebrow { color: var(--gold-light); }
.dark .eyebrow::before { background: var(--gold-light); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.005em;
}

h2.section-title {
  font-size: clamp(32px, 4.2vw, 52px);
  margin-top: 10px;
  max-width: 20ch;
}

p.lede {
  font-size: 18px;
  color: rgba(20, 16, 13, 0.68);
  max-width: 58ch;
  margin-top: 18px;
}
.dark p.lede { color: rgba(244, 237, 225, 0.68); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover { background: var(--gold-light); }

.btn-wpp-solid {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--wpp);
  color: #fff;
}
.btn-wpp-solid svg { width: 15px; height: 15px; }
.btn-wpp-solid:hover { background: var(--wpp-dark); }

.btn-outline {
  border-color: rgba(244, 237, 225, 0.4);
  color: var(--cream);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-outline.on-light {
  border-color: rgba(20, 16, 13, 0.3);
  color: var(--ink);
}
.btn-outline.on-light:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.btn-sm {
  padding: 10px 16px;
  font-size: 11px;
}

.whatsapp-pair {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius);
  color: var(--wpp);
  background: transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn-wpp svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-wpp:hover { background: var(--wpp); color: #fff; border-color: var(--wpp); }
.dark .btn-wpp { border-color: rgba(37, 211, 102, 0.35); color: var(--wpp); }
.dark .btn-wpp:hover { background: var(--wpp); color: #fff; border-color: var(--wpp); }

/* Botão "Comprar" — usado nos cards de linha (compra direta via WhatsApp) */
.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius);
  color: var(--wpp);
  background: transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn-buy svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-buy .buy-store { opacity: .8; font-weight: 600; color: inherit; }
.btn-buy:hover { background: var(--wpp); color: #fff; border-color: var(--wpp); }
.dark .btn-buy { border-color: rgba(37, 211, 102, 0.35); color: var(--wpp); }
.dark .btn-buy:hover { background: var(--wpp); color: #fff; border-color: var(--wpp); }

/* ---------- Seletor de idioma ---------- */
.lang-switch {
  position: relative;
  margin-left: 8px;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(244, 237, 225, 0.75);
  padding: 6px 10px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lang-current:hover { color: var(--cream); border-color: var(--gold-light); }
.lang-current svg { width: 10px; height: 10px; transition: transform 0.3s var(--ease); }
.lang-switch.open .lang-current svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  min-width: 150px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 50;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px;
  font-size: 12.5px;
  color: rgba(244, 237, 225, 0.8);
  text-align: left;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.lang-menu button:hover { background: rgba(200,155,108,0.12); color: var(--cream); }
.lang-menu button.active { color: var(--gold-light); font-weight: 700; }
.lang-flag { font-size: 15px; }

.lang-switch-mobile {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.lang-switch-mobile button {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(244,237,225,0.55);
  padding: 8px 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}
.lang-switch-mobile button.active { color: var(--ink); background: var(--gold-light); border-color: var(--gold-light); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  /* precisa ficar ACIMA do menu mobile (z-index 105) para que o botão
     de fechar (X) continue clicável com o menu aberto */
  z-index: 120;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(20, 16, 13, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-color: var(--line-dark);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.brand .brand-icon { width: 34px; height: 34px; object-fit: contain; }
.brand .brand-icon path { stroke: var(--gold-light); }

.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(244, 237, 225, 0.75);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold-light);
  transition: right 0.35s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--cream); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: 110;
}
.nav-toggle span { display: block; height: 1.5px; background: var(--cream); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  /* No celular, 100vh conta a barra de endereco que some ao rolar, entao o hero
     nasce mais alto que a tela visivel. 100svh usa a altura realmente visivel.
     Navegador que nao conhece svh ignora esta linha e fica com a de cima. */
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  overflow: hidden;
  perspective: 1200px;
}
.hero-bg-layer {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse at 25% 15%, rgba(200,155,108,0.20), transparent 55%),
    radial-gradient(ellipse at 80% 85%, rgba(185,115,99,0.16), transparent 50%),
    linear-gradient(160deg, rgba(15,12,9,.82) 0%, rgba(16,12,9,.94) 60%, #0F0C09 100%),
    url("../images/hero/lifestyle-mesa.png");
  /* mesma pilha, mas com WebP quando o navegador aceita (a linha acima fica
     valendo como reserva nos navegadores sem image-set) */
  background-image:
    radial-gradient(ellipse at 25% 15%, rgba(200,155,108,0.20), transparent 55%),
    radial-gradient(ellipse at 80% 85%, rgba(185,115,99,0.16), transparent 50%),
    linear-gradient(160deg, rgba(15,12,9,.82) 0%, rgba(16,12,9,.94) 60%, #0F0C09 100%),
    image-set(url("../images/hero/lifestyle-mesa.webp") type("image/webp"),
              url("../images/hero/lifestyle-mesa.png") type("image/png"));
  background-size: cover;
  background-position: center 60%;
  transform-style: preserve-3d;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 34px);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 24px 80px;
  transform-style: preserve-3d;
}
.hero-mark {
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  object-fit: contain;
  filter: drop-shadow(0 4px 18px rgba(200,155,108,0.25));
}
.hero-title {
  font-size: clamp(46px, 8vw, 92px);
  color: var(--cream);
  letter-spacing: 0.02em;
}
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: 0.14em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 6px;
}
.hero-tagline {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(244, 237, 225, 0.7);
  max-width: 30ch;
  margin: 26px auto 0;
}
.hero-ctas {
  margin-top: 42px;
  margin-bottom: 24px;
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.hero-ctas > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-ctas .btn-wpp { padding-top: 15px; padding-bottom: 15px; }

/* ---------- Seals strip ---------- */
.seals {
  background: var(--cream-2);
  border-top: 1px solid rgba(139,98,57,0.15);
  border-bottom: 1px solid rgba(139,98,57,0.15);
  padding: 34px 0;
}
.seals .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.seal {
  display: flex;
  align-items: center;
  gap: 14px;
}
.seal svg { width: 30px; height: 30px; flex-shrink: 0; stroke: var(--gold-deep); }
.seal strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}
.seal span { font-size: 12.5px; color: rgba(20,16,13,0.6); }

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }
section.dark { background: var(--ink); color: var(--cream); }
section.cream-2 { background: var(--cream-2); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* ---------- Linhas / Product Cards ---------- */
.lines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(139,98,57,0.15);
}
.line-card {
  background: var(--cream);
  padding: 30px 26px 26px;
  perspective: 900px;
}
.line-card-inner { transform-style: preserve-3d; will-change: transform; }
.line-photo {
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.line-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(30px);
  filter: drop-shadow(0 18px 24px rgba(20,16,13,0.16));
}
.line-name {
  font-family: var(--font-display);
  font-size: 26px;
}
.line-price {
  font-size: 12.5px;
  color: var(--gold-deep);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 6px 0 16px;
}
.line-colors {
  font-size: 11.5px;
  color: rgba(20,16,13,0.5);
  margin-bottom: 16px;
  text-transform: capitalize;
}

.btn-see-all {
  margin-top: 8px;
}

/* ---------- Chefs / authority ---------- */
.chefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.chefs-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
}
.chef-photo-cutout {
  background: radial-gradient(ellipse at 50% 30%, rgba(200,155,108,0.22), var(--ink-2) 70%);
}
.chef-photo-cutout img { object-fit: cover; }
.chef-card { position: relative; overflow: hidden; }
.chef-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink-2);
}
.chef-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.chef-card:hover .chef-photo img { transform: scale(1.05); }
.chef-info { padding-top: 18px; }
.chef-name { font-family: var(--font-display); font-size: 22px; color: var(--cream); }
.chef-role { font-size: 12.5px; color: var(--gold-light); margin-top: 4px; letter-spacing: 0.03em; }

/* ---------- Onde encontrar ---------- */
.stores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(139,98,57,0.2);
  margin-top: 56px;
}
.store-card {
  background: var(--cream);
  padding: 44px 40px;
}
.store-card h3 { font-size: 28px; margin-bottom: 6px; }
.store-card .store-detail { font-size: 14px; color: rgba(20,16,13,0.6); margin-bottom: 4px; }
.store-card .store-phone { font-size: 15px; font-weight: 700; margin: 16px 0 22px; letter-spacing: 0.02em; }

/* ---------- Faixa de Vendas On-line ----------
   Fica logo abaixo da grade de lojas, ocupando a largura toda: entra como um
   terceiro canal de atendimento sem deixar celula vazia na grade de 2 colunas. */
.online-band {
  display: flex;
  align-items: center;
  gap: 20px 32px;
  flex-wrap: wrap;
  background: var(--cream);
  border-top: 3px solid var(--gold);
  padding: 30px 40px;
  margin-top: 2px;
}
.online-band .online-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 1.4;
}
.online-band-text { flex: 1 1 260px; }
.online-band h3 { font-family: var(--font-display); font-size: 26px; }
.online-band p { font-size: 14px; color: rgba(20, 16, 13, 0.62); margin-top: 4px; }
.online-band .online-phone {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold-deep);
  white-space: nowrap;
}
.online-band .btn { flex-shrink: 0; }

/* mesma faixa dentro de secao escura */
.dark .online-band,
.online-band.on-dark {
  background: var(--ink-2);
  border-top-color: var(--gold);
}
.dark .online-band h3, .online-band.on-dark h3 { color: var(--cream); }
.dark .online-band p, .online-band.on-dark p { color: rgba(244, 237, 225, 0.65); }
.dark .online-band .online-icon,
.online-band.on-dark .online-icon { stroke: var(--gold-light); }
.dark .online-band .online-phone,
.online-band.on-dark .online-phone { color: var(--gold-light); }

@media (max-width: 560px) {
  .online-band { padding: 26px 24px; gap: 16px; }
  .online-band h3 { font-size: 22px; }
  .online-band .btn { width: 100%; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 130px 24px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(200,155,108,0.14), transparent 60%);
}
.final-cta h2 { font-size: clamp(32px, 4.6vw, 56px); position: relative; }
.final-cta .whatsapp-pair { justify-content: center; margin-top: 34px; position: relative; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: rgba(244,237,225,0.6);
  border-top: 1px solid var(--line-dark);
  padding: 46px 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
footer a:hover { color: var(--gold-light); }
.footer-links { display: flex; gap: 24px; }

/* ---------- Reveal utility (GSAP targets) ---------- */
.reveal { opacity: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--cream);
  padding: 190px 0 90px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(38px, 6vw, 64px); }

/* ---------- Fundo decorativo — ícones vazados (panelas/facas) ---------- */
.deco-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.deco-bg svg {
  position: absolute;
  fill: none;
  stroke: var(--gold-deep);
  opacity: 0.1;
}
.dark .deco-bg svg { stroke: var(--gold-light); opacity: 0.08; }
section .container { position: relative; z-index: 1; }

/* ---------- Página de Fabricantes (hub) ---------- */
.manufacturer-block { margin-bottom: 90px; }
.manufacturer-block:last-child { margin-bottom: 0; }
.manufacturer-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.manufacturer-head h2 { font-size: 32px; }
.manufacturer-head span { font-size: 12.5px; color: rgba(20,16,13,.5); letter-spacing: 0.05em; }

.line-hub-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr));
  gap: 2px;
  background: rgba(139,98,57,0.15);
}
.line-hub-card {
  background: var(--cream);
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
}
.line-hub-photo {
  aspect-ratio: 3 / 2;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.line-hub-photo img { width: 100%; height: 100%; object-fit: cover; filter: drop-shadow(0 14px 20px rgba(20,16,13,0.14)); }
.line-hub-card h3 { font-size: 22px; margin-bottom: 6px; }
.line-hub-card p { font-size: 13px; color: rgba(20,16,13,.6); flex-grow: 1; margin-bottom: 16px; line-height: 1.55; }
.line-hub-card .btn-outline { align-self: flex-start; }

/* ---------- Página de linha individual ---------- */
.line-detail-hero {
  background: var(--ink);
  padding: 170px 0 0;
}
.line-detail-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 70px;
}
.line-detail-photo {
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.line-detail-photo img { width: 100%; height: 100%; object-fit: cover; filter: drop-shadow(0 26px 40px rgba(0,0,0,0.4)); }
.line-detail-photo .placeholder-photo { background: var(--ink-2); border: 1px dashed var(--line-dark); border-radius: 4px; }
.line-detail-photo .placeholder-photo svg { stroke: var(--gold-light); opacity: .4; width: 72px; height: 72px; }
.line-detail-breadcrumb { font-size: 12px; color: rgba(244,237,225,.5); margin-bottom: 18px; letter-spacing: .03em; }
.line-detail-breadcrumb a { color: rgba(244,237,225,.7); }
.line-detail-breadcrumb a:hover { color: var(--gold-light); }
.line-detail-hero h1 { font-size: clamp(38px, 5vw, 58px); color: var(--cream); margin-bottom: 18px; }
.line-detail-hero .lede { color: rgba(244,237,225,.72); }

.line-body { padding: 70px 0; }

/* Linhas com texto curto: colunas equilibradas para o bloco nao ficar oco */
.line-body-slim .container { grid-template-columns: 1fr 1fr; }
.line-body-slim .line-body-text p {
  font-size: 18.5px;
  line-height: 1.85;
  max-width: 46ch;
}
.line-body .container { display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px; align-items: start; }
.line-body-text p { font-size: 16px; line-height: 1.75; color: rgba(20,16,13,.75); margin-bottom: 20px; max-width: 68ch; }
.line-body-text h3 { font-size: 20px; margin: 34px 0 4px; }
@media (max-width: 900px) { .line-body .container { grid-template-columns: 1fr; } }

.diff-list { margin-top: 14px; display: grid; gap: 14px; }
.diff-item { display: flex; align-items: flex-start; gap: 12px; }
.diff-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; stroke: var(--gold-deep); }
.diff-item span { font-size: 14.5px; line-height: 1.5; color: rgba(20,16,13,.78); }

.collection-list { margin-top: 14px; display: grid; gap: 10px; }
.collection-item { display: flex; align-items: baseline; gap: 10px; font-size: 14.5px; color: rgba(20,16,13,.78); }
.collection-item::before { content: "—"; color: var(--gold-deep); flex-shrink: 0; }

.line-side-card {
  background: var(--cream-2);
  padding: 30px 28px;
  align-self: start;
  position: sticky;
  top: 110px;
}
.line-side-card h4 { font-family: var(--font-display); font-size: 20px; margin-bottom: 16px; }

/* ---------- Galeria de fotos da linha ---------- */
.line-gallery { padding: 8px 0 0; }
.line-gallery-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), 1fr);
  gap: 2px;
  background: rgba(139, 98, 57, 0.15);
}
.line-gallery .line-hub-photo { background: var(--cream-2); }

.line-soon {
  font-size: 14px;
  font-style: italic;
  color: rgba(244, 237, 225, 0.55);
  margin-top: 16px;
}
.line-detail-hero .line-colors { color: rgba(244, 237, 225, 0.5); margin-bottom: 0; }
.line-detail-hero .whatsapp-pair { margin-top: 30px; }
.side-desc { font-size: 13.5px; color: rgba(20, 16, 13, 0.6); margin-bottom: 4px; }
.line-side-card h3 { font-size: 20px; }
.line-side-card .whatsapp-pair { margin-top: 22px; }
.line-detail-breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; }

/* helpers de alinhamento */
.eyebrow.center { justify-content: center; }
.lede.center { margin-left: auto; margin-right: auto; text-align: center; }
.page-hero .lede { color: rgba(244, 237, 225, 0.68); }

.footer-legal {
  width: 100%;
  font-size: 11.5px;
  color: rgba(244, 237, 225, 0.35);
  border-top: 1px solid var(--line-dark);
  padding-top: 18px;
  margin-top: 4px;
}

/* hamburguer vira X quando o menu está aberto */
.nav-toggle span:nth-child(1),
.nav-toggle span:nth-child(3) { transform-origin: center; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Mobile nav drawer ---------- */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 90px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  font-family: var(--font-display);
  font-size: clamp(26px, 7vw, 34px);
  color: var(--cream);
  line-height: 1.2;
}
.mobile-drawer a.active { color: var(--gold-light); }
body.drawer-open { overflow: hidden; }

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

/* --- Tablet paisagem --- */
@media (max-width: 1100px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 96px 0; }
  .line-body .container { gap: 40px; }
}

/* --- Tablet / início do menu mobile --- */
@media (max-width: 980px) {
  .main-nav ul { display: none; }
  .main-nav { gap: 0; }
  .nav-toggle { display: flex; margin-left: 16px; }
  .site-header .container { gap: 12px; }

  .seals .container { grid-template-columns: repeat(2, 1fr); }
  .lines-grid { grid-template-columns: repeat(2, 1fr); }
  .chefs-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stores-grid { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; margin-bottom: 40px; }
  .section-head .lede { margin-top: 0; }
}

/* --- Tablet retrato --- */
@media (max-width: 900px) {
  .line-detail-hero { padding-top: 130px; }
  .line-detail-hero .container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
  /* foto primeiro, texto depois */
  .line-detail-hero .line-detail-info { order: 2; }
  .line-detail-hero .line-detail-photo { order: 1; aspect-ratio: 3 / 2; }
  .line-body .container { grid-template-columns: 1fr; }
  .line-side-card { position: static; }
  .line-hub-grid { grid-template-columns: repeat(min(var(--cols, 2), 2), minmax(0, 1fr)); }
  .line-gallery-grid { grid-template-columns: repeat(min(var(--cols, 2), 2), minmax(0, 1fr)); }
  /* 3 fotos em 2 colunas: a ultima ocupa a linha toda */
  .line-gallery-grid[style*="--cols:3"] > :last-child { grid-column: 1 / -1; }
}

/* --- Celular grande --- */
@media (max-width: 760px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 72px 0; }
  .section-pad-sm { padding: 56px 0; }

  .site-header { padding: 16px 0; }
  .site-header.scrolled { padding: 12px 0; }
  .brand { font-size: 18px; gap: 8px; }
  .brand .brand-icon { width: 28px; height: 28px; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 120px 20px 64px; }
  .hero-mark { width: 72px; height: 72px; margin-bottom: 20px; }
  .hero-tagline { max-width: 34ch; margin-top: 20px; }
  .hero-ctas { margin-top: 32px; gap: 10px; }
  .hero-ctas .btn { width: 100%; }

  .seals { padding: 26px 0; }
  .seals .container { gap: 18px; }

  .page-hero { padding: 130px 0 60px; }
  .chefs-grid { grid-template-columns: repeat(2, 1fr); margin-top: 36px; }
  .chefs-grid .chef-card:last-child { grid-column: span 2; max-width: 50%; justify-self: center; }

  .final-cta { padding: 84px 20px; }
  .final-cta .whatsapp-pair { margin-top: 26px; }

  .manufacturer-block { margin-bottom: 60px; }
  .manufacturer-head { margin-bottom: 26px; }
  .manufacturer-head h2 { font-size: 26px; }

  .line-body { padding: 48px 0; }
  .line-body-text p { font-size: 15.5px; }
  .line-side-card { padding: 26px 22px; }
  .store-card { padding: 32px 24px; }
  .store-card h3 { font-size: 24px; }

  footer { padding: 34px 0; }
}

/* --- Celular --- */
@media (max-width: 560px) {
  .lines-grid { grid-template-columns: 1fr; }
  .seals .container { grid-template-columns: 1fr; gap: 14px; }
  .line-hub-grid { grid-template-columns: 1fr; }
  .line-gallery-grid { grid-template-columns: repeat(min(var(--cols, 2), 2), minmax(0, 1fr)); }
  .chefs-grid { grid-template-columns: 1fr; }
  .chefs-grid .chef-card,
  .chefs-grid .chef-card:last-child { grid-column: auto; max-width: 340px; margin-inline: auto; }

  footer .container { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 18px; }
  .footer-legal { text-align: center; }

  h2.section-title { max-width: none; }
  p.lede { font-size: 16px; }

  /* botões ocupam a largura toda e ficam fáceis de tocar */
  .whatsapp-pair { gap: 8px; }
  .whatsapp-pair > * { flex: 1 1 100%; justify-content: center; }
  .btn-wpp, .btn-buy { padding: 13px 14px; font-size: 12px; }
  .line-hub-card .btn-outline { align-self: stretch; text-align: center; }

  .line-detail-hero { padding-top: 110px; }
  .line-detail-hero .container { padding-bottom: 32px; }
  .line-detail-photo { aspect-ratio: 3 / 2; }
  .line-body { padding: 40px 0; }
  .line-body-text h3 { margin-top: 28px; }
  .diff-item span, .collection-item { font-size: 14px; }

  /* O seletor de idioma fica na direita do cabecalho, entao o menu tem de
     crescer para a ESQUERDA. Com left:0 ele crescia para fora da tela e ficava
     cortado em aparelhos de 320-360px. right:0 mantem tudo dentro. */
  .lang-menu { right: 0; left: auto; }
}

/* --- Celular pequeno (iPhone SE etc.) --- */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .brand { font-size: 16px; }
  .brand .brand-icon { width: 24px; height: 24px; }
  .hero-content { padding: 104px 16px 56px; }
  .line-gallery-grid { grid-template-columns: repeat(min(var(--cols, 2), 2), minmax(0, 1fr)); }
  .line-card { padding: 24px 20px 22px; }
  .line-hub-card { padding: 22px 18px 20px; }
}

/* ==========================================================================
   Fundo fotografico das paginas (Sobre / Produtos)
   A foto vem por background-image inline no HTML (caminho relativo a pagina);
   aqui ficam so o enquadramento e o veu que garante a leitura do texto.
   ========================================================================== */

/* Topo da pagina — foto escura com o texto creme por cima */
.page-hero.has-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(20, 16, 13, 0.62) 0%,
    rgba(20, 16, 13, 0.12) 44%,
    rgba(20, 16, 13, 0.72) 100%);
}
.page-hero.has-photo h1,
.page-hero.has-photo .lede {
  text-shadow: 0 2px 24px rgba(12, 9, 7, 0.55);
}

/* Secao de conteudo clara — foto bem discreta atras do texto */
.section-photo {
  position: relative;
  isolation: isolate;
  background-color: var(--cream);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    var(--cream) 0%,
    rgba(244, 237, 225, 0.40) 16%,
    rgba(244, 237, 225, 0.40) 84%,
    var(--cream) 100%);
}

/* Fundos fotograficos das paginas — WebP com PNG de reserva.
   A primeira declaracao vale sozinha onde image-set nao existe. */
.bg-sobre-hero {
  background-image: url("../images/bg/sobre-hero.png");
  background-image: image-set(url("../images/bg/sobre-hero.webp") type("image/webp"),
                              url("../images/bg/sobre-hero.png") type("image/png"));
}
.bg-sobre-textura {
  background-image: url("../images/bg/sobre-textura.png");
  background-image: image-set(url("../images/bg/sobre-textura.webp") type("image/webp"),
                              url("../images/bg/sobre-textura.png") type("image/png"));
}
.bg-produtos-hero {
  background-image: url("../images/bg/produtos-hero.png");
  background-image: image-set(url("../images/bg/produtos-hero.webp") type("image/webp"),
                              url("../images/bg/produtos-hero.png") type("image/png"));
}
.bg-produtos-textura {
  background-image: url("../images/bg/produtos-textura.png");
  background-image: image-set(url("../images/bg/produtos-textura.webp") type("image/webp"),
                              url("../images/bg/produtos-textura.png") type("image/png"));
}
