/* SandboxCritic — Zeus, o Olimpo e a tinta */

/* ---------- Tipografia de tatuagem ---------- */
/* Pirata One (blackletter) para títulos, Cinzel (capitais romanas) para subtítulos.
   Ambas SIL Open Font License, servidas localmente — sem pedidos a terceiros. */
@font-face {
  font-family: "Pirata One";
  src: url("assets/fonts/pirata-one.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel";
  src: url("assets/fonts/cinzel.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Bronze e pátina: o verde da oxidação sobre o latão das estátuas. */
  --color-void: #090c0b;
  --color-white: #ede9df;
  --color-graphite: #1e2a25;
  --color-graphite-soft: #121815;
  --color-mid: #5e7169;
  --color-muted: #7e9089;
  --color-soft: #b3c4bc;
  --color-signal: #c9a24a;
  --color-bolt: #3fbfa0;
  --color-ember: #b5643a;

  --font-display: "Helvetica Neue", Helvetica, Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --font-black: "Pirata One", "Luminari", "Papyrus", Georgia, serif;
  --font-antique: "Cinzel", "Trajan Pro", "Optima", Georgia, "Times New Roman", serif;

  --text-caption: 11px;
  --text-body: 16px;
  --text-subheading: 18px;
  --text-heading: 22px;
  --text-heading-lg: 24px;

  --space-8: 8px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-88: 88px;

  --radius: 14px;
  --header-h: 68px;
  --container: 1320px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-void);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: var(--text-body);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }

/* Títulos em blackletter: sem maiúsculas forçadas — a gótica em caixa alta é ilegível.
   1.06 e não 0.98 porque os acentos de Ã/Ê/Õ tocavam a linha de cima. */
h1, h2 {
  margin: 0;
  font-family: var(--font-black);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.005em;
  line-height: 1.06;
}

h3, h4 {
  margin: 0;
  font-family: var(--font-antique);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.18;
}

p { margin: 0; }

/* figure traz margin: 1em 40px por omissão — comia 80px de largura nas miniaturas */
figure { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--color-signal);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--color-void);
  border: 1px solid var(--color-signal);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus { left: 16px; top: 16px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 20px;
}

.mono {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rule {
  height: 1px;
  background: var(--color-graphite);
  border: 0;
  margin: 0;
}

/* ---------- Signal line ---------- */
.signal-line {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-signal);
  z-index: 90;
  pointer-events: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--color-void);
  border-bottom: 1px solid var(--color-graphite);
}

.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
}

.logo {
  font-family: var(--font-mono);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.logo__accent { color: var(--color-signal); }
.logo__tm {
  font-size: 9px;
  vertical-align: super;
  letter-spacing: 0;
  color: var(--color-mid);
}

.nav { display: flex; align-items: center; gap: var(--space-24); }

.nav__list {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav__link {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--color-white);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
}
.nav__link:hover { border-bottom-color: var(--color-signal); }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-white);
  border-radius: var(--radius);
  cursor: pointer;
}
.burger:hover { border-width: 2px; }
.burger svg { width: 20px; height: 20px; }
.burger__close { display: none; }
.burger[aria-expanded="true"] .burger__open { display: none; }
.burger[aria-expanded="true"] .burger__close { display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--color-white);
  border-radius: var(--radius);
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: var(--text-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.1;
}
.btn:hover { border-width: 2px; padding: 13px 23px; }
.btn--muted { border-color: var(--color-graphite); color: var(--color-soft); }
.btn--muted:hover { border-color: var(--color-white); color: var(--color-white); }
.btn--small { padding: 10px 16px; font-size: 13px; }
.btn--small:hover { padding: 9px 15px; }
.btn--full { width: 100%; }
.btn svg { width: 16px; height: 16px; flex: none; }

/* ---------- Sections ---------- */
.section { padding-block: var(--space-88); border-top: 1px solid var(--color-graphite); }
.section--flush { border-top: 0; }

