/* ============================================================
   GLOOR TATTOO SUPPLY — Apresentação de marca
   Direção: SATOSHI · 2026
   ============================================================ */

:root {
  --ink:        #0D0D0E;
  --graphite:   #17181A;
  --smoke:      #3A3C3E;
  --steel:      #8A8F94;
  --bone:       #EFEBE2;
  --paper:      #F5F2EA;
  --blood:      #B3202A;

  --line:       rgba(239, 235, 226, 0.14);
  --line-dark:  rgba(13, 13, 14, 0.16);

  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --ease-cinema: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-slow:   cubic-bezier(0.65, 0.05, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
em { font-style: italic; }

::selection { background: var(--blood); color: var(--bone); }

/* ====== TIPOGRAFIA FLUIDA ====== */
.display-xl { font-family: var(--display); font-weight: 800; font-size: clamp(52px, 9vw, 138px); line-height: 0.98; letter-spacing: -0.02em; }
.display-l  { font-family: var(--display); font-weight: 700; font-size: clamp(38px, 6vw, 88px);  line-height: 1.02; letter-spacing: -0.015em; }
.display-m  { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 4vw, 56px);  line-height: 1.08; letter-spacing: -0.01em; }
.serif-quote { font-family: var(--serif); font-style: italic; font-weight: 500; }

.tag {
  font-family: var(--sans); font-weight: 500; font-size: 11px;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--steel);
}
.plate-no {
  font-family: var(--serif); font-style: italic; font-size: 15px;
  color: var(--steel); margin-bottom: 18px;
}

/* ====== PROGRESS ====== */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; background: transparent; z-index: 90; }
.progress .bar { height: 100%; width: 0%; background: var(--blood); }

/* ====== NAV ====== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 36px;
  background: linear-gradient(to bottom, rgba(13,13,14,0.85), transparent);
}
nav .brand { display: flex; align-items: center; gap: 12px; }
nav .brand img { width: 30px; height: 30px; border-radius: 50%; }
nav .brand span {
  font-family: var(--display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase;
}
nav .brand span i { font-style: normal; color: var(--blood); }
nav .meta { font-size: 11px; letter-spacing: 0.18em; color: var(--steel); text-transform: uppercase; }

/* ====== FRAME PADRÃO ====== */
.frame { max-width: 1240px; margin: 0 auto; padding: 140px 48px; position: relative; }
section { position: relative; }

/* ====== FOTO FULL-BLEED + VEIL + WATERMARK ====== */
.bg-photo { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.bg-photo img.ph { width: 100%; height: 100%; object-fit: cover; display: block; }
.bg-photo img.ph.kenburns { animation: kenburns 28s var(--ease-slow) infinite alternate; }
@keyframes kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1.5%); }
}
.bg-photo .veil {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,14,0.62) 0%, rgba(13,13,14,0.5) 45%, rgba(13,13,14,0.78) 100%);
}
.bg-photo::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 300px; height: 110px;
  background: linear-gradient(135deg, transparent 0%, transparent 35%, rgba(13,13,14,0.75) 80%, rgba(13,13,14,0.92) 100%);
  pointer-events: none; z-index: 2;
}
.bg-photo .wm {
  position: absolute; bottom: 22px; right: 28px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  border: 1px solid rgba(239,235,226,0.3);
  border-radius: 30px;
  background: rgba(13,13,14,0.55);
  backdrop-filter: blur(6px);
}
.bg-photo .wm img { width: 18px; height: 18px; border-radius: 50%; }
.bg-photo .wm span { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(239,235,226,0.85); }

