/* =========================================================================
   STUDIO PETERSEN ART TATTOO — Landing
   Direção: editorial preto & branco (modelo Bang Bang) + âmbar #FFB600 discreto
   Tipografia: Archivo (display/UI) + Fraunces italic (acentos emocionais)
   Mobile-first. Um só objetivo: clique no WhatsApp.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --ink:        #0a0a0a;   /* preto quase puro (fundo) */
  --ink-soft:   #141414;
  --ink-card:   #171717;
  --paper:      #f7f5f2;   /* off-white quente */
  --paper-dim:  #e7e3dc;
  --amber:      #ffb600;   /* amarelo da marca — uso cirúrgico */
  --amber-deep: #e0a000;

  --on-dark:        #f7f5f2;
  --on-dark-mut:    rgba(247, 245, 242, 0.60);
  --on-dark-faint:  rgba(247, 245, 242, 0.12);
  --on-light:       #0a0a0a;
  --on-light-mut:   #5a554e;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-accent:  "Fraunces", Georgia, "Times New Roman", serif;

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;

  --radius: 2px;
  --z-nav: 100;
  --z-float: 90;
  --z-overlay: 200;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

/* ---------- Film grain (detalhe invisível) ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 12vw, 9rem); position: relative; }
.section--light { background: var(--paper); color: var(--on-light); }
.section--light .eyebrow { color: var(--on-light-mut); }

/* ---------- Tipografia / escala ---------- */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--amber);
}

.display {
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
.h-hero   { font-size: clamp(2.05rem, 8.4vw, 6rem); }
.h-1      { font-size: clamp(2.1rem, 6.5vw, 4.2rem); }
.h-2      { font-size: clamp(1.6rem, 4vw, 2.6rem); }
.lead     { font-size: clamp(1.05rem, 2.2vw, 1.3rem); line-height: 1.6; color: var(--on-dark-mut); max-width: 52ch; }
.section--light .lead { color: var(--on-light-mut); }

.accent { font-family: var(--font-accent); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -0.01em; }
.amber  { color: var(--amber); }

/* ---------- Botões ---------- */
.btn {
  --bg: var(--amber);
  --fg: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 1.05em 1.8em;
  background: var(--bg);
  color: var(--fg);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -10px rgba(255, 182, 0, 0.5); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--on-dark);
  border: 1px solid var(--on-dark-faint);
}
.btn--ghost:hover { --bg: rgba(247,245,242,0.06); box-shadow: none; border-color: var(--amber); }
.section--light .btn--ghost { --fg: var(--on-light); border-color: rgba(10,10,10,0.18); }
.section--light .btn--ghost:hover { --bg: rgba(10,10,10,0.04); }

.btn--lg { padding: 1.25em 2.4em; font-size: 0.9rem; }

