/* ==========================================================================
   BUZZ BURG BURGERS — sistema visual
   Cores tiradas da logo: preto, branco (creme) e vinho #2E0120.
   Cheddar entra só como tempero: estrelas, preços e detalhes.
   ========================================================================== */

:root {
  --vinho: #2E0120;
  --vinho-2: #4A0A36;
  --vinho-3: #6E1A52;
  --preto: #0F060C;
  --preto-2: #180B14;
  --creme: #FFF6EA;
  --creme-2: #F2E3CF;
  --cheddar: #FFB81C;
  --cheddar-2: #E89A00;
  --texto: #FFF6EA;
  --texto-2: rgba(255, 246, 234, .74);
  --texto-3: rgba(255, 246, 234, .52);
  --linha: rgba(255, 246, 234, .12);
  --tinta: #2E0120;            /* texto sobre fundo claro */
  --tinta-2: rgba(46, 1, 32, .72);

  --f-display: "Luckiest Guy", "Impact", system-ui, sans-serif;
  --f-rotulo: "Fredoka", "Nunito", system-ui, sans-serif;
  --f-texto: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;

  --max: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --r-card: 22px;
  --r-bloco: 32px;
  --sombra: 0 24px 60px -24px rgba(0, 0, 0, .7);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --topo-h: 84px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--topo-h) + 16px); }
body {
  margin: 0;
  background: var(--preto);
  color: var(--texto);
  font-family: var(--f-texto);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
/* granulado sutil sobre tudo */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 200;
  opacity: .07;
  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='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; }
::selection { background: var(--cheddar); color: var(--vinho); }
:focus-visible { outline: 3px solid var(--cheddar); outline-offset: 3px; border-radius: 6px; }

.pular {
  position: absolute; left: 12px; top: -60px; z-index: 300;
  background: var(--creme); color: var(--vinho); padding: 10px 16px; border-radius: 10px;
  font-family: var(--f-rotulo); font-weight: 600; text-decoration: none;
}
.pular:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- tipografia ---------- */
.display {
  font-family: var(--f-display);
  font-size: clamp(2.7rem, 7.4vw, 6.2rem);
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.titulo {
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 5vw, 3.9rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.titulo em, .display em { font-style: normal; color: var(--cheddar); }
.sobretitulo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-rotulo); font-weight: 600;
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cheddar);
  margin-bottom: 18px;
}
.sobretitulo::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: currentColor; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--texto-2); max-width: 58ch; }
.cabeca { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.cabeca--centro { margin-inline: auto; text-align: center; }
.cabeca--centro .sobretitulo { justify-content: center; }
.cabeca--centro .lead { margin-inline: auto; }
.cabeca .lead { margin-top: 18px; }

/* ---------- botões ---------- */
.btn {
  --bg: var(--creme); --fg: var(--vinho); --sombra-btn: var(--cheddar);
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 26px;
  border: 0; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  font-family: var(--f-rotulo); font-weight: 600; font-size: 1.02rem; letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 5px 0 var(--sombra-btn);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--sombra-btn); }
.btn:active { transform: translateY(4px); box-shadow: 0 1px 0 var(--sombra-btn); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--vinho { --bg: var(--vinho); --fg: var(--creme); }
.btn--cheddar { --bg: var(--cheddar); --fg: var(--vinho); --sombra-btn: var(--creme); }
.btn--contorno {
  background: transparent; color: var(--texto);
  box-shadow: inset 0 0 0 2px var(--linha);
}
.btn--contorno:hover { box-shadow: inset 0 0 0 2px var(--creme); transform: translateY(-2px); }
.btn--contorno:active { box-shadow: inset 0 0 0 2px var(--creme); transform: translateY(1px); }
.btn--claro-contorno { background: transparent; color: var(--vinho); box-shadow: inset 0 0 0 2px rgba(46,1,32,.25); }
.btn--claro-contorno:hover { box-shadow: inset 0 0 0 2px var(--vinho); }
.btn--bloco { width: 100%; }
.btn--p { min-height: 44px; padding: 0 18px; font-size: .95rem; box-shadow: 0 3px 0 var(--sombra-btn); }
/* onda do clique */
.btn .onda {
  position: absolute; z-index: -1; border-radius: 50%;
  width: 12px; height: 12px; margin: -6px 0 0 -6px;
  background: currentColor; opacity: .25;
  animation: onda .6s ease-out forwards; pointer-events: none;
}
@keyframes onda { to { transform: scale(40); opacity: 0; } }

.ctas { display: flex; flex-wrap: wrap; gap: 14px 16px; align-items: center; }
.promessa {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-rotulo); font-weight: 500; font-size: .92rem;
  color: var(--texto-2);
}
.promessa::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: #3DDC84; box-shadow: 0 0 0 4px rgba(61, 220, 132, .18);
  animation: pulsa 2s infinite;
}
@keyframes pulsa { 50% { box-shadow: 0 0 0 8px rgba(61, 220, 132, 0); } }

/* ---------- barra de progresso ---------- */
.progresso {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120;
  transform-origin: 0 50%; transform: scaleX(var(--p, 0));
  background: linear-gradient(90deg, var(--cheddar), var(--creme));
}

/* ---------- topo ---------- */
.topo {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: transform .4s var(--ease), background .3s, box-shadow .3s;
}
.topo.solido {
  background: rgba(15, 6, 12, .82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--linha);
}
.topo.escondido { transform: translateY(-100%); }
.topo__barra {
  display: flex; align-items: center; gap: 24px;
  height: var(--topo-h);
}
.topo__logo { flex: none; display: block; }
.topo__logo img { height: 62px; width: auto; transition: transform .3s var(--ease); }
.topo__logo:hover img { transform: rotate(-4deg) scale(1.04); }
.menu { display: flex; gap: 4px; margin-left: auto; }
.menu a {
  position: relative; padding: 8px 12px;
  font-family: var(--f-rotulo); font-weight: 500; font-size: .98rem;
  color: var(--texto-2); text-decoration: none;
  transition: color .2s;
}
.menu a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 3px; border-radius: 3px;
  background: var(--cheddar); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.menu a:hover, .menu a[aria-current="page"] { color: var(--creme); }