/* ====== REVEAL ====== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1.4s var(--ease-cinema), transform 1.4s var(--ease-cinema); }
.reveal.in { opacity: 1; transform: none; }

/* ====== HERO ====== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  background: var(--ink);
  overflow: hidden;
}
.hero .frame { z-index: 4; }
.hero .frame {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: space-between; padding-top: 110px; padding-bottom: 60px;
  width: 100%;
}
.hero .top-line { display: flex; justify-content: space-between; align-items: flex-start; }
.hero .crest { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--bone); }
.hero .crest small { display: block; font-family: var(--sans); font-style: normal; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--steel); margin-top: 6px; }
.hero .meta { text-align: right; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--steel); line-height: 1.9; }

.hero .center { text-align: center; padding: 40px 0; }
.hero .emblem { width: clamp(200px, 26vw, 330px); margin: 0 auto 44px; filter: drop-shadow(0 8px 40px rgba(13,13,14,0.6)); }
.hero h1 { color: var(--bone); }
.hero h1 em { font-family: var(--serif); font-weight: 500; letter-spacing: 0; }
.hero .sub {
  margin-top: 28px; font-size: 14px; letter-spacing: 0.06em; color: var(--steel);
  font-weight: 300;
}

.hero .bottom-line { display: flex; justify-content: space-between; align-items: flex-end; }
.hero .signature { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--steel); line-height: 1.5; }
.scroll-cue { display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--steel); }
.scroll-cue::after {
  content: ''; width: 1px; height: 44px; background: var(--line);
  animation: cueDrop 2.4s var(--ease-cinema) infinite;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero .top-line, .hero .center, .hero .bottom-line { opacity: 0; transform: translateY(24px); animation: heroIn 1.6s var(--ease-cinema) forwards; }
.hero .top-line { animation-delay: 0.9s; }
.hero .center { animation-delay: 1.5s; }
.hero .bottom-line { animation-delay: 2.3s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ====== OPENER MANIFESTO ====== */
.opener { background: var(--ink); border-top: 1px solid var(--line); }
.opener .frame { padding-top: 180px; padding-bottom: 180px; }
.opener .reveal-text { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3.6vw, 48px); line-height: 1.42; max-width: 21ch; }
.opener .reveal-text span.line { display: block; overflow: hidden; }
.opener .reveal-text span.line > span { display: inline-block; transform: translateY(115%); transition: transform 1.5s var(--ease-cinema); }
.opener.in .reveal-text span.line > span { transform: translateY(0); }
.opener.in .line:nth-child(2) > span { transition-delay: 0.15s; }
.opener.in .line:nth-child(3) > span { transition-delay: 0.3s; }
.opener.in .line:nth-child(4) > span { transition-delay: 0.45s; }
.opener.in .line:nth-child(5) > span { transition-delay: 0.6s; }
.opener .reveal-text em { color: var(--steel); }
.opener .reveal-text .final { font-family: var(--display); font-style: normal; font-weight: 800; letter-spacing: -0.01em; }
.opener .reveal-text .final i { font-style: normal; color: var(--blood); }

/* ====== CHAPTER (2 col sticky) ====== */
.chapter { background: var(--ink); border-top: 1px solid var(--line); }
.chapter .cols { display: grid; grid-template-columns: 5fr 6fr; gap: 80px; align-items: start; }
.chapter .col-left { position: sticky; top: 120px; }
.chapter .col-left .photo { margin-top: 48px; border: 1px solid var(--line); }
.chapter .col-left .photo img { width: 100%; display: block; filter: saturate(0.62) contrast(1.06) brightness(0.82); }
.chapter .col-left .photo-cap { margin-top: 14px; font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--steel); }
.chapter h2 { margin-top: 20px; }
.chapter .col-right p { margin-bottom: 26px; font-size: 16px; color: rgba(239,235,226,0.82); max-width: 58ch; }
.chapter .col-right p strong { font-weight: 500; color: var(--bone); }
.chapter .sig { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--steel); margin-top: 40px; }

.chapter .facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 48px; }
.chapter .fact { background: var(--ink); padding: 26px 22px; }
.chapter .fact .num { font-family: var(--display); font-weight: 800; font-size: 40px; line-height: 1; }
.chapter .fact .lbl { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--steel); margin-top: 10px; }

