/* ============================================
   PEGBOARD MANIA — Dark Editorial Design System
   ============================================ */

:root {
  /* Paleta — escuro editorial */
  --bg: #0D0E10;
  --bg-deep: #08090B;
  --surface: #17181B;
  --surface-2: #1F2024;

  --text: #F5EFE7;
  --text-muted: #BDB2A8;
  --text-soft: #8E857B;

  --amber: #FFB000;
  --amber-glow: rgba(255, 176, 0, 0.16);
  --amber-deep: #C88800;
  --amber-soft: #E5A200;

  --green: #25D366;
  --green-deep: #1B7C42;

  --rule: rgba(245, 239, 231, 0.10);
  --rule-strong: rgba(245, 239, 231, 0.18);
  --on-amber-rule: rgba(13, 14, 16, 0.18);

  /* Cream pra blocos de quebra editorial */
  --cream-page: #EDE6D6;
  --cream-ink: #1A1612;
  --cream-text: #4A4540;
  --cream-rule: rgba(26, 22, 18, 0.14);

  /* Tipografia */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Espaço */
  --gap-section: clamp(80px, 11vw, 150px);
  --pad-x: clamp(20px, 5vw, 80px);
  --max-w: 1440px;
  --measure: 62ch;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--amber); color: var(--bg); }

/* ============================================
   Grain overlay (sutil, tipo filme)
   ============================================ */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   Tipografia base
   ============================================ */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.display.italic {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

h1, h2, h3 { font-weight: 500; color: var(--text); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber);
}

.eyebrow.muted { color: var(--text-soft); }
.eyebrow.on-amber { color: var(--bg); opacity: 0.7; }

.label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-soft);
}

p { max-width: var(--measure); color: var(--text-muted); }

a { color: inherit; text-decoration: none; }

/* ============================================
   Botões e Links
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: var(--amber);
  color: var(--bg);
  border: 1px solid var(--amber);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  border-radius: 4px;
}

.btn:hover { background: var(--amber-soft); }

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--rule-strong);
}

.btn.ghost:hover { border-color: var(--text); }

.btn.on-amber {
  background: var(--bg);
  color: var(--amber);
  border-color: var(--bg);
}
.btn.on-amber:hover { background: var(--bg-deep); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.btn-wa:hover { background: var(--green-deep); }

.btn .arrow, .btn-wa .arrow, .link .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow, .btn-wa:hover .arrow, .link:hover .arrow { transform: translateX(4px); }

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--amber);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.link.muted { color: var(--text); border-bottom-color: var(--rule-strong); }
.link.muted:hover { color: var(--amber); border-bottom-color: var(--amber); }

/* ============================================
   Top Bar
   ============================================ */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--pad-x);
  background: rgba(13, 14, 16, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand .dot { color: var(--amber); font-weight: 700; }

.nav {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.nav a {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text);
  position: relative;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav a:hover { opacity: 1; }

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav a:hover::after { transform: scaleX(1); }

.top-right { justify-self: end; display: flex; align-items: center; gap: 16px; }

.top-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 10px 18px;
  background: var(--amber);
  color: var(--bg);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.top-cta:hover { background: var(--amber-soft); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  padding: clamp(50px, 7vw, 100px) var(--pad-x) clamp(70px, 9vw, 120px);
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  background:
    radial-gradient(ellipse 60% 55% at 88% 18%, var(--amber-glow), transparent 55%),
    linear-gradient(135deg, var(--bg) 0%, #14151A 50%, #1F1306 100%),
    var(--bg);
  z-index: 2;
}

.hero-text { max-width: 680px; position: relative; z-index: 2; }

.hero-text .eyebrow { display: block; margin-bottom: 28px; }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.035em;
  line-height: 0.92;
  margin-bottom: 32px;
  color: var(--text);
}

.hero-h1 .accent { color: var(--amber); }

.hero-lead {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-metrics {
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.hero-metrics .metric {
  display: flex;
  flex-direction: column;
}

.hero-metrics .metric b {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.hero-metrics .metric span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-stage {
  position: relative;
  aspect-ratio: 4 / 5;
  z-index: 2;
}

.hero-stage .placeholder {
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero-tag {
  position: absolute;
  left: -16px;
  bottom: 32px;
  background: var(--bg);
  color: var(--text);
  padding: 14px 20px;
  border: 1px solid var(--rule-strong);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
  border-radius: 2px;
}

.hero-tag .amber { color: var(--amber); }

.hero-card {
  position: absolute;
  top: 22%;
  right: -20px;
  background: var(--bg);
  border: 1px solid var(--rule-strong);
  padding: 18px 22px;
  z-index: 3;
  border-radius: 2px;
  max-width: 240px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.hero-card .hc-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
  font-weight: 500;
}

.hero-card .hc-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.25;
  color: var(--text);
  font-weight: 400;
}

.hero-meta-line {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  z-index: 3;
}

/* ============================================
   Marquee
   ============================================ */

.marquee {
  overflow: hidden;
  background: var(--bg-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: roll 32s linear infinite;
  padding: 22px 0;
  width: max-content;
}

.marquee-track span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--amber);
  font-weight: 500;
}

.marquee-track span::before {
  content: '✦';
  margin-right: 56px;
  color: var(--text-soft);
}

@keyframes roll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   Image Placeholders
   ============================================ */

.placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 11px,
      rgba(245, 239, 231, 0.025) 11px,
      rgba(245, 239, 231, 0.025) 12px
    ),
    var(--surface);
  color: var(--text-soft);
  border: 1px solid var(--rule);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.6;
  border-radius: 2px;
}

.placeholder.on-amber {
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 11px,
      rgba(13, 14, 16, 0.06) 11px,
      rgba(13, 14, 16, 0.06) 12px
    ),
    var(--amber);
  color: var(--bg);
  opacity: 0.85;
  border-color: var(--on-amber-rule);
}

.placeholder.on-deep {
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 11px,
      rgba(245, 239, 231, 0.02) 11px,
      rgba(245, 239, 231, 0.02) 12px
    ),
    var(--bg-deep);
}

