/* ================= OUTLET SECRETO ================= */
/* dígitos 7-segmentos (estilo painel de bomba) */
@font-face {
  font-family: 'DSEG7';
  src: url('https://cdn.jsdelivr.net/npm/dseg@0.46.0/fonts/DSEG7-Classic/DSEG7Classic-Bold.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/npm/dseg@0.46.0/fonts/DSEG7-Classic/DSEG7Classic-Bold.woff') format('woff');
  font-display: swap;
}

:root {
  --bg: #060606;
  --panel: #0d0d0d;
  --ink: #e6e2da;
  --red: #ff2222;
  --red-dim: #7c1414;
  --stamp: #8f2f2b;
  --line: #222;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Archivo Black', system-ui, sans-serif;
  overflow-x: hidden;
}

.type { font-family: 'Special Elite', 'Courier New', monospace; }

/* ---------- texturas ---------- */
.grain, .scanlines {
  position: fixed; inset: 0; pointer-events: none; z-index: 50;
}
.grain {
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
  animation: grainShift .9s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); } 25% { transform: translate(-3%,2%); }
  50% { transform: translate(2%,-3%); } 75% { transform: translate(-2%,-2%); }
  100% { transform: translate(0,0); }
}
.scanlines {
  opacity: .22;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,.55) 3px 4px);
}

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 20px 70px; text-align: center; position: relative;
}
.hero-tag {
  font-size: 13px; letter-spacing: .35em; color: #8a857b;
  border: 1px dashed #3a3a3a; padding: 7px 16px; margin-bottom: 8px;
}

/* gato interativo */
.cat-stage { position: relative; margin-top: 12px; perspective: 700px; }
.cat-wrap {
  position: relative; width: min(46vh, 78vw, 430px); aspect-ratio: 1466/1315;
  transform-style: preserve-3d; will-change: transform;
  animation: breathe 4.5s ease-in-out infinite;
  cursor: pointer; user-select: none; -webkit-user-select: none;
}
@keyframes breathe { 0%,100% { scale: 1; } 50% { scale: 1.015; } }
.cat-img {
  width: 100%; height: 100%; object-fit: contain;
  filter: invert(1) brightness(1.06) drop-shadow(0 0 34px rgba(255,255,255,.09));
  pointer-events: none;
}
.cat-wrap.startle { animation: startle .55s ease; }
@keyframes startle {
  0% { transform: rotate(0) scale(1); }
  20% { transform: rotate(-4deg) scale(1.07) translateY(-10px); }
  40% { transform: rotate(3.5deg) scale(1.06) translateY(-8px); }
  60% { transform: rotate(-2.5deg) scale(1.04); }
  80% { transform: rotate(1.5deg) scale(1.02); }
  100% { transform: rotate(0) scale(1); }
}

/* olhos que seguem o cursor */
.eye {
  position: absolute; width: 5.2%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,40,40,.95) 0%, rgba(160,10,10,.85) 55%, rgba(90,0,0,.35) 78%, transparent 100%);
  box-shadow: 0 0 14px 3px rgba(255,30,30,.5);
  display: grid; place-items: center;
  animation: eyeGlow 3.2s ease-in-out infinite;
  pointer-events: none;
}
#eyeL { left: 69.5%; top: 26.5%; }
#eyeR { left: 80.5%; top: 27.5%; }
@keyframes eyeGlow { 0%,100% { opacity: .85; } 50% { opacity: 1; } }
.eye .pupil {
  width: 34%; aspect-ratio: 1; border-radius: 50%;
  background: #180000; will-change: transform;
}
.eye.blink { animation: blink .18s ease; }
@keyframes blink { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(.06); } }
.cat-wrap.flare .eye {
  box-shadow: 0 0 26px 9px rgba(255,30,30,.85);
}