/* ====== PLATE BLEED (tipográfico) ====== */
.plate {
  min-height: 88vh; display: flex; align-items: center;
  background: var(--graphite);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.plate .frame { width: 100%; position: relative; z-index: 4; }
.plate .quote { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(34px, 5.4vw, 76px); line-height: 1.18; max-width: 20ch; }
.plate .quote em { color: var(--blood); }
.plate .caption { margin-top: 36px; display: flex; align-items: center; gap: 16px; font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--steel); }
.plate .caption::before { content: ''; width: 44px; height: 1px; background: var(--blood); }
.plate .mark-bg {
  position: absolute; right: -6%; top: 50%; transform: translateY(-50%);
  width: clamp(320px, 42vw, 620px); opacity: 0.05; pointer-events: none;
  filter: grayscale(1);
}

/* ====== TERRITÓRIO — 4 LOJAS ====== */
.territory { background: var(--ink); border-top: 1px solid var(--line); }
.territory .head { max-width: 700px; margin-bottom: 72px; }
.territory .head h2 { margin-top: 20px; }
.territory .head p { margin-top: 24px; color: rgba(239,235,226,0.75); font-size: 16px; }
.stores { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.store { background: var(--ink); padding: 40px 28px 34px; display: flex; flex-direction: column; gap: 0; min-height: 300px; transition: background 0.6s var(--ease-cinema); }
.store:hover { background: var(--graphite); }
.store .no { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--blood); }
.store h3 { font-family: var(--display); font-weight: 700; font-size: 25px; letter-spacing: -0.01em; margin: 14px 0 6px; }
.store .uf { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--steel); margin-bottom: 26px; }
.store .addr { font-size: 14px; color: rgba(239,235,226,0.8); line-height: 1.7; }
.store .fone { margin-top: auto; padding-top: 26px; font-size: 13px; color: var(--steel); letter-spacing: 0.04em; }
.store .fone b { color: var(--bone); font-weight: 500; }

/* ====== DIAGNÓSTICO ====== */
.diagnosis { background: var(--paper); color: var(--ink); }
.diagnosis .tag, .diagnosis .plate-no { color: rgba(13,13,14,0.5); }
.diagnosis .head { max-width: 760px; margin-bottom: 72px; }
.diagnosis .head h2 { margin-top: 20px; }
.diagnosis .head p { margin-top: 24px; font-size: 16px; color: rgba(13,13,14,0.72); max-width: 56ch; }
.audit { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.audit .item { background: var(--paper); padding: 34px 28px; }
.audit .item .st { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; color: var(--blood); }
.audit .item h4 { font-family: var(--display); font-weight: 700; font-size: 19px; margin: 14px 0 10px; letter-spacing: -0.01em; }
.audit .item p { font-size: 14px; line-height: 1.7; color: rgba(13,13,14,0.68); }
.audit .item p code { font-family: ui-monospace, 'Cascadia Code', Consolas, monospace; font-size: 12.5px; background: rgba(13,13,14,0.07); padding: 2px 6px; border-radius: 3px; }
.diagnosis .verdict { margin-top: 64px; font-family: var(--serif); font-style: italic; font-size: clamp(22px, 3vw, 34px); line-height: 1.4; max-width: 30ch; }
.diagnosis .verdict em { color: var(--blood); }

/* ====== A NOVA BUSCA — CONVERSAS IA ====== */
.ia-search { background: var(--ink); border-top: 1px solid var(--line); }
.ia-search .head { max-width: 760px; margin-bottom: 80px; }
.ia-search .head h2 { margin-top: 20px; }
.ia-search .head p { margin-top: 24px; font-size: 16px; color: rgba(239,235,226,0.75); max-width: 56ch; }

.convo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.convo { border: 1px solid var(--line); background: var(--graphite); padding: 36px 32px 40px; }
.convo.after { border-color: rgba(179,32,42,0.5); }
.convo .state { display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--steel); margin-bottom: 34px; }
.convo.after .state { color: var(--blood); }
.convo .state::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--smoke); }
.convo.after .state::before { background: var(--blood); }

