/* =====================================================================
   ATELIÊ DA LINIA — FOLHA DE ESTILO PRINCIPAL
   ---------------------------------------------------------------------
   Direção visual (briefing): fundo claro e limpo, tipografia serifada
   elegante, turquesa da logo como cor de marca, muito respiro e foto
   grande. "Cuidado e elegância profissional" — não é loja de atacado.

   Tipografia
     Bodoni Moda  → títulos (ar de ateliê/alfaiataria), só em tamanhos grandes
     Albert Sans  → textos, botões e interface
     DM Mono      → tamanhos, medidas, preços e rótulos (fita métrica)
     Dancing Script → simulação do bordado cursivo

   Assinatura: a "linha de costura" turquesa (agulha e linha da logo) e o
   BORDADO AO VIVO — o cliente digita o nome e vê o bordado na hora.

   Índice
     1. Tokens      2. Base          3. Utilitários     4. Botões/forms
     5. Topo/menu   6. Home          7. Card produto    8. Bordado
     9. Loja        10. Produto      11. Sacola/checkout
     12. Páginas    13. Rodapé       14. Flutuantes     15. Responsivo
   ===================================================================== */

/* 1. TOKENS ----------------------------------------------------------- */
:root {
  --paper: #f3f7f6;        /* off-white frio, puxado para o menta do scrub */
  --paper-2: #e9f0ee;
  --white: #ffffff;
  --ink: #0f1716;          /* preto do fundo da logo, levemente esverdeado */
  --ink-2: #4b5957;
  --ink-3: #7c8a88;
  --line: #d9e3e1;
  --line-2: #c5d3d0;
  --silver: #b0b0b0;       /* cinza da logo */

  --turq: #2ee0d6;         /* turquesa da assinatura "Ateliê da Linia" */
  --turq-soft: #c9f6f2;
  --turq-50: #e6faf8;
  --teal: #0a7f7a;         /* turquesa escurecido p/ texto e links (contraste AA) */
  --teal-deep: #073f3c;    /* seções escuras */
  --teal-night: #042826;

  --alert: #b5412f;
  --ok: #1d7a4c;
  --gold: #c89b3c;

  --f-display: 'Bodoni Moda', 'Didot', Georgia, serif;
  --f-body: 'Albert Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-mono: 'DM Mono', ui-monospace, 'Consolas', monospace;
  --f-script: 'Dancing Script', cursive;

  --r-sm: 6px;
  --r: 12px;
  --r-lg: 22px;
  --shadow-1: 0 1px 2px rgba(15, 23, 22, .06), 0 4px 16px rgba(15, 23, 22, .05);
  --shadow-2: 0 20px 60px -20px rgba(7, 63, 60, .35);
  --ease: cubic-bezier(.2, .7, .2, 1);

  --wrap: 1320px;
  --gutter: clamp(16px, 4vw, 48px);
  --header-h: 76px;
}

/* 2. BASE ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--f-body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.1; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--turq); color: var(--ink); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* 3. UTILITÁRIOS ------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.mono { font-family: var(--f-mono); letter-spacing: .02em; }
.display { font-family: var(--f-display); font-weight: 500; letter-spacing: -.01em; }
.display em, .h-em { font-style: italic; color: var(--teal); }
.muted { color: var(--ink-2); }
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }

/* Rótulo acima do título: linha de costura + texto em mono */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 38px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--turq) 0 7px, transparent 7px 11px);
}
.h-xl { font-family: var(--f-display); font-size: clamp(44px, 7.4vw, 104px); line-height: .98; letter-spacing: -.025em; }
.h-lg { font-family: var(--f-display); font-size: clamp(34px, 4.6vw, 64px); line-height: 1.02; letter-spacing: -.02em; }
.h-md { font-family: var(--f-display); font-size: clamp(26px, 3vw, 40px); line-height: 1.08; }
.h-sm { font-size: 20px; font-weight: 600; letter-spacing: -.01em; }
.lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--ink-2); max-width: 56ch; }

.sec-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: clamp(32px, 4vw, 56px); flex-wrap: wrap; }
.sec-head .lead { margin: 14px 0 0; }

/* Linha de costura — o fio turquesa que sai da agulha da logo */
.stitch { height: 2px; border: 0; margin: 0; background: repeating-linear-gradient(90deg, var(--turq) 0 9px, transparent 9px 15px); }
.stitch--muted { background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 11px); }