.section__head {
  display: grid;
  gap: var(--space-16);
  max-width: 900px;
  margin-bottom: var(--space-48);
}
.section__eyebrow { color: var(--color-signal); }
.section__title { font-size: clamp(30px, 4.4vw, 52px); }
.section__lede { color: var(--color-soft); max-width: 70ch; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: min(760px, calc(100svh - var(--header-h)));
  padding-block: clamp(64px, 9vw, 112px);
  overflow: hidden;
  text-align: center;
}
/* A fotografia é o fundo: costas inteiras, Zeus ao centro. O véu tira-lhe
   contraste suficiente para o texto assentar, sem apagar o desenho. */
.hero__bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 16%;
  z-index: -2;
  opacity: 0.62;
  filter: grayscale(0.35) contrast(1.05);
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(78% 62% at 50% 30%, rgba(63, 191, 160, 0.14) 0%, rgba(63, 191, 160, 0) 62%),
    linear-gradient(180deg, rgba(9, 12, 11, 0.88) 0%, rgba(9, 12, 11, 0.58) 34%, rgba(9, 12, 11, 0.8) 72%, var(--color-void) 100%);
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__caption { color: var(--color-signal); margin-bottom: var(--space-24); }
.hero__title {
  font-size: clamp(34px, 6.4vw, 76px);
  line-height: 1.02;
  max-width: 21ch;
  margin-bottom: var(--space-24);
}
.hero__accent { color: var(--color-signal); }
.hero__text {
  max-width: 58ch;
  font-size: var(--text-subheading);
  color: var(--color-white);
  margin-bottom: var(--space-32);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-16);
}
.hero__actions .btn--muted {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-24);
  margin-top: var(--space-48);
  padding-top: var(--space-24);
  border-top: 1px solid var(--color-graphite);
  color: var(--color-white);
}
.hero__meta strong { color: var(--color-signal); font-weight: 700; }

/* ---------- Stars ---------- */
.stars { display: inline-flex; align-items: center; gap: 6px; }
.stars__icons { display: inline-flex; gap: 2px; }
.stars svg { width: 14px; height: 14px; }
.stars__value {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  letter-spacing: 0.04em;
}

/* ---------- Tags ---------- */
.tag {
  display: inline-block;
  border: 1px solid var(--color-white);
  border-radius: var(--radius);
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.tag--muted { border-color: var(--color-graphite); color: var(--color-soft); }

/* ---------- Destaques ---------- */
.feature { display: grid; gap: var(--space-88); }
.feature__item { display: grid; gap: var(--space-40); }
.feature__index {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: var(--color-signal);
  letter-spacing: 0.1em;
  border-top: 1px solid var(--color-graphite);
  padding-top: var(--space-16);
}
.feature__grid { display: grid; gap: var(--space-40); }
.feature__media { display: grid; gap: 12px; }
.feature__shot {
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature__shot img { width: 100%; height: auto; }
.feature__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.feature__thumbs .feature__shot img { aspect-ratio: 16 / 9; object-fit: cover; }

.feature__head { display: flex; align-items: center; gap: var(--space-16); margin-bottom: var(--space-16); }
.feature__icon {
  width: 64px;
  height: 64px;
  flex: none;
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature__title { font-size: clamp(24px, 3.2vw, 38px); margin-bottom: 6px; }
.feature__dev { font-family: var(--font-mono); font-size: var(--text-caption); color: var(--color-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.feature__text { color: var(--color-soft); margin-bottom: var(--space-24); }
.feature__facts { border-top: 1px solid var(--color-white); margin-bottom: var(--space-24); }
.feature__fact {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--space-16);
  padding: 14px 0;
  border-bottom: 1px solid var(--color-graphite);
}
.feature__fact-key {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 3px;
}
.feature__fact-value { font-size: 15px; }
.feature__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Bandas ---------- */
.band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--color-graphite);
  border-bottom: 1px solid var(--color-graphite);
}
.band__gradient {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 150% at 50% 0%, rgba(63, 191, 160, 0.22) 0%, rgba(63, 191, 160, 0) 62%),
    linear-gradient(180deg, #0e1412 0%, var(--color-void) 100%);
}

/* ---------- Modalidades ---------- */
.sports { display: grid; gap: 0; border-top: 1px solid var(--color-white); }
.sports__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--space-24);
  align-items: start;
  padding: var(--space-32) 0;
  border-bottom: 1px solid var(--color-graphite);
}
.sports__icon { color: var(--color-white); }
.sports__icon svg { width: 40px; height: 40px; }
.sports__name { font-size: var(--text-heading-lg); margin-bottom: 10px; }
.sports__text { color: var(--color-soft); max-width: 78ch; margin-bottom: 12px; }
.sports__meta { display: flex; flex-wrap: wrap; gap: 10px; grid-column: 2; }