.bubble { margin-bottom: 26px; }
.bubble .who { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--steel); margin-bottom: 10px; }
.bubble .msg { font-size: 15px; line-height: 1.7; padding: 18px 22px; border-radius: 2px; }
.bubble.user .msg { background: rgba(239,235,226,0.06); border: 1px solid var(--line); color: var(--bone); }
.bubble.assist .msg { background: transparent; border-left: 2px solid var(--smoke); color: rgba(239,235,226,0.72); }
.convo.after .bubble.assist .msg { border-left-color: var(--blood); color: var(--bone); }
.bubble .msg em { color: var(--bone); font-style: normal; font-weight: 500; }
.convo.after .bubble.assist .msg em { color: var(--blood); font-weight: 500; }
.convo .note { font-size: 12.5px; color: var(--steel); line-height: 1.7; border-top: 1px solid var(--line); padding-top: 20px; margin-top: 8px; }

/* ====== 4 PILARES GEO ====== */
.geo { background: var(--ink); border-top: 1px solid var(--line); }
.geo .head { max-width: 720px; margin-bottom: 72px; }
.geo .head h2 { margin-top: 20px; }
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pillar { background: var(--ink); padding: 44px 38px; transition: background 0.6s var(--ease-cinema); }
.pillar:hover { background: var(--graphite); }
.pillar .idx { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--blood); }
.pillar h3 { font-family: var(--display); font-weight: 700; font-size: 24px; margin: 16px 0 14px; letter-spacing: -0.01em; }
.pillar p { font-size: 15px; color: rgba(239,235,226,0.72); max-width: 46ch; }
.pillar p code { font-family: ui-monospace, 'Cascadia Code', Consolas, monospace; font-size: 13px; color: var(--bone); background: rgba(239,235,226,0.07); padding: 2px 7px; border-radius: 3px; }

/* ====== SITE COMO MATRIZ ====== */
.matrix { background: var(--paper); color: var(--ink); }
.matrix .tag, .matrix .plate-no { color: rgba(13,13,14,0.5); }
.matrix .head { max-width: 740px; margin-bottom: 72px; }
.matrix .head h2 { margin-top: 20px; }
.matrix .head p { margin-top: 24px; font-size: 16px; color: rgba(13,13,14,0.72); max-width: 56ch; }
.blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.block { background: var(--paper); padding: 38px 30px; min-height: 240px; display: flex; flex-direction: column; }
.block .num { font-family: var(--display); font-weight: 800; font-size: 15px; color: var(--blood); letter-spacing: 0.08em; }
.block h4 { font-family: var(--display); font-weight: 700; font-size: 20px; margin: 16px 0 12px; letter-spacing: -0.01em; }
.block p { font-size: 14px; line-height: 1.7; color: rgba(13,13,14,0.68); }

/* ====== DNA GRID ====== */
.dna { background: var(--ink); border-top: 1px solid var(--line); }
.dna .head { margin-bottom: 64px; }
.dna .head h2 { margin-top: 20px; }
.dna .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.dna .card { background: var(--ink); padding: 34px 26px; min-height: 210px; opacity: 0; transform: translateY(24px); transition: all 1.2s var(--ease-cinema); }
.dna.in .card { opacity: 1; transform: none; }
.dna.in .card:nth-child(1) { transition-delay: 0.05s; }
.dna.in .card:nth-child(2) { transition-delay: 0.15s; }
.dna.in .card:nth-child(3) { transition-delay: 0.25s; }
.dna.in .card:nth-child(4) { transition-delay: 0.35s; }
.dna.in .card:nth-child(5) { transition-delay: 0.45s; }
.dna.in .card:nth-child(6) { transition-delay: 0.55s; }
.dna.in .card:nth-child(7) { transition-delay: 0.65s; }
.dna.in .card:nth-child(8) { transition-delay: 0.75s; }
.dna .card .label { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--blood); margin-bottom: 16px; }
.dna .card h4 { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; margin-bottom: 10px; }
.dna .card p { font-size: 13.5px; line-height: 1.65; color: rgba(239,235,226,0.65); }

/* ====== SENSORIAL ====== */
.sensorial { background: var(--graphite); border-top: 1px solid var(--line); }
.sensorial .head { margin-bottom: 64px; }
.sensorial .head h2 { margin-top: 20px; }
.sensorial .grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.sense { background: var(--graphite); padding: 34px 24px; min-height: 230px; }
.sense .top { display: flex; justify-content: space-between; margin-bottom: 26px; }
.sense .num { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--blood); }
.sense .label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--steel); }
.sense h4 { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 19px; line-height: 1.45; }