.placeholder .pl-icon {
  font-size: 32px;
  margin-bottom: 16px;
  opacity: 0.45;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.placeholder .pl-text {
  max-width: 260px;
  font-weight: 500;
}

.placeholder .pl-sub {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* ============================================
   Manifesto
   ============================================ */

.manifesto {
  background: var(--bg-deep);
  padding: clamp(80px, 12vw, 150px) var(--pad-x);
  text-align: center;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--rule);
}

.manifesto p {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 26ch;
  margin: 0 auto;
  color: var(--text);
  font-weight: 400;
}

.manifesto p .amber { color: var(--amber); }

.manifesto .sig {
  display: block;
  margin-top: 36px;
  font-family: var(--font-body);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ============================================
   Section
   ============================================ */

.section {
  padding: var(--gap-section) var(--pad-x);
  position: relative;
  z-index: 2;
}

.section-head {
  margin-bottom: clamp(40px, 6vw, 80px);
  max-width: 920px;
}

.section-head .eyebrow { display: block; margin-bottom: 20px; }

.section-head h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.96;
  color: var(--text);
}

.section-head h2 .amber { color: var(--amber); }

.section.on-amber { background: var(--amber); color: var(--bg); }
.section.on-amber h2, .section.on-amber p { color: var(--bg); }
.section.on-amber .eyebrow { color: rgba(13, 14, 16, 0.6); }

/* ============================================
   Coleção Spreads
   ============================================ */

.collection-intro {
  padding: var(--gap-section) var(--pad-x) calc(var(--gap-section) / 2);
  position: relative;
  z-index: 2;
}

.spread {
  position: relative;
  padding: clamp(70px, 10vw, 140px) var(--pad-x);
  display: grid;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  z-index: 2;
}

.spread-amber { background: var(--amber); color: var(--bg); }
.spread-surface { background: var(--surface); }
.spread-deep { background: var(--bg-deep); }

.spread-text { max-width: 540px; }
.spread-text .label { display: block; margin-bottom: 18px; }

.spread-amber .label, .spread-amber p, .spread-amber .spec-table { color: rgba(13, 14, 16, 0.7); }
.spread-amber .spread-tag, .spread-amber .spread-name { color: var(--bg); }
.spread-amber .link { color: var(--bg); }

.spread-name {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.9;
  margin-bottom: 12px;
  color: var(--text);
}

.spread-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  font-variation-settings: "opsz" 36;
  line-height: 1.3;
  margin-bottom: 26px;
  color: var(--amber);
}