.menu a:hover::after, .menu a[aria-current="page"]::after { transform: scaleX(1); }
.topo__cta { flex: none; }
.hamburguer {
  display: none; margin-left: auto;
  width: 48px; height: 48px; border-radius: 14px; border: 0; cursor: pointer;
  background: rgba(255, 246, 234, .08);
  position: relative;
}
.hamburguer span, .hamburguer span::before, .hamburguer span::after {
  position: absolute; left: 13px; width: 22px; height: 3px; border-radius: 3px; background: var(--creme);
  transition: transform .3s var(--ease), opacity .2s;
}
.hamburguer span { top: 22px; }
.hamburguer span::before { content: ""; left: 0; top: -7px; }
.hamburguer span::after { content: ""; left: 0; top: 7px; }
.hamburguer[aria-expanded="true"] span { background: transparent; }
.hamburguer[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.hamburguer[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.gaveta {
  position: fixed; inset: 0; z-index: 90;
  background: var(--vinho);
  padding: calc(var(--topo-h) + 24px) var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 6px;
  clip-path: circle(0 at calc(100% - 44px) 42px);
  transition: clip-path .6s var(--ease);
  visibility: hidden;
}
.gaveta.aberta { clip-path: circle(150% at calc(100% - 44px) 42px); visibility: visible; }
.gaveta a:not(.btn) {
  font-family: var(--f-display); font-size: clamp(2rem, 9vw, 2.8rem); line-height: 1.15;
  text-decoration: none; color: var(--creme);
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s, transform .4s var(--ease), color .2s;
}
.gaveta a[aria-current="page"] { color: var(--cheddar); }
.gaveta.aberta a { opacity: 1; transform: none; }
.gaveta.aberta a:nth-child(2) { transition-delay: .05s; }
.gaveta.aberta a:nth-child(3) { transition-delay: .1s; }
.gaveta.aberta a:nth-child(4) { transition-delay: .15s; }
.gaveta.aberta a:nth-child(5) { transition-delay: .2s; }
.gaveta.aberta a:nth-child(6) { transition-delay: .25s; }
.gaveta .btn { margin-top: 24px; }
body.travado { overflow: hidden; }

/* ---------- herói da home ---------- */
.heroi {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--topo-h) + 40px) 0 80px;
  background:
    radial-gradient(60% 70% at 85% 30%, rgba(110, 26, 82, .55), transparent 70%),
    radial-gradient(50% 60% at 0% 100%, rgba(46, 1, 32, .9), transparent 70%),
    var(--preto);
}
.heroi__fundo {
  position: absolute; left: -2vw; bottom: -4vw; z-index: 0;
  font-family: var(--f-display); font-size: 34vw; line-height: .8; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 2px rgba(255, 246, 234, .06);
  pointer-events: none; user-select: none;
  transform: translateX(calc(var(--scroll, 0) * -0.25px));
}
.heroi__grade {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.heroi .display { margin-bottom: 24px; }
.heroi .lead { margin-bottom: 34px; }
.heroi .promessa { margin-top: 22px; }
.status {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px; margin-bottom: 26px;
  border-radius: 999px; background: rgba(255, 246, 234, .07); box-shadow: inset 0 0 0 1px var(--linha);
  font-family: var(--f-rotulo); font-weight: 500; font-size: .9rem; color: var(--texto-2);
}
.status b { font-weight: 600; color: var(--creme); }
.status i { width: 10px; height: 10px; border-radius: 50%; background: #8a7f86; }
.status.aberto i { background: #3DDC84; box-shadow: 0 0 0 4px rgba(61, 220, 132, .2); animation: pulsa 2s infinite; }
.status.fechado i { background: #ff5c5c; }

.heroi__foto { position: relative; justify-self: center; width: min(100%, 470px); }
.heroi__moldura {
  position: relative; overflow: hidden;
  border-radius: 48% 48% 28px 28px / 32% 32% 28px 28px;   /* formato de pão */
  box-shadow: var(--sombra), 0 0 0 10px rgba(255, 246, 234, .04);
  aspect-ratio: 736 / 1000;
}
.heroi__moldura img {
  width: 100%; height: 118%; object-fit: cover; object-position: center 40%;
  transform: translateY(calc(var(--scroll, 0) * -0.08px)) scale(1.02);
  will-change: transform;
}
.selo {
  position: absolute; z-index: 2; left: -40px; bottom: 60px;
  width: 136px; height: 136px; border-radius: 50%;
  background: var(--cheddar); color: var(--vinho);
  display: grid; place-items: center;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, .6);
}
.selo svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: gira 16s linear infinite; }
.selo svg text { font-family: var(--f-rotulo); font-weight: 600; font-size: 13.4px; letter-spacing: 2.6px; fill: var(--vinho); }
.selo strong { font-family: var(--f-display); font-size: 1.9rem; line-height: .9; text-align: center; }
@keyframes gira { to { transform: rotate(360deg); } }
.etiqueta-flutuante {
  position: absolute; z-index: 2; right: -18px; top: 18%;
  padding: 12px 16px; border-radius: 16px;
  background: var(--creme); color: var(--vinho);
  font-family: var(--f-rotulo); font-weight: 600; font-size: .92rem; line-height: 1.25;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .6);
  transform: rotate(4deg);
  animation: flutua 5s ease-in-out infinite;
}
.etiqueta-flutuante > span { display: block; white-space: nowrap; font-family: var(--f-display); font-size: 1.5rem; color: var(--vinho-3); }
@keyframes flutua { 50% { transform: rotate(4deg) translateY(-10px); } }
.rolar {
  position: absolute; left: 50%; bottom: 22px; z-index: 2; transform: translateX(-50%);
  width: 28px; height: 44px; border-radius: 20px; box-shadow: inset 0 0 0 2px var(--linha);
}
.rolar::after {
  content: ""; position: absolute; left: 50%; top: 9px; width: 4px; height: 9px; margin-left: -2px; border-radius: 4px;
  background: var(--cheddar); animation: rolar 1.8s infinite;
}
@keyframes rolar { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- herói das páginas internas ---------- */
.pagina-topo {
  position: relative; overflow: hidden;
  padding: calc(var(--topo-h) + 48px) 0 clamp(56px, 8vw, 96px);
  background:
    radial-gradient(60% 90% at 90% 0%, rgba(110, 26, 82, .6), transparent 70%),
    var(--vinho);
}
.pagina-topo__img {
  position: absolute; inset: 0; z-index: 0;
}
.pagina-topo__img img { width: 100%; height: 120%; object-fit: cover; opacity: .28; transform: translateY(calc(var(--scroll, 0) * .2px)); }
.pagina-topo__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(46,1,32,.6), var(--vinho) 92%); }
.pagina-topo .wrap { position: relative; z-index: 1; }
.pagina-topo .display { font-size: clamp(2.6rem, 7vw, 5.4rem); margin: 14px 0 20px; }