/* ---------- Nav (barra branca: logo central no topo -> atalhos no scroll) ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  background: var(--paper);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  transition: background 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
}
.nav.scrolled { box-shadow: 0 6px 24px -16px rgba(0, 0, 0, 0.3); }
.nav__bar { position: relative; min-height: 72px; transition: min-height 0.55s var(--ease); }
.nav.scrolled .nav__bar { min-height: 62px; }

.nav__logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); line-height: 0; transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.nav__logo img { height: 48px; width: auto; transition: height 0.55s var(--ease); }

/* atalhos: escondidos no topo, surgem ao rolar (em TODAS as telas) como botões "ghost" */
.nav__links {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -38%);
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem;
  max-width: 94vw; opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.55s var(--ease);
}
.nav__links a {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
  color: var(--on-dark); padding: 0.55em 0.9em; border: 1px solid rgba(247, 245, 242, 0.28); border-radius: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav__links a:hover { border-color: var(--amber); color: var(--amber); background: rgba(247, 245, 242, 0.05); }

/* ao rolar: a barra branca some (vira translúcida escura), a logo some e os atalhos aparecem */
.nav.scrolled { background: rgba(10, 10, 10, 0.62); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: none; border-bottom-color: var(--on-dark-faint); }
.nav.scrolled .nav__links { opacity: 1; transform: translate(-50%, -50%); pointer-events: auto; }
.nav.scrolled .nav__logo { opacity: 0; transform: translate(-50%, -50%) scale(0.92); pointer-events: none; }

@media (min-width: 940px) {
  .nav__links { gap: 0.9rem; }
  .nav__links a { font-size: 0.74rem; padding: 0.62em 1.15em; letter-spacing: 0.12em; }
}

/* mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 9vw, 3rem); text-transform: uppercase; letter-spacing: -0.01em; color: var(--on-dark); padding-block: 0.3rem; transition: color 0.2s, padding-left 0.3s var(--ease); }
.mobile-menu a:hover { color: var(--amber); padding-left: 0.5rem; }
.mobile-menu .btn { margin-top: 2rem; align-self: flex-start; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 5rem 2.5rem;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: grayscale(1) contrast(1.05); }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--ink) 2%, rgba(10,10,10,0.55) 52%, rgba(10,10,10,0.80) 100%),
    linear-gradient(to right, rgba(10,10,10,0.65), rgba(10,10,10,0.12) 70%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; min-width: 0; text-align: center; }
.hero__title { margin: 0 auto 1.4rem; max-width: min(22ch, 100%); overflow-wrap: anywhere; }
.hero__subtitle {
  font-family: var(--font-accent); font-style: italic; font-weight: 400;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  color: var(--on-dark-mut);
  max-width: 28ch; margin: 0 auto clamp(2.8rem, 7vw, 4.5rem);
  min-height: 1.5em;
}
.hero__subtitle .type-char { color: var(--on-dark-mut); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; justify-content: center; }
.hero__trust { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; align-items: center; padding-top: 1.6rem; border-top: 1px solid var(--on-dark-faint); }
.trust-item { display: flex; flex-direction: column; gap: 0.1rem; }
.trust-item b { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; line-height: 1; }
.trust-item span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-mut); }

.scroll-cue { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); z-index: 1; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--on-dark-mut); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.scroll-cue::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--amber), transparent); animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Marquee (faixa de credibilidade) ---------- */
.marquee { background: var(--amber); color: var(--ink); overflow: hidden; padding-block: 0.85rem; border-block: 1px solid var(--ink); }
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: marquee 28s linear infinite; }
.marquee span { font-weight: 800; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 3rem; }
.marquee span::after { content: "✦"; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Section header ---------- */
.section-head { max-width: 60ch; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head .h-1 { margin-top: 0.8rem; }

/* ---------- Galeria (o trabalho falando) ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink-card);
  cursor: zoom-in;
  aspect-ratio: 4 / 5;
  transition: opacity 0.4s var(--ease);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.03); transition: filter 0.6s var(--ease), transform 0.7s var(--ease); }
.gallery__item:hover img { filter: grayscale(0) contrast(1); transform: scale(1.07); }
/* dá foco: escurece levemente as demais quando uma peça está em hover */
.gallery:hover .gallery__item:not(:hover) { opacity: 0.4; }
.gallery__item::after {
  content: "VER";
  position: absolute; inset: auto 0 0 0;
  padding: 1.6rem 1rem 0.9rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  background: linear-gradient(transparent, rgba(10,10,10,0.85));
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.gallery__item:hover::after { opacity: 1; transform: translateY(0); }
.gallery__more { text-align: center; margin-top: 2.5rem; }

/* ---------- Autoridade (o Dudu) ---------- */
.authority { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.authority__media { position: relative; }
.authority__media img { width: 100%; border-radius: var(--radius); filter: grayscale(1) contrast(1.04); }
.authority__media::before {
  content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--amber); border-radius: var(--radius); z-index: -1;
}
.authority__sig { font-family: var(--font-accent); font-style: italic; font-size: 1.4rem; color: var(--on-light-mut); margin-top: 1.4rem; }
.feat-list { display: grid; gap: 1.1rem; margin-top: 2rem; }
.feat-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.feat-list svg { width: 22px; height: 22px; color: var(--amber); flex: none; margin-top: 2px; }
.feat-list b { font-weight: 700; }
.feat-list p { color: var(--on-light-mut); font-size: 0.96rem; }

/* ---------- Como funciona ---------- */
.steps { display: grid; gap: 1px; background: var(--on-dark-faint); border: 1px solid var(--on-dark-faint); border-radius: var(--radius); overflow: hidden; }
.step { background: var(--ink); padding: clamp(1.6rem, 4vw, 2.6rem); display: flex; flex-direction: column; gap: 0.7rem; transition: background 0.3s; }
.step:hover { background: var(--ink-soft); }
.step__n { font-family: var(--font-display); font-weight: 800; font-size: 0.85rem; color: var(--amber); letter-spacing: 0.1em; }
.step h3 { font-weight: 700; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.01em; }
.step p { color: var(--on-dark-mut); font-size: 0.95rem; }

/* ---------- Objeções (acordeão) ---------- */
.faq { display: grid; gap: 0; max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid rgba(10,10,10,0.12); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left; padding: 1.5rem 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 2.5vw, 1.3rem); }
.faq__q .ico { flex: none; width: 26px; height: 26px; position: relative; transition: transform 0.3s var(--ease); }
.faq__q .ico::before, .faq__q .ico::after { content: ""; position: absolute; inset: 50% 0 auto 0; height: 2px; background: var(--amber); transform: translateY(-50%); transition: transform 0.3s var(--ease); }
.faq__q .ico::after { transform: translateY(-50%) rotate(90deg); }
.faq__item.open .ico::after { transform: translateY(-50%) rotate(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a p { padding-bottom: 1.5rem; color: var(--on-light-mut); max-width: 70ch; }

/* ---------- Depoimentos ---------- */
.tts { display: grid; gap: 1px; background: var(--on-dark-faint); border: 1px solid var(--on-dark-faint); border-radius: var(--radius); overflow: hidden; }
.tt { background: var(--ink); padding: clamp(1.6rem, 4vw, 2.4rem); display: flex; flex-direction: column; gap: 1.2rem; }
.tt__stars { color: var(--amber); letter-spacing: 0.2em; font-size: 0.9rem; }
.tt__quote { font-family: var(--font-accent); font-style: italic; font-size: 1.15rem; line-height: 1.55; }
.tt__who { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.tt__who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--ink-card); border: 1px solid var(--on-dark-faint); display: grid; place-items: center; font-weight: 800; color: var(--amber); }
.tt__who b { display: block; font-weight: 700; font-size: 0.95rem; }
.tt__who span { font-size: 0.78rem; color: var(--on-dark-mut); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- CTA final ---------- */
.final { text-align: center; position: relative; overflow: hidden; }
.final__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.final .h-1 { margin-block: 1rem 1.4rem; }
.final .lead { margin-inline: auto; margin-bottom: 2.4rem; }
.final__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.16; }
.final__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }

/* ---------- Footer ---------- */
.footer { background: var(--ink-soft); border-top: 1px solid var(--on-dark-faint); padding-block: clamp(3rem, 7vw, 5rem) 2rem; }
.footer__grid { display: grid; gap: 2.5rem; }
.footer__brand img { height: 64px; margin-bottom: 1rem; }
.footer__brand p { color: var(--on-dark-mut); max-width: 36ch; font-size: 0.92rem; }
.footer h4 { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 1rem; }
.footer a, .footer address { color: var(--on-dark-mut); font-style: normal; font-size: 0.95rem; line-height: 1.9; transition: color 0.2s; }
.footer a:hover { color: var(--on-dark); }
.footer__social { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
.footer__social a { width: 42px; height: 42px; border: 1px solid var(--on-dark-faint); border-radius: 50%; display: grid; place-items: center; transition: border-color 0.2s, color 0.2s, transform 0.2s; }
.footer__social a:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--on-dark-faint); display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between; font-size: 0.78rem; color: var(--on-dark-mut); }

/* ---------- WhatsApp flutuante (logo redonda) ---------- */
.wa-float {
  position: fixed; z-index: var(--z-float);
  right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  width: 62px; height: 62px;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.55);
  transform: translateY(140%) scale(0.9); opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s, box-shadow 0.25s;
}
.wa-float.show { transform: translateY(0) scale(1); opacity: 1; }
.wa-float:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 18px 42px -8px rgba(37, 211, 102, 0.6); }
.wa-float svg { width: 60%; height: 60%; }
.wa-float .lbl { display: none; }
/* pulso suave pra chamar atenção */
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #25d366; z-index: -1;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.45; } 70%, 100% { transform: scale(1.9); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; } }