/* ====== PLATE EDITORIAL — O PÚBLICO ====== */
.editorial { background: var(--ink); border-top: 1px solid var(--line); }
.editorial .cols { display: grid; grid-template-columns: 5fr 6fr; gap: 80px; align-items: center; }
.editorial .photo { border: 1px solid var(--line); }
.editorial .photo img { width: 100%; display: block; filter: saturate(0.8) contrast(1.04) brightness(0.92); }
.editorial .txt h3 { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 4.4vw, 60px); letter-spacing: -0.015em; line-height: 1.06; margin: 20px 0 28px; }
.editorial .txt p.body { font-size: 16px; color: rgba(239,235,226,0.78); max-width: 52ch; margin-bottom: 22px; }
.editorial .txt p.body strong { font-weight: 500; color: var(--bone); }

/* ====== PALETA ====== */
.palette { background: var(--paper); color: var(--ink); }
.palette .tag, .palette .plate-no { color: rgba(13,13,14,0.5); }
.palette .head { margin-bottom: 64px; }
.palette .head h2 { margin-top: 20px; }
.swatches { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.swatch { aspect-ratio: 1 / 1.4; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px 14px; border-radius: 2px; transition: transform 0.6s var(--ease-cinema); border: 1px solid var(--line-dark); }
.swatch:hover { transform: translateY(-8px); }
.swatch .name { font-family: var(--display); font-weight: 700; font-size: 12.5px; letter-spacing: 0.02em; }
.swatch .hex { font-family: ui-monospace, Consolas, monospace; font-size: 11px; opacity: 0.75; margin-top: 4px; }
.swatch.light { color: var(--ink); }
.swatch.dark { color: var(--bone); }
.palette .rule { margin-top: 48px; font-family: var(--serif); font-style: italic; font-size: 19px; color: rgba(13,13,14,0.68); max-width: 52ch; }

/* ====== TIPOGRAFIA ====== */
.typography { background: var(--ink); border-top: 1px solid var(--line); }
.typography .head { margin-bottom: 72px; }
.typography .head h2 { margin-top: 20px; }
.type-demo { border-top: 1px solid var(--line); padding: 44px 0; display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: baseline; }
.type-demo .lbl { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--steel); line-height: 2; }
.type-demo .sample.d1 { font-family: var(--display); font-weight: 800; font-size: clamp(36px, 5.4vw, 76px); letter-spacing: -0.02em; line-height: 1; }
.type-demo .sample.d2 { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(28px, 4vw, 52px); line-height: 1.15; }
.type-demo .sample.d3 { font-size: 16px; max-width: 52ch; color: rgba(239,235,226,0.8); }
.type-demo .sample.d4 { font-size: 12px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--steel); }

/* ====== LOGO SYSTEM ====== */
.logosys { background: var(--graphite); border-top: 1px solid var(--line); }
.logosys .head { max-width: 720px; margin-bottom: 72px; }
.logosys .head h2 { margin-top: 20px; }
.logosys .head p { margin-top: 24px; font-size: 16px; color: rgba(239,235,226,0.75); }
.logo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.logo-stage { border: 1px solid var(--line); background: var(--ink); min-height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px; padding: 50px 30px; }
.logo-stage img.emblem { width: clamp(170px, 20vw, 250px); }
.logo-stage img.mark { width: 120px; border-radius: 50%; }
.logo-stage .cap { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--steel); text-align: center; line-height: 2; }
.logo-stage .cap b { display: block; color: var(--bone); font-weight: 500; letter-spacing: 0.22em; }