/* ---------- breadcrumbs ---------- */
.trilha ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-family: var(--f-rotulo); font-weight: 500; font-size: .9rem; color: var(--texto-3);
}
.trilha li { display: inline-flex; align-items: center; gap: 6px; }
.trilha li + li::before { content: "›"; color: var(--cheddar); font-size: 1.1rem; }
.trilha a { color: var(--texto-2); text-decoration: none; }
.trilha a:hover { color: var(--creme); text-decoration: underline; }
.trilha [aria-current] { color: var(--creme); }

/* ---------- seções ---------- */
.secao { position: relative; padding: clamp(80px, 11vw, 140px) 0; }
.secao--vinho { background: var(--vinho); }
.secao--preto2 { background: var(--preto-2); }
.secao--creme { background: var(--creme); color: var(--tinta); }
.secao--creme .lead, .secao--creme p { color: var(--tinta-2); }
.secao--creme .sobretitulo { color: var(--vinho-3); }
.secao--creme .titulo em { color: var(--vinho-3); }

/* faixa quadriculada, como o papel dos burgers */
.xadrez {
  height: 28px;
  background:
    conic-gradient(var(--creme) 25%, var(--vinho) 0 50%, var(--creme) 0 75%, var(--vinho) 0) 0 0 / 28px 28px;
  opacity: .95;
}
.xadrez--mov { animation: xadrez 3s linear infinite; }
@keyframes xadrez { to { background-position: 56px 0; } }

/* ---------- letreiro ---------- */
.letreiro {
  overflow: hidden; background: var(--cheddar); color: var(--vinho);
  padding: 18px 0; transform: rotate(-1.6deg) scale(1.02);
  margin: -10px 0; position: relative; z-index: 2;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.5);
}
.letreiro--vinho { background: var(--vinho); color: var(--creme); transform: rotate(1.4deg) scale(1.02); }
.letreiro__trilho { display: flex; width: max-content; will-change: transform; }
.letreiro__grupo { display: flex; align-items: center; gap: 28px; padding-right: 28px; }
.letreiro span { font-family: var(--f-display); font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1; white-space: nowrap; }
.letreiro svg { width: 26px; height: 26px; flex: none; }

/* ---------- sobre (home) ---------- */
.sobre { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.sobre__fotos { position: relative; min-height: 560px; }
.sobre__fotos figure { margin: 0; position: absolute; overflow: hidden; border-radius: var(--r-card); box-shadow: var(--sombra); }
.sobre__fotos figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.sobre__fotos figure:hover img { transform: scale(1.05); }
.sobre__fotos .f1 { left: 0; top: 0; width: 64%; height: 82%; }
.sobre__fotos .f2 { right: 0; bottom: 0; width: 50%; height: 54%; border: 8px solid var(--preto); }
.numeros { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.numero { padding: 20px 18px; border-radius: 18px; background: rgba(255, 246, 234, .05); box-shadow: inset 0 0 0 1px var(--linha); }
.numero strong { display: block; font-family: var(--f-display); font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1; color: var(--cheddar); }
.numero span { display: block; margin-top: 8px; font-size: .92rem; color: var(--texto-2); line-height: 1.35; }
.secao--creme .numero { background: rgba(46,1,32,.05); box-shadow: inset 0 0 0 1px rgba(46,1,32,.1); }
.secao--creme .numero strong { color: var(--vinho-3); }
.secao--creme .numero span { color: var(--tinta-2); }

/* ---------- cartões do cardápio ---------- */
.grade-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grade-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.prato {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--r-card); overflow: hidden;
  background: var(--preto-2); box-shadow: inset 0 0 0 1px var(--linha);
  transition: transform .4s var(--ease), box-shadow .4s;
  transform-style: preserve-3d;
}
.prato:hover { box-shadow: inset 0 0 0 1px rgba(255, 184, 28, .4), var(--sombra); }
.prato__foto { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; margin: 0; }
.prato__foto img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.prato:hover .prato__foto img { transform: scale(1.07); }
.prato__tag {
  position: absolute; left: 14px; top: 14px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--cheddar); color: var(--vinho);
  font-family: var(--f-rotulo); font-weight: 600; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase;
}
.prato__corpo { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; }
.prato__corpo h3 { font-family: var(--f-display); font-size: 1.65rem; line-height: 1; margin-bottom: 10px; letter-spacing: .01em; }
.prato__corpo p { color: var(--texto-2); font-size: .96rem; margin-bottom: 20px; }
.prato__rodape { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.preco { font-family: var(--f-rotulo); font-weight: 700; font-size: 1.35rem; color: var(--cheddar); white-space: nowrap; }
.preco small { font-size: .7em; font-weight: 500; opacity: .8; }

/* ---------- cupons ---------- */
.cupom {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: 30px 26px 26px;
  background: var(--creme); color: var(--vinho);
  border-radius: 22px;
  transition: transform .4s var(--ease);
}
/* recortes laterais de ticket, na altura da linha pontilhada */
.cupom__corte { position: relative; }
.cupom__corte::before, .cupom__corte::after {
  content: ""; position: absolute; top: -15px; width: 28px; height: 28px;
  border-radius: 50%; background: var(--vinho);
}
.cupom__corte::before { left: -14px; }
.cupom__corte::after { right: -14px; }
.cupom:hover { transform: translateY(-6px) rotate(-.6deg); }
.cupom__valor { font-family: var(--f-display); font-size: 2.6rem; line-height: .9; color: var(--vinho-3); }
.cupom h3 { font-family: var(--f-rotulo); font-weight: 700; font-size: 1.15rem; }
.cupom p { margin: 0; color: var(--tinta-2); font-size: .95rem; }
.cupom__corte { margin: 12px -26px 6px; border-top: 2px dashed rgba(46, 1, 32, .2); }
.cupom { overflow: hidden; }
.cupom__codigo { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cupom__codigo code {
  font-family: var(--f-rotulo); font-weight: 700; font-size: 1.2rem; letter-spacing: .12em;
  padding: 6px 12px; border-radius: 10px; background: rgba(46, 1, 32, .08);
}
.copiar {
  border: 0; cursor: pointer; padding: 10px 16px; border-radius: 999px;
  background: var(--vinho); color: var(--creme);
  font-family: var(--f-rotulo); font-weight: 600; font-size: .9rem;
  transition: background .2s, transform .2s;
}
.copiar:hover { background: var(--vinho-3); }
.copiar.ok { background: #1f8a4c; }
.cupom small { color: var(--tinta-2); font-size: .8rem; }

/* ---------- cases ---------- */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case {
  position: relative; overflow: hidden; border-radius: var(--r-card);
  min-height: 480px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; isolation: isolate;
  box-shadow: var(--sombra);
}
.case > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.case::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,6,12,0) 20%, rgba(15,6,12,.72) 55%, rgba(46,1,32,.97)); }
.case:hover > img { transform: scale(1.06); }
.case__tipo { font-family: var(--f-rotulo); font-weight: 600; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cheddar); }
.case__metrica { font-family: var(--f-display); font-size: clamp(2.6rem, 4.4vw, 3.4rem); line-height: .9; margin: 10px 0 4px; }
.case__metrica small { display: block; font-family: var(--f-rotulo); font-weight: 500; font-size: .95rem; color: var(--texto-2); margin-top: 6px; letter-spacing: 0; }
.case h3 { font-family: var(--f-rotulo); font-weight: 700; font-size: 1.2rem; margin: 14px 0 8px; }
.case p { color: var(--texto-2); font-size: .95rem; margin: 0; }