/* ---------- Placeholder (dado real a preencher) ---------- */
.ph {
  outline: 1px dashed var(--amber);
  outline-offset: 3px;
  position: relative;
}
.ph::before {
  content: "⚠ PREENCHER: " attr(data-ph);
  position: absolute; top: -0.6rem; left: 0;
  transform: translateY(-100%);
  font-family: var(--font-display); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--amber); background: rgba(0,0,0,0.7); padding: 2px 6px; border-radius: 2px;
  white-space: nowrap; pointer-events: none;
}
.section--light .ph::before { background: rgba(255,255,255,0.85); }

/* ---------- Reveal (scroll) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-cue::after { animation: none; }
  .btn:hover, .gallery__item:hover img, .wa-float:hover { transform: none; }
}

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: var(--z-overlay); background: rgba(5,5,5,0.94); display: grid; place-items: center; padding: 4vw; opacity: 0; visibility: hidden; transition: opacity 0.3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8); }
.lightbox__close { position: absolute; top: 1.4rem; right: 1.6rem; width: 48px; height: 48px; border: 1px solid var(--on-dark-faint); border-radius: 50%; display: grid; place-items: center; color: var(--on-dark); font-size: 1.4rem; transition: border-color 0.2s, background 0.2s; }
.lightbox__close:hover { border-color: var(--amber); background: rgba(255,182,0,0.1); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: 1px solid var(--on-dark-faint); border-radius: 50%; display: grid; place-items: center; font-size: 1.5rem; color: var(--on-dark); transition: border-color 0.2s, background 0.2s; }
.lightbox__nav:hover { border-color: var(--amber); }
.lightbox__nav.prev { left: 1.2rem; }
.lightbox__nav.next { right: 1.2rem; }

/* =========================================================================
   RESPONSIVO
   ========================================================================= */
