/* Direção: identidade já existe (fornecida pela cliente) — o trabalho aqui é
   ESTENDER a marca real com disciplina, não inventar uma nova. Os laços/loops
   coloridos do logo viram o motivo gráfico recorrente do site (não um ícone
   genérico de "papelaria"); as 3 categorias do próprio letreiro da loja
   (Criar / Organizar / Presentear) viram a estrutura real da seção de produtos,
   com as mesmas cores que a loja já usa na fachada. */
:root {
  --bg: #f7f2e5;
  --bg-2: #fdfaf1;
  --card: #ffffff;
  --ink: #16205a;
  --ink-muted: #5c6178;
  --line: rgba(22, 32, 90, 0.12);
  --yellow: #f0c929;
  --red: #d81f2a;
  --orange: #ef8b2e;
  --blue: #2ca9d6;
  --teal: #2fae82;
  --pink: #e8447a;
  --accent: var(--red);
  --radius: 14px;
  --max-w: 1120px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  font-size: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: "Manrope", system-ui, sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
@media (max-width: 640px) { section { padding: 52px 0; } }

h1, h2, h3 { font-family: "Baloo 2", "Manrope", sans-serif; font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; margin: 0; color: var(--ink); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }

.eyebrow { display: inline-flex; align-items: center; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }

.section-head { max-width: 620px; margin: 0 0 40px; }
.section-head.center { max-width: 620px; margin: 0 auto 44px; text-align: center; }
.section-head p { color: var(--ink-muted); margin-top: 12px; font-size: 1.05rem; }

.btn { display: inline-flex; align-items: center; gap: 10px; justify-content: center; padding: 15px 28px; border-radius: 10px; font-weight: 800; font-size: 0.98rem; cursor: pointer; border: 2px solid transparent; transition: transform 160ms var(--ease-out), box-shadow 220ms var(--ease-out), background 160ms var(--ease-out); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 14px 28px -12px rgba(216, 31, 42, 0.5); }
.btn-primary:hover { background: #c01824; }
.btn-ghost { background: var(--card); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
@media (max-width: 480px) { .btn { padding: 13px 22px; font-size: 0.9rem; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* Header */
header { position: sticky; top: 0; z-index: 30; background: rgba(247, 242, 229, 0.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
header .wrap { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; gap: 16px; }
/* Logo quadrada, sem recorte (a peça inteira que a cliente forneceu) — por
   isso a altura maior que um lockup horizontal comum: precisa desse espaço
   pra o miolo com o nome ficar legível. */
/* Marca compacta no header: o "P" isolado + o nome em texto. A logo completa
   (com o laço inteiro) só aparece em tamanho grande, no rodapé — espremida
   aqui ela vira um quadrado ilegível, não uma marca. */
/* Recorte largo da peça real (nome + laços), não o quadrado inteiro nem só a
   inicial isolada — cabe no header por inteiro, "de ponta a ponta". */
.logo-lockup { display: flex; align-items: center; min-height: 44px; }
.logo-lockup img { height: 58px; width: auto; }
nav { display: flex; align-items: center; gap: 22px; }
nav a.nav-link { font-size: 0.86rem; font-weight: 700; color: var(--ink-muted); white-space: nowrap; transition: color 160ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { nav a.nav-link:hover { color: var(--ink); } }
@media (max-width: 860px) { nav a.nav-link { display: none; } }
.social-mini { display: flex; align-items: center; gap: 10px; }
.social-mini a { width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--card); border: 1px solid var(--line); color: var(--ink); transition: transform 160ms var(--ease-out), border-color 160ms var(--ease-out); }
.social-mini a:hover { transform: translateY(-2px); border-color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 14px; }
@media (max-width: 480px) { .social-mini { display: none; } header .wrap { padding: 8px 18px; } .logo-lockup img { height: 46px; } }

/* Hero */
.hero { padding: 52px 0 60px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 52px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p.lead { color: var(--ink-muted); font-size: 1.12rem; margin-top: 20px; max-width: 46ch; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-photo-frame { position: relative; }
.hero-photo { position: relative; z-index: 1; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3.3; box-shadow: 0 30px 60px -22px rgba(22, 32, 90, 0.35); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
/* Laço decorativo — recorte direto da identidade visual real da marca */
.hero-loop { position: absolute; z-index: 0; pointer-events: none; height: auto; }
.hero-loop.l1 { top: -46px; right: -50px; width: 300px; }
.hero-loop.l2 { bottom: -40px; left: -60px; width: 260px; }
@media (max-width: 900px) { .hero-loop.l1 { width: 190px; top: -22px; right: -26px; } .hero-loop.l2 { width: 170px; bottom: -22px; left: -30px; } }

/* Sobre: bloco único, empilhado */
.sobre-stack { max-width: 62ch; }
.sobre-stack h2 { margin-bottom: 16px; }
.sobre-text { color: var(--ink-muted); font-size: 1.1rem; margin: 0; }
.sobre-text strong { color: var(--accent); font-weight: 800; }

/* Categorias — etiqueta de preço de verdade (a mesma coisa pendurada nos
   produtos da própria vitrine), não card genérico. Furo + leve rotação. */
.tag-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 44px 30px; }
.price-tag { position: relative; width: 100%; max-width: 300px; padding: 30px 26px 26px 42px; color: #fff; clip-path: polygon(26px 0%, 100% 0%, 100% 100%, 26px 100%, 0% 50%); box-shadow: 4px 10px 22px -8px rgba(22,32,90,0.4); transition: transform 200ms var(--ease-out); }
.price-tag.criar { background: var(--pink); transform: rotate(-2.5deg); }
.price-tag.organizar { background: var(--teal); transform: rotate(1.8deg); }
.price-tag.presentear { background: var(--orange); transform: rotate(-1.4deg); }
@media (hover: hover) and (pointer: fine) { .price-tag:hover { transform: rotate(0deg) translateY(-4px); } }
.tag-hole { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 11px; height: 11px; border-radius: 50%; background: var(--bg-2); box-shadow: inset 0 1px 3px rgba(0,0,0,0.3); }
.price-tag svg { margin-bottom: 16px; }
.price-tag h3 { font-size: 1.2rem; margin-bottom: 10px; color: #fff; }
.price-tag p { color: rgba(255,255,255,0.88); font-size: 0.94rem; margin: 0 0 16px; }
.cat-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-tag { font-size: 0.75rem; font-weight: 700; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.32); border-radius: 999px; padding: 5px 12px; color: #fff; }
@media (max-width: 480px) { .price-tag { max-width: 100%; transform: none !important; } }

/* Produtos reais — faixa infinita e arrastável, com "zoom de dock": as fotos
   crescem perto do centro e encolhem nas pontas, como no Dock do macOS. Rola
   sozinha em velocidade constante; a pessoa também pode arrastar; clicar
   (sem arrastar) abre a foto maior. Experimento em teste, substitui a versão
   com paginação 4 a 4 (ver index.html.bak-grid-carousel / styles.css.bak-grid-carousel). */
.marquee-viewport {
  --tile: 247px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
  height: calc(var(--tile) * 1.15 + 46px); /* folga extra: a curva sutil levanta as fotos do centro além da escala */
  cursor: grab;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 70px, black calc(100% - 70px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 70px, black calc(100% - 70px), transparent 100%);
}
.marquee-viewport:focus-visible { outline: 2px solid var(--accent); outline-offset: -4px; }
.marquee-viewport.is-grabbing, .marquee-viewport.is-grabbing .marquee-tile { cursor: grabbing; }
.marquee-track { display: flex; align-items: center; height: 100%; will-change: transform; }
.marquee-tile { flex: 0 0 auto; width: var(--tile); height: var(--tile); margin: 0 9px; border: 0; padding: 0; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; background: var(--card); box-shadow: 0 14px 30px -16px rgba(22,32,90,0.4); }
.marquee-tile img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; -webkit-user-drag: none; user-select: none; }
@media (max-width: 640px) { .marquee-viewport { --tile: 159px; } .marquee-tile { margin: 0 6px; } }

.proof-footer { max-width: 780px; margin: 40px auto 0; display: flex; flex-direction: column; align-items: center; gap: 26px; text-align: center; }
.proof-list-row { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; }
.proof-list-row li { flex: 1 1 170px; padding: 4px 22px; }
.proof-list-row li:not(:last-child) { border-right: 1px dashed var(--line); }
.proof-list-row strong { display: block; color: var(--ink); font-weight: 800; margin-bottom: 4px; font-size: 0.95rem; }
.proof-list-row span { color: var(--ink-muted); font-size: 0.86rem; }
.product-cta { width: auto; }
@media (max-width: 700px) {
  .proof-list-row li { flex: 1 1 45%; padding: 12px 10px; border-bottom: 1px dashed var(--line); }
  .proof-list-row li:not(:last-child) { border-right: 0; }
}

/* Zoom em tela cheia ao clicar numa foto */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(22,32,90,0.94); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(90vw, 640px); max-height: 85vh; border-radius: 8px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6); }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.14); color: #fff; font-size: 1.2rem; cursor: pointer; }
@media (hover: hover) and (pointer: fine) { .lightbox-close:hover { background: rgba(255,255,255,0.24); } }

/* Relatos — post-it real, preso com fita washi, não card com estrelas.
   Sem nota nem contagem do Google aqui, só o comentário (pedido explícito). */
.note-board { display: flex; flex-wrap: wrap; justify-content: center; gap: 46px 26px; }
.sticky-note { position: relative; margin: 0; width: 100%; max-width: 250px; padding: 30px 20px 20px; background: var(--card); border-radius: 2px; box-shadow: 3px 8px 18px -6px rgba(22,32,90,0.3); }
.sticky-note:nth-child(3n+1) { transform: rotate(-2deg); }
.sticky-note:nth-child(3n+2) { transform: rotate(1.6deg); }
.sticky-note:nth-child(3n+3) { transform: rotate(-1deg); }
.sticky-note::before { content: ""; position: absolute; top: -13px; left: 50%; transform: translateX(-50%) rotate(-5deg); width: 60px; height: 22px; opacity: 0.9; }
.sticky-note.pink::before { background: var(--pink); }
.sticky-note.yellow::before { background: var(--yellow); }
.sticky-note.teal::before { background: var(--teal); }
.sticky-note.orange::before { background: var(--orange); }
.sticky-note p { font-family: "Baloo 2", sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--ink); margin: 0 0 16px; line-height: 1.4; }
.sticky-note cite { font-style: normal; font-weight: 700; font-size: 0.82rem; color: var(--ink-muted); }
@media (max-width: 480px) { .sticky-note { max-width: 100%; transform: none !important; } .note-board { gap: 30px; } }

/* Localização */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .loc-grid { grid-template-columns: 1fr; } }
.map-embed { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }
/* Clique-pra-ativar: sem isso o mapa sequestra o scroll da página no desktop
   (rolar o mouse sobre ele dá zoom no mapa em vez de rolar a página). */
.map-scrim { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; cursor: pointer; background: rgba(22,32,90,0.06); color: var(--ink); font-family: "Manrope", sans-serif; font-weight: 700; font-size: 0.9rem; }
.phone-fallback { margin-top: 18px; color: var(--ink-muted); font-size: 0.92rem; }
.phone-fallback a { color: var(--accent); font-weight: 700; }
.hours-table { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 10px; }
.hours-table li { display: flex; justify-content: space-between; gap: 16px; font-size: 0.96rem; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.hours-table li strong { color: var(--ink); }
.hours-table li span { color: var(--ink-muted); }
.address-block { margin-top: 14px; color: var(--ink-muted); font-size: 0.98rem; line-height: 1.8; }
.address-block strong { color: var(--ink); font-size: 1.08rem; display: block; margin-bottom: 4px; }

/* CTA final */
/* Fechamento leve — sem caixa cheia, o laço real dá o peso visual em vez de
   um bloco de cor sólida sem propósito. */
.cta-close { position: relative; overflow: hidden; }
.cta-ribbon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(720px, 140%); opacity: 0.16; pointer-events: none; z-index: 0; }
.cta-close-inner { position: relative; z-index: 1; max-width: 480px; margin: 0 auto; text-align: center; }
.cta-close-inner p { color: var(--ink-muted); margin: 14px 0 28px; font-size: 1.05rem; }

/* A logo completa (laço inteiro) mora aqui, grande, como peça única de
   verdade — não espremida numa barra de topo. */
footer { border-top: 1px solid var(--line); padding: 40px 0 30px; }
.footer-grid { display: flex; align-items: center; flex-wrap: wrap; gap: 20px 28px; color: var(--ink-muted); font-size: 0.86rem; }
.footer-logo { height: 92px; width: auto; }
.footer-grid span { flex: 1 1 260px; }
footer .social-mini { margin-left: auto; }
footer .social-mini a:hover { border-color: var(--accent); }
@media (max-width: 640px) { .footer-grid { flex-direction: column; align-items: flex-start; } .footer-logo { height: 76px; } footer .social-mini { margin-left: 0; } }

/* #075E54 (verde-petróleo oficial do WhatsApp), não #25D366: o verde claro
   com texto branco mede 1.98:1 de contraste, falha WCAG AA (achado real do
   detector). Este tom passa em 7.6:1. */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 40; display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; gap: 9px; background: #075E54; color: #fff; padding: 13px 20px; border-radius: 999px; font-weight: 800; font-size: 0.85rem; box-shadow: 0 14px 28px -10px rgba(0,0,0,0.35); transition: transform 220ms var(--ease-out), opacity 220ms var(--ease-out); }
.wa-float:active { transform: scale(0.96); }
.wa-float:hover { background: #094f46; }
.wa-float.is-hidden { transform: translateY(90px); opacity: 0; pointer-events: none; }
@media (max-width: 480px) { .wa-float span.wa-text { display: none; } .wa-float { padding: 13px; } }

@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .wa-float { display: none !important; }
  header { position: static; }
  .hero-grid, .proof-split, .loc-grid { grid-template-columns: 1fr !important; }
  .price-tag, .sticky-note { transform: none !important; clip-path: none !important; box-shadow: none !important; border: 1px solid var(--line); }
  section { padding: 32px 0 !important; break-inside: avoid-page; }
  .map-embed { display: none !important; }
  .marquee-viewport, .lightbox { display: none !important; }
}