/* ---------- avaliações ---------- */
.nota-google {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px;
  padding: 24px 28px; border-radius: var(--r-card);
  background: var(--preto-2); box-shadow: inset 0 0 0 1px var(--linha);
  margin-bottom: 28px;
}
.nota-google__valor { font-family: var(--f-display); font-size: 3.4rem; line-height: 1; color: var(--creme); }
.nota-google__info { display: flex; flex-direction: column; gap: 2px; }
.nota-google__info span { color: var(--texto-2); font-size: .95rem; }
.nota-google .ctas { margin-left: auto; }
.estrelas { display: inline-flex; gap: 2px; color: var(--cheddar); }
.estrelas svg { width: 20px; height: 20px; }
.estrelas .vazia { color: rgba(255, 246, 234, .2); }
.avaliacoes {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 1fr);
  gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 18px;
  scrollbar-width: thin; scrollbar-color: var(--vinho-3) transparent;
}
.avaliacao {
  scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 14px;
  padding: 26px; border-radius: var(--r-card);
  background: var(--creme); color: var(--tinta);
}
.avaliacao__topo { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none; overflow: hidden;
  display: grid; place-items: center;
  background: var(--vinho); color: var(--creme); font-family: var(--f-rotulo); font-weight: 600; font-size: 1.1rem;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avaliacao__nome { font-family: var(--f-rotulo); font-weight: 600; line-height: 1.2; }
.avaliacao__quando { font-size: .82rem; color: var(--tinta-2); }
.avaliacao p { margin: 0; color: var(--tinta-2); font-size: .98rem; }
.avaliacao .estrelas .vazia { color: rgba(46, 1, 32, .15); }
.avaliacao__fonte { margin-top: auto; display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--tinta-2); }
.avaliacao__fonte svg { width: 16px; height: 16px; }
.aviso-demo {
  margin-top: 14px; font-size: .85rem; color: var(--texto-3);
  display: flex; gap: 8px; align-items: flex-start;
}
.aviso-demo::before { content: "i"; flex: none; width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 800; background: var(--linha); color: var(--texto-2); }
.secao--creme .aviso-demo { color: var(--tinta-2); }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
.faq__lista { display: flex; flex-direction: column; gap: 12px; }
.pergunta {
  border-radius: 18px; background: rgba(46, 1, 32, .05); box-shadow: inset 0 0 0 1px rgba(46, 1, 32, .1);
  transition: background .3s;
}
.pergunta[open] { background: #fff; box-shadow: inset 0 0 0 1px rgba(46, 1, 32, .18), 0 18px 40px -24px rgba(46,1,32,.4); }
.pergunta summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  font-family: var(--f-rotulo); font-weight: 600; font-size: 1.08rem; color: var(--vinho);
}
.pergunta summary::-webkit-details-marker { display: none; }
.pergunta summary i {
  position: relative; flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--vinho);
  transition: transform .35s var(--ease), background .3s;
}
.pergunta summary i::before, .pergunta summary i::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2.5px; margin: -1.25px 0 0 -6px; border-radius: 2px; background: var(--creme);
}
.pergunta summary i::after { transform: rotate(90deg); transition: transform .35s var(--ease); }
.pergunta[open] summary i { transform: rotate(180deg); background: var(--vinho-3); }
.pergunta[open] summary i::after { transform: rotate(0); }
.pergunta__resposta { padding: 0 22px 22px; color: var(--tinta-2); }
.pergunta__resposta p:last-child { margin: 0; }
.pergunta__resposta a { color: var(--vinho-3); font-weight: 700; }