@media (min-width: 560px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .tts { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
}
@media (min-width: 940px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
  .tts { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1200px) {
  .h-hero { font-size: clamp(4.6rem, 7vw, 6.8rem); }
}

/* =========================================================================
   COMPONENTES ADICIONAIS (v2)
   ========================================================================= */

/* ---------- Logo em chip claro (logo original foi feita p/ fundo claro) ---------- */
.logo-chip { background: var(--paper); padding: 7px 13px; border-radius: 9px; line-height: 0; display: inline-flex; transition: padding 0.4s var(--ease); }
.nav__logo.logo-chip img { height: 40px; }
.nav.scrolled .nav__logo.logo-chip { padding: 6px 11px; }
.nav.scrolled .nav__logo.logo-chip img { height: 34px; }
.footer__brand .logo-chip { padding: 10px 16px; border-radius: 12px; margin-bottom: 1.1rem; }
.footer__brand .logo-chip img { height: 56px; }

/* ---------- Hero: título com efeito de digitação ---------- */
.hero__title { max-width: min(22ch, 90vw); min-height: 1.92em; }
.type-out { display: inline; }
.type-char { color: var(--on-dark); transition: color 0.55s var(--ease); }
.type-char.is-new { color: var(--amber); }
.type-caret { display: inline-block; width: 0; border-right: 0.07em solid var(--amber); margin-left: 0.06em; animation: caretBlink 1.05s steps(1, end) infinite; }
@keyframes caretBlink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .type-caret { animation: none; } }

/* ---------- Faixa de stats que surge no scroll (substitui o marquee) ---------- */
.stats {
  background: var(--ink-soft);
  border-block: 1px solid var(--on-dark-faint);
  padding-block: clamp(2.4rem, 6vw, 3.6rem);
}
.stats__row { display: grid; gap: 1.8rem; text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.35rem, 2.8vw, 1.9rem); line-height: 1.05; }
.stat span { display: block; margin-top: 0.5rem; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-mut); }
@media (min-width: 768px) {
  .stats__row { grid-template-columns: repeat(3, 1fr); max-width: 980px; margin-inline: auto; }
  .stat + .stat { border-left: 1px solid var(--on-dark-faint); }
}