/* ---------- Catálogo (masonry) ---------- */
.catalog { columns: 1; column-gap: var(--space-24); }
.catalog__col { display: contents; }
.catalog__card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  display: block;
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius);
  padding: var(--space-24);
  margin-bottom: var(--space-24);
  background: transparent;
}
.catalog__card:hover { border-color: var(--color-white); }
.catalog__media {
  margin: calc(var(--space-24) * -1) calc(var(--space-24) * -1) var(--space-24);
  border-bottom: 1px solid var(--color-graphite);
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.catalog__media img { width: 100%; object-fit: cover; }
.catalog__card--tall .catalog__media img { aspect-ratio: 3 / 4; }
.catalog__card--wide .catalog__media img { aspect-ratio: 16 / 9; }
.catalog__head { display: flex; gap: 14px; align-items: center; margin-bottom: var(--space-16); }
.catalog__icon {
  width: 52px;
  height: 52px;
  flex: none;
  border: 1px solid var(--color-graphite);
  border-radius: 12px;
  overflow: hidden;
}
.catalog__name { font-size: var(--text-subheading); margin-bottom: 4px; line-height: 1.1; }
.catalog__dev { font-family: var(--font-mono); font-size: var(--text-caption); color: var(--color-soft); text-transform: uppercase; letter-spacing: 0.05em; }
.catalog__text { font-size: 15px; color: var(--color-soft); margin-bottom: var(--space-16); }
.catalog__foot { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; }

/* ---------- Galeria ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery__item {
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
}
.gallery__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; flex: 1 1 auto; }
.gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.72);
  border-top: 1px solid var(--color-graphite);
  color: var(--color-white);
}

/* ---------- Passos ---------- */
.steps { display: grid; gap: 0; border-top: 1px solid var(--color-white); }
.steps__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-24);
  padding: var(--space-32) 0;
  border-bottom: 1px solid var(--color-graphite);
}
.steps__num { font-family: var(--font-mono); font-size: var(--text-caption); color: var(--color-signal); letter-spacing: 0.1em; padding-top: 6px; }
.steps__title { font-size: var(--text-heading); margin-bottom: 10px; }
.steps__text { color: var(--color-soft); max-width: 74ch; }

/* ---------- Números ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--color-graphite); border: 1px solid var(--color-graphite); border-radius: var(--radius); overflow: hidden; }
.stats__item { background: var(--color-void); padding: var(--space-32) var(--space-24); }
.stats__value { font-size: clamp(36px, 5.4vw, 64px); font-weight: 700; line-height: 0.93; margin-bottom: 10px; }
.stats__label { color: var(--color-soft); font-family: var(--font-mono); font-size: var(--text-caption); text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.4; }
.stats__note { margin-top: var(--space-24); color: var(--color-muted); }

/* ---------- Projeto ---------- */
.about { display: grid; gap: var(--space-48); }
.about__media { border: 1px solid var(--color-graphite); border-radius: var(--radius); overflow: hidden; }
.about__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.about__text p { color: var(--color-soft); margin-bottom: var(--space-16); }
.about__text h3 { font-size: var(--text-heading); margin: var(--space-32) 0 var(--space-16); }
.principles { display: grid; gap: var(--space-24); margin-top: var(--space-48); }
.principles__item { border-top: 1px solid var(--color-graphite); padding-top: var(--space-16); }
.principles__icon { color: var(--color-white); margin-bottom: 12px; }
.principles__icon svg { width: 28px; height: 28px; }
.principles__title { font-size: var(--text-subheading); margin-bottom: 8px; }
.principles__text { font-size: 15px; color: var(--color-soft); }