.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  background: var(--white); color: var(--ink); border: 1px solid var(--line);
}
.badge--turq { background: var(--turq); border-color: var(--turq); }
.badge--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.badge--alert { background: #fbeae6; color: var(--alert); border-color: #f1c9c0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* 4. BOTÕES E FORMULÁRIOS --------------------------------------------- */
.btn {
  --bg: var(--ink); --fg: #fff; --bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 28px; border-radius: 999px; border: 1.5px solid var(--bd);
  background: var(--bg); color: var(--fg); font-weight: 600; font-size: 15px; letter-spacing: .01em;
  transition: background .25s, color .25s, border-color .25s, transform .2s, box-shadow .25s;
  white-space: nowrap; text-align: center;
}
.btn:hover { --bg: var(--teal-deep); --bd: var(--teal-deep); box-shadow: 0 10px 30px -12px rgba(7, 63, 60, .6); }
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--turq { --bg: var(--turq); --fg: var(--ink); --bd: var(--turq); }
.btn--turq:hover { --bg: #54ece3; --bd: #54ece3; --fg: var(--ink); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--ink); }
.btn--ghost:hover { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.btn--light { --bg: transparent; --fg: #fff; --bd: rgba(255, 255, 255, .5); }
.btn--light:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.btn--wa { --bg: #1faa55; --bd: #1faa55; --fg: #fff; }
.btn--wa:hover { --bg: #178c45; --bd: #178c45; }
.btn--sm { min-height: 40px; padding: 0 18px; font-size: 14px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

.link { color: var(--teal); font-weight: 600; border-bottom: 1.5px solid currentColor; padding-bottom: 1px; transition: color .2s; }
.link:hover { color: var(--ink); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.link-arrow svg { width: 18px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label, .label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field small { color: var(--ink-3); font-size: 12px; }
.input, .select, .textarea {
  width: 100%; min-height: 50px; padding: 12px 16px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line-2); background: var(--white); transition: border-color .2s, box-shadow .2s;
}
.textarea { min-height: 110px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px var(--turq-50); }
.input.is-error { border-color: var(--alert); }
.field .error { color: var(--alert); font-size: 12px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }

.check { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: 14px; line-height: 1.5; }
.check input { appearance: none; flex: none; width: 22px; height: 22px; margin: 0; border: 1.5px solid var(--line-2); border-radius: 6px; background: #fff; display: grid; place-items: center; transition: .2s; }
.check input:checked { background: var(--ink); border-color: var(--ink); }
.check input:checked::after { content: ''; width: 6px; height: 11px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg) translate(-1px, -1px); }

/* 5. TOPO / MENU ------------------------------------------------------ */
.topbar { background: var(--ink); color: #dfe9e7; font-size: 13px; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 38px; gap: 16px; }
.topbar__msgs { position: relative; flex: 1; height: 38px; overflow: hidden; text-align: center; }
.topbar__msgs span { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 8px; opacity: 0; transform: translateY(100%); transition: .6s var(--ease); }
.topbar__msgs span.is-on { opacity: 1; transform: none; }
.topbar__msgs b { color: var(--turq); font-weight: 600; }
.topbar__side { display: flex; gap: 20px; font-family: var(--f-mono); font-size: 12px; }
.topbar__side a:hover { color: var(--turq); }

.header { position: sticky; top: 0; z-index: 50; background: rgba(243, 247, 246, .86); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(15, 23, 22, .4); }
.header .wrap { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; height: var(--header-h); }
.logo { display: flex; align-items: center; }
.logo img { height: 58px; width: auto; transition: transform .3s var(--ease); }
.logo:hover img { transform: rotate(-3deg) scale(1.03); }

.nav { display: flex; justify-content: center; gap: clamp(14px, 2vw, 30px); }
.nav > li { position: relative; }
.nav > li > a { display: flex; align-items: center; gap: 4px; height: var(--header-h); font-size: 14.5px; font-weight: 500; position: relative; }
.nav > li > a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 22px; height: 2px; background: repeating-linear-gradient(90deg, var(--turq) 0 5px, transparent 5px 8px); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav > li > a:hover::after, .nav > li > a[aria-current="page"]::after { transform: scaleX(1); }
.nav .is-hot { color: var(--teal); }

/* Megamenu das coleções */
.mega { position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px); width: min(760px, 90vw); background: var(--white); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-2); padding: 24px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; opacity: 0; visibility: hidden; transition: .25s var(--ease); }
.nav > li:hover .mega, .nav > li:focus-within .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega__list a { display: flex; justify-content: space-between; align-items: baseline; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.mega__list a:hover { color: var(--teal); }
.mega__list a span { font-family: var(--f-mono); font-size: 12px; color: var(--ink-3); }
.mega__title { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.mega__feat { position: relative; border-radius: var(--r-sm); overflow: hidden; min-height: 260px; }
.mega__feat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.mega__feat div { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; color: #fff; background: linear-gradient(transparent, rgba(4, 40, 38, .85)); }
.mega__feat strong { font-family: var(--f-display); font-size: 24px; font-weight: 500; display: block; }

.actions { display: flex; align-items: center; gap: 4px; }
.icon-btn { position: relative; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; transition: background .2s; }
.icon-btn:hover { background: var(--paper-2); }
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn .count { position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--turq); color: var(--ink); font-size: 11px; font-weight: 700; display: grid; place-items: center; transform: scale(0); transition: transform .3s var(--ease); }
.icon-btn .count.is-on { transform: scale(1); }
.icon-btn.bump { animation: bump .5s var(--ease); }
@keyframes bump { 30% { transform: scale(1.25) rotate(-8deg); } 60% { transform: scale(.95); } }
.burger { display: none; }

/* Menu mobile */
.mnav { position: fixed; inset: 0; z-index: 90; pointer-events: none; }
.mnav__bg { position: absolute; inset: 0; background: rgba(4, 40, 38, .45); opacity: 0; transition: opacity .3s; }
.mnav__panel { position: absolute; top: 0; bottom: 0; left: 0; width: min(420px, 88vw); background: var(--paper); transform: translateX(-100%); transition: transform .45s var(--ease); display: flex; flex-direction: column; overflow-y: auto; }
.mnav.is-open { pointer-events: auto; }
.mnav.is-open .mnav__bg { opacity: 1; }
.mnav.is-open .mnav__panel { transform: none; }
.mnav__head { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.mnav__head img { height: 48px; }
.mnav__links { padding: 12px 20px; }
.mnav__links a { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--f-display); font-size: 24px; }
.mnav__links a small { font-family: var(--f-mono); font-size: 12px; color: var(--ink-3); }
.mnav__foot { margin-top: auto; padding: 20px; display: grid; gap: 10px; }

/* Busca */
.search { position: fixed; inset: 0; z-index: 95; background: rgba(243, 247, 246, .97); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: .3s; overflow-y: auto; }
.search.is-open { opacity: 1; visibility: visible; }
.search__bar { display: flex; align-items: center; gap: 16px; border-bottom: 2px solid var(--ink); padding: 40px 0 12px; }
.search__bar input { flex: 1; border: 0; background: none; font-family: var(--f-display); font-size: clamp(28px, 5vw, 56px); outline: none; min-width: 0; }
.search__hint { margin: 20px 0; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--ink-3); font-size: 14px; }
.search__hint button { padding: 6px 14px; border: 1px solid var(--line-2); border-radius: 999px; font-size: 14px; color: var(--ink); }
.search__hint button:hover { border-color: var(--ink); }
.search__res { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; padding-bottom: 60px; }
.search__item { display: flex; gap: 14px; align-items: center; padding: 10px; border-radius: var(--r-sm); transition: background .2s; }
.search__item:hover { background: var(--white); }
.search__item img { width: 64px; height: 80px; object-fit: cover; border-radius: 6px; }

/* Breadcrumb */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--ink-3); padding-top: 20px; padding-bottom: 20px; }
.crumbs a:hover { color: var(--teal); }
.crumbs span[aria-hidden] { color: var(--line-2); }

/* 6. HOME ------------------------------------------------------------- */
.hero { position: relative; padding: clamp(28px, 4vw, 56px) 0 clamp(56px, 7vw, 96px); overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.hero__copy { position: relative; z-index: 2; }
.hero__title { margin: 0 0 24px; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: inline-block; animation: rise 1.1s var(--ease) both; }
.hero__title .line:nth-child(2) > span { animation-delay: .12s; }
.hero__title .line:nth-child(3) > span { animation-delay: .24s; }
@keyframes rise { from { transform: translateY(105%); } }
.hero__title .script { font-family: var(--f-script); font-weight: 700; color: var(--teal); font-size: 1.08em; letter-spacing: 0; line-height: .9; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 36px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 10px 28px; font-size: 14px; color: var(--ink-2); }
.hero__facts li { display: flex; align-items: center; gap: 8px; }
.hero__facts svg { width: 18px; color: var(--teal); }

.hero__visual { position: relative; min-height: 620px; }
.hero__photo { position: absolute; right: 0; top: 0; width: 78%; height: 100%; border-radius: 200px 200px var(--r-lg) var(--r-lg); overflow: hidden; box-shadow: var(--shadow-2); animation: fadein 1.2s .2s var(--ease) both; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
@keyframes fadein { from { opacity: 0; transform: scale(1.04); } }
.hero__thread { position: absolute; inset: -40px -60px auto auto; width: 120%; height: 120%; pointer-events: none; z-index: 1; }
.hero__thread path { fill: none; stroke: var(--turq); stroke-width: 2.2; stroke-dasharray: 9 7; stroke-linecap: round; }
.hero__tag { position: absolute; right: 12px; top: 28px; z-index: 3; background: var(--white); border-radius: 999px; padding: 10px 16px; font-family: var(--f-mono); font-size: 12px; box-shadow: var(--shadow-1); display: flex; gap: 8px; align-items: center; animation: fadein 1s .9s both; }
.hero__tag i { width: 8px; height: 8px; border-radius: 50%; background: #1faa55; box-shadow: 0 0 0 4px #d4f3df; }

/* Faixa de garantias */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust ul { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust li { display: flex; gap: 14px; align-items: center; padding: 22px 20px; border-left: 1px solid var(--line); }
.trust li:first-child { border-left: 0; }
.trust svg { width: 30px; height: 30px; color: var(--teal); flex: none; }
.trust strong { display: block; font-size: 14.5px; }
.trust span { font-size: 13px; color: var(--ink-2); }

/* Categorias */
.cats { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: 300px 300px; gap: 16px; }
.cat { position: relative; overflow: hidden; border-radius: var(--r); background: var(--paper-2); isolation: isolate; }
.cat:first-child { grid-row: span 2; }
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; transition: transform 1.2s var(--ease); z-index: -1; }
.cat:hover img { transform: scale(1.06); }
.cat::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(4, 40, 38, .78)); z-index: -1; }
.cat__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; color: #fff; display: flex; justify-content: space-between; align-items: end; gap: 12px; }
.cat__body h3 { font-family: var(--f-display); font-size: clamp(24px, 2.4vw, 34px); }
.cat__body small { font-family: var(--f-mono); font-size: 12px; opacity: .8; }
.cat__go { width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; flex: none; transition: transform .4s var(--ease), background .3s; }
.cat__go svg { width: 18px; }
.cat:hover .cat__go { transform: rotate(-45deg); background: var(--turq); }

/* Coleções — vitrine horizontal com os nomes de pedras */
.lineup { position: relative; }
.lineup__track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 24px; scrollbar-width: thin; scrollbar-color: var(--turq) transparent; }
.lineup__track::-webkit-scrollbar { height: 4px; }
.lineup__track::-webkit-scrollbar-thumb { background: var(--turq); border-radius: 4px; }
.gem { scroll-snap-align: start; position: relative; display: block; }
.gem__img { aspect-ratio: 3/4; border-radius: 160px 160px var(--r) var(--r); overflow: hidden; background: var(--paper-2); }
.gem__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; transition: transform 1s var(--ease); }
.gem:hover .gem__img img { transform: scale(1.05); }
.gem__name { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; gap: 10px; }
.gem__name h3 { font-family: var(--f-display); font-size: 30px; }
.gem__name span { font-family: var(--f-mono); font-size: 14px; }
.gem p { font-size: 14px; color: var(--ink-2); margin: 6px 0 0; }
.lineup__nav { display: flex; gap: 8px; }
.lineup__nav button { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--ink); display: grid; place-items: center; transition: .2s; }
.lineup__nav button:hover { background: var(--ink); color: #fff; }
.lineup__nav svg { width: 18px; }

/* Passo a passo — sequência real do pedido */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: s; position: relative; }
.steps::before { content: ''; position: absolute; top: 27px; left: 28px; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--turq) 0 9px, transparent 9px 15px); }
.step { position: relative; padding-right: 24px; }
.step__n { width: 56px; height: 56px; border-radius: 50%; background: var(--paper); border: 1.5px solid var(--ink); display: grid; place-items: center; font-family: var(--f-mono); font-size: 15px; position: relative; margin-bottom: 22px; }
.step h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink-2); }