/* ---------- local, mapa e rotas ---------- */
.local { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 4vw, 48px); align-items: stretch; }
.local__info { display: flex; flex-direction: column; gap: 22px; }
.bloco-info { padding: 24px; border-radius: var(--r-card); background: var(--preto-2); box-shadow: inset 0 0 0 1px var(--linha); }
.bloco-info h3 { font-family: var(--f-rotulo); font-weight: 600; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cheddar); margin-bottom: 10px; }
.bloco-info address { font-style: normal; font-size: 1.1rem; line-height: 1.5; }
.horarios { width: 100%; border-collapse: collapse; font-size: .98rem; }
.horarios td { padding: 7px 0; border-bottom: 1px solid var(--linha); color: var(--texto-2); }
.horarios td:last-child { text-align: right; }
.horarios tr:last-child td { border-bottom: 0; }
.horarios tr.hoje td { color: var(--creme); font-weight: 800; }
.horarios tr.hoje td:first-child::after {
  content: "hoje"; margin-left: 8px; padding: 2px 8px; border-radius: 999px; vertical-align: 2px;
  background: var(--cheddar); color: var(--vinho); font-family: var(--f-rotulo); font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
}
.rotas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.rota {
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 10px;
  border-radius: 16px; text-decoration: none; text-align: center;
  background: rgba(255, 246, 234, .06); box-shadow: inset 0 0 0 1px var(--linha);
  font-family: var(--f-rotulo); font-weight: 600; font-size: .92rem;
  transition: background .2s, transform .2s var(--ease);
}
.rota:hover { background: rgba(255, 246, 234, .12); transform: translateY(-3px); }
.rota svg { width: 26px; height: 26px; color: var(--cheddar); }
.mapa {
  position: relative; overflow: hidden; min-height: 460px; border-radius: var(--r-bloco);
  background: var(--vinho-2); box-shadow: var(--sombra);
}
.mapa iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.05); }
.mapa__capa {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  padding: 28px; text-align: center;
  background:
    linear-gradient(rgba(46, 1, 32, .82), rgba(46, 1, 32, .92)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255,246,234,.06) 38px 40px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255,246,234,.06) 38px 40px),
    var(--vinho);
}
.mapa__capa svg { width: 56px; height: 56px; color: var(--cheddar); animation: quica 2s ease-in-out infinite; }
@keyframes quica { 50% { transform: translateY(-8px); } }
.mapa__capa p { max-width: 36ch; color: var(--texto-2); font-size: .92rem; margin: 0; }

/* ---------- CTA final ---------- */
.cta-final {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--r-bloco); padding: clamp(48px, 8vw, 100px) clamp(24px, 6vw, 80px);
  background: var(--vinho);
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; align-items: center;
}
.cta-final::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 90% at 100% 100%, rgba(255, 184, 28, .25), transparent 60%), radial-gradient(40% 60% at 0% 0%, rgba(110, 26, 82, .8), transparent 70%);
}
.cta-final img { width: 100%; max-width: 300px; justify-self: center; filter: drop-shadow(0 20px 30px rgba(0,0,0,.5)); animation: flutua2 6s ease-in-out infinite; }
@keyframes flutua2 { 50% { transform: translateY(-12px) rotate(-3deg); } }
.cta-final .lead { margin: 18px 0 30px; }