/* ---------- Opiniões ---------- */
.reviews { display: grid; gap: var(--space-24); }
.reviews__card { border: 1px solid var(--color-graphite); border-radius: var(--radius); padding: var(--space-32); }
.reviews__quote { margin: var(--space-16) 0 var(--space-24); font-size: var(--text-subheading); }
.reviews__author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--color-graphite); padding-top: var(--space-16); }
.reviews__avatar {
  width: 44px;
  height: 44px;
  flex: none;
  border: 1px solid var(--color-white);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  letter-spacing: 0.06em;
}
.reviews__name { font-family: var(--font-mono); font-size: var(--text-caption); text-transform: uppercase; letter-spacing: 0.06em; }
.reviews__role { font-family: var(--font-mono); font-size: var(--text-caption); text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-muted); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--color-white); }
.faq__item { border-bottom: 1px solid var(--color-graphite); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
  padding: var(--space-24) 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-size: var(--text-subheading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.faq__sign { flex: none; width: 22px; height: 22px; color: var(--color-signal); }
.faq__sign svg { width: 22px; height: 22px; }
.faq__item--open .faq__sign { transform: rotate(45deg); }
.faq__answer { display: none; padding-bottom: var(--space-24); color: var(--color-soft); max-width: 84ch; }
.faq__item--open .faq__answer { display: block; }

/* ---------- CTA / Formulário ---------- */
.cta { padding-block: var(--space-88); }
.cta__grid { display: grid; gap: var(--space-48); }
.cta__title { font-size: clamp(30px, 4.4vw, 52px); margin-bottom: var(--space-16); }
.cta__text { color: var(--color-soft); margin-bottom: var(--space-24); }
.cta__list { display: grid; gap: 10px; }
.cta__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--color-soft); }
.cta__list svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--color-signal); }

.form { display: grid; gap: var(--space-16); }
.form__field { display: grid; gap: 8px; }
.form__label { font-family: var(--font-mono); font-size: var(--text-caption); text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-soft); }
.form__input {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--color-white);
  border-radius: var(--radius);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: var(--text-body);
}
.form__input::placeholder { font-family: var(--font-mono); font-size: var(--text-caption); text-transform: uppercase; color: var(--color-mid); }
.form__input:focus { outline: none; border: 2px solid var(--color-signal); padding: 13px 15px; }
.form__input:focus-visible { outline: none; }
.form__consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--color-soft); }
.form__consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--color-signal); flex: none; }
.form__consent a { color: var(--color-white); }
.form__note { font-family: var(--font-mono); font-size: var(--text-caption); text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-muted); line-height: 1.5; }
.form__success {
  display: none;
  border: 1px solid var(--color-signal);
  border-radius: var(--radius);
  padding: var(--space-16);
  color: var(--color-signal);
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.form__success.is-visible { display: block; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--color-graphite); padding-block: var(--space-48) var(--space-48); }
.site-footer__grid { display: grid; gap: var(--space-40); }
.site-footer__title { font-family: var(--font-mono); font-size: var(--text-caption); text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted); margin-bottom: var(--space-16); }
.site-footer__list { display: grid; gap: 10px; }
.site-footer__list a { font-family: var(--font-mono); font-size: var(--text-caption); text-transform: uppercase; letter-spacing: 0.06em; text-decoration: none; }
.site-footer__list a:hover { color: var(--color-signal); }
.site-footer__about { color: var(--color-soft); font-size: 15px; max-width: 44ch; }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-40);
  padding-top: var(--space-24);
  border-top: 1px solid var(--color-graphite);
  color: var(--color-muted);
}
.site-footer__mail { color: var(--color-white); text-decoration: none; border-bottom: 1px solid var(--color-signal); }