.wordmark-proposal { border: 1px solid rgba(179,32,42,0.45); background: var(--ink); padding: 70px 40px 56px; text-align: center; margin-bottom: 40px; }
.wordmark-proposal .wm-main { font-family: var(--display); font-weight: 800; font-size: clamp(44px, 7vw, 96px); letter-spacing: 0.04em; line-height: 1; }
.wordmark-proposal .wm-main i { font-style: normal; color: var(--blood); }
.wordmark-proposal .wm-sub { font-size: clamp(11px, 1.4vw, 15px); letter-spacing: 0.68em; text-transform: uppercase; color: var(--steel); margin-top: 18px; text-indent: 0.68em; }
.wordmark-proposal .cap { margin-top: 44px; font-size: 12px; color: var(--steel); max-width: 56ch; margin-left: auto; margin-right: auto; line-height: 1.8; }
.wordmark-proposal .cap b { color: var(--bone); font-weight: 500; }

.apps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.app { background: var(--graphite); padding: 30px 18px 26px; display: flex; flex-direction: column; align-items: center; gap: 18px; min-height: 170px; justify-content: center; }
.app .lbl { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--steel); text-align: center; }
.app .fav16 { width: 16px; height: 16px; border-radius: 3px; }
.app .appicon { width: 62px; height: 62px; border-radius: 14px; border: 1px solid var(--line); }
.app .avatar { width: 62px; height: 62px; border-radius: 50%; }
.app .stamp { width: 46px; height: 46px; border-radius: 50%; opacity: 0.85; }
.app .cta-btn { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 30px; padding: 10px 18px; font-size: 12px; letter-spacing: 0.1em; }
.app .cta-btn img { width: 20px; height: 20px; border-radius: 50%; }

/* ====== ÍCONE REDUZIDO ====== */
.icon-power { background: var(--ink); border-top: 1px solid var(--line); }
.icon-power .head { max-width: 720px; margin-bottom: 72px; }
.icon-power .head h2 { margin-top: 20px; }
.icon-power .head p { margin-top: 24px; font-size: 16px; color: rgba(239,235,226,0.75); }
.mockups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.mockup { border: 1px solid var(--line); background: var(--graphite); padding: 30px 26px 34px; }
.mockup .mk-label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--steel); margin-bottom: 26px; }

.browser-frame { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--ink); }
.browser-frame .tabbar { display: flex; align-items: center; gap: 10px; background: rgba(239,235,226,0.05); padding: 9px 12px; }
.browser-frame .tab { display: flex; align-items: center; gap: 8px; background: var(--ink); border-radius: 8px 8px 0 0; padding: 7px 14px; font-size: 11.5px; color: var(--bone); max-width: 200px; white-space: nowrap; overflow: hidden; }
.browser-frame .tab img { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.browser-frame .urlbar { padding: 9px 14px; font-size: 11px; color: var(--steel); border-top: 1px solid var(--line); font-family: ui-monospace, Consolas, monospace; }
.browser-frame .page { height: 90px; display: flex; align-items: center; justify-content: center; }
.browser-frame .page img { width: 44px; opacity: 0.5; border-radius: 50%; }

.phone-frame { width: 150px; margin: 0 auto; border: 1px solid var(--line); border-radius: 26px; background: var(--ink); padding: 18px 14px 22px; }
.phone-frame .ph-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.phone-frame .ph-app { aspect-ratio: 1; border-radius: 10px; background: rgba(239,235,226,0.07); }
.phone-frame .ph-app.gloor { background: var(--bone); display: flex; align-items: center; justify-content: center; padding: 4px; }
.phone-frame .ph-app.gloor img { border-radius: 7px; }
.phone-frame .ph-name { font-size: 8.5px; text-align: center; color: var(--steel); margin-top: 5px; letter-spacing: 0.04em; }

.share-rows { display: flex; flex-direction: column; gap: 14px; }
.share-row { display: flex; gap: 12px; align-items: center; border: 1px solid var(--line); background: var(--ink); border-radius: 8px; padding: 12px 14px; }
.share-row img.av { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; }
.share-row .tx .t1 { font-size: 12.5px; color: var(--bone); font-weight: 500; }
.share-row .tx .t2 { font-size: 11px; color: var(--steel); margin-top: 2px; }
.share-row.card-prev { flex-direction: column; align-items: stretch; gap: 0; padding: 0; overflow: hidden; }
.share-row.card-prev img.og { width: 100%; aspect-ratio: 1200/630; object-fit: cover; }
.share-row.card-prev .tx { padding: 10px 14px; }

/* ====== FUTURO ====== */
.future { background: var(--paper); color: var(--ink); }
.future .tag, .future .plate-no { color: rgba(13,13,14,0.5); }
.future .head { margin-bottom: 72px; }
.future .head h2 { margin-top: 20px; }
.horizons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.horizon { background: var(--paper); padding: 44px 34px; min-height: 260px; }
.horizon .when { font-family: var(--display); font-weight: 800; font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blood); }
.horizon p { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 22px; line-height: 1.45; margin-top: 22px; }