/* ---------- Pills de estilos ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.6rem 0; }
.pill { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.5em 0.95em; border: 1px solid rgba(10, 10, 10, 0.18); border-radius: 100px; color: var(--on-light-mut); transition: border-color 0.2s, color 0.2s, background 0.2s; }
.pill:hover { border-color: var(--amber); color: var(--on-light); }

/* ---------- Grid de equipe ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(2rem, 5vw, 3rem); }
.artist { background: none; position: relative; transition: z-index 0s; }
.artist:hover { z-index: 2; }
.artist__img { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 14px; background: var(--paper-dim); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.artist:hover .artist__img { transform: scale(1.04); box-shadow: 0 26px 54px -26px rgba(10, 10, 10, 0.5); }
.artist__img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(1) contrast(1.04); transition: filter 0.6s var(--ease); }
.artist:hover .artist__img img { filter: grayscale(0) contrast(1); }
.artist__body { padding: 1rem 0.2rem 0; }
.artist__body b { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.01em; }
.artist__body span { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-light-mut); margin-top: 0.25rem; }

/* ---------- Avaliações (estilo Google) ---------- */
.reviews__block { margin-top: clamp(3.5rem, 8vw, 5.5rem); }
.reviews__title { text-align: center; margin-bottom: 1.8rem; }
.reviews__head { display: flex; align-items: center; gap: 1rem; justify-content: center; margin-bottom: clamp(2rem, 5vw, 3rem); }
.g-badge { width: 62px; height: 62px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.35); border: 1px solid rgba(10, 10, 10, 0.08); flex: none; }
.g-badge svg { width: 32px; height: 32px; }
.reviews__score { display: flex; align-items: baseline; gap: 0.55rem; }
.reviews__score b { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: 1; }
.reviews__stars { color: #fbbc04; letter-spacing: 0.08em; font-size: 1.15rem; }
.reviews__stars .half { color: rgba(10, 10, 10, 0.18); }
.reviews__count { display: block; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-light-mut); margin-top: 0.35rem; }
.reviews__grid { display: grid; gap: 16px; }
@media (min-width: 760px) { .reviews__grid { grid-template-columns: 1fr 1fr; } }
.review { background: #fff; color: #202124; border-radius: 14px; padding: 1.5rem 1.45rem; border: 1px solid rgba(10, 10, 10, 0.08); box-shadow: 0 14px 36px -24px rgba(0, 0, 0, 0.4); }
.review__top { display: flex; align-items: center; gap: 0.8rem; }
.review__av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 1.05rem; flex: none; }
.review__id b { display: block; font-size: 0.98rem; font-weight: 700; }
.review__id span { font-size: 0.8rem; color: #5f6368; }
.review__top .g-mark { margin-left: auto; width: 22px; height: 22px; flex: none; }
.review__stars { color: #fbbc04; letter-spacing: 0.06em; font-size: 1rem; margin: 0.9rem 0 0.5rem; }
.review p { font-size: 0.95rem; line-height: 1.6; color: #3c4043; }
.reviews__more { text-align: center; margin-top: 2.2rem; }

/* ---------- Selo de segurança (estilo do print) ---------- */
.trust-band { background: var(--ink); border-top: 1px solid var(--on-dark-faint); padding-block: clamp(2.2rem, 5vw, 3.2rem); }
.trust-seal { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.6rem 2.8rem; }
.seal { display: flex; align-items: center; gap: 1rem; }
.seal__shield { width: 50px; height: 58px; flex: none; }
.seal__txt { display: flex; flex-direction: column; line-height: 1.1; }
.seal__top { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: #22c55e; }
.seal__big { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; text-transform: uppercase; letter-spacing: -0.01em; color: var(--on-dark); }
.seal__big .g { color: #22c55e; }
.seal__sub { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--on-dark-mut); }
.seal__pay { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; justify-content: center; }
.pay-chip { background: #fff; border-radius: 8px; padding: 7px 12px; display: inline-flex; align-items: center; gap: 6px; }
.pay-chip img { display: block; width: auto; height: 20px; }
.pix-mark { width: 23px; height: 23px; flex: none; }
.pix-word { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; line-height: 1; color: #5f6368; letter-spacing: -0.02em; }

/* =========================================================================
   MOBILE: esteiras (galeria/avaliações), nav, equipe compacta, rodapé
   ========================================================================= */
.gallery-mobile, .reviews-mobile { display: none; }

@media (max-width: 767px) {
  /* perf: desliga o grão (camada fixa) no mobile */
  body::after { display: none; }

  /* NAV: fluxo normal (logo central no topo; ao rolar, some a logo e surgem os atalhos contidos na barra) */
  .nav__bar { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.4rem; padding-block: 10px; min-height: 0; }
  .nav.scrolled .nav__bar { min-height: 0; }
  .nav__logo { position: static; transform: none; }
  .nav.scrolled .nav__logo { display: none; }
  .nav__links { position: static; transform: none; display: none; max-width: 100%; gap: 0.4rem; }
  .nav.scrolled .nav__links { display: flex; opacity: 1; transform: none; pointer-events: auto; }

  /* GALERIA -> esteira de 2 fileiras (controlada por JS p/ arrastar), colorida */
  .gallery { display: none; }
  .gallery-mobile { display: block; overflow: hidden; margin-inline: calc(-1 * var(--gutter)); }
  .gmrow { display: flex; gap: 10px; width: max-content; margin-bottom: 10px; will-change: transform; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
  .gm-item { flex: none; width: clamp(150px, 44vw, 210px); aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; background: var(--ink-card); cursor: zoom-in; }
  .gm-item img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }

  /* AVALIAÇÕES -> esconde a grade estática; mostra só a esteira (1 fileira, JS) */
  .reviews__grid { display: none; }
  .reviews-mobile { display: block; overflow: hidden; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); }
  .rmrow { display: flex; gap: 12px; width: max-content; will-change: transform; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
  .rmrow .review { flex: none; width: min(80vw, 300px); }

  /* EQUIPE compacta (3 lado a lado, menores) */
  .team { gap: 8px; }
  .artist__img { border-radius: 10px; }
  .artist__body { padding: 0.6rem 0.1rem 0; }
  .artist__body b { font-size: 0.82rem; }
  .artist__body span { font-size: 0.58rem; letter-spacing: 0.08em; margin-top: 0.1rem; }

  /* RODAPÉ centralizado */
  .footer__grid { text-align: center; }
  .footer__brand .logo-chip { margin-inline: auto; }
  .footer__brand p { margin-inline: auto; }
  .footer__social { justify-content: center; }
  .footer__bottom { justify-content: center; text-align: center; }
}