/* ---------- Legal ---------- */
.legal { padding-block: var(--space-48) var(--space-88); }
.legal__title { font-size: clamp(30px, 4.4vw, 52px); margin-bottom: var(--space-16); }
.legal__updated { color: var(--color-muted); margin-bottom: var(--space-32); }
.legal__body { max-width: 84ch; }
.legal__body h2 { font-size: var(--text-heading-lg); margin: var(--space-40) 0 var(--space-16); }
.legal__body h3 { font-size: var(--text-subheading); margin: var(--space-24) 0 10px; }
.legal__body p { color: var(--color-soft); margin-bottom: var(--space-16); }
.legal__body a { color: var(--color-white); }
.legal__list { display: grid; gap: 0; border-top: 1px solid var(--color-graphite); margin-bottom: var(--space-24); }
.legal__list li { border-bottom: 1px solid var(--color-graphite); padding: 12px 0; color: var(--color-soft); }
.legal__list li strong { color: var(--color-white); }
.legal__back { margin-bottom: var(--space-32); }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 14px;
  z-index: 95;
  display: none;
  background: var(--color-void);
  border: 1px solid var(--color-white);
  border-radius: var(--radius);
  padding: var(--space-24);
}
.cookie.is-visible { display: block; }
.cookie__inner { display: grid; gap: var(--space-16); max-width: var(--container); margin: 0 auto; }
.cookie__text { font-size: 14px; color: var(--color-soft); }
.cookie__text a { color: var(--color-white); }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Voltar ao topo ---------- */
.to-top {
  position: fixed;
  right: 16px;
  bottom: 22px;
  z-index: 85;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--color-void);
  border: 1px solid var(--color-white);
  border-radius: var(--radius);
  cursor: pointer;
}
.to-top.is-visible { display: flex; }
.to-top:hover { border-width: 2px; }
.to-top svg { width: 18px; height: 18px; }

/* ---------- Breakpoints ---------- */
@media (max-width: 1023px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    display: none;
    background: var(--color-void);
    border-top: 1px solid var(--color-graphite);
    padding: var(--space-32) 20px var(--space-88);
    overflow-y: auto;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--color-graphite); }
  .nav__link { display: block; padding: 18px 0; font-size: 14px; }
  .nav__cta { margin-top: var(--space-24); display: inline-flex; }
  .burger { display: inline-flex; }
}