/* ---------- formulário ---------- */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.campo { display: flex; flex-direction: column; gap: 8px; }
.campo--todo { grid-column: 1 / -1; }
.campo label { font-family: var(--f-rotulo); font-weight: 600; font-size: .92rem; }
.campo input, .campo select, .campo textarea {
  width: 100%; min-height: 54px; padding: 14px 16px;
  border-radius: 14px; border: 2px solid rgba(46, 1, 32, .14);
  background: #fff; color: var(--tinta); font: inherit; font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.campo textarea { min-height: 130px; resize: vertical; }
.campo input:focus, .campo select:focus, .campo textarea:focus { outline: 0; border-color: var(--vinho-3); box-shadow: 0 0 0 4px rgba(110, 26, 82, .15); }
.campo input[aria-invalid="true"] { border-color: #c62828; }
.check { grid-column: 1 / -1; display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--tinta-2); }
.check input { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--vinho); flex: none; }
.check a { color: var(--vinho-3); font-weight: 700; }
.form__rodape { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 6px; }
.form__rodape .promessa { color: var(--tinta-2); }
.form__erro { grid-column: 1 / -1; color: #c62828; font-weight: 700; font-size: .92rem; margin: 0; }
.cartao-form { padding: clamp(24px, 4vw, 44px); border-radius: var(--r-bloco); background: var(--creme); color: var(--tinta); box-shadow: var(--sombra); }

/* ---------- cardápio completo ---------- */
.abas {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 6, 12, .9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--linha);
  transition: top .4s var(--ease);
}
body.topo-visivel .abas { top: var(--topo-h); }
.abas__trilho { display: flex; gap: 8px; overflow-x: auto; padding: 14px 0; scrollbar-width: none; }
.abas__trilho::-webkit-scrollbar { display: none; }
.abas a {
  flex: none; padding: 10px 18px; border-radius: 999px; text-decoration: none;
  font-family: var(--f-rotulo); font-weight: 600; font-size: .95rem; color: var(--texto-2);
  box-shadow: inset 0 0 0 1.5px var(--linha); transition: background .2s, color .2s, box-shadow .2s;
}
.abas a:hover { color: var(--creme); box-shadow: inset 0 0 0 1.5px var(--creme); }
.abas a.ativa { background: var(--creme); color: var(--vinho); box-shadow: none; }
.categoria { padding: clamp(56px, 8vw, 96px) 0 0; }
.categoria:last-of-type { padding-bottom: clamp(80px, 10vw, 120px); }
.categoria__cabeca { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.categoria__cabeca p { color: var(--texto-2); margin: 0; max-width: 52ch; }
.lista { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center;
  padding: 16px 0; border-bottom: 1px dashed var(--linha);
}
.item__foto { width: 84px; height: 84px; border-radius: 18px; overflow: hidden; }
.item__foto img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.item:hover .item__foto img { transform: scale(1.1) rotate(2deg); }
.item h3 { font-family: var(--f-rotulo); font-weight: 700; font-size: 1.12rem; line-height: 1.25; }
.item h3 .novo { margin-left: 6px; padding: 2px 8px; border-radius: 999px; background: var(--cheddar); color: var(--vinho); font-size: .68rem; vertical-align: 2px; letter-spacing: .06em; text-transform: uppercase; }
.item p { margin: 4px 0 0; font-size: .92rem; color: var(--texto-2); line-height: 1.45; }
.item__lado { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.item__lado a {
  font-family: var(--f-rotulo); font-weight: 600; font-size: .85rem; color: var(--creme);
  text-decoration: none; padding: 6px 12px; border-radius: 999px; box-shadow: inset 0 0 0 1.5px var(--linha);
  transition: background .2s;
}
.item__lado a:hover { background: var(--creme); color: var(--vinho); }
.item--sem-foto { grid-template-columns: 1fr auto; }

/* ---------- passos (franquia) ---------- */
.passos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: passo; }
.passo { position: relative; padding: 28px 24px; border-radius: var(--r-card); background: rgba(255,246,234,.05); box-shadow: inset 0 0 0 1px var(--linha); }
.passo::before {
  counter-increment: passo; content: "0" counter(passo);
  display: block; font-family: var(--f-display); font-size: 2.6rem; line-height: 1; color: var(--cheddar); margin-bottom: 14px;
}
.passo h3 { font-family: var(--f-rotulo); font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; }
.passo p { color: var(--texto-2); font-size: .95rem; margin: 0; }

/* ---------- galeria ---------- */
.galeria { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.galeria figure { margin: 0; overflow: hidden; border-radius: 18px; }
.galeria figure:nth-child(1) { grid-row: span 2; }
.galeria figure:nth-child(4) { grid-row: span 2; }
.galeria img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s; }
.galeria figure:hover img { transform: scale(1.06); }

/* ---------- valores ---------- */
.valores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.valor { padding: 30px 26px; border-radius: var(--r-card); background: #fff; box-shadow: 0 18px 40px -28px rgba(46,1,32,.5); }
.valor__icone { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--vinho); color: var(--cheddar); margin-bottom: 18px; }
.valor__icone svg { width: 28px; height: 28px; }
.valor h3 { font-family: var(--f-display); font-size: 1.6rem; line-height: 1; margin-bottom: 10px; color: var(--vinho); }

/* ---------- canais de contato ---------- */
.canais { display: grid; gap: 12px; }
.canal {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: 18px;
  background: var(--preto-2); box-shadow: inset 0 0 0 1px var(--linha); text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.canal:hover { transform: translateX(6px); box-shadow: inset 0 0 0 1px rgba(255,184,28,.5); }
.canal__icone { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--vinho); color: var(--cheddar); flex: none; }
.canal__icone svg { width: 24px; height: 24px; }
.canal strong { display: block; font-family: var(--f-rotulo); font-weight: 600; }
.canal span { display: block; font-size: .9rem; color: var(--texto-2); }
.canal .seta { margin-left: auto; color: var(--cheddar); transition: transform .25s var(--ease); }
.canal:hover .seta { transform: translateX(4px); }
.duas-colunas { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }

/* ---------- texto longo (política) ---------- */
.texto-longo { max-width: 780px; }
.texto-longo h2 { font-family: var(--f-rotulo); font-weight: 700; font-size: 1.45rem; margin: 44px 0 14px; color: var(--vinho); }
.texto-longo h3 { font-family: var(--f-rotulo); font-weight: 700; font-size: 1.12rem; margin: 26px 0 10px; color: var(--vinho); }
.texto-longo ul { padding-left: 1.2em; color: var(--tinta-2); }
.texto-longo li { margin-bottom: 8px; }
.texto-longo a { color: var(--vinho-3); font-weight: 700; }
.tabela { width: 100%; border-collapse: collapse; font-size: .92rem; margin: 10px 0 20px; }
.tabela th, .tabela td { text-align: left; padding: 10px 12px; border-bottom: 1px solid rgba(46,1,32,.12); vertical-align: top; }
.tabela th { font-family: var(--f-rotulo); font-weight: 600; color: var(--vinho); background: rgba(46,1,32,.05); }
.tabela-rolagem { overflow-x: auto; }

/* ---------- rodapé ---------- */
.rodape { background: var(--preto); padding: clamp(64px, 8vw, 96px) 0 calc(32px + env(safe-area-inset-bottom)); border-top: 1px solid var(--linha); }
.rodape__grade { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; }
.rodape__marca img { height: 110px; width: auto; margin-bottom: 18px; }
.rodape__marca p { color: var(--texto-2); font-size: .95rem; max-width: 34ch; }
.rodape h2 { font-family: var(--f-rotulo); font-weight: 600; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cheddar); margin-bottom: 16px; }
.rodape ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.rodape a { color: var(--texto-2); text-decoration: none; transition: color .2s; }
.rodape a:hover { color: var(--creme); }
.rodape address { font-style: normal; color: var(--texto-2); font-size: .95rem; }
.sociais { display: flex; gap: 10px; margin-top: 18px; }
.sociais a {
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(255,246,234,.06); box-shadow: inset 0 0 0 1px var(--linha);
  transition: background .2s, transform .2s var(--ease);
}
.sociais a:hover { background: var(--vinho-3); transform: translateY(-3px) rotate(-6deg); }
.sociais svg { width: 20px; height: 20px; color: var(--creme); }
.rodape__base {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--linha);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: .86rem; color: var(--texto-3);
}
.rodape__base nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.rodape__base button { background: none; border: 0; padding: 0; cursor: pointer; color: var(--texto-2); font-size: inherit; }
.rodape__base button:hover { color: var(--creme); }