/* logo + carimbo */
.logo-block { position: relative; margin-top: 26px; width: min(640px, 92vw); }
.logo-img {
  width: 100%; display: block;
  filter: invert(1) brightness(1.05);
}
.stamp-img {
  position: absolute; width: 46%; right: -4%; bottom: -26%;
  transform: rotate(-9deg); opacity: .92;
  filter: drop-shadow(0 0 8px rgba(0,0,0,.8)) brightness(1.35) saturate(1.25);
  transition: transform .12s ease;
}
.stamp-img.slam { animation: slam .35s cubic-bezier(.2,2.4,.4,1); }
@keyframes slam {
  0% { transform: rotate(-9deg) scale(2.4); opacity: 0; }
  70% { transform: rotate(-9deg) scale(.96); opacity: 1; }
  100% { transform: rotate(-9deg) scale(1); }
}

.hero-sub { margin-top: 46px; color: #9b958a; font-size: 15px; letter-spacing: .12em; }

/* ---------- cronômetro-bomba ---------- */
.bomb { margin-top: 26px; width: min(680px, 94vw); }
.bomb-panel {
  position: relative; background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  border: 1px solid #262626; border-radius: 10px;
  padding: 22px 26px 0; box-shadow: 0 24px 60px rgba(0,0,0,.7), inset 0 1px 0 #2c2c2c;
}
.screw {
  position: absolute; width: 11px; height: 11px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #555, #171717 70%);
  box-shadow: inset 0 0 2px #000;
}
.screw::after {
  content: ''; position: absolute; left: 15%; right: 15%; top: 45%; height: 1.5px;
  background: #000; transform: rotate(38deg);
}
.screw.tl { top: 9px; left: 10px; } .screw.tr { top: 9px; right: 10px; }
.screw.bl { bottom: 9px; left: 10px; } .screw.br { bottom: 9px; right: 10px; }
.bomb-label { color: #7d7466; font-size: 12px; letter-spacing: .42em; margin-bottom: 14px; }
.bomb-display {
  display: flex; align-items: flex-start; justify-content: center; gap: 8px;
  background: #050202; border: 1px solid #1d0808; border-radius: 6px;
  padding: 16px 10px 12px;
  box-shadow: inset 0 0 26px rgba(255,0,0,.07), inset 0 2px 10px #000;
}
.unit { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.digits {
  font-family: 'DSEG7', 'Space Mono', monospace;
  font-size: clamp(28px, 7.2vw, 54px);
  color: var(--red);
  text-shadow: 0 0 8px rgba(255,30,30,.9), 0 0 26px rgba(255,30,30,.45);
}
.unit-label { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: .3em; color: #6b3b34; }
.colon {
  font-family: 'DSEG7', 'Space Mono', monospace;
  font-size: clamp(28px, 7.2vw, 54px); color: var(--red);
  text-shadow: 0 0 8px rgba(255,30,30,.9);
  animation: tick 1s steps(1) infinite; margin-top: 0;
}
@keyframes tick { 0%,100% { opacity: 1; } 50% { opacity: .12; } }
.bomb-display.armed .digits { animation: alarm .5s steps(1) infinite; }
@keyframes alarm { 0%,100% { color: var(--red); } 50% { color: #5a0a0a; } }
.wires { height: 54px; margin: 10px -26px 0; overflow: hidden; }
.wires svg { width: 100%; height: 100%; display: block; }

/* ---------- CTA ---------- */
/* botão-carimbo: bordas roídas via máscara de ruído + tinta falhada */
.cta {
  position: relative; display: inline-block; margin-top: 40px;
  background: #c1201a; color: #070303; text-decoration: none;
  font-size: clamp(16px, 2.6vw, 21px); letter-spacing: .08em;
  padding: 20px 46px; rotate: -1.4deg; white-space: nowrap;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='90' preserveAspectRatio='none'%3E%3Cfilter id='g' x='-20%25' y='-20%25' width='140%25' height='140%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.11 0.13' numOctaves='4' seed='11'/%3E%3CfeDisplacementMap in='SourceGraphic' scale='16'/%3E%3C/filter%3E%3Crect x='9' y='9' width='322' height='72' fill='%23fff' filter='url(%23g)'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='90' preserveAspectRatio='none'%3E%3Cfilter id='g' x='-20%25' y='-20%25' width='140%25' height='140%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.11 0.13' numOctaves='4' seed='11'/%3E%3CfeDisplacementMap in='SourceGraphic' scale='16'/%3E%3C/filter%3E%3Crect x='9' y='9' width='322' height='72' fill='%23fff' filter='url(%23g)'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  transition: rotate .15s ease, scale .15s ease, background .15s ease;
}
/* tinta falhada por dentro (mesmo ruído do grão da página) */
.cta::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='3' seed='4'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
  mix-blend-mode: multiply; opacity: .5;
}
.cta:hover { background: #d8261e; rotate: -0.4deg; scale: 1.02; }
.cta:active { scale: .96; }
.cta-note { margin-top: 12px; color: #77716a; font-size: 12.5px; letter-spacing: .18em; }

/* ---------- regra 1 hora ---------- */
.rule {
  padding: 110px 20px; text-align: center;
  border-top: 1px dashed #2a2a2a;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,25,25,.05), transparent);
}
.rule-title { font-size: clamp(30px, 6.4vw, 62px); letter-spacing: .02em; }
.red { color: var(--red); text-shadow: 0 0 22px rgba(255,30,30,.4); }

/* ticket da sessão: ingresso com picote e canhoto */
.ticket {
  position: relative; width: min(440px, 90vw); margin: 40px auto 8px;
  background: linear-gradient(180deg, #121212, #0b0b0b);
  border: 1px solid #2e2e2e; border-radius: 14px;
  box-shadow: 0 26px 60px rgba(0,0,0,.7), inset 0 1px 0 #303030;
  rotate: -1.2deg;
}
.ticket-head {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  color: #857b6b; font-size: 11.5px; letter-spacing: .22em;
  padding: 16px 20px 12px;
  border-bottom: 1px solid #222;
}
.ticket-num { color: var(--red); }
.session-clock {
  margin: 16px 18px 18px;
  background: #050202; border: 1px solid #1d0808; border-radius: 8px;
  padding: 18px 10px 14px;
  box-shadow: inset 0 0 30px rgba(255,0,0,.09), inset 0 3px 12px #000;
}
/* linha de picote com os furos laterais */
.ticket-tear {
  position: relative; height: 0;
  border-top: 2px dashed #333;
}
.ticket-tear::before, .ticket-tear::after {
  content: ''; position: absolute; top: -11px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--bg);
  box-shadow: inset 0 0 0 1px #2e2e2e;
}
.ticket-tear::before { left: -12px; }
.ticket-tear::after { right: -12px; }
.ticket-stub {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 16px 20px 18px; flex-wrap: wrap;
}
.barcode {
  height: 30px; width: 120px; flex-shrink: 0; opacity: .85;
  background: repeating-linear-gradient(90deg,
    #d8d3c8 0 2px, transparent 2px 4px, #d8d3c8 4px 7px, transparent 7px 8px,
    #d8d3c8 8px 9px, transparent 9px 12px, #d8d3c8 12px 14px, transparent 14px 17px);
}
.stub-txt { color: #77716a; font-size: 11px; letter-spacing: .16em; }
.digits.big {
  font-size: clamp(50px, 12vw, 92px); display: inline-block;
  animation: digitGlow 1s ease-in-out infinite;
}
@keyframes digitGlow {
  0%, 100% { text-shadow: 0 0 8px rgba(255,30,30,.9), 0 0 26px rgba(255,30,30,.4); }
  50% { text-shadow: 0 0 12px rgba(255,30,30,1), 0 0 40px rgba(255,30,30,.65); }
}
.digits.big.pop { animation: digitPop .16s ease, digitGlow 1s ease-in-out infinite; }
@keyframes digitPop { 0% { scale: 1; } 40% { scale: 1.022; } 100% { scale: 1; } }
.rule-text {
  max-width: 560px; margin: 36px auto 0; color: #a49d92;
  font-size: 15.5px; line-height: 1.9;
}
.redacted {
  background: #d8d3c8; color: #d8d3c8; border-radius: 2px; padding: 0 3px;
  user-select: none;
}
.rule-list {
  list-style: none; margin: 30px auto 0; max-width: 460px; text-align: left;
  color: #b8b1a5; font-size: 14.5px; line-height: 2.3;
}

/* ---------- seções ---------- */
.section-head { text-align: center; margin-bottom: 44px; }
.sec-tag { display: block; color: #776f63; font-size: 12px; letter-spacing: .5em; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(24px, 4.6vw, 42px); letter-spacing: .03em; }

/* ---------- descontos ---------- */
.offs {
  padding: 100px 20px; border-top: 1px dashed #2a2a2a; text-align: center;
  background: radial-gradient(ellipse 60% 45% at 50% 55%, rgba(255,25,25,.04), transparent);
}
.off-row {
  display: flex; justify-content: center; align-items: center;
  gap: clamp(10px, 1.8vw, 30px); flex-wrap: wrap; margin-top: 10px;
}
.off-stamp {
  width: clamp(124px, 14.5vw, 205px);
  filter: brightness(1.28) saturate(1.2) drop-shadow(0 10px 26px rgba(0,0,0,.6));
  opacity: 0; transform: scale(2.2) rotate(0deg);
}
.off-stamp:nth-child(1) { rotate: -7deg; }
.off-stamp:nth-child(2) { rotate: 4deg; margin-top: 24px; }
.off-stamp:nth-child(3) { rotate: -3deg; }
.off-stamp:nth-child(4) { rotate: 5deg; margin-top: 18px; }
.off-stamp:nth-child(5) { rotate: -5deg; }
.off-stamp:nth-child(6) { rotate: 3deg; margin-top: 28px; }
.off-stamp.stamped { animation: stampIn .38s cubic-bezier(.2,2.2,.4,1) forwards; }
@keyframes stampIn {
  0% { opacity: 0; transform: scale(2.2); }
  70% { opacity: 1; transform: scale(.95); }
  100% { opacity: 1; transform: scale(1); }
}
.off-note { margin-top: 42px; color: #77716a; font-size: 13.5px; letter-spacing: .14em; }

/* ---------- peças com defeito ---------- */
.defect { padding: 100px 20px; border-top: 1px dashed #2a2a2a; }
.defect-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(30px, 6vw, 80px); flex-wrap: wrap;
}
.defect-art { position: relative; width: min(360px, 82vw); flex-shrink: 0; }
.defect-cat {
  width: 100%; display: block;
  filter: invert(1) brightness(1.05) drop-shadow(0 0 30px rgba(255,255,255,.07));
}
.defect-stamp {
  position: absolute; width: 92%; left: 4%; top: 34%;
  rotate: -12deg; opacity: 0; transform: scale(2.2);
  filter: brightness(1.35) saturate(1.25) drop-shadow(0 8px 22px rgba(0,0,0,.7));
}
.defect-stamp.stamped { animation: stampIn .38s cubic-bezier(.2,2.2,.4,1) forwards; }
.defect-copy { max-width: 460px; text-align: left; }
.defect-copy .sec-tag { text-align: left; }
.defect-copy h2 { font-size: clamp(26px, 4.6vw, 44px); line-height: 1.15; margin-bottom: 22px; }
.defect-text { color: #a49d92; font-size: 15px; line-height: 1.9; }
.defect-list { margin: 22px 0 0; max-width: none; }
@media (max-width: 760px) {
  .defect-copy { text-align: center; }
  .defect-copy .sec-tag { text-align: center; }
  .defect-list { text-align: left; }
}

/* ---------- marcas ---------- */
.brands { padding: 100px 20px; border-top: 1px dashed #2a2a2a; }
.brand-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; max-width: 1120px; margin: 0 auto;
}
@media (max-width: 1000px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
.brand-card {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: 8px; min-height: 170px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  padding: 26px 18px; overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.brand-card::before {
  content: 'CONFIDENCIAL'; position: absolute; top: 10px; right: -34px;
  transform: rotate(35deg);
  font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: .3em;
  color: #3d3d3d; border-top: 1px solid #3d3d3d; border-bottom: 1px solid #3d3d3d;
  padding: 2px 34px;
}
.brand-card:hover {
  border-color: var(--red-dim);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(255,20,20,.12);
}
.brand-card img {
  max-width: 78%; max-height: 74px; object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .2s ease;
}
.brand-card:hover img { filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(255,255,255,.45)); }
.brand-name { font-size: 12px; letter-spacing: .28em; color: #857e73; }

/* ---------- mockups ---------- */
.mockups { padding: 100px 20px 120px; border-top: 1px dashed #2a2a2a; }
.mock-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 40px;
}
.mock-tab {
  font-family: 'Space Mono', monospace; font-size: 12.5px; letter-spacing: .14em;
  background: none; border: 1px solid #333; color: #9b958a;
  padding: 11px 20px; border-radius: 3px; cursor: pointer;
  transition: all .18s ease;
}
.mock-tab:hover { border-color: #666; color: #ddd; }
.mock-tab.active {
  border-color: var(--red); color: var(--red);
  box-shadow: 0 0 18px rgba(255,30,30,.18), inset 0 0 12px rgba(255,30,30,.07);
}
.mock-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px; max-width: 1060px; margin: 0 auto;
}
.mock-card {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: 8px; overflow: hidden; aspect-ratio: 4/5;
  transition: transform .2s ease, border-color .2s ease;
}
.mock-card:hover { transform: translateY(-4px); border-color: #444; }
.mock-card img.shot { width: 100%; height: 100%; object-fit: cover; display: block; }
.mock-card .tape {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  width: 92px; height: 24px; background: rgba(216,211,200,.16);
  backdrop-filter: blur(1px);
}
/* placeholder confidencial */
.mock-card.locked {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}
.mock-card.locked .lock-cat {
  width: 46%; opacity: .16; filter: invert(1);
}
.mock-card.locked .lock-stamp {
  width: 70%; opacity: .85; transform: rotate(-8deg);
  filter: brightness(1.3) saturate(1.2);
}
.mock-card.locked .lock-txt {
  font-family: 'Space Mono', monospace; font-size: 10.5px; letter-spacing: .3em; color: #5c574f;
}

/* ---------- rodapé ---------- */
.foot {
  position: relative; text-align: center; padding: 110px 20px 60px;
  border-top: 1px dashed #2a2a2a; overflow: hidden;
}
.foot-cat {
  width: 130px; filter: invert(1); opacity: .1; margin-bottom: 8px;
  animation: breathe 5s ease-in-out infinite;
}
.foot-title { font-size: clamp(26px, 5vw, 48px); line-height: 1.2; }
.foot-info { margin-top: 30px; color: #a49d92; font-size: 15px; line-height: 2.1; letter-spacing: .06em; }
.foot-fine { margin-top: 70px; color: #55504a; font-size: 11.5px; letter-spacing: .2em; }

/* ---------- mobile (80% do público) ---------- */
@media (max-width: 760px) {
  .rule { padding: 64px 18px; }
  .offs, .defect, .brands { padding: 64px 18px; }
  .mockups { padding: 64px 18px 80px; }
  .foot { padding: 70px 18px 46px; }
  .section-head { margin-bottom: 30px; }
  .rule-text, .defect-text { font-size: 14px; }
  .rule-list { line-height: 2; font-size: 13.5px; }
  .brand-grid { gap: 10px; }
  .brand-card { min-height: 108px; padding: 16px 10px; gap: 10px; }
  .brand-card img { max-height: 44px; max-width: 82%; }
  .brand-name { font-size: 9.5px; letter-spacing: .2em; }
  .brand-card::before { display: none; }
  .mock-tabs { gap: 7px; margin-bottom: 26px; }
  .mock-tab { padding: 9px 13px; font-size: 11px; }
}
@media (max-width: 560px) {
  .stamp-img { bottom: -34%; }
  .wires { height: 40px; }
  .ticket { margin-top: 14px; margin-bottom: 44px; }
  .ticket-head { font-size: 10px; letter-spacing: .16em; padding: 14px 14px 10px; }
  .stub-txt { font-size: 9.5px; }
  .mock-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .mock-card.locked { gap: 9px; }
  .mock-card.locked .lock-cat { width: 34%; }
  .mock-card.locked .lock-stamp { width: 62%; }
  .mock-card.locked .lock-txt { font-size: 8.5px; letter-spacing: .16em; }
  .cta { padding: 18px 24px; font-size: 15px; letter-spacing: .06em; }
}