@media (min-width: 600px) {
  .container { padding-inline: 28px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .cookie__inner { grid-template-columns: 1fr auto; align-items: center; }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .principles { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .container { padding-inline: 40px; }
  .catalog { columns: 2; }
  .feature__fact { grid-template-columns: 120px 1fr; }
  .cta__grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  :root { --header-h: 76px; }
  .catalog {
    columns: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-24);
    align-items: start;
  }
  .catalog__col { display: grid; gap: var(--space-24); align-content: start; }
  .catalog__card { margin-bottom: 0; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .principles { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--wide img { aspect-ratio: 16 / 9; }
  .sports__item { grid-template-columns: 56px minmax(0, 1fr) minmax(0, 0.62fr); align-items: center; }
  .sports__meta { justify-content: flex-end; grid-column: 3; }
  .about { grid-template-columns: 1fr 1.15fr; align-items: start; }
  .about__media { position: sticky; top: calc(var(--header-h) + 24px); }
  .about__media img { aspect-ratio: 4 / 5; }
  .feature__grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
  .feature__item--flip .feature__grid { grid-template-columns: 0.85fr 1.15fr; }
  .feature__item--flip .feature__media { order: 2; }
  .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

@media (min-width: 1280px) {
  .container { padding-inline: 56px; }
}

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

/* ---------- Sprite SVG ---------- */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Banda divisória ---------- */
.band--divider .band__inner { padding-block: clamp(48px, 8vw, 96px); }
.band__caption { color: var(--color-white); letter-spacing: 0.14em; max-width: 60ch; }

/* ---------- Desenho vetorial editorial ---------- */
.vector { display: block; width: 100%; height: auto; }
.catalog__media svg { display: block; width: 100%; height: auto; }

.feature__icon--vector,
.catalog__icon--vector {
  display: grid;
  place-items: center;
  background: var(--color-graphite-soft);
  color: var(--color-signal);
}
.feature__icon--vector svg { width: 34px; height: 34px; }
.catalog__icon--vector svg { width: 26px; height: 26px; }

.feature__shot--photo { position: relative; }
.feature__shot--photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.feature__credit {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  background: rgba(9, 12, 11, 0.82);
  border-top: 1px solid var(--color-graphite);
  color: var(--color-soft);
}

/* ---------- Aviso editorial ---------- */
.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-16);
  align-items: start;
  margin-block: var(--space-48);
  padding: var(--space-24);
  border: 1px solid var(--color-graphite);
  border-left: 2px solid var(--color-signal);
  border-radius: var(--radius);
  background: var(--color-graphite-soft);
}
.notice__badge {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--color-void);
  background: var(--color-signal);
  border-radius: 999px;
  padding: 7px 11px;
}
.notice__text { font-size: 15px; color: var(--color-soft); }
.notice__text strong { color: var(--color-white); }

/* ---------- Símbolos ---------- */
.symbols { display: grid; grid-template-columns: 1fr; gap: var(--space-24); }
.symbols__item {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: var(--space-24);
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius);
}
.symbols__item:hover { border-color: var(--color-signal); }
.symbols__item--special { border-color: rgba(63, 191, 160, 0.5); }
.symbols__item--special:hover { border-color: var(--color-bolt); }
.symbols__icon { color: var(--color-signal); }
.symbols__item--special .symbols__icon { color: var(--color-bolt); }
.symbols__icon svg { width: 36px; height: 36px; }
.symbols__name { font-size: var(--text-heading); }
.symbols__tag { color: var(--color-muted); }
.symbols__item--special .symbols__tag { color: var(--color-bolt); }
.symbols__rows {
  display: grid;
  margin: 6px 0 0;
  border-top: 1px solid var(--color-graphite);
}
.symbols__row {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--color-graphite);
}
.symbols__row:last-child { border-bottom: 0; padding-bottom: 0; }
.symbols__row dt {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-mid);
  padding-top: 2px;
}
.symbols__row dd { margin: 0; font-size: 14px; color: var(--color-soft); }

/* ---------- Meandro ---------- */
.meander {
  display: block;
  width: 100%;
  height: 22px;
  opacity: 0.55;
  background-repeat: repeat-x;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='22' viewBox='0 0 24 22' fill='none' stroke='%23e7b84e' stroke-width='2'%3E%3Cpath d='M0 20V2h16v12H8V8h4'/%3E%3C/svg%3E");
}
.band--meander .band__inner {
  display: grid;
  gap: var(--space-24);
  justify-items: center;
  text-align: center;
  padding-block: clamp(40px, 6vw, 72px);
}
.band--meander .band__caption { color: var(--color-soft); }

/* ---------- Tinta ---------- */
.ink { display: grid; grid-template-columns: 1fr; gap: var(--space-24); align-items: start; }
.ink__figure {
  margin: 0;
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius);
  overflow: hidden;
}
.ink__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.ink__figure--wide img { aspect-ratio: 1 / 1; }
.ink__caption {
  display: grid;
  gap: 6px;
  padding: var(--space-16);
  border-top: 1px solid var(--color-graphite);
  background: var(--color-graphite-soft);
}
.ink__caption-key { color: var(--color-signal); }
.ink__caption-text { font-size: 14px; color: var(--color-soft); }

.ink__notes { display: grid; gap: var(--space-48); margin-top: var(--space-48); }
.ink__block-title {
  font-size: var(--text-heading);
  margin-bottom: var(--space-24);
  padding-top: var(--space-16);
  border-top: 1px solid var(--color-white);
}
.checklist { display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--color-soft); }
.checklist svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--color-signal); }
.checklist strong { color: var(--color-white); }

/* ---------- Números sobre banda ---------- */
.band .stats__item { background: rgba(9, 12, 11, 0.78); }

/* ---------- Rodapé legal ---------- */
.site-footer__legal {
  max-width: 104ch;
  margin-top: var(--space-40);
  padding-top: var(--space-24);
  border-top: 1px solid var(--color-graphite);
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-muted);
}
.site-footer__legal strong { color: var(--color-soft); }
.site-footer__legal + .site-footer__bottom { margin-top: var(--space-24); }