/* Tecidos */
.fabrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fabric { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; }
.fabric__swatches { display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px; margin-bottom: 20px; }
.fabric__swatches span { aspect-ratio: 1; border-radius: 50%; background-size: cover; background-position: center; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08); }
.fabric h3 { font-family: var(--f-display); font-size: 24px; margin-bottom: 4px; }
.fabric .mono { font-size: 12px; color: var(--teal); display: block; margin-bottom: 10px; }
.fabric p { font-size: 14px; color: var(--ink-2); margin: 0; }
.fabric__count { margin-top: auto; padding-top: 16px; font-family: var(--f-mono); font-size: 12px; color: var(--ink-3); }

/* Equipes */
.team { background: var(--white); border-radius: var(--r-lg); overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr; border: 1px solid var(--line); }
.team__img { position: relative; min-height: 480px; }
.team__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team__body { padding: clamp(32px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.team__list { margin: 24px 0 32px; display: grid; gap: 12px; }
.team__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.team__list svg { width: 20px; color: var(--teal); flex: none; margin-top: 3px; }
.team__num { display: flex; gap: 32px; margin-bottom: 28px; }
.team__num strong { font-family: var(--f-display); font-size: 44px; font-weight: 500; line-height: 1; display: block; }
.team__num span { font-size: 13px; color: var(--ink-2); }

/* Depoimentos */
.quotes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; display: flex; flex-direction: column; }
.quote__stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.quote blockquote { margin: 0 0 24px; font-family: var(--f-display); font-size: 19px; line-height: 1.4; }
.quote footer { margin-top: auto; font-size: 14px; }
.quote footer strong { display: block; }
.quote footer span { color: var(--ink-3); font-size: 13px; }
.proto-note { display: inline-flex; gap: 8px; align-items: center; font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em; color: #8a6d1d; background: #fbf3d9; border: 1px dashed #e0c878; padding: 6px 12px; border-radius: 6px; }

/* FAQ */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 96px); }
.acc { border-top: 1px solid var(--line-2); }
.acc details { border-bottom: 1px solid var(--line-2); }
.acc summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 22px 0; font-size: 17px; font-weight: 600; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary i { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--line-2); flex: none; position: relative; transition: .3s; }
.acc summary i::before, .acc summary i::after { content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: currentColor; transform: translate(-50%, -50%); transition: .3s; }
.acc summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc details[open] summary i { background: var(--ink); color: #fff; border-color: var(--ink); }
.acc details[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }
.acc .acc__body { padding: 0 48px 24px 0; color: var(--ink-2); }

/* Instagram */
.insta { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.insta a { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--r-sm); }
.insta img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.insta a:hover img { transform: scale(1.08); }
.insta a::after { content: ''; position: absolute; inset: 0; background: rgba(10, 127, 122, .0); transition: .3s; }
.insta a:hover::after { background: rgba(10, 127, 122, .25); }

/* Newsletter */
.news { background: var(--turq-50); border-radius: var(--r-lg); padding: clamp(32px, 5vw, 64px); display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.news form { display: flex; gap: 8px; background: #fff; padding: 6px; border-radius: 999px; border: 1.5px solid var(--line-2); }
.news input { flex: 1; border: 0; padding: 0 18px; outline: none; background: none; min-width: 0; }

/* 7. CARD DE PRODUTO -------------------------------------------------- */
.grid-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px) clamp(12px, 1.6vw, 22px); }
.card { position: relative; display: flex; flex-direction: column; }
.card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--r); background: var(--paper-2); }
.card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; transition: opacity .6s var(--ease), transform 1.2s var(--ease); }
.card__media img.alt { opacity: 0; }
.card:hover .card__media img.alt { opacity: 1; }
.card:hover .card__media img { transform: scale(1.04); }
.card__badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; z-index: 2; }
.card__fav { position: absolute; top: 10px; right: 10px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .9); display: grid; place-items: center; transition: transform .2s, background .2s; }
.card__fav:hover { transform: scale(1.1); }
.card__fav svg { width: 19px; }
.card__fav.is-on svg { fill: var(--alert); stroke: var(--alert); }
.card__quick { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2; transform: translateY(calc(100% + 16px)); transition: transform .45s var(--ease); }
.card:hover .card__quick, .card:focus-within .card__quick { transform: none; }
.card__quick .btn { width: 100%; min-height: 46px; background: rgba(255, 255, 255, .95); color: var(--ink); border-color: transparent; backdrop-filter: blur(6px); }
.card__quick .btn:hover { background: var(--ink); color: #fff; }
.card__body { padding: 14px 2px 0; display: flex; flex-direction: column; gap: 4px; }
.card__meta { display: flex; justify-content: space-between; gap: 8px; font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-3); }
.card__name { font-family: var(--f-display); font-size: 22px; line-height: 1.15; }
.card__name a::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.card__desc { font-size: 13.5px; color: var(--ink-2); line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.card__price strong { font-family: var(--f-mono); font-size: 17px; font-weight: 500; }
.card__price small { font-size: 12.5px; color: var(--ink-3); }
.card__dots { display: flex; gap: 4px; margin-top: 8px; align-items: center; }
.card__dots i { width: 14px; height: 14px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12); }
.card__dots em { font-style: normal; font-family: var(--f-mono); font-size: 11px; color: var(--ink-3); margin-left: 4px; }

/* 8. BORDADO ---------------------------------------------------------- */
/* O patch: um pedaço do tecido real, com a borda pespontada, e o texto
   renderizado como ponto cheio (listras diagonais = direção da linha). */