/* ---------- CTA fixo no celular ---------- */
.cta-movel {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 95;
  display: none; grid-template-columns: 1fr auto; gap: 10px;
  padding: 10px; border-radius: 22px;
  background: rgba(46, 1, 32, .92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,.7), inset 0 0 0 1px var(--linha);
  transform: translateY(140%); transition: transform .45s var(--ease);
}
.cta-movel.visivel { transform: none; }
.cta-movel .btn { min-height: 52px; box-shadow: 0 3px 0 var(--sombra-btn); }
.cta-movel .btn--contorno { width: 52px; padding: 0; box-shadow: inset 0 0 0 2px var(--linha); }
.cta-movel__texto { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.cta-movel__texto small { font-family: var(--f-texto); font-weight: 600; font-size: .72rem; opacity: .75; }

/* ---------- cookies ---------- */
.cookies {
  position: fixed; left: 16px; bottom: 16px; z-index: 150;
  width: min(440px, calc(100vw - 32px));
  padding: 24px; border-radius: 24px;
  background: var(--creme); color: var(--tinta);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.8);
  transform: translateY(30px); opacity: 0; visibility: hidden;
  transition: transform .5s var(--ease), opacity .4s, visibility .5s;
}
.cookies.visivel { transform: none; opacity: 1; visibility: visible; }
.cookies .cookies__titulo { display: flex; align-items: center; gap: 10px; font-family: var(--f-display); font-size: 1.5rem; line-height: 1; color: var(--vinho); margin-bottom: 10px; }
.cookies__titulo svg { width: 30px; height: 30px; flex: none; }
.cookies p { font-size: .92rem; color: var(--tinta-2); margin-bottom: 16px; }
.cookies p a { color: var(--vinho-3); font-weight: 700; }
.cookies__botoes { display: flex; flex-wrap: wrap; gap: 10px; }
.cookies__botoes .btn { flex: 1 1 auto; min-height: 46px; font-size: .95rem; }
.cookies [data-ck="salvar"] { display: none; }
.cookies.personalizar [data-ck="salvar"] { display: inline-flex; }
.cookies.personalizar [data-ck="personalizar"] { display: none; }
.cookies__titulo svg { color: var(--vinho-3); }
.cookies__prefs { display: none; margin: 4px 0 16px; border-radius: 16px; background: rgba(46,1,32,.05); }
.cookies.personalizar .cookies__prefs { display: block; }
.pref { display: flex; gap: 14px; align-items: flex-start; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid rgba(46,1,32,.08); }
.pref:last-child { border-bottom: 0; }
.pref strong { display: block; font-family: var(--f-rotulo); font-weight: 600; font-size: .95rem; color: var(--vinho); }
.pref span { display: block; font-size: .82rem; color: var(--tinta-2); line-height: 1.4; }
.chave { position: relative; flex: none; width: 48px; height: 28px; margin-top: 2px; }
.chave input { position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0; z-index: 1; }
.chave i { position: absolute; inset: 0; border-radius: 999px; background: rgba(46,1,32,.2); transition: background .2s; }
.chave i::after { content: ""; position: absolute; left: 3px; top: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,.25); transition: transform .25s var(--ease); }
.chave input:checked + i { background: var(--vinho); }
.chave input:checked + i::after { transform: translateX(20px); }
.chave input:disabled + i { opacity: .55; }
.chave input:focus-visible + i { outline: 3px solid var(--cheddar); outline-offset: 2px; }

/* ---------- aviso (toast) ---------- */
.toast {
  position: fixed; left: 50%; bottom: 100px; z-index: 160; transform: translate(-50%, 20px);
  padding: 12px 20px; border-radius: 999px; background: var(--creme); color: var(--vinho);
  font-family: var(--f-rotulo); font-weight: 600; box-shadow: var(--sombra);
  opacity: 0; transition: opacity .3s, transform .3s var(--ease); pointer-events: none;
}
.toast.visivel { opacity: 1; transform: translate(-50%, 0); }

/* ---------- páginas simples (obrigado / 404 / links) ---------- */
.simples {
  min-height: 100svh; display: grid; place-items: center; text-align: center;
  padding: calc(var(--topo-h) + 40px) var(--gutter) 60px;
  background: radial-gradient(60% 60% at 50% 30%, rgba(110,26,82,.6), transparent 70%), var(--preto);
}
.simples__caixa { max-width: 640px; }
.simples .display { margin: 18px 0 20px; }
.simples .lead { margin: 0 auto 32px; }
.simples .ctas { justify-content: center; }
.simples__logo { width: 150px; margin: 0 auto; }
.grande-404 {
  font-family: var(--f-display); font-size: clamp(8rem, 30vw, 15rem); line-height: .8; color: var(--cheddar);
  display: flex; justify-content: center; align-items: center; gap: .05em;
}
.grande-404 img { width: .78em; height: auto; animation: gira-lento 8s ease-in-out infinite; }
@keyframes gira-lento { 50% { transform: rotate(-14deg) scale(1.05); } }
.proximos { text-align: left; display: grid; gap: 12px; margin: 0 auto 34px; max-width: 480px; }
.proximos li { list-style: none; display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: 16px; background: rgba(255,246,234,.05); box-shadow: inset 0 0 0 1px var(--linha); color: var(--texto-2); }
.proximos b { font-family: var(--f-display); font-size: 1.4rem; line-height: 1; color: var(--cheddar); }
.proximos ol, ol.proximos { padding: 0; }