/* ---------- Loja (encomenda por email, sem carrinho) ---------- */
.shop__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-40);
}
.shop__pill {
  border: 1px solid var(--color-graphite);
  border-radius: 999px;
  background: transparent;
  color: var(--color-soft);
  padding: 9px 16px;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  line-height: 1;
}
.shop__pill:hover { border-color: var(--color-white); color: var(--color-white); }
.shop__pill[aria-pressed="true"] {
  background: var(--color-signal);
  border-color: var(--color-signal);
  color: var(--color-void);
  font-weight: 700;
}

.shop { display: grid; grid-template-columns: 1fr; gap: var(--space-24); }

.shop__card {
  display: flex;
  flex-direction: column;
  padding: var(--space-24);
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius);
}
.shop__card:hover { border-color: var(--color-signal); }
.shop__card[hidden] { display: none; }

.shop__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: var(--space-16);
}
.shop__icon { color: var(--color-signal); }
.shop__icon svg { width: 30px; height: 30px; }
.shop__cat { color: var(--color-mid); padding-top: 4px; }

.shop__name {
  font-family: var(--font-antique);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.22;
  margin-bottom: 6px;
}
.shop__spec {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  letter-spacing: 0.05em;
  color: var(--color-mid);
  margin-bottom: 12px;
}
.shop__text { font-size: 14px; color: var(--color-soft); flex: 1 1 auto; margin-bottom: var(--space-16); }
.shop__link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-signal);
  text-decoration: none;
  margin-bottom: var(--space-24);
}
.shop__link:hover { text-decoration: underline; }

.shop__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: var(--space-16);
  border-top: 1px solid var(--color-graphite);
}
.shop__price {
  font-family: var(--font-antique);
  font-weight: 900;
  font-size: 21px;
  color: var(--color-white);
}

.shop__empty {
  display: none;
  padding: var(--space-32);
  border: 1px dashed var(--color-graphite);
  border-radius: var(--radius);
  color: var(--color-muted);
  text-align: center;
}
.shop__empty.is-visible { display: block; }

.shop__note {
  margin-top: var(--space-32);
  padding-top: var(--space-24);
  border-top: 1px solid var(--color-graphite);
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 100ch;
}

/* ---------- Diálogo de encomenda ---------- */
.order {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}
.order[hidden] { display: none; }

.order__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 6, 0.82);
}

.order__panel {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: var(--space-32);
  background: var(--color-graphite-soft);
  border: 1px solid var(--color-graphite);
  border-left: 2px solid var(--color-signal);
  border-radius: var(--radius);
}

.order__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--color-graphite);
  border-radius: 10px;
  color: var(--color-soft);
  cursor: pointer;
}
.order__close:hover { border-color: var(--color-white); color: var(--color-white); }
.order__close svg { width: 16px; height: 16px; }

.order__eyebrow { color: var(--color-signal); margin-bottom: 12px; }
.order__title {
  font-family: var(--font-antique);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 6px;
  padding-right: 40px;
}
.order__spec { color: var(--color-mid); margin-bottom: 10px; }
.order__price {
  font-family: var(--font-antique);
  font-weight: 900;
  font-size: 26px;
  color: var(--color-signal);
  margin-bottom: var(--space-16);
}
.order__text { font-size: 14px; color: var(--color-soft); margin-bottom: var(--space-24); }

.order__label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-soft);
  margin-bottom: 8px;
}
.order__body {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-void);
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius);
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  resize: vertical;
}
.order__body:focus { outline: none; border-color: var(--color-signal); }