.spread-body {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 48ch;
  color: var(--text-muted);
}

.spread-deep .spread-body, .spread-surface .spread-body { color: var(--text-muted); }
.spread-amber .spread-body { color: rgba(13, 14, 16, 0.78); }

.spec-table {
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  padding: 14px 0;
  margin-bottom: 28px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--text-soft);
}

.spread-amber .spec-table { border-color: var(--on-amber-rule); color: rgba(13, 14, 16, 0.7); }

.spread-image { aspect-ratio: 1 / 1; max-width: 620px; width: 100%; justify-self: center; }

.spread.layout-a { grid-template-columns: 1fr 1fr; }
.spread.layout-b { grid-template-columns: 1fr 1fr; }
.spread.layout-b .spread-image { order: -1; }

/* ============================================
   Antes / Depois
   ============================================ */

.beforeafter {
  padding: var(--gap-section) var(--pad-x);
  background: var(--bg);
  position: relative;
  z-index: 2;
}

.beforeafter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.beforeafter-item { position: relative; aspect-ratio: 4 / 5; }

.beforeafter-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--bg);
  color: var(--text);
  padding: 7px 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
}

.beforeafter-tag.amber {
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
}

.beforeafter-caption {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

/* ============================================
   Split Block (cream full-bleed)
   ============================================ */

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-page);
  color: var(--cream-ink);
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--cream-rule);
  border-bottom: 1px solid var(--cream-rule);
}

.split-block-image {
  position: relative;
  min-height: 600px;
  aspect-ratio: auto;
}

.split-block-image .placeholder {
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 11px,
      rgba(26, 22, 18, 0.045) 11px,
      rgba(26, 22, 18, 0.045) 12px
    ),
    #DDD3C0;
  color: var(--cream-text);
  border: 0;
  border-right: 1px solid var(--cream-rule);
  border-radius: 0;
  height: 100%;
}

.split-block-image .placeholder.on-amber {
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 11px,
      rgba(26, 22, 18, 0.06) 11px,
      rgba(26, 22, 18, 0.06) 12px
    ),
    var(--amber);
  color: var(--cream-ink);
  border-right: 1px solid var(--cream-rule);
}

.split-block-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--cream-ink);
  color: var(--cream-page);
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
  border-radius: 2px;
}

.split-block-tag.amber {
  background: var(--amber);
  color: var(--cream-ink);
}

.split-block-copy {
  padding: clamp(60px, 8vw, 110px) clamp(40px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.split-block .eyebrow {
  color: var(--amber-deep);
  display: block;
  margin-bottom: 24px;
}

.split-block h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.96;
  margin-bottom: 28px;
  color: var(--cream-ink);
}

.split-block h2 em {
  color: var(--amber-deep);
  font-style: italic;
}

.split-block p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream-text);
  margin-bottom: 16px;
  max-width: 48ch;
}

.split-block ul {
  list-style: none;
  margin-top: 28px;
}

.split-block li {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--cream-ink);
  padding-left: 28px;
  position: relative;
  margin-bottom: 14px;
  line-height: 1.3;
  font-weight: 400;
}

.split-block li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--amber-deep);
  top: 4px;
  font-size: 13px;
  font-style: normal;
}

.split-block .caption {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-rule);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-text);
  font-style: normal;
  font-weight: 500;
}

/* ============================================
   Como Funciona — Steps
   ============================================ */

.process { padding: var(--gap-section) var(--pad-x); position: relative; z-index: 2; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 4px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.step:hover { border-color: var(--rule-strong); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--amber);
  color: var(--bg);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 28px;
}

.step h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}

.step p { font-size: 14px; line-height: 1.6; color: var(--text-muted); }

/* ============================================
   Galeria curada (3 buckets)
   ============================================ */

.gallery-section { padding: var(--gap-section) var(--pad-x); position: relative; z-index: 2; }