.patch {
  --linha: #fbfbf8;
  position: relative; border-radius: 18px; overflow: hidden; background-color: #2a4466;
  background-size: cover; background-position: center; aspect-ratio: 16/10;
  display: grid; place-items: center; text-align: center; isolation: isolate;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, .25), var(--shadow-2);
  transition: background-image .4s;
}
.patch::before { content: ''; position: absolute; inset: 12px; border-radius: 10px; border: 2px dashed rgba(255, 255, 255, .5); z-index: -1; }
.patch::after { content: ''; position: absolute; inset: 0; z-index: -2; background: radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, .15), transparent 60%); }
.stitchtext { display: flex; flex-direction: column; align-items: center; padding: 20px; max-width: 100%; }
.stitchtext .n, .stitchtext .p {
  background: repeating-linear-gradient(115deg, var(--linha) 0 1.6px, color-mix(in srgb, var(--linha) 70%, #000) 1.6px 2.6px);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .45)) drop-shadow(0 -0.5px 0 rgba(255, 255, 255, .35));
  word-break: break-word; max-width: 100%;
}
.stitchtext .n { font-family: var(--f-script); font-weight: 700; font-size: clamp(34px, 5.2vw, 64px); line-height: 1.05; }
.stitchtext .p { font-family: var(--f-body); font-weight: 700; font-size: clamp(12px, 1.3vw, 16px); letter-spacing: .28em; text-transform: uppercase; margin-top: 6px; }
.patch.is-bastao .n { font-family: var(--f-body); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-size: clamp(26px, 3.8vw, 46px); }
.patch.is-mini .stitchtext .n { font-size: clamp(30px, 3.4vw, 46px); }
.patch.is-mini.is-bastao .stitchtext .n { font-size: clamp(22px, 2.6vw, 32px); }
.patch.is-light::before { border-color: rgba(0, 0, 0, .25); }

.embroidery { background: var(--teal-night); color: #e8f3f1; position: relative; overflow: hidden; }
.embroidery::before { content: ''; position: absolute; inset: 0; background: radial-gradient(900px 500px at 85% 10%, rgba(46, 224, 214, .16), transparent 60%); }
.embroidery .wrap { position: relative; display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.embroidery .eyebrow { color: var(--turq); }
.embroidery .lead { color: #a9c7c3; }
.embroidery .h-lg em { color: var(--turq); }

.embr-ctrl { display: grid; gap: 18px; margin-top: 28px; }
.embr-ctrl .input { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .18); color: #fff; }
.embr-ctrl .input::placeholder { color: #7fa39e; }
.embr-ctrl .input:focus { border-color: var(--turq); box-shadow: 0 0 0 4px rgba(46, 224, 214, .15); }
.embr-ctrl .label { color: #cfe3e0; }

.thread-row { display: flex; flex-wrap: wrap; gap: 8px; }
.thread { width: 34px; height: 34px; border-radius: 50%; position: relative; background: var(--c); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15); transition: transform .2s; }
.thread::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid transparent; transition: .2s; }
.thread:hover { transform: scale(1.08); }
.thread[aria-pressed="true"]::after { border-color: var(--turq); }
.seg { display: inline-flex; padding: 4px; border-radius: 999px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); }
.seg button { padding: 8px 18px; border-radius: 999px; font-size: 14px; color: #cfe3e0; transition: .2s; }
.seg button[aria-pressed="true"] { background: var(--turq); color: var(--ink); font-weight: 600; }

.embr-price { display: flex; align-items: center; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.embr-price strong { font-family: var(--f-mono); font-size: 28px; font-weight: 400; color: var(--turq); }
.embr-visual { position: relative; }
.embr-visual .patch { aspect-ratio: 5/4; }
.embr-visual__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.embr-visual__photos img { border-radius: var(--r); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.fab-row { display: flex; gap: 8px; flex-wrap: wrap; }
.fab-row button { width: 30px; height: 30px; border-radius: 8px; background-size: cover; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2); position: relative; }
.fab-row button[aria-pressed="true"] { outline: 2px solid var(--turq); outline-offset: 3px; }

/* 9. LOJA ------------------------------------------------------------- */
.shop-hero { padding: 8px 0 36px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; }
.shop-hero .lead { margin-top: 14px; }
.cat-pills { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.cat-pills::-webkit-scrollbar { display: none; }
.pill { flex: none; padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--line-2); font-size: 14px; font-weight: 500; transition: .2s; background: var(--white); }
.pill:hover { border-color: var(--ink); }
.pill[aria-current="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }

.shop { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; padding-bottom: 96px; }
.filters { position: sticky; top: calc(var(--header-h) + 20px); max-height: calc(100vh - var(--header-h) - 40px); overflow-y: auto; padding-right: 8px; scrollbar-width: thin; }
.filters__group { border-bottom: 1px solid var(--line); padding: 18px 0; }
.filters__group:first-child { padding-top: 0; }
.filters__title { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; display: flex; justify-content: space-between; }
.filters .check { padding: 5px 0; }
.filters .check span small { color: var(--ink-3); font-family: var(--f-mono); font-size: 11px; margin-left: 4px; }
.fsizes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.fsizes button, .fcolors button { transition: .2s; }
.fsizes button { height: 38px; border-radius: 8px; border: 1.5px solid var(--line-2); font-family: var(--f-mono); font-size: 13px; background: #fff; }
.fsizes button[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.fcolors { display: flex; flex-wrap: wrap; gap: 8px; }
.fcolors button { width: 28px; height: 28px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15); position: relative; }
.fcolors button[aria-pressed="true"]::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--ink); }
.range { display: flex; gap: 8px; align-items: center; }
.range input { width: 100%; min-height: 40px; padding: 6px 10px; border-radius: 8px; border: 1.5px solid var(--line-2); font-family: var(--f-mono); font-size: 13px; }

.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.toolbar__count { font-family: var(--f-mono); font-size: 13px; color: var(--ink-2); }
.toolbar .select { width: auto; min-height: 44px; padding: 8px 40px 8px 14px; appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%230f1716' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 14px center; font-size: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: var(--turq-50); border: 1px solid var(--turq-soft); font-size: 13px; }
.chip button { font-size: 16px; line-height: 1; }
.btn-filter { display: none; }
.empty { text-align: center; padding: 80px 20px; border: 1.5px dashed var(--line-2); border-radius: var(--r); }
.empty .h-md { margin-bottom: 12px; }

/* 10. PRODUTO --------------------------------------------------------- */
.pdp { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: start; padding-bottom: 80px; }
.gallery { display: grid; grid-template-columns: 84px 1fr; gap: 14px; position: sticky; top: calc(var(--header-h) + 16px); }
.thumbs { display: flex; flex-direction: column; gap: 10px; max-height: 720px; overflow-y: auto; scrollbar-width: none; }
.thumbs button { aspect-ratio: 4/5; border-radius: 10px; overflow: hidden; opacity: .55; transition: .2s; border: 2px solid transparent; flex: none; }
.thumbs button[aria-current="true"] { opacity: 1; border-color: var(--ink); }
.thumbs button:hover { opacity: 1; }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.stage { position: relative; aspect-ratio: 4/5; border-radius: var(--r); overflow: hidden; background: var(--paper-2); cursor: zoom-in; }
.stage > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; transition: opacity .35s; }
/* LUPA — círculo que amplia a região sob o cursor */
.lens { position: absolute; width: 220px; height: 220px; border-radius: 50%; pointer-events: none; opacity: 0; transform: scale(.6); transition: opacity .2s, transform .25s var(--ease); background-repeat: no-repeat; border: 3px solid #fff; box-shadow: 0 0 0 1px rgba(0, 0, 0, .08), 0 18px 40px -10px rgba(0, 0, 0, .45); z-index: 3; }
.stage.is-zoom .lens { opacity: 1; transform: scale(1); }
.stage__hint { position: absolute; bottom: 14px; left: 14px; z-index: 2; display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(255, 255, 255, .92); font-size: 12.5px; font-weight: 500; transition: opacity .3s; }
.stage__hint svg { width: 16px; }
.stage.is-zoom .stage__hint { opacity: 0; }
.stage__nav { position: absolute; top: 50%; left: 0; right: 0; display: none; justify-content: space-between; padding: 0 10px; transform: translateY(-50%); z-index: 2; }
.stage__nav button { width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, .92); display: grid; place-items: center; }
.stage__nav svg { width: 18px; }
.stage__badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 6px; z-index: 2; }

.pinfo__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; }
.stars { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-2); }
.stars b { color: var(--gold); letter-spacing: 1px; font-weight: 400; }
.pinfo h1 { font-family: var(--f-display); font-size: clamp(38px, 4.4vw, 60px); line-height: 1; letter-spacing: -.02em; }
.pinfo__lead { margin: 14px 0 22px; color: var(--ink-2); font-size: 16.5px; }
.price-box { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 16px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-box .now { font-family: var(--f-mono); font-size: 32px; font-weight: 400; letter-spacing: -.02em; }
.price-box .alt { font-size: 14px; color: var(--ink-2); }
.price-box .alt b { color: var(--teal); }

.opt { padding: 20px 0; border-bottom: 1px solid var(--line); }
.opt__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.opt__head .label { font-size: 14px; }
.opt__head .label span { font-weight: 400; color: var(--ink-2); margin-left: 6px; }
.opt__head .link { font-size: 13px; font-weight: 600; }
.swatches { display: flex; flex-wrap: wrap; gap: 9px; }
.swatch { width: 40px; height: 40px; border-radius: 50%; background-size: cover; background-position: center; position: relative; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12); transition: transform .2s; }
.swatch:hover { transform: scale(1.08); }
.swatch::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid transparent; transition: border-color .2s; }
.swatch[aria-checked="true"]::after { border-color: var(--ink); }
.swatch.has-photo::before { content: ''; position: absolute; right: -2px; top: -2px; width: 10px; height: 10px; border-radius: 50%; background: var(--turq); border: 2px solid var(--paper); }
.swatch[aria-disabled="true"] { opacity: .35; }
.swatch[aria-disabled="true"]::before { content: ''; position: absolute; left: 50%; top: -2px; bottom: -2px; width: 1.5px; background: var(--ink); transform: rotate(45deg); }
.sw-legend { font-size: 12px; color: var(--ink-3); margin-top: 10px; display: flex; align-items: center; gap: 6px; }
.sw-legend i { width: 8px; height: 8px; border-radius: 50%; background: var(--turq); }
.sizes { display: grid; grid-template-columns: repeat(8, 1fr); gap: 6px; }
.size { height: 48px; border-radius: 10px; border: 1.5px solid var(--line-2); background: #fff; font-family: var(--f-mono); font-size: 14px; position: relative; transition: .2s; }
.size:hover { border-color: var(--ink); }
.size[aria-checked="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.size[aria-disabled="true"] { color: var(--ink-3); background: repeating-linear-gradient(135deg, transparent 0 6px, var(--paper-2) 6px 7px); border-style: dashed; }
.size .low { position: absolute; top: -7px; right: -4px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 2px solid var(--paper); }
.opt-text { display: flex; gap: 8px; flex-wrap: wrap; }
.opt-text button { padding: 11px 20px; border-radius: 999px; border: 1.5px solid var(--line-2); background: #fff; font-size: 14px; font-weight: 500; transition: .2s; }
.opt-text button[aria-checked="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.opt__note { font-size: 13px; color: var(--ink-2); margin-top: 10px; display: flex; gap: 8px; align-items: flex-start; }
.opt__note svg { width: 16px; flex: none; margin-top: 2px; color: var(--teal); }
.stock { font-size: 13px; margin-top: 10px; display: flex; align-items: center; gap: 8px; }
.stock i { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }
.stock.is-low i { background: var(--gold); }
.stock.is-out i { background: var(--alert); }

/* Caixa do bordado no produto */
.pembr { margin: 20px 0 0; border: 1.5px solid var(--line-2); border-radius: var(--r); background: #fff; overflow: hidden; transition: border-color .3s; }
.pembr.is-on { border-color: var(--teal); box-shadow: 0 0 0 4px var(--turq-50); }
.pembr__toggle { display: flex; align-items: center; gap: 14px; padding: 16px 18px; cursor: pointer; }
.pembr__toggle strong { display: block; font-size: 15px; }
.pembr__toggle span { font-size: 13px; color: var(--ink-2); }
.pembr__toggle .mono { margin-left: auto; font-size: 15px; color: var(--teal); white-space: nowrap; }
.switch { width: 46px; height: 28px; border-radius: 14px; background: var(--line-2); position: relative; flex: none; transition: background .25s; }
.switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .25); transition: transform .3s var(--ease); }
.pembr.is-on .switch { background: var(--teal); }
.pembr.is-on .switch::after { transform: translateX(18px); }
.pembr__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.pembr.is-on .pembr__body { grid-template-rows: 1fr; }
.pembr__inner { overflow: hidden; }
.pembr__fields { padding: 4px 18px 18px; display: grid; gap: 14px; }
.pembr .thread { width: 30px; height: 30px; }
.pembr .thread[aria-pressed="true"]::after { border-color: var(--ink); }
.pembr .seg { background: var(--paper); border-color: var(--line); }
.pembr .seg button { color: var(--ink-2); }
.pembr .seg button[aria-pressed="true"] { background: var(--ink); color: #fff; }

.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line-2); border-radius: 999px; background: #fff; height: 52px; }
.qty button { width: 44px; height: 100%; font-size: 20px; }
.qty input { width: 38px; text-align: center; border: 0; background: none; font-family: var(--f-mono); font-size: 15px; -moz-appearance: textfield; }
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty--sm { height: 38px; }
.qty--sm button { width: 34px; font-size: 16px; }
.buy { display: flex; gap: 10px; margin-top: 22px; }
.buy .btn { flex: 1; }
.buy2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.fav-btn.is-on svg { fill: var(--alert); stroke: var(--alert); }

.prazo { margin-top: 20px; display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 16px 18px; border-radius: var(--r); background: var(--turq-50); border: 1px solid var(--turq-soft); font-size: 14px; }
.prazo svg { width: 26px; color: var(--teal); }
.prazo strong { display: block; font-size: 14.5px; }

.ship { margin-top: 16px; padding: 18px; border-radius: var(--r); border: 1px solid var(--line); background: #fff; }
.ship form { display: flex; gap: 8px; margin-top: 10px; }
.ship .input { min-height: 46px; font-family: var(--f-mono); }
.ship__res { margin-top: 12px; display: grid; gap: 8px; }
.ship__opt { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 10px 12px; border-radius: 8px; background: var(--paper); }
.ship__opt b { font-family: var(--f-mono); font-weight: 500; white-space: nowrap; }

.tabs { margin-top: 28px; }
.tabs__list { display: flex; gap: 24px; border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.tabs__list button { padding: 14px 0; font-weight: 600; font-size: 15px; color: var(--ink-3); border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; }
.tabs__list button[aria-selected="true"] { color: var(--ink); border-color: var(--ink); }
.tabs__panel { padding: 22px 0; font-size: 15px; color: var(--ink-2); }
.tabs__panel ul li { padding: 6px 0 6px 22px; position: relative; }
.tabs__panel ul li::before { content: ''; position: absolute; left: 0; top: 16px; width: 12px; height: 2px; background: repeating-linear-gradient(90deg, var(--turq) 0 4px, transparent 4px 6px); }

/* Tabela de medidas */
.mtable { width: 100%; border-collapse: collapse; font-family: var(--f-mono); font-size: 13px; }
.mtable th, .mtable td { padding: 10px 6px; text-align: center; border-bottom: 1px solid var(--line); }
.mtable th { font-weight: 500; color: var(--ink-3); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; }
.mtable th:first-child, .mtable td:first-child { text-align: left; font-family: var(--f-body); color: var(--ink); font-weight: 600; font-size: 13.5px; }
.mtable thead th { background: var(--paper); color: var(--ink); font-size: 13px; }
.mtable tr.is-hi td { background: var(--turq-50); }
.mtable .col-hi { background: var(--turq-50); }
.mtable-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: #fff; }
.mtable caption { text-align: left; padding: 14px; font-family: var(--f-display); font-size: 22px; }

.sticky-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; background: rgba(255, 255, 255, .96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); display: none; align-items: center; gap: 12px; transform: translateY(100%); transition: transform .35s var(--ease); }
.sticky-buy.is-on { transform: none; }
.sticky-buy img { width: 44px; height: 54px; object-fit: cover; border-radius: 6px; }
.sticky-buy div { flex: 1; min-width: 0; }
.sticky-buy strong { display: block; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-buy span { font-family: var(--f-mono); font-size: 14px; }

/* Assistente de tamanho */
.sizer { display: grid; gap: 16px; }
.sizer__res { padding: 20px; border-radius: var(--r); background: var(--turq-50); border: 1px solid var(--turq-soft); display: none; }
.sizer__res.is-on { display: block; }
.sizer__res .big { font-family: var(--f-mono); font-size: 36px; }
.sizer__res .big small { font-size: 14px; color: var(--ink-2); margin-left: 4px; }
.sizer__pair { display: flex; gap: 32px; margin: 6px 0 10px; }

/* 11. SACOLA / CHECKOUT ----------------------------------------------- */
.drawer { position: fixed; inset: 0; z-index: 100; pointer-events: none; }
.drawer__bg { position: absolute; inset: 0; background: rgba(4, 40, 38, .45); opacity: 0; transition: opacity .3s; }
.drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(460px, 100vw); background: var(--paper); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .45s var(--ease); }
.drawer.is-open { pointer-events: auto; }
.drawer.is-open .drawer__bg { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.drawer__head h2 { font-family: var(--f-display); font-size: 28px; }
.drawer__body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.drawer__foot { padding: 20px 24px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #fff; display: grid; gap: 10px; }

.freebar { padding: 14px 24px; background: var(--turq-50); font-size: 13.5px; border-bottom: 1px solid var(--turq-soft); }
.freebar__track { height: 6px; border-radius: 3px; background: #fff; margin-top: 8px; overflow: hidden; }
.freebar__track i { display: block; height: 100%; background: repeating-linear-gradient(90deg, var(--teal) 0 8px, var(--turq) 8px 12px); border-radius: 3px; transition: width .6s var(--ease); }

.line-item { display: grid; grid-template-columns: 84px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.line-item img { width: 84px; height: 105px; object-fit: cover; border-radius: 8px; }
.line-item h4 { font-family: var(--f-display); font-size: 19px; display: flex; justify-content: space-between; gap: 8px; }
.line-item h4 b { font-family: var(--f-mono); font-size: 14px; font-weight: 500; white-space: nowrap; }
.line-item ul { font-size: 13px; color: var(--ink-2); margin: 6px 0 10px; }
.line-item ul li { display: flex; gap: 6px; }
.line-item ul li i { width: 12px; height: 12px; border-radius: 50%; display: inline-block; margin-top: 4px; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15); }
.line-item .embr-tag { display: inline-flex; gap: 6px; align-items: center; margin: 2px 0 8px; font-size: 12.5px; padding: 4px 10px; border-radius: 6px; background: var(--turq-50); color: var(--teal-deep); }
.line-item .embr-tag em { font-family: var(--f-script); font-size: 16px; font-style: normal; font-weight: 700; }
.line-item__row { display: flex; justify-content: space-between; align-items: center; }
.line-item__rm { font-size: 13px; color: var(--ink-3); text-decoration: underline; }
.line-item__rm:hover { color: var(--alert); }

.totals { display: grid; gap: 8px; font-size: 14.5px; }
.totals div { display: flex; justify-content: space-between; gap: 12px; }
.totals b { font-family: var(--f-mono); font-weight: 500; }
.totals .grand { font-size: 18px; padding-top: 10px; border-top: 1px solid var(--line); margin-top: 4px; }
.totals .grand b { font-size: 22px; }
.totals .disc { color: var(--ok); }

.cart-page { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; padding-bottom: 96px; }
.cart-page .line-item { grid-template-columns: 110px 1fr; }
.cart-page .line-item img { width: 110px; height: 138px; }
.summary { position: sticky; top: calc(var(--header-h) + 20px); background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; display: grid; gap: 18px; }
.summary h2 { font-family: var(--f-display); font-size: 28px; }
.coupon { display: flex; gap: 8px; }
.coupon .input { min-height: 46px; text-transform: uppercase; font-family: var(--f-mono); }
.coupon-msg { font-size: 13px; }
.coupon-msg.ok { color: var(--ok); }
.coupon-msg.err { color: var(--alert); }
.pay-icons { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.pay-icons span { padding: 4px 8px; border: 1px solid var(--line); border-radius: 5px; font-family: var(--f-mono); font-size: 11px; color: var(--ink-2); background: #fff; }
.secure { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12.5px; color: var(--ink-3); }
.secure svg { width: 14px; }

.checkout { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; padding-bottom: 96px; }
.cksteps { display: flex; gap: 8px; margin-bottom: 32px; counter-reset: ck; }
.cksteps li { flex: 1; display: flex; flex-direction: column; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink-3); counter-increment: ck; }
.cksteps li::before { content: ''; height: 3px; border-radius: 2px; background: var(--line); }
.cksteps li.is-done, .cksteps li.is-on { color: var(--ink); }
.cksteps li.is-done::before { background: var(--teal); }
.cksteps li.is-on::before { background: repeating-linear-gradient(90deg, var(--teal) 0 8px, var(--turq) 8px 12px); }
.ckpanel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 36px); display: grid; gap: 18px; }
.ckpanel h2 { font-family: var(--f-display); font-size: 30px; }
.ckpanel__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.radio-card { display: flex; gap: 14px; align-items: center; padding: 16px 18px; border-radius: var(--r); border: 1.5px solid var(--line-2); cursor: pointer; transition: .2s; background: #fff; }
.radio-card:hover { border-color: var(--ink-3); }
.radio-card input { appearance: none; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--line-2); flex: none; margin: 0; display: grid; place-items: center; }
.radio-card input:checked { border-color: var(--ink); }
.radio-card input:checked::after { content: ''; width: 12px; height: 12px; border-radius: 50%; background: var(--ink); }
.radio-card:has(input:checked) { border-color: var(--ink); box-shadow: 0 0 0 3px var(--paper-2); }
.radio-card div { flex: 1; }
.radio-card strong { display: block; font-size: 15px; }
.radio-card span { font-size: 13px; color: var(--ink-2); }
.radio-card b { font-family: var(--f-mono); font-weight: 500; white-space: nowrap; }
.radio-card .tag { font-family: var(--f-mono); font-size: 11px; background: var(--turq); padding: 3px 8px; border-radius: 4px; margin-left: 6px; }
.pay-detail { padding: 18px; border-radius: var(--r); background: var(--paper); display: grid; gap: 14px; }
.review-box { border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; font-size: 14px; display: flex; justify-content: space-between; gap: 12px; }
.review-box strong { display: block; margin-bottom: 4px; }
.review-box p { margin: 0; color: var(--ink-2); }
.warn { padding: 16px 18px; border-radius: var(--r); background: #fff8e6; border: 1px solid #f0dc9f; font-size: 14px; display: flex; gap: 12px; }
.warn svg { width: 22px; color: #a37b12; flex: none; }

.pix-box { display: grid; grid-template-columns: 180px 1fr; gap: 24px; align-items: center; }
.pix-qr { width: 180px; height: 180px; border-radius: 12px; background: #fff; padding: 10px; border: 1px solid var(--line); }
.pix-code { font-family: var(--f-mono); font-size: 12px; word-break: break-all; padding: 12px; background: var(--paper); border-radius: 8px; border: 1px dashed var(--line-2); }

/* Acompanhamento de produção */
.track { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; margin: 32px 0; }
.track::before { content: ''; position: absolute; top: 21px; left: 10%; right: 10%; height: 2px; background: var(--line); }
.track__fill { position: absolute; top: 21px; left: 10%; height: 2px; background: repeating-linear-gradient(90deg, var(--teal) 0 8px, var(--turq) 8px 12px); transition: width 1s var(--ease); }
.track li { position: relative; text-align: center; font-size: 13px; color: var(--ink-3); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.track li i { width: 44px; height: 44px; border-radius: 50%; background: var(--paper); border: 2px solid var(--line); display: grid; place-items: center; position: relative; z-index: 1; }
.track li i svg { width: 20px; }
.track li.is-done { color: var(--ink); }
.track li.is-done i { background: var(--teal); border-color: var(--teal); color: #fff; }
.track li.is-now { color: var(--ink); font-weight: 600; }
.track li.is-now i { border-color: var(--teal); color: var(--teal); box-shadow: 0 0 0 6px var(--turq-50); }

.success { text-align: center; max-width: 760px; margin: 0 auto; padding: 40px 0 96px; }
.success__mark { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 24px; background: var(--turq); display: grid; place-items: center; }
.success__mark svg { width: 40px; stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw .8s .3s forwards var(--ease); }
@keyframes draw { to { stroke-dashoffset: 0; } }
.order-card { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; margin-top: 32px; }

/* 12. PÁGINAS --------------------------------------------------------- */
.page-hero { padding-top: 24px; padding-bottom: clamp(40px, 6vw, 72px); }
.page-hero .h-xl { max-width: 14ch; }
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.about__img { border-radius: 220px 220px var(--r-lg) var(--r-lg); overflow: hidden; aspect-ratio: 4/5; }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value { padding: 28px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); }
.value svg { width: 32px; color: var(--teal); margin-bottom: 16px; }
.value h3 { font-family: var(--f-display); font-size: 24px; margin-bottom: 8px; }
.value p { font-size: 15px; color: var(--ink-2); margin: 0; }
.masonry { columns: 3 280px; column-gap: 16px; }
.masonry figure { margin: 0 0 16px; break-inside: avoid; border-radius: var(--r); overflow: hidden; position: relative; cursor: zoom-in; }
.masonry img { width: 100%; transition: transform .8s var(--ease); }
.masonry figure:hover img { transform: scale(1.04); }
.masonry figcaption { position: absolute; left: 12px; bottom: 12px; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .92); font-size: 13px; font-weight: 500; }
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 80px); }
.contact__list { display: grid; gap: 14px; margin: 28px 0; }
.contact__list a, .contact__list div { display: flex; gap: 16px; align-items: center; padding: 18px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); transition: border-color .2s; }
.contact__list a:hover { border-color: var(--ink); }
.contact__list svg { width: 24px; color: var(--teal); flex: none; }
.contact__list small { display: block; font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.map { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/9; background: var(--paper-2); }
.map iframe { width: 100%; height: 100%; border: 0; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 40px); display: grid; gap: 16px; }
.legal { max-width: 780px; }
.legal h2 { font-family: var(--f-display); font-size: 30px; margin: 48px 0 14px; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--ink-2); }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.legal-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }

.account { display: grid; grid-template-columns: 260px 1fr; gap: 40px; padding-bottom: 96px; align-items: start; }
.account__nav { display: grid; gap: 4px; position: sticky; top: calc(var(--header-h) + 20px); }
.account__nav button { text-align: left; padding: 12px 16px; border-radius: 10px; font-weight: 500; }
.account__nav button[aria-current="true"] { background: #fff; box-shadow: var(--shadow-1); }
.auth { max-width: 460px; margin: 0 auto 96px; }
.order-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 14px; }
.order-row .imgs { display: flex; gap: 6px; margin-top: 12px; }
.order-row .imgs img { width: 48px; height: 60px; object-fit: cover; border-radius: 6px; }
.status { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: var(--turq-50); color: var(--teal-deep); }
.status i { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 5px rgba(10, 127, 122, .2); } }

/* 13. RODAPÉ ---------------------------------------------------------- */
.footer { background: var(--ink); color: #c5d3d0; padding: 80px 0 0; margin-top: 0; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: repeating-linear-gradient(90deg, var(--turq) 0 9px, transparent 9px 15px); }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding-bottom: 56px; }
.footer__brand img { height: 110px; width: auto; filter: brightness(1.6); margin: -10px 0 10px -8px; }
.footer__brand p { font-size: 14.5px; max-width: 34ch; }
.footer h4 { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--turq); margin-bottom: 18px; font-weight: 400; }
.footer li { padding: 5px 0; font-size: 14.5px; }
.footer a:hover { color: var(--turq); }
.socials { display: flex; gap: 8px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .2); display: grid; place-items: center; transition: .2s; }
.socials a:hover { background: var(--turq); color: var(--ink); border-color: var(--turq); }
.socials svg { width: 18px; }
.footer__pay { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; align-items: center; padding: 28px 0; border-top: 1px solid rgba(255, 255, 255, .1); }
.footer__pay .pay-icons span { background: transparent; color: #c5d3d0; border-color: rgba(255, 255, 255, .18); }
.footer__legal { padding: 22px 0 28px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 12.5px; color: #86a09c; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__big { font-family: var(--f-display); font-size: clamp(56px, 13vw, 200px); line-height: .85; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1px rgba(46, 224, 214, .35); white-space: nowrap; overflow: hidden; padding-bottom: 20px; user-select: none; text-align: center; }

/* 14. FLUTUANTES ------------------------------------------------------ */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 60; display: flex; align-items: center; gap: 12px; }
.wa-float__btn { width: 62px; height: 62px; border-radius: 50%; background: #1faa55; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(31, 170, 85, .6); transition: transform .25s var(--ease); position: relative; }
.wa-float__btn::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #1faa55; animation: ring 2.4s infinite; }
@keyframes ring { from { transform: scale(1); opacity: .8; } to { transform: scale(1.6); opacity: 0; } }
.wa-float__btn:hover { transform: scale(1.08); }
.wa-float__btn svg { width: 32px; height: 32px; }
.wa-float__bubble { background: #fff; padding: 12px 16px; border-radius: 14px 14px 4px 14px; box-shadow: var(--shadow-2); font-size: 14px; max-width: 240px; position: relative; opacity: 0; transform: translateX(10px); transition: .4s var(--ease); pointer-events: none; }
.wa-float__bubble.is-on { opacity: 1; transform: none; pointer-events: auto; }
.wa-float__bubble strong { display: block; font-size: 13px; color: var(--teal); }
.wa-float__bubble button { position: absolute; top: -8px; left: -8px; width: 22px; height: 22px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 13px; line-height: 1; }
body.has-sticky .wa-float { bottom: 88px; }

.toast-zone { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 200; display: grid; gap: 8px; width: min(420px, calc(100vw - 32px)); }
.toast { background: var(--ink); color: #fff; padding: 14px 18px; border-radius: 12px; display: flex; gap: 12px; align-items: center; font-size: 14px; box-shadow: var(--shadow-2); animation: toast .45s var(--ease); }
.toast svg { width: 20px; color: var(--turq); flex: none; }
.toast a { margin-left: auto; color: var(--turq); font-weight: 600; white-space: nowrap; }
@keyframes toast { from { opacity: 0; transform: translateY(16px); } }

.modal { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 16px; pointer-events: none; }
.modal__bg { position: absolute; inset: 0; background: rgba(4, 40, 38, .5); opacity: 0; transition: .3s; }
.modal__box { position: relative; width: min(760px, 100%); max-height: calc(100vh - 32px); overflow-y: auto; background: var(--paper); border-radius: var(--r-lg); padding: clamp(22px, 4vw, 40px); opacity: 0; transform: translateY(20px) scale(.98); transition: .35s var(--ease); }
.modal.is-open { pointer-events: auto; }
.modal.is-open .modal__bg { opacity: 1; }
.modal.is-open .modal__box { opacity: 1; transform: none; }
.modal__close { position: absolute; top: 14px; right: 14px; }
.modal h2 { font-family: var(--f-display); font-size: 32px; margin-bottom: 8px; padding-right: 40px; }
.modal--wide .modal__box { width: min(1080px, 100%); }
.lightbox .modal__box { background: transparent; padding: 0; width: auto; max-width: 96vw; overflow: visible; }
.lightbox img { max-height: 88vh; max-width: 92vw; border-radius: var(--r); }
.lightbox .modal__close { background: #fff; top: -16px; right: -16px; }

.qv { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; }
.qv img { border-radius: var(--r); aspect-ratio: 4/5; object-fit: cover; width: 100%; }

.cookie { position: fixed; left: 20px; bottom: 20px; z-index: 70; max-width: 420px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; box-shadow: var(--shadow-2); font-size: 14px; display: grid; gap: 14px; animation: toast .5s var(--ease); }
.cookie div { display: flex; gap: 8px; }

/* 15. RESPONSIVO ------------------------------------------------------ */
@media (max-width: 1180px) {
  .nav { gap: 16px; }
  .nav > li > a { font-size: 14px; }
  .grid-products { grid-template-columns: repeat(3, 1fr); }
  .fabrics { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
  :root { --header-h: 66px; }
  .nav, .topbar__side { display: none; }
  .burger { display: grid; }
  .header .wrap { grid-template-columns: auto 1fr auto; }
  .logo { justify-self: center; grid-column: 2; }
  .burger { grid-column: 1; grid-row: 1; }
  .actions { grid-column: 3; }
  .logo img { height: 50px; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero__visual { min-height: 520px; order: -1; }
  .hero__photo { width: 100%; border-radius: 160px 160px var(--r-lg) var(--r-lg); }
  .trust ul { grid-template-columns: 1fr 1fr; }
  .trust li:nth-child(3) { border-left: 0; }
  .trust li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .cats { grid-template-columns: 1fr 1fr; grid-template-rows: 380px 260px 260px; }
  .cats .cat:first-child { grid-column: span 2; grid-row: auto; }
  .embroidery .wrap, .team, .faq, .news, .about, .contact { grid-template-columns: 1fr; }
  .team__img { min-height: 340px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .steps::before { display: none; }
  .shop { grid-template-columns: 1fr; }
  .filters { position: fixed; inset: 0 auto 0 0; width: min(360px, 88vw); max-height: none; z-index: 110; background: var(--paper); padding: 24px; transform: translateX(-100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-2); }
  .filters.is-open { transform: none; }
  .filters__close { display: flex !important; }
  .btn-filter { display: inline-flex; }
  .pdp { grid-template-columns: 1fr; }
  .gallery { position: static; grid-template-columns: 1fr; }
  .thumbs { flex-direction: row; order: 2; max-height: none; overflow-x: auto; }
  .thumbs button { width: 70px; }
  .stage__nav { display: flex; }
  .sticky-buy { display: flex; }
  .cart-page, .checkout, .account { grid-template-columns: 1fr; }
  .summary { position: static; }
  .account__nav { position: static; grid-auto-flow: column; overflow-x: auto; }
  .values { grid-template-columns: 1fr; }
  .qv { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 15.5px; }
  .grid-products { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
  .card__name { font-size: 18px; }
  .card__desc { display: none; }
  .card__quick { display: none; }
  .card__price strong { font-size: 15px; }
  .hero__visual { min-height: 440px; }
  .hero__cta .btn { flex: 1; }
  .trust li { padding: 16px 12px; gap: 10px; }
  .trust svg { width: 24px; }
  .trust strong { font-size: 13px; }
  .trust span { font-size: 12px; }
  .cats { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-rows: 240px; }
  .cats .cat:first-child { grid-column: auto; grid-row: auto; }
  .steps { grid-template-columns: 1fr; }
  .fabrics, .quotes { grid-template-columns: 1fr; }
  .insta { grid-template-columns: repeat(3, 1fr); }
  .sizes { grid-template-columns: repeat(4, 1fr); }
  .buy2 { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .track { grid-template-columns: 1fr; gap: 16px; }
  .track::before, .track__fill { display: none; }
  .track li { flex-direction: row; text-align: left; }
  .pix-box { grid-template-columns: 1fr; justify-items: center; }
  .wa-float { right: 14px; bottom: 14px; }
  .wa-float__bubble { display: none; }
  .cookie { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .cart-page .line-item { grid-template-columns: 84px 1fr; }
  .cart-page .line-item img { width: 84px; height: 105px; }
  .shop-hero { grid-template-columns: 1fr; }
  .news form { flex-direction: column; border-radius: var(--r); background: transparent; border: 0; padding: 0; }
  .news input { background: #fff; border: 1.5px solid var(--line-2); border-radius: 999px; min-height: 52px; }
  .team__num { gap: 20px; }
  .lens { display: none; }
}

/* ---- Complementos ---------------------------------------------------- */
.filters__close { display: none; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.filters-bg { position: fixed; inset: 0; background: rgba(4, 40, 38, .45); z-index: 105; }

/* Bordado ao vivo no hero — a assinatura aparece logo na primeira dobra */
.hero__patch { position: absolute; left: 0; bottom: 36px; z-index: 3; width: min(360px, 62%); background: var(--white); border-radius: var(--r-lg); padding: 12px; box-shadow: var(--shadow-2); animation: fadein 1s .7s var(--ease) both; }
.hero__patch .patch { aspect-ratio: 16/9; border-radius: 14px; box-shadow: inset 0 0 40px rgba(0, 0, 0, .25); }
.hero__patch .patch::before { inset: 8px; }
.hero__patch .stitchtext .n { font-size: clamp(28px, 3vw, 40px); }
.hero__patch .stitchtext .p { font-size: 11px; }
.hero__patch.is-bastao .stitchtext .n { font-size: 24px; }
.hero__patch-row { display: flex; gap: 8px; align-items: center; margin-top: 10px; }
.hero__patch-row input { flex: 1; min-width: 0; border: 0; border-bottom: 1.5px dashed var(--line-2); background: none; padding: 8px 2px; outline: none; font-size: 15px; }
.hero__patch-row input:focus { border-bottom-color: var(--teal); }
.hero__patch-row .thread { width: 22px; height: 22px; }
.hero__patch-row .thread::after { inset: -4px; }
.hero__patch-row .thread[aria-pressed="true"]::after { border-color: var(--ink); }
.hero__patch small { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 11px; color: var(--ink-3); margin-top: 8px; letter-spacing: .04em; }
@media (max-width: 680px) {
  .hero__patch { width: 78%; bottom: 16px; padding: 10px; }
}
.hero__title { font-size: clamp(44px, 6vw, 88px); }
.steps { list-style: none; margin: 0; padding: 0; }
.logo img { height: 66px; }
@media (max-width: 1024px) { .logo img { height: 52px; } }
.quote { margin: 0; }
.toast--alerta svg { color: #ffc978; }
.pinfo__top { flex-wrap: wrap; }
@media (max-width: 1024px) {
  .header .wrap > nav { display: none; }
}
@media (max-width: 680px) {
  .grid-products { grid-template-columns: 1fr 1fr !important; }
  .actions .icon-btn { width: 40px; }
  .actions a[aria-label="Minha conta"] { display: none; }
}
/* Controles sobre o fundo escuro do bordado */
.embroidery .opt-text button { background: transparent; color: #cfe3e0; border-color: rgba(255, 255, 255, .22); }
.embroidery .opt-text button[aria-checked="true"] { background: var(--turq); color: var(--ink); border-color: var(--turq); }
.embroidery .swatch[aria-checked="true"]::after { border-color: var(--turq); }