/* Barra de deslocamento no estilo do site: calha grafite, punho dourado */
.order__panel,
.order__body {
  scrollbar-width: thin;
  scrollbar-color: var(--color-signal) var(--color-void);
}
.order__panel::-webkit-scrollbar,
.order__body::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.order__panel::-webkit-scrollbar-track,
.order__body::-webkit-scrollbar-track {
  background: var(--color-void);
  border-radius: 999px;
  border: 1px solid var(--color-graphite);
}
.order__panel::-webkit-scrollbar-thumb,
.order__body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e8d08a 0%, var(--color-signal) 100%);
  border: 3px solid var(--color-void);
  border-radius: 999px;
}
.order__panel::-webkit-scrollbar-thumb:hover,
.order__body::-webkit-scrollbar-thumb:hover { background: #e8d08a; }
.order__panel::-webkit-scrollbar-corner,
.order__body::-webkit-scrollbar-corner { background: var(--color-void); }

.order__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-16);
}
.order__feedback {
  min-height: 16px;
  margin-top: 12px;
  color: var(--color-signal);
}
.order__note {
  margin-top: var(--space-16);
  padding-top: var(--space-16);
  border-top: 1px solid var(--color-graphite);
  color: var(--color-muted);
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0.02em;
}
.order__note a { color: var(--color-white); }

/* ---------- Textura de tinta ---------- */
/* Duas camadas: hachura diagonal fina (whip shading) no fundo do documento
   e grão fotográfico por cima de tudo, sem capturar cliques. */
body {
  background-image:
    repeating-linear-gradient(115deg, rgba(237, 233, 223, 0.018) 0 1px, transparent 1px 6px),
    radial-gradient(120% 80% at 50% 0%, rgba(63, 191, 160, 0.07) 0%, rgba(63, 191, 160, 0) 60%);
  background-attachment: fixed;
}

/* Motivos de tatuagem em mosaico, por baixo de todo o conteúdo */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("assets/img/pattern-ink.svg");
  background-repeat: repeat;
  background-size: 760px 760px;
  background-position: center top;
}

/* O conteúdo passa a assentar por cima do mosaico */
main,
.site-footer { position: relative; z-index: 1; }

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Ajustes de escala para as novas fontes ---------- */
.logo {
  font-family: var(--font-antique);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero__title { font-size: clamp(40px, 7.4vw, 88px); line-height: 1.04; max-width: 19ch; }
.section__title { font-size: clamp(34px, 5vw, 60px); }
.cta__title { font-size: clamp(34px, 5vw, 60px); }
.feature__title { font-size: clamp(21px, 2.4vw, 30px); }

.stats__value {
  font-family: var(--font-antique);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.btn {
  font-family: var(--font-antique);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.faq__question { letter-spacing: 0.03em; }
.symbols__name { font-size: 20px; }
.sports__name { font-size: 21px; }
.ink__block-title { font-size: 21px; }
.catalog__name { font-size: 17px; letter-spacing: 0.02em; }

/* ---------- Breakpoints dos blocos novos ---------- */
@media (min-width: 600px) {
  .symbols { grid-template-columns: repeat(2, 1fr); }
  .ink { grid-template-columns: repeat(2, 1fr); }
  .shop { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .ink__notes { grid-template-columns: repeat(2, 1fr); gap: var(--space-40); }
}

@media (min-width: 1024px) {
  .symbols { grid-template-columns: repeat(4, 1fr); }
  .ink { grid-template-columns: repeat(3, 1fr); }
  .shop { grid-template-columns: repeat(3, 1fr); }
  .ink__figure--wide { grid-column: span 2; }
  .ink__figure--wide img { aspect-ratio: 16 / 11; }
  .notice { align-items: center; }

}

/* No telemóvel a fotografia fica atrás de um bloco de texto muito mais alto:
   sem véu extra, as letras tatuadas leem-se por baixo das nossas. */
@media (max-width: 767px) {
  .hero__bg {
    opacity: 0.48;
    object-position: 50% 12%;
  }
  .hero__veil {
    background:
      radial-gradient(94% 52% at 50% 24%, rgba(63, 191, 160, 0.12) 0%, rgba(63, 191, 160, 0) 62%),
      linear-gradient(180deg, rgba(9, 12, 11, 0.9) 0%, rgba(9, 12, 11, 0.74) 34%, rgba(9, 12, 11, 0.88) 74%, var(--color-void) 100%);
  }
}