.links-pagina { min-height: 100svh; padding: 48px var(--gutter) 60px; background: radial-gradient(70% 50% at 50% 0%, rgba(110,26,82,.7), transparent 70%), var(--preto); }
.links-caixa { max-width: 480px; margin: 0 auto; text-align: center; }
.links-caixa > img { width: 132px; margin: 0 auto 18px; }
.links-caixa h1 { font-family: var(--f-display); font-size: 2.1rem; line-height: 1; margin-bottom: 8px; }
.links-caixa > p { color: var(--texto-2); margin-bottom: 26px; }
.links-lista { display: grid; gap: 12px; }
.link-bio {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 18px; text-align: left;
  background: rgba(255,246,234,.06); box-shadow: inset 0 0 0 1px var(--linha); text-decoration: none;
  font-family: var(--f-rotulo); font-weight: 600; font-size: 1.05rem;
  transition: transform .25s var(--ease), background .25s;
}
.link-bio:hover { transform: scale(1.02); background: rgba(255,246,234,.1); }
.link-bio--destaque { background: var(--creme); color: var(--vinho); box-shadow: 0 5px 0 var(--cheddar); }
.link-bio--destaque:hover { background: #fff; }
.link-bio svg { width: 24px; height: 24px; flex: none; color: var(--cheddar); }
.link-bio--destaque svg { color: var(--vinho-3); }
.link-bio small { display: block; font-family: var(--f-texto); font-weight: 500; font-size: .82rem; opacity: .7; }
.link-bio .seta { margin-left: auto; opacity: .6; }

/* ==========================================================================
   MOVIMENTO AO ROLAR
   Só liga quando o JavaScript confirma que está rodando (classe .js no <html>).
   ========================================================================== */
.js [data-rev] {
  opacity: 0;
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease), clip-path 1.1s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.js [data-rev="sobe"] { transform: translateY(46px); }
.js [data-rev="esq"] { transform: translateX(-60px); }
.js [data-rev="dir"] { transform: translateX(60px); }
.js [data-rev="zoom"] { transform: scale(.88); filter: blur(6px); }
.js [data-rev="gira"] { transform: translateY(40px) rotate(-6deg); }
.js [data-rev="cortina"] { opacity: 1; clip-path: inset(100% 0 0 0 round var(--r-card)); }
.js [data-rev="cortina"] img { transform: scale(1.25); transition: transform 1.4s var(--ease); }
.js [data-rev="letras"] { opacity: 1; }
.js [data-rev].visto { opacity: 1; transform: none; filter: none; }
.js [data-rev="cortina"].visto { clip-path: inset(0 0 0 0 round var(--r-card)); }
.js [data-rev="cortina"].visto img { transform: none; }

/* título que entra palavra por palavra */
.palavra { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .06em; margin-bottom: -.06em; }
.palavra > span { display: inline-block; transform: translateY(105%) rotate(4deg); transition: transform .9s var(--ease); transition-delay: calc(var(--w, 0) * 70ms + var(--i, 0) * 90ms); }
.visto .palavra > span, .no-js .palavra > span { transform: none; }

/* entrada do herói ao abrir a página */
.js .entra { opacity: 0; transform: translateY(30px); filter: blur(8px); animation: entra 1s var(--ease) forwards; animation-delay: calc(var(--i, 0) * 110ms + 150ms); }
@keyframes entra { to { opacity: 1; transform: none; filter: none; } }

/* ---------- responsivo ---------- */
@media (max-width: 1080px) {
  .menu { display: none; }
  .hamburguer { display: block; }
  .topo__cta { display: none; }
  .grade-4 { grid-template-columns: repeat(2, 1fr); }
  .passos { grid-template-columns: repeat(2, 1fr); }
  .rodape__grade { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --topo-h: 72px; }
  .topo__logo img { height: 52px; }
  .heroi { min-height: auto; padding-top: calc(var(--topo-h) + 32px); }
  .heroi__grade, .sobre, .faq, .local, .cta-final, .duas-colunas { grid-template-columns: 1fr; }
  .heroi__foto { width: min(88%, 400px); margin-top: 8px; }
  .selo { left: -18px; width: 112px; height: 112px; }
  .selo strong { font-size: 1.5rem; }
  .selo svg text { font-size: 11px; }
  .etiqueta-flutuante { right: -8px; }
  .rolar { display: none; }
  .sobre__fotos { min-height: 440px; order: 2; }
  .grade-3, .cases, .valores { grid-template-columns: 1fr; }
  .cases .case { min-height: 420px; }
  .lista { grid-template-columns: 1fr; }
  .galeria { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .cta-final img { max-width: 200px; grid-row: 1; }
  .mapa { min-height: 380px; }
  .cta-movel { display: grid; }
  .rodape { padding-bottom: calc(110px + env(safe-area-inset-bottom)); }
  .cookies { bottom: calc(96px + env(safe-area-inset-bottom)); }
  .grade-3.rolagem-movel {
    display: grid; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 82%;
    overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: none;
  }
  .grade-3.rolagem-movel > * { scroll-snap-align: start; }
}
@media (max-width: 600px) {
  .js [data-rev="esq"], .js [data-rev="dir"] { transform: translateY(40px); }
  body { font-size: 16px; }
  .numeros { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .numero { padding: 16px 12px; }
  .numero span { font-size: .8rem; }
  .form { grid-template-columns: 1fr; }
  .passos, .grade-4 { grid-template-columns: 1fr; }
  .rodape__grade { grid-template-columns: 1fr; gap: 32px; }
  .nota-google .ctas { margin-left: 0; width: 100%; }
  .nota-google .ctas .btn { flex: 1; }
  .avaliacoes { grid-auto-columns: 86%; }
  .item { grid-template-columns: 64px 1fr; }
  .item__foto { width: 64px; height: 64px; border-radius: 14px; }
  .item__lado { grid-column: 2; flex-direction: row; justify-content: space-between; align-items: center; }
  .item--sem-foto { grid-template-columns: 1fr; }
  .item--sem-foto .item__lado { grid-column: 1; }
  .ctas .btn { flex: 1 1 100%; }
  .rotas { grid-template-columns: repeat(3, 1fr); }
  .cookies { left: 12px; right: 12px; width: auto; padding: 20px; }
}

/* quem pediu menos movimento recebe o site parado */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; transition-delay: 0s !important; scroll-behavior: auto !important; }
  .js [data-rev], .js .entra { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
  .palavra > span { transform: none !important; }
  .heroi__fundo, .heroi__moldura img, .pagina-topo__img img { transform: none !important; }
}