.bucket { margin-bottom: clamp(60px, 8vw, 100px); }
.bucket:last-child { margin-bottom: 0; }

.bucket-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 14px;
  margin-bottom: 28px;
}

.bucket-head h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}

.bucket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bucket-grid .placeholder { aspect-ratio: 4 / 5; }
.bucket-grid .placeholder:nth-child(2) { aspect-ratio: 1 / 1; align-self: end; }
.bucket-grid .placeholder:nth-child(3) { aspect-ratio: 3 / 4; }
.bucket-grid .placeholder:nth-child(4) { aspect-ratio: 4 / 3; align-self: start; }

/* ============================================
   Testimonials
   ============================================ */

.testimonials {
  background: var(--bg-deep);
  padding: var(--gap-section) var(--pad-x);
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.testimonials .eyebrow { display: block; margin-bottom: 20px; }

.testimonials h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.96;
  margin-bottom: clamp(40px, 6vw, 80px);
  color: var(--text);
}

.testimonials h2 em { color: var(--amber); font-style: italic; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card { display: flex; flex-direction: column; }
.testimonial-photo { aspect-ratio: 4 / 5; margin-bottom: 24px; }

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 36;
  font-size: 19px;
  line-height: 1.45;
  margin-bottom: 20px;
  color: var(--text);
  max-width: none;
  font-weight: 400;
}

.testimonial-meta {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.testimonial-meta strong { font-weight: 500; color: var(--text); display: block; margin-bottom: 4px; }

/* ============================================
   FAQ
   ============================================ */

.faq { padding: var(--gap-section) var(--pad-x); position: relative; z-index: 2; }

.faq-list { border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 28px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.25;
  transition: color 0.2s ease;
}

.faq-q:hover { color: var(--amber); }

.faq-q .plus {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 22px;
  font-weight: 400;
  margin-left: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--amber);
}

.faq-item.open .faq-q .plus { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.faq-item.open .faq-a { max-height: 400px; padding: 0 0 28px 0; }
.faq-a p { font-size: 16px; line-height: 1.65; color: var(--text-muted); max-width: 70ch; }

/* ============================================
   CTA Final
   ============================================ */

.cta-final {
  background: var(--amber);
  color: var(--bg);
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-final .eyebrow.on-amber { display: block; margin-bottom: 24px; }

.cta-final h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(48px, 7.5vw, 104px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.92;
  margin-bottom: 24px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--bg);
}

.cta-final p {
  font-size: clamp(16px, 1.4vw, 19px);
  margin: 0 auto 40px;
  max-width: 46ch;
  line-height: 1.55;
  color: rgba(13, 14, 16, 0.78);
}

/* ============================================
   Footer
   ============================================ */

footer {
  background: var(--bg-deep);
  color: var(--text-muted);
  padding: 64px var(--pad-x) 32px;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--rule);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 32px;
}

footer .brand { color: var(--text); font-size: 18px; display: inline-block; margin-bottom: 16px; }

footer h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-soft);
  margin-bottom: 16px;
}

footer ul { list-style: none; }
footer li { margin-bottom: 10px; font-size: 14px; }
footer a:hover { color: var(--amber); }

.colophon {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ============================================
   Floating WhatsApp (Mobile)
   ============================================ */

.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--amber);
  color: var(--bg);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 60;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ============================================
   PRODUCT PAGE
   ============================================ */

.product-hero {
  padding: clamp(40px, 6vw, 80px) var(--pad-x) clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  position: relative;
  z-index: 2;
  background:
    radial-gradient(ellipse 50% 50% at 15% 15%, var(--amber-glow), transparent 60%),
    var(--bg);
}

.product-gallery { position: relative; }
.product-main-img { aspect-ratio: 4 / 5; margin-bottom: 16px; position: relative; }

.product-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.product-thumb { aspect-ratio: 1 / 1; cursor: pointer; }

.product-info { position: sticky; top: 100px; }
.product-info .eyebrow { display: block; margin-bottom: 16px; }

.product-info h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.9;
  margin-bottom: 16px;
  color: var(--text);
}

