/* ===== viaoro — sistema de design "maison" =====
   Consome os tokens do banco (--cor-*, --tipografia-*): paleta e tipografia
   continuam editáveis no admin; aqui vive só o sistema de design.
   Assinatura visual: monocromia quente, ouro champanhe, serifada editorial,
   traço fino geométrico (logo em stroke), grão de filme e movimento sutil. */

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; } /* hidden SEMPRE esconde, mesmo com display definido em outra regra */
html { scroll-behavior: smooth; }
body {
  font-family: var(--tipografia-corpo, 'Jost', sans-serif);
  font-weight: 300;
  color: var(--cor-texto, #232019);
  background: var(--cor-superficie, #FAF9F6);
  line-height: 1.75;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--tipografia-titulos, 'Cormorant Garamond', serif); font-weight: 500; color: var(--cor-primaria, #131110); letter-spacing: .01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 3rem); }

::selection { background: var(--cor-destaque, #AD8A56); color: #fff; }

/* barra de rolagem discreta, cor da casa */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cor-superficie, #FAF9F6); }
::-webkit-scrollbar-thumb { background: #CDC3B2; border-radius: 99px; border: 2px solid var(--cor-superficie, #FAF9F6); }
::-webkit-scrollbar-thumb:hover { background: var(--cor-destaque, #AD8A56); }

/* grão de filme sobre tudo — quase invisível, tira o "cara de template" */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 200; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.preview-badge { position: relative; z-index: 130; background: var(--cor-destaque); color: #fff; text-align: center; padding: .45rem; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; }

/* ---------- abertura (véu com o logo se desenhando; 1x por sessão) ---------- */
.intro {
  position: fixed; inset: 0; z-index: 300;
  background: var(--cor-primaria, #131110);
  display: flex; align-items: center; justify-content: center;
  animation: intro-sai .7s ease .1s forwards;
  animation-delay: 2.5s;
}
.intro-marca { text-align: center; color: #F6F1E7; }
.intro .logo-svg-empilhado { width: clamp(120px, 18vw, 190px); height: auto; display: block; margin: 0 auto; }
.intro .tr {
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: tracar 1.5s cubic-bezier(.4, 0, .2, 1) forwards;
}
.intro .tr:nth-child(1) { animation-delay: .10s; } .intro .tr:nth-child(2) { animation-delay: .22s; }
.intro .tr:nth-child(3) { animation-delay: .34s; } .intro .tr:nth-child(4) { animation-delay: .46s; }
.intro .tr:nth-child(5) { animation-delay: .62s; } .intro .tr:nth-child(6) { animation-delay: .74s; }
.intro .tr:nth-child(7) { animation-delay: .86s; } .intro .tr:nth-child(8) { animation-delay: .98s; }
.intro-slogan {
  margin-top: 1.6rem; font-family: var(--tipografia-titulos, serif); font-style: italic;
  font-size: clamp(.95rem, 1.6vw, 1.15rem); color: #C6AE85;
  opacity: 0; animation: sobe 0.9s ease 1.5s forwards;
}
@keyframes tracar { to { stroke-dashoffset: 0; } }
@keyframes sobe { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes intro-sai { to { opacity: 0; visibility: hidden; } }
.intro.pulada { animation: none; opacity: 0; visibility: hidden; }
@media (prefers-reduced-motion: reduce) { .intro { display: none; } }

/* ---------- logo em traço ---------- */
.logo-svg { display: block; height: 22px; width: auto; }
.logo-svg-empilhado { height: auto; }

/* ---------- faixa-anúncio em marquee ---------- */
.anuncio {
  position: relative; z-index: 120;
  background: var(--cor-primaria, #131110); color: #D9CFBE;
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  padding: .6rem 0; overflow: hidden; white-space: nowrap;
}
.anuncio-trilho { display: inline-flex; text-align: center; min-width: 100%; justify-content: center; }
.anuncio-trilho.correndo { animation: marquee 28s linear infinite; justify-content: flex-start; }
.anuncio-item { display: inline-block; padding: 0 2.2rem; flex: none; }
.anuncio-item::after { content: "✦"; color: var(--cor-destaque, #AD8A56); margin-left: 4.4rem; letter-spacing: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .anuncio-trilho.correndo { animation: none; } }

/* ---------- topo ---------- */
.topo {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: .9rem 2rem;
  padding: 1.15rem clamp(1.2rem, 4vw, 3rem) .8rem;
  position: sticky; top: 0; z-index: 90;
  background: color-mix(in srgb, var(--cor-superficie, #FAF9F6) 86%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: box-shadow .3s, padding .3s;
}
.topo.rolou { box-shadow: 0 12px 44px rgba(26,21,15,.09); padding-top: .9rem; padding-bottom: .9rem; }
.logo { display: flex; justify-content: center; color: var(--cor-primaria, #131110); transition: color .3s, transform .3s; }
.logo:hover { color: var(--cor-destaque, #AD8A56); }
/* menu em linha própria, centrado sob o logo — cabe inteiro sem quebrar */
.logo { grid-row: 1; grid-column: 2; }
.topo-acoes { grid-row: 1; grid-column: 3; }
.menu { display: flex; gap: 1.9rem; flex-wrap: wrap; grid-row: 2; grid-column: 1 / -1; justify-content: center; }
.menu-item { position: relative; }
.menu-item > a {
  font-size: .71rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 400;
  padding: .5rem 0; position: relative;
}
.menu-item > a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--cor-destaque, #AD8A56);
  transform: scaleX(0); transform-origin: right; transition: transform .4s cubic-bezier(.2,.6,.2,1);
}
.menu-item > a:hover::after { transform: scaleX(1); transform-origin: left; }
.submenu {
  visibility: hidden; opacity: 0; transform: translateY(10px);
  transition: opacity .28s, transform .28s, visibility .28s;
  position: absolute; top: 100%; left: -1.2rem; background: #FFFEFB; min-width: 250px;
  box-shadow: 0 30px 70px rgba(26,21,15,.16); padding: 1rem; z-index: 95;
  border-top: 1px solid var(--cor-destaque, #AD8A56);
}
.menu-item:hover .submenu { visibility: visible; opacity: 1; transform: translateY(0); }
.submenu a { display: flex; align-items: center; gap: .85rem; padding: .55rem .7rem; font-size: .82rem; letter-spacing: .06em; transition: background .2s, color .2s, padding-left .25s; }
.submenu a:hover { background: var(--cor-superficie); color: var(--cor-destaque); padding-left: 1rem; }
.submenu img { border-radius: 2px; object-fit: cover; min-width: 52px; height: 52px; }
/* Lado esquerdo do cabeçalho: busca + (no layout enxuto, sem vídeo nem
   novidades) a marca animada, lado a lado na mesma linha. */
.topo-esquerda { grid-row: 1; grid-column: 1; justify-self: start; display: flex; align-items: center; gap: 1.1rem; }
/* Busca em destaque: pílula com borda visível, à esquerda do cabeçalho —
   antes era um campo minúsculo com só um traço embaixo. */
.busca-form {
  position: relative; display: flex; align-items: center;
  width: min(36vw, 460px); min-width: 240px;
  background: #fff; border: 1.5px solid rgba(0,0,0,.16); border-radius: 999px;
  padding: .2rem .35rem .2rem 1.3rem;
  transition: border-color .25s, box-shadow .25s, width .3s;
}
.busca-form:focus-within { border-color: var(--cor-destaque, #AD8A56); box-shadow: 0 10px 30px rgba(169,138,86,.18); }
.busca-icone { color: #A79C8C; flex: none; }
.busca-form input {
  border: none; background: none; font: inherit; font-size: 1rem; letter-spacing: .01em;
  padding: .8rem .6rem; width: 100%; min-width: 0; outline: none; color: var(--cor-texto);
}
.busca-form input::placeholder { color: #B7AC9B; }
.busca-form button {
  border: none; background: var(--cor-destaque, #AD8A56); color: #fff; cursor: pointer;
  border-radius: 50%; width: 42px; height: 42px; flex: none;
  display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s;
}
.busca-form button:hover { background: var(--cor-primaria, #131110); transform: scale(1.06); }
/* Layout enxuto (sem vídeo, sem novidades): sem logo central nem menu
   disputando espaço, a busca vira o elemento dominante do cabeçalho e o
   wordmark/menu somem (ficariam redundantes com a marca animada ao lado). */
.layout-enxuto .logo, .layout-enxuto .menu, .layout-enxuto .menu-btn { display: none; }
.layout-enxuto .busca-form { width: min(46vw, 640px); }

/* ---------- sugestões da busca (autocomplete) ---------- */
.busca-sugestoes {
  position: absolute; top: calc(100% + .8rem); left: 0; width: 340px; max-width: 90vw;
  background: var(--cor-superficie, #FAF9F6); border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 24px 60px rgba(26,21,15,.16); border-radius: 4px; overflow: hidden; z-index: 95;
  max-height: 70vh; overflow-y: auto;
}
.busca-sugestoes a { display: flex; align-items: center; gap: .7rem; padding: .6rem .9rem; font-size: .85rem; }
.busca-sugestoes a:hover, .busca-sugestoes a.ativo { background: rgba(0,0,0,.05); color: var(--cor-destaque); }
.busca-sugestoes a + a { border-top: 1px solid rgba(0,0,0,.06); }
.busca-sugestoes .sug-categoria { letter-spacing: .04em; }
.busca-sugestoes .sug-produto img, .busca-sugestoes .sug-sem-foto { width: 34px; height: 34px; object-fit: cover; border-radius: 2px; flex: none; background: rgba(0,0,0,.06); }

/* ---------- hero cinematográfico (full-bleed, zoom lento) ---------- */
.bloco-hero {
  position: relative; width: 100vw; margin-left: calc(50% - 50vw);
  min-height: min(92vh, 820px);
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  overflow: hidden; margin-bottom: clamp(3rem, 8vw, 6rem);
}
.bloco-hero::before {
  content: ""; position: absolute; inset: 0;
  background: inherit; background-size: cover; background-position: center;
  animation: hero-zoom 18s ease-out forwards;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) brightness(.94);
  animation: hero-zoom 18s ease-out forwards;
}
@keyframes hero-zoom { from { transform: scale(1); } to { transform: scale(1.09); } }
@media (prefers-reduced-motion: reduce) { .bloco-hero::before, .hero-video { animation: none; } }

/* Preenchimento decorativo quando o vídeo do hero está desligado no admin
   (token home.video_ativo=false): a mesma marca em traço da abertura do
   site, em miniatura, no canto — sem repetir a animação de tela cheia. */
.hero-decor {
  position: absolute; top: clamp(1.2rem, 3vw, 2.4rem); right: clamp(1.2rem, 3vw, 2.4rem); z-index: 2;
  width: clamp(64px, 7vw, 104px); opacity: .82; color: #F6F1E7;
}
.hero-decor .logo-svg-empilhado { width: 100%; height: auto; display: block; }
/* No cabeçalho (layout enxuto: sem vídeo e sem novidades), a mesma marca
   animada aparece pequena, ao lado da busca, na cor do texto do topo. */
.topo-marca-animada { display: block; width: 30px; flex: none; color: var(--cor-primaria, #131110); opacity: .8; transition: opacity .2s; }
.topo-marca-animada:hover { opacity: 1; }
.topo-marca-animada .logo-svg-empilhado { width: 100%; height: auto; display: block; }
.hero-decor .tr, .topo-marca-animada .tr {
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: hero-decor-tracar 2.6s cubic-bezier(.4, 0, .2, 1) infinite;
}
.hero-decor .tr:nth-child(1), .topo-marca-animada .tr:nth-child(1) { animation-delay: .1s; }
.hero-decor .tr:nth-child(2), .topo-marca-animada .tr:nth-child(2) { animation-delay: .22s; }
.hero-decor .tr:nth-child(3), .topo-marca-animada .tr:nth-child(3) { animation-delay: .34s; }
.hero-decor .tr:nth-child(4), .topo-marca-animada .tr:nth-child(4) { animation-delay: .46s; }
.hero-decor .tr:nth-child(5), .topo-marca-animada .tr:nth-child(5) { animation-delay: .58s; }
.hero-decor .tr:nth-child(6), .topo-marca-animada .tr:nth-child(6) { animation-delay: .7s; }
.hero-decor .tr:nth-child(7), .topo-marca-animada .tr:nth-child(7) { animation-delay: .82s; }
.hero-decor .tr:nth-child(8), .topo-marca-animada .tr:nth-child(8) { animation-delay: .94s; }
@keyframes hero-decor-tracar { 0% { stroke-dashoffset: 1; } 35%, 85% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 1; } }
@media (prefers-reduced-motion: reduce) { .hero-decor .tr, .topo-marca-animada .tr { animation: none; stroke-dashoffset: 0; } }
@media (max-width: 640px) { .hero-decor { width: clamp(48px, 14vw, 72px); } }
.hero-veu {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center 42%, transparent 0%, rgba(16,13,10,.18) 68%, rgba(16,13,10,.5) 100%),
    linear-gradient(180deg, rgba(16,13,10,.34) 0%, rgba(16,13,10,.12) 38%, rgba(16,13,10,.58) 100%);
}
.hero-conteudo { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 780px; padding: 3rem 1.5rem; }
.hero-sobre {
  font-size: .72rem; letter-spacing: .52em; text-transform: uppercase; opacity: 0; margin-bottom: 1.6rem;
  animation: sobe .9s ease .25s forwards;
}
.hero-sobre::before, .hero-sobre::after {
  content: ""; display: inline-block; width: 34px; height: 1px; vertical-align: middle;
  background: var(--cor-destaque, #AD8A56); margin: 0 1.1rem;
}
.hero-conteudo h1 {
  color: #fff; font-size: clamp(2.6rem, 6.2vw, 4.9rem); line-height: 1.04; font-weight: 500;
  margin-bottom: 1.3rem; text-shadow: 0 2px 34px rgba(0,0,0,.3);
  opacity: 0; animation: sobe 1s ease .45s forwards;
}
.hero-sub {
  font-size: 1.05rem; font-weight: 300; letter-spacing: .05em; opacity: 0; margin-bottom: 2.4rem;
  animation: sobe 1s ease .65s forwards;
}
.hero-conteudo .botao { opacity: 0; animation: sobe 1s ease .85s forwards; }
@media (prefers-reduced-motion: reduce) {
  .hero-sobre, .hero-conteudo h1, .hero-sub, .hero-conteudo .botao { animation: none; opacity: 1; }
}

/* seta de rolagem no pé do hero */
.bloco-hero::after {
  content: ""; position: absolute; left: 50%; bottom: 2rem; z-index: 2;
  width: 1px; height: 52px; background: linear-gradient(180deg, rgba(255,255,255,.85), transparent);
  animation: fio-desce 2.2s ease-in-out infinite;
}
@keyframes fio-desce { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (prefers-reduced-motion: reduce) { .bloco-hero::after { animation: none; } }

/* ---------- botões (varredura de preenchimento) ---------- */
.botao {
  position: relative; display: inline-block; background: transparent; color: #fff;
  padding: 1rem 3rem; border: 1px solid rgba(255,255,255,.85); overflow: hidden;
  font: inherit; font-size: .72rem; letter-spacing: .32em; text-transform: uppercase; cursor: pointer;
  transition: color .35s, border-color .35s; isolation: isolate;
}
.botao::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: #fff;
  transform: scaleX(0); transform-origin: right; transition: transform .45s cubic-bezier(.2,.6,.2,1);
}
.botao:hover { color: var(--cor-primaria); }
.botao:hover::before { transform: scaleX(1); transform-origin: left; }
.botao.secundario, main .bloco-editorial .botao { color: var(--cor-primaria); border-color: var(--cor-primaria); }
.botao.secundario::before, main .bloco-editorial .botao::before { background: var(--cor-primaria); }
.botao.secundario:hover, main .bloco-editorial .botao:hover { color: #fff; }

/* ---------- seções ---------- */
.bloco-grade, .bloco-editorial, .bloco-video, .bloco-texto, .bloco-faq, .bloco-prova, .bloco-look { margin: clamp(3.5rem, 8vw, 7.5rem) 0; }
/* Layout enxuto: a vitrine completa é o 1º bloco da página (sem hero antes
   dela) — nada de vão grande entre o cabeçalho e os produtos. */
.bloco-vitrine-completa { margin-top: clamp(1.2rem, 3vw, 2rem); }
.bloco-grade h2, .bloco-faq h2, .bloco-prova h2, .bloco-texto h2, .bloco-look h2, .bloco-video h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem); text-align: center; margin-bottom: .6rem;
}
.bloco-grade h2::after, .bloco-prova h2::after, .bloco-faq h2::after, .bloco-look h2::after, .bloco-video h2::after {
  content: "✦"; display: block; font-size: .8rem; color: var(--cor-destaque, #AD8A56);
  margin: 1rem auto 2.8rem; line-height: 1;
}

/* ---------- cards ---------- */
.grade { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 2.6rem 1.8rem; }
.grade.compacta { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 1.4rem; }
.card { display: block; text-align: center; }
.card-foto { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #EFEBE3; }
.card-foto::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 0 var(--cor-destaque, #AD8A56); transition: box-shadow .4s;
}
.card:hover .card-foto::after { box-shadow: inset 0 0 0 1px var(--cor-destaque, #AD8A56); }
.card-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.6,.2,1), opacity .5s, filter .6s; }
.card:hover .card-foto img { transform: scale(1.06); filter: brightness(1.03); }
.card-ver {
  position: absolute; left: 50%; bottom: 1.1rem; transform: translate(-50%, 14px); z-index: 2;
  background: rgba(19,17,16,.82); color: #F2ECDF; backdrop-filter: blur(8px);
  font-size: .64rem; letter-spacing: .3em; text-transform: uppercase;
  padding: .55rem 1.5rem; opacity: 0; transition: opacity .35s, transform .35s;
  white-space: nowrap;
}
.card:hover .card-ver { opacity: 1; transform: translate(-50%, 0); }
@media (hover: none) { .card-ver { display: none; } }
.card-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .45s;
  pointer-events: none;
}
.card.reproduzindo .card-video { opacity: 1; }
.selo-video {
  position: absolute; left: .8rem; bottom: .8rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(19,17,16,.72); color: #fff; backdrop-filter: blur(6px);
  font-size: .64rem; letter-spacing: .22em; text-transform: uppercase;
  padding: .32rem .7rem; border-radius: 99px;
}
.card h3 {
  font-family: var(--tipografia-corpo); font-weight: 400; font-size: .9rem; letter-spacing: .09em;
  text-transform: uppercase;
  margin: 1.2rem 0 .25rem; color: var(--cor-texto);
}
.card .preco { font-size: .92rem; letter-spacing: .08em; font-family: var(--tipografia-titulos); }
.preco s { color: #A79C8C; margin-right: .5rem; font-weight: 300; }
.preco strong { color: var(--cor-destaque, #AD8A56); font-weight: 500; }
.preco.grande { font-size: 1.5rem; margin: 1rem 0 .4rem; }
.sem-foto { display: flex; align-items: center; justify-content: center; height: 100%; color: #B7AC9B; font-size: .78rem; letter-spacing: .1em; padding: 1rem; text-align: center; }
.ver-tudo { margin-top: 2.6rem; text-align: center; }
.ver-tudo a { font-size: .72rem; letter-spacing: .32em; text-transform: uppercase; border-bottom: 1px solid var(--cor-destaque); padding-bottom: .35rem; color: var(--cor-primaria); transition: color .25s, letter-spacing .35s; }
.ver-tudo a:hover { color: var(--cor-destaque); letter-spacing: .4em; }

/* ---------- editorial ---------- */
.bloco-editorial {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center;
}
.bloco-editorial.invertido .editorial-foto { order: 2; }
.editorial-foto { position: relative; }
.editorial-foto::before {
  content: ""; position: absolute; inset: 1.2rem -1.2rem -1.2rem 1.2rem; z-index: -1;
  border: 1px solid var(--cor-destaque, #AD8A56); opacity: .5;
}
.bloco-editorial.invertido .editorial-foto::before { inset: 1.2rem 1.2rem -1.2rem -1.2rem; }
.editorial-foto img { aspect-ratio: 4/3.4; object-fit: cover; width: 100%; }
.editorial-texto h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 1.2rem; line-height: 1.12; }
.editorial-texto h2::after { content: ""; display: block; width: 52px; height: 1px; background: var(--cor-destaque); margin-top: 1.2rem; }
.editorial-texto p { margin: 1.2rem 0 2rem; color: #4C453D; max-width: 46ch; font-size: 1.02rem; }

/* ---------- vídeo bloco ---------- */
.bloco-video video { width: 100%; display: block; }

/* ---------- texto rico ---------- */
.bloco-texto { max-width: 700px; margin-left: auto; margin-right: auto; }
.texto-rico p { margin-bottom: 1.1rem; color: #4C453D; }
.texto-rico p:first-of-type::first-letter {
  font-family: var(--tipografia-titulos); font-size: 3.4em; float: left;
  line-height: .82; padding: .08em .12em 0 0; color: var(--cor-destaque, #AD8A56);
}

/* ---------- faq ---------- */
.bloco-faq { max-width: 760px; margin-left: auto; margin-right: auto; }
.bloco-faq details { border-bottom: 1px solid rgba(0,0,0,.1); padding: 1.15rem .2rem; }
.bloco-faq summary { cursor: pointer; font-weight: 400; letter-spacing: .04em; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: color .2s; }
.bloco-faq summary:hover { color: var(--cor-destaque); }
.bloco-faq summary::-webkit-details-marker { display: none; }
.bloco-faq summary::after { content: "+"; font-family: var(--tipografia-titulos); font-size: 1.4rem; color: var(--cor-destaque); transition: transform .3s; }
.bloco-faq details[open] summary::after { transform: rotate(45deg); }
.bloco-faq details p { margin-top: .8rem; color: #4C453D; font-size: .93rem; max-width: 60ch; }

/* ---------- prova social ---------- */
.avaliacoes { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.6rem; }
.avaliacoes blockquote {
  position: relative; background: #FFFEFB; padding: 2.6rem 2rem 2.2rem; text-align: center;
  border: 1px solid rgba(0,0,0,.05); transition: transform .35s, box-shadow .35s;
}
.avaliacoes blockquote:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(26,21,15,.09); }
.avaliacoes blockquote::before {
  content: "“"; position: absolute; top: -.4rem; left: 50%; transform: translateX(-50%);
  font-family: var(--tipografia-titulos); font-size: 4.4rem; line-height: 1;
  color: var(--cor-destaque, #AD8A56); opacity: .35;
}
.estrelas { color: var(--cor-destaque); letter-spacing: .3em; margin-bottom: 1rem; font-size: .85rem; }
.avaliacoes p { font-family: var(--tipografia-titulos); font-size: 1.14rem; font-style: italic; line-height: 1.5; color: var(--cor-primaria); }
.avaliacoes cite { display: block; margin-top: 1.2rem; font-style: normal; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: #8D8271; }

/* ---------- monte o look ---------- */
.look-wrap { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.look-foto img { width: 100%; object-fit: cover; }
.look-legenda { font-size: .74rem; letter-spacing: .26em; text-transform: uppercase; color: #8D8271; margin-bottom: 1.2rem; }

/* ---------- PDP ---------- */
.pdp { padding-top: 1.6rem; }
.migalhas { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #A79C8C; margin-bottom: 2.2rem; }
.migalhas a:hover { color: var(--cor-destaque); }
.pdp-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.pdp-info { position: sticky; top: 6rem; }
.pdp-galeria img:first-child, .pdp-galeria video:first-child { width: 100%; margin-bottom: .9rem; }
.pdp-galeria .mini { display: inline-block; width: 96px; height: 96px; object-fit: cover; margin-right: .6rem; cursor: pointer; opacity: .85; }
.pdp-galeria .mini:hover { opacity: 1; }
.pdp-info h1 { font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.1; }
.sku { color: #A79C8C; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; margin-top: .5rem; }
.estoque { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.4rem; }
.estoque.ok { color: #4A7A54; }
.estoque.ok::before { content: "●"; margin-right: .5rem; font-size: .6rem; vertical-align: 2px; }
.estoque.falta { color: #A8503F; }
.descricao { margin-bottom: 2.2rem; color: #4C453D; max-width: 52ch; }
.pdp-info h2 { font-size: 1.15rem; letter-spacing: .06em; margin-bottom: .8rem; }
.ficha { border-collapse: collapse; width: 100%; }
.ficha th, .ficha td { text-align: left; padding: .7rem .2rem; border-bottom: 1px solid rgba(0,0,0,.08); font-size: .88rem; }
.ficha th { color: #8D8271; font-weight: 400; width: 46%; letter-spacing: .04em; }

/* ---------- listagem / busca / coleção ---------- */
.listagem { padding-top: 1rem; }
.listagem h1 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin: 1.8rem 0 .4rem; text-align: center; }
.listagem h1 small { display: block; font-family: var(--tipografia-corpo); font-size: .72rem; letter-spacing: .32em; text-transform: uppercase; color: #A79C8C; margin-top: .6rem; }
.listagem h1::after { content: "✦"; display: block; font-size: .78rem; color: var(--cor-destaque); margin: 1.2rem auto 2.4rem; line-height: 1; }
.colecao-capa { width: 100vw; margin-left: calc(50% - 50vw); height: 320px; background-size: cover; background-position: center; }
.listagem-grid { display: grid; grid-template-columns: 240px 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.facetas { position: sticky; top: 6rem; }
.facetas h3 { font-size: .78rem; letter-spacing: .3em; text-transform: uppercase; font-family: var(--tipografia-corpo); font-weight: 500; border-bottom: 1px solid rgba(0,0,0,.15); padding-bottom: .8rem; }
.facetas fieldset { border: none; margin: 1.4rem 0; }
.facetas legend { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: #8D8271; margin-bottom: .7rem; }
.facetas label { display: block; font-size: .88rem; padding: .22rem 0; cursor: pointer; }
.facetas label:hover { color: var(--cor-destaque); }
.facetas .qtd { color: #B7AC9B; font-size: .78rem; }
.facetas input[type=radio], .facetas input[type=checkbox] { accent-color: var(--cor-destaque); margin-right: .4rem; }
.facetas input[type=number] { width: 74px; padding: .35rem; border: 1px solid rgba(0,0,0,.2); background: transparent; font: inherit; font-size: .85rem; }
.facetas select { width: 100%; padding: .5rem; border: 1px solid rgba(0,0,0,.2); background: transparent; font: inherit; font-size: .85rem; }
.facetas .botao { width: 100%; text-align: center; margin-top: .4rem; }
.facetas .limpar { display: block; margin-top: 1rem; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: #A79C8C; text-align: center; }
.facetas .limpar:hover { color: var(--cor-destaque); }
.listagem-mais { grid-column: 1 / -1; display: flex; justify-content: center; padding: 2.4rem 0 .6rem; min-height: 1px; }
.listagem-mais .btn-ver-mais { min-width: 220px; text-align: center; }
.facetas .botao { color: var(--cor-primaria); border-color: var(--cor-primaria); }
.facetas .botao::before { background: var(--cor-primaria); }
.facetas .botao:hover { color: #fff; }

/* ---------- rodapé ---------- */
.rodape {
  position: relative; text-align: center;
  padding: clamp(4rem, 8vw, 7rem) 1.5rem 2.5rem;
  margin-top: clamp(4rem, 9vw, 8rem);
  background: var(--cor-primaria, #131110); color: #B9AE9E;
  overflow: hidden;
}
.rodape::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(680px, 80vw); height: 1px;
  background: linear-gradient(90deg, transparent, var(--cor-destaque, #AD8A56), transparent);
}
.rodape-marca { display: flex; justify-content: center; margin-bottom: 1.8rem; color: #F6F1E7; }
.rodape-marca .logo-svg-empilhado { width: 104px; }
.rodape .slogan { font-family: var(--tipografia-titulos); font-style: italic; font-size: 1.1rem; margin: 0 0 2.4rem; color: #D8CFC0; }
.rodape-links { display: flex; justify-content: center; gap: 2.6rem; margin-bottom: 2.6rem; flex-wrap: wrap; }
.rodape-links a { font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; transition: color .25s; }
.rodape-links a:hover { color: var(--cor-destaque); }
.rodape-fino { font-size: .72rem; letter-spacing: .1em; opacity: .55; }

/* ---------- animações de entrada ---------- */
.revelar { opacity: 0; transform: translateY(30px); transition: opacity 1s ease, transform 1s ease; }
.revelar.visivel { opacity: 1; transform: none; }
.grade .card.revelar:nth-child(2) { transition-delay: .08s; }
.grade .card.revelar:nth-child(3) { transition-delay: .16s; }
.grade .card.revelar:nth-child(4) { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .revelar { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsivo ---------- */
@media (max-width: 920px) {
  .topo { grid-template-columns: 1fr auto; row-gap: .6rem; }
  .logo { order: -1; grid-column: 1; justify-self: start; }
  .menu { grid-column: 1 / -1; gap: 1.2rem; }
  .pdp-grid, .bloco-editorial, .look-wrap { grid-template-columns: 1fr; }
  .pdp-info { position: static; }
  .listagem-grid { grid-template-columns: 1fr; }
  .facetas { position: static; }
  .grade { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1.8rem 1rem; }
  .bloco-editorial.invertido .editorial-foto { order: 0; }
  .editorial-foto::before, .bloco-editorial.invertido .editorial-foto::before { inset: .8rem -.8rem -.8rem .8rem; }
}

/* ---------- sacola / checkout / pedido ---------- */
.topo-acoes { justify-self: end; display: flex; align-items: center; gap: 1.4rem; }
.sacola-link { position: relative; display: flex; color: var(--cor-texto); transition: color .25s; }
.sacola-link:hover { color: var(--cor-destaque); }
.sacola-qtd {
  position: absolute; top: -7px; right: -9px; background: var(--cor-destaque); color: #fff;
  font-size: .62rem; min-width: 16px; height: 16px; border-radius: 99px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px; font-weight: 500;
}
.titulo-centro { font-size: clamp(2rem, 3.6vw, 2.9rem); text-align: center; margin: 2rem 0 .6rem; }
.titulo-centro::after { content: "✦"; display: block; font-size: .78rem; color: var(--cor-destaque); margin: 1.1rem auto 1.5rem; line-height: 1; }

.frete-aviso { text-align: center; font-size: .86rem; letter-spacing: .06em; background: #F2EDE1; padding: .7rem 1rem; max-width: 520px; margin: 0 auto 2.4rem; }
.frete-aviso.ok { background: #E7EFE4; color: #40603F; }
.sacola-grid, .checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.sacola-item { display: grid; grid-template-columns: 110px 1fr auto; gap: 1.4rem; padding: 1.4rem 0; border-bottom: 1px solid rgba(0,0,0,.08); align-items: center; }
.sacola-foto img { width: 110px; height: 132px; object-fit: cover; }
.sacola-info h3 { font-family: var(--tipografia-corpo); font-weight: 400; font-size: 1rem; letter-spacing: .04em; }
.sacola-info .sku { margin: .2rem 0 .4rem; }
.sacola-qtd-form { display: flex; align-items: center; gap: 1.2rem; margin-top: .7rem; font-size: .82rem; }
.sacola-qtd-form select { padding: .3rem .5rem; border: 1px solid rgba(0,0,0,.2); background: transparent; font: inherit; margin-left: .4rem; }
.sacola-qtd-form .remover { border: none; background: none; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #A79C8C; cursor: pointer; }
.sacola-qtd-form .remover:hover { color: #A8503F; }
.sacola-total-item { font-size: 1rem; letter-spacing: .05em; color: var(--cor-destaque); font-family: var(--tipografia-titulos); }
.sacola-vazia { text-align: center; padding: 4rem 0 2rem; }
.sacola-vazia p { margin-bottom: 1.6rem; color: #8D8271; }

.resumo { background: #FFFEFB; padding: 1.8rem; border: 1px solid rgba(0,0,0,.06); position: sticky; top: 6rem; }
.resumo h3 { font-size: .78rem; letter-spacing: .3em; text-transform: uppercase; font-family: var(--tipografia-corpo); font-weight: 500; margin-bottom: 1.2rem; }
.resumo dl div { display: flex; justify-content: space-between; padding: .45rem 0; font-size: .92rem; }
.resumo dl .total { border-top: 1px solid rgba(0,0,0,.12); margin-top: .6rem; padding-top: .9rem; font-size: 1.08rem; }
.resumo dl .total dd { color: var(--cor-destaque); }
.botao.cheio { display: block; width: 100%; text-align: center; margin-top: 1.2rem; background: var(--cor-destaque); color: #fff !important; border-color: var(--cor-destaque); }
.botao.cheio::before { background: var(--cor-primaria); }
.botao.cheio:hover { border-color: var(--cor-primaria); }
.resumo-nota { font-size: .74rem; color: #A79C8C; text-align: center; margin-top: .9rem; letter-spacing: .04em; }
.continuar { display: block; text-align: center; margin-top: 1.2rem; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: #8D8271; }
.resumo-item { display: grid; grid-template-columns: 44px 1fr auto; gap: .8rem; align-items: center; padding: .5rem 0; font-size: .88rem; }
.resumo-item img { width: 44px; height: 52px; object-fit: cover; }
.resumo-item small { color: #A79C8C; }

.checkout-form h3 { font-size: 1.05rem; letter-spacing: .08em; margin: 2rem 0 1rem; }
.checkout-form h3:first-child { margin-top: 0; }
.campos { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.campos label { display: flex; flex-direction: column; gap: .3rem; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: #8D8271; }
.campos input, .campos select { padding: .68rem .8rem; border: 1px solid rgba(0,0,0,.18); background: #fff; font: inherit; font-size: .95rem; letter-spacing: normal; text-transform: none; transition: border-color .2s; }
.campos input:focus, .campos select:focus { outline: none; border-color: var(--cor-destaque); }
.campos .c2 { grid-column: span 2; }
.checkout-erro { background: #F6E4DF; color: #8C3B2C; padding: .8rem 1.2rem; text-align: center; font-size: .88rem; max-width: 640px; margin: 0 auto 1.6rem; }
.mp-selo { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: #4A90D9; border: 1px solid #B9D4EE; padding: .2rem .6rem; border-radius: 99px; vertical-align: middle; margin-left: .5rem; }
.pagamento-opcoes { display: grid; gap: .8rem; }
.pag-opcao { display: flex; gap: .9rem; align-items: center; background: #fff; border: 1px solid rgba(0,0,0,.14); padding: 1rem 1.2rem; cursor: pointer; transition: border-color .2s; }
.pag-opcao:hover { border-color: var(--cor-destaque); }
.pag-opcao:has(input:checked) { border-color: var(--cor-destaque); box-shadow: 0 0 0 1px var(--cor-destaque); }
.pag-opcao input { accent-color: var(--cor-destaque); }
.pag-opcao small { display: block; color: #8D8271; font-size: .78rem; }

.pedido-sub { text-align: center; color: #6B6257; margin-bottom: 1.6rem; }
.aviso-simulacao { max-width: 640px; margin: 0 auto 1.8rem; text-align: center; font-size: .78rem; letter-spacing: .04em; background: #F2EDE1; padding: .6rem 1rem; color: #7A6A45; }
.pag-caixa { max-width: 640px; margin: 0 auto 3rem; background: #FFFEFB; padding: 2.2rem; border: 1px solid rgba(0,0,0,.06); }
.pag-caixa h3 { font-size: 1.2rem; margin-bottom: 1.4rem; }
.pix-grid { display: grid; grid-template-columns: 170px 1fr; gap: 1.6rem; align-items: start; }
.qr-fake { width: 170px; aspect-ratio: 1; border: 1px solid rgba(0,0,0,.15); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; }
.qr-miolo { width: 120px; height: 120px; background:
  repeating-conic-gradient(#131110 0% 25%, #fff 0% 50%) 0 0/24px 24px; opacity: .9; }
.qr-fake span { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: #A79C8C; }
.pix-passos { font-size: .85rem; color: #6B6257; margin-bottom: .8rem; }
.pix-codigo { width: 100%; font-family: ui-monospace, monospace; font-size: .72rem; padding: .7rem; border: 1px dashed rgba(0,0,0,.25); background: var(--cor-superficie); margin-bottom: .8rem; word-break: break-all; }
.pag-confirmar { margin-top: 1.6rem; border-top: 1px solid rgba(0,0,0,.08); padding-top: 1.4rem; }
.cartao-form .botao { margin-top: .6rem; }

.confirmado { text-align: center; padding-top: 1rem; }
.confirmado-icone { font-size: 2.2rem; color: var(--cor-destaque); margin-top: 2rem; }
.pedido-status-linha { text-align: center; margin-bottom: 2rem; font-size: .85rem; color: #6B6257; }
.badge-status { background: #E7EFE4; color: #40603F; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 99px; }
.pedido-detalhe { max-width: 640px; margin: 0 auto; background: #FFFEFB; padding: 2rem; border: 1px solid rgba(0,0,0,.06); }
.pedido-detalhe h3 { font-size: .78rem; letter-spacing: .3em; text-transform: uppercase; font-family: var(--tipografia-corpo); font-weight: 500; margin: 1.4rem 0 .8rem; }
.pedido-detalhe h3:first-child { margin-top: 0; }
.pedido-detalhe dl div { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .9rem; }
.pedido-detalhe dl .total { border-top: 1px solid rgba(0,0,0,.12); margin-top: .5rem; padding-top: .8rem; font-size: 1.05rem; }
.endereco-linha { font-size: .9rem; color: #4C453D; }

.comprar-form { display: flex; gap: 1rem; align-items: stretch; margin: 1.4rem 0 1rem; }
.qtd-caixa { display: flex; align-items: center; gap: .6rem; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #8D8271; border: 1px solid rgba(0,0,0,.18); padding: 0 .9rem; }
.qtd-caixa select { border: none; background: none; font: inherit; font-size: 1rem; }
.botao.comprar { flex: 1; text-align: center; background: var(--cor-destaque); color: #fff !important; border-color: var(--cor-destaque); }
.botao.comprar::before { background: var(--cor-primaria); }
.botao.comprar:hover { border-color: var(--cor-primaria); }
.botao.comprar:disabled { background: #C8BFB2; border-color: #C8BFB2; cursor: not-allowed; }
.beneficios { font-size: .74rem; letter-spacing: .06em; color: #8D8271; margin-bottom: 1.6rem; }
.destaque-video { font-weight: 500; }

@media (max-width: 920px) {
  .sacola-grid, .checkout-grid { grid-template-columns: 1fr; }
  .resumo { position: static; }
  .pix-grid { grid-template-columns: 1fr; justify-items: center; }
  .campos { grid-template-columns: 1fr; }
  .campos .c2 { grid-column: span 1; }
}

/* ---------- conta do cliente ---------- */
.entrar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 880px; margin: 0 auto; }
.entrar-caixa { background: #FFFEFB; padding: 2rem; border: 1px solid rgba(0,0,0,.06); display: flex; flex-direction: column; gap: .9rem; }
.entrar-caixa h3 { font-size: 1.1rem; letter-spacing: .05em; margin-bottom: .3rem; }
.entrar-caixa label { display: flex; flex-direction: column; gap: .3rem; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: #8D8271; }
.entrar-caixa input { padding: .65rem .8rem; border: 1px solid rgba(0,0,0,.18); font: inherit; font-size: .95rem; letter-spacing: normal; text-transform: none; }
.entrar-caixa input:focus { outline: none; border-color: var(--cor-destaque); }
.entrar-caixa .linha2 { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.conta-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; max-width: 1000px; margin: 0 auto; }
.conta-h3 { font-size: .78rem; letter-spacing: .3em; text-transform: uppercase; font-family: var(--tipografia-corpo); font-weight: 500; margin-bottom: 1rem; }
.pedido-cartao { display: grid; grid-template-columns: 56px 1fr auto; gap: 1rem; align-items: center; background: #FFFEFB; padding: 1rem 1.2rem; margin-bottom: .8rem; border: 1px solid rgba(0,0,0,.06); transition: box-shadow .25s, transform .25s; }
.pedido-cartao:hover { box-shadow: 0 12px 34px rgba(26,21,15,.1); transform: translateY(-2px); }
.pedido-cartao img { width: 56px; height: 64px; object-fit: cover; }
.pedido-cartao small { display: block; color: #A79C8C; font-size: .78rem; }
.pedido-cartao-dir { text-align: right; display: flex; flex-direction: column; gap: .4rem; align-items: flex-end; }
.badge-status.st-aguardando_pagamento { background: #F4E9CE; color: #8A6414; }
.badge-status.st-cancelado { background: #F2DCD7; color: #8C3B2C; }
.sair-form { display: inline; }
.link-sair { border: none; background: none; color: #A79C8C; cursor: pointer; font: inherit; font-size: .8rem; text-decoration: underline; }
.conta-link { display: flex; color: var(--cor-texto); transition: color .25s; }
.conta-link:hover { color: var(--cor-destaque); }
.login-convite { background: #F2EDE1; padding: .8rem 1.2rem; font-size: .88rem; margin-bottom: 1.4rem; }
.login-convite a { color: var(--cor-destaque); text-decoration: underline; }
.minima-aviso { font-size: .84rem; background: #F4E9CE; color: #8A6414; padding: .7rem 1rem; margin-top: 1rem; }
.botao.desab { opacity: .45; pointer-events: none; }
.pix-off { color: #2c7a3f; font-weight: 500; }
.resumo dl .desconto dd { color: #2c7a3f; }
.rodape-contato { display: flex; justify-content: center; gap: 1.8rem; flex-wrap: wrap; font-size: .8rem; margin-bottom: 2rem; }
.rodape-contato a { text-decoration: underline; }
.sacola-vazia-nota { color: #8D8271; }
.sacola-vazia-nota a { color: var(--cor-destaque); }

/* ---------- WhatsApp flutuante ---------- */
.wa-flutuante {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 80;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.25); transition: transform .2s;
}
.wa-flutuante:hover { transform: scale(1.08); }

/* ---------- menu mobile ---------- */
.menu-btn { display: none; border: none; background: none; cursor: pointer; color: var(--cor-texto); padding: .3rem; }
.menu-mobile { position: fixed; inset: 0; top: 0; background: var(--cor-superficie); z-index: 100; overflow-y: auto; padding: 5.5rem 2rem 2rem; }
.menu-mobile nav { display: flex; flex-direction: column; }
.mm-item { font-family: var(--tipografia-titulos); font-size: 1.5rem; padding: .7rem 0; border-bottom: 1px solid rgba(0,0,0,.07); }
.mm-sub { font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; padding: .55rem 0 .55rem 1.2rem; color: #6B6257; }
body.menu-aberto { overflow: hidden; }
body.menu-aberto .topo { z-index: 110; background: var(--cor-superficie); }

@media (max-width: 920px) {
  .menu { display: none; }
  .menu-btn { display: flex; }
  .topo { grid-template-columns: auto 1fr auto; gap: .6rem 1rem; row-gap: .7rem; }
  .logo { justify-self: start; }
  .logo-svg { height: 17px; }
  /* busca (+ marca animada, se for o caso) ganha linha própria cheia,
     sem disputar espaço com hambúrguer/ícones */
  .topo-esquerda { grid-row: 2; grid-column: 1 / -1; width: 100%; justify-self: stretch; }
  .busca-form { flex: 1; min-width: 0; width: auto; }
  .busca-sugestoes { left: 0; right: 0; width: auto; }
  .entrar-grid, .conta-grid { grid-template-columns: 1fr; }
  /* barra de compra fixa na PDP */
  .comprar-form { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: #fff; padding: .8rem 1rem calc(.8rem + env(safe-area-inset-bottom)); margin: 0; box-shadow: 0 -8px 30px rgba(26,21,15,.12); }
  .pdp { padding-bottom: 5.5rem; }
  .bloco-hero { min-height: 78vh; }
  .hero-conteudo h1 { font-size: 2.2rem; }
  .hero-sobre::before, .hero-sobre::after { width: 20px; margin: 0 .7rem; }
  .grade { gap: 1.8rem .9rem; }
  .card h3 { font-size: .78rem; }
  .wa-flutuante { bottom: 5.4rem; }
}

/* ---------- galeria da PDP (palco + miniaturas) ---------- */
.galeria-palco { position: relative; overflow: hidden; background: #EFEBE3; }
.galeria-palco img, .galeria-palco video { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.play-overlay {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(19,17,16,.72); color: #fff; backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.35); border-radius: 99px;
  padding: .55rem 1.4rem .55rem 1rem; cursor: pointer; font: inherit;
  font-size: .72rem; letter-spacing: .24em; text-transform: uppercase;
  transition: background .25s, transform .25s;
}
.play-overlay:hover { background: var(--cor-destaque); transform: translateX(-50%) scale(1.04); }
.play-overlay svg { flex: none; }
.galeria-thumbs { display: flex; gap: .7rem; margin-top: .9rem; }
.g-thumb {
  width: 92px; height: 92px; padding: 0; border: 1px solid transparent; background: none;
  cursor: pointer; opacity: .75; transition: opacity .2s, border-color .2s; flex: none;
}
.g-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-thumb:hover { opacity: 1; }
.g-thumb.ativa { opacity: 1; border-color: var(--cor-destaque); }
@media (max-width: 920px) {
  .g-thumb { width: 72px; height: 72px; }
}

/* miniatura do vídeo na faixa (com ícone de play) */
.g-thumb { position: relative; }
.g-thumb-video .thumb-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(19,17,16,.35); color: #fff;
}
.g-thumb-video .thumb-play svg { filter: drop-shadow(0 1px 4px rgba(0,0,0,.5)); }