/* ====== CLOSING ====== */
.closing {
  min-height: 92vh; display: flex; align-items: center;
  background: var(--ink);
  border-top: 1px solid var(--line);
  text-align: center;
  overflow: hidden; position: relative;
}
.closing .bg-photo .veil { background: linear-gradient(to bottom, rgba(13,13,14,0.72), rgba(13,13,14,0.82)); }
.closing .frame { width: 100%; position: relative; z-index: 4; }
.closing img.mark { width: 84px; border-radius: 50%; margin: 0 auto 48px; }
.closing .msg { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(28px, 4.4vw, 58px); line-height: 1.32; max-width: 24ch; margin: 0 auto; }
.closing .msg em { color: var(--blood); font-style: italic; }
.closing .cta { margin-top: 56px; display: inline-flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 40px; padding: 16px 32px; color: var(--bone); text-decoration: none; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; transition: border-color 0.5s var(--ease-cinema), background 0.5s var(--ease-cinema); }
.closing .cta:hover { border-color: var(--blood); background: rgba(179,32,42,0.08); }

/* ====== FOOTER ====== */
footer { border-top: 1px solid var(--line); background: var(--ink); }
footer .frame { padding: 60px 48px; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
footer .left { display: flex; align-items: center; gap: 14px; }
footer .left img { width: 34px; height: 34px; border-radius: 50%; }
footer .left .t1 { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; }
footer .left .t2 { font-size: 11px; color: var(--steel); margin-top: 3px; letter-spacing: 0.06em; }
footer .right { font-size: 11px; color: var(--steel); text-align: right; line-height: 1.9; letter-spacing: 0.06em; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .frame { padding: 110px 40px; }
  .chapter .cols { grid-template-columns: 1fr; gap: 48px; }
  .chapter .col-left { position: static; }
  .stores { grid-template-columns: repeat(2, 1fr); }
  .audit { grid-template-columns: repeat(2, 1fr); }
  .blocks { grid-template-columns: repeat(2, 1fr); }
  .dna .grid { grid-template-columns: repeat(2, 1fr); }
  .sensorial .grid { grid-template-columns: repeat(2, 1fr); }
  .swatches { grid-template-columns: repeat(4, 1fr); }
  .convo-duo { grid-template-columns: 1fr; }
  .editorial .cols { grid-template-columns: 1fr; gap: 48px; }
  .pillars { grid-template-columns: 1fr; }
  .logo-duo { grid-template-columns: 1fr; }
  .apps { grid-template-columns: repeat(3, 1fr); }
  .mockups { grid-template-columns: 1fr; }
  .horizons { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .frame { padding: 90px 22px; }
  nav { padding: 14px 20px; }
  nav .meta { display: none; }
  .hero .meta { display: none; }
  .stores { grid-template-columns: 1fr; }
  .store { min-height: unset; }
  .audit { grid-template-columns: 1fr; }
  .blocks { grid-template-columns: 1fr; }
  .dna .grid { grid-template-columns: 1fr; }
  .dna .card { min-height: unset; }
  .sensorial .grid { grid-template-columns: 1fr; }
  .sense { min-height: unset; }
  .swatches { grid-template-columns: repeat(2, 1fr); }
  .apps { grid-template-columns: repeat(2, 1fr); }
  .type-demo { grid-template-columns: 1fr; gap: 16px; padding: 34px 0; }
  .plate { min-height: 70vh; }
  .plate .mark-bg { display: none; }
  footer .frame { flex-direction: column; align-items: flex-start; }
  footer .right { text-align: left; }
}