.product-info .tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 32px;
  color: var(--amber);
  font-weight: 400;
}

.product-info .price-display {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text);
}

.product-info .price-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 36px;
}

/* Configurator */
.config-group { margin-bottom: 32px; }

.config-group-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.config-group-head .selected {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.option-row { display: flex; flex-wrap: wrap; gap: 8px; }

.option {
  position: relative;
  cursor: pointer;
  padding: 14px 18px;
  border: 1px solid var(--rule-strong);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.02em;
  background: transparent;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease;
  border-radius: 2px;
}

.option:hover { border-color: var(--amber); }
.option.active { border-color: var(--amber); background: var(--amber); color: var(--bg); }
.option input { position: absolute; opacity: 0; pointer-events: none; }

.color-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 8px;
  border: 1px solid var(--rule-strong);
}

.accessories { border-top: 1px solid var(--rule); padding-top: 28px; margin-bottom: 32px; }

.acc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: background 0.15s ease;
}

.acc-item:last-child { border-bottom: 0; }
.acc-item:hover { background: rgba(245, 239, 231, 0.03); }

.acc-check { display: inline-flex; align-items: center; gap: 14px; font-size: 14px; line-height: 1.3; color: var(--text); }

.acc-check-box {
  width: 18px;
  height: 18px;
  border: 1px solid var(--rule-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  background: transparent;
  color: transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  border-radius: 2px;
}

.acc-item.checked .acc-check-box { background: var(--amber); color: var(--bg); border-color: var(--amber); }

.acc-item input { position: absolute; opacity: 0; pointer-events: none; }

.acc-price { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); }

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid var(--text);
  border-bottom: 1px solid var(--text);
  margin-bottom: 24px;
}

.total-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-soft); }
.total-value { font-family: var(--font-display); font-size: 32px; font-weight: 400; letter-spacing: -0.02em; color: var(--text); }

.product-cta { width: 100%; padding: 22px 28px; }

.product-info .fine-print {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 16px;
  line-height: 1.5;
}

/* Product editorial blocks */

.product-detail {
  padding: var(--gap-section) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.product-detail.surface { background: var(--surface); }
.product-detail.deep { background: var(--bg-deep); }

.product-detail h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--text);
}

.product-detail h2 em { color: var(--amber); }

.product-detail p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 50ch;
  color: var(--text-muted);
}

.product-pull-quote {
  background: var(--amber);
  color: var(--bg);
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  text-align: center;
  position: relative;
  z-index: 2;
}

.product-pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.025em;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--bg);
}

.product-pull-quote p em { font-style: italic; color: var(--bg); opacity: 0.75; }

.product-pull-quote .sig {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(13, 14, 16, 0.6);
  margin-top: 28px;
}

.product-pull-quote.dark { background: var(--bg-deep); color: var(--text); }
.product-pull-quote.dark p { color: var(--text); }
.product-pull-quote.dark p em { color: var(--amber); opacity: 1; }
.product-pull-quote.dark .sig { color: var(--text-soft); }

/* Specs */

.spec-block { padding: var(--gap-section) var(--pad-x); position: relative; z-index: 2; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  padding-right: 32px;
}

.spec-row:nth-child(2n) { border-right: 0; padding-right: 0; padding-left: 32px; }
.spec-row:nth-child(2n+1) { padding-left: 0; }

.spec-row .label { color: var(--text-soft); padding-top: 4px; }
.spec-row .value { font-size: 16px; line-height: 1.5; color: var(--text); }

/* Related */

.related-section { padding: var(--gap-section) var(--pad-x); position: relative; z-index: 2; }

.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.related-card {
  display: block;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  border-radius: 4px;
}

.related-card:hover { transform: translateY(-4px); border-color: var(--rule-strong); }

.related-card .related-img { aspect-ratio: 4 / 3; }

.related-card .related-body { padding: 24px 28px 28px; }

.related-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--text);
}

.related-card .related-meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 12px;
}

/* ============================================
   SOB MEDIDA PAGE
   ============================================ */

.sm-hero {
  padding: clamp(60px, 8vw, 110px) var(--pad-x) clamp(80px, 10vw, 140px);
  max-width: 1200px;
  position: relative;
  z-index: 2;
  background:
    radial-gradient(ellipse 50% 50% at 80% 30%, var(--amber-glow), transparent 60%),
    var(--bg);
}

.sm-hero .eyebrow { display: block; margin-bottom: 28px; }

.sm-hero h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.92;
  margin-bottom: 32px;
  color: var(--text);
}

.sm-hero h1 em { color: var(--amber); font-style: italic; }

.sm-hero .sm-lead { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; max-width: 56ch; color: var(--text-muted); }

.case-block {
  padding: var(--gap-section) var(--pad-x);
  border-top: 1px solid var(--rule);
  position: relative;
  z-index: 2;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.case-grid.reverse > :first-child { order: 2; }

.case-images { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.case-images.single { grid-template-columns: 1fr; }
.case-images .placeholder { aspect-ratio: 3 / 4; }

.case-text .label { display: block; margin-bottom: 16px; color: var(--text-soft); }

.case-text h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--text);
}

.case-text p { font-size: 16px; line-height: 1.65; margin-bottom: 14px; max-width: 50ch; color: var(--text-muted); }

.case-specs {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  line-height: 1.8;
}

/* ============================================
   Reveal
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .hero, .product-hero, .product-detail, .case-grid { grid-template-columns: 1fr; }
  .case-grid.reverse > :first-child { order: 0; }
  .spread.layout-a, .spread.layout-b { grid-template-columns: 1fr; }
  .spread.layout-b .spread-image { order: 0; }
  .product-info { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .related-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .bucket-grid { grid-template-columns: 1fr 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec-row, .spec-row:nth-child(2n) { border-right: 0; padding: 24px 0; }
  .hero-tag { left: 0; bottom: 16px; }
  .hero-card { right: 0; top: 16px; max-width: 200px; padding: 14px 16px; }
  .hero-card .hc-text { font-size: 15px; }
  .split-block { grid-template-columns: 1fr; }
  .split-block-image { min-height: 480px; aspect-ratio: 4 / 5; }
  .split-block-image .placeholder { border-right: 0; border-bottom: 1px solid var(--cream-rule); }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .nav { display: none; }
  .top-cta { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .topbar { grid-template-columns: auto 1fr; padding: 14px var(--pad-x); }
  .topbar .brand { justify-self: start; }
  .topbar .menu-toggle { justify-self: end; }
  .topbar .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 24px var(--pad-x);
    gap: 18px;
    border-bottom: 1px solid var(--rule);
  }
  .testimonial-grid, .bucket-grid, .beforeafter-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .colophon { flex-direction: column; gap: 8px; }
  .steps { grid-template-columns: 1fr; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .wa-float { display: flex; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
  .option-row { gap: 6px; }
  .option { padding: 12px 14px; font-size: 12px; }
  .hero-tag { font-size: 10px; padding: 10px 14px; }
  .hero-card { display: none; }
  .hero-metrics { gap: 20px; }
  .split-block-copy { padding: 60px 24px; }
}
.hero-image{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;

  border-radius:4px;

  display:block;
}
/* =========================
   UNIVERSAL IMAGE SYSTEM
========================= */

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* Containers de imagem */

.hero-stage,
.spread-image,
.product-main-img,
.product-thumb,
.related-img,
.testimonial-photo,
.beforeafter-item,
.case-images,
.bucket-grid > div{
  position:relative;
  overflow:hidden;
}

/* Imagens dentro dos containers */

.hero-stage img,
.spread-image img,
.product-main-img img,
.product-thumb img,
.related-img img,
.testimonial-photo img,
.beforeafter-item img,
.case-images img,
.bucket-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Aspect ratios padrão */

.hero-stage{
  aspect-ratio:4/5;
}

.spread-image{
  aspect-ratio:1/1;
}

.product-main-img{
  aspect-ratio:4/5;
}

.product-thumb{
  aspect-ratio:1/1;
}

.related-img{
  aspect-ratio:4/3;
}

.testimonial-photo{
  aspect-ratio:4/5;
}

.beforeafter-item{
  aspect-ratio:4/5;
}

/* Segurança extra */

img{
  object-position:center;
}
