/* ============================================================
   DEPARTAMENTO 92 — RESOLUÇÃO DO CASO
   Style.css — Investigative Case Resolution Site
   ============================================================ */

/* ---- VARIABLES ---- */
:root {
  --black:      #050505;
  --dark:       #0b0b0b;
  --dark-brown: #15100d;
  --paper:      #b8ab91;
  --paper-light:#e8e0d0;
  --gray-doc:   #8f877a;
  --red:        #8b0f0f;
  --red-dark:   #5f0707;
  --red-bright: #9b1a1a;
  --red-tape:   #7a0a0a;

  --font-title: 'Bebas Neue', 'Anton', sans-serif;
  --font-type:  'Special Elite', 'Courier Prime', monospace;
  --font-mono:  'Courier Prime', 'IBM Plex Mono', monospace;
  --font-body:  'Roboto Condensed', 'Arial Narrow', sans-serif;

  --section-pad: 80px 24px;
  --max-w: 1100px;
}

/* ---- RESET ---- */

/* Evita que padding/borda aumentem a largura real dos elementos.
   Isso é essencial para não gerar corte lateral no mobile. */
*, *::before, *::after {
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--dark);
  color: var(--paper-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

a { color: var(--paper); text-decoration: none; transition: color .2s; }
a:hover { color: var(--paper-light); }

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

/* ============================================================
   GRAIN OVERLAY
   ============================================================ */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.04;
  mix-blend-mode: overlay;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.typewriter-text {
  font-family: var(--font-type);
  font-size: 0.88rem;
  color: var(--paper);
  line-height: 1.8;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--paper-light);
  letter-spacing: 0.04em;
  line-height: 1.0;
  text-transform: uppercase;
}
.section-title--sm { font-size: clamp(1.6rem, 3vw, 2.4rem); }

.section-number {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--red-bright);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-intro {
  max-width: 620px;
  margin-top: 20px;
}

.red-char { color: var(--red-bright); }

/* ============================================================
   RED LINE
   ============================================================ */
.red-line {
  width: 100%;
  height: 1px;
  background: var(--red);
  margin: 18px 0;
  position: relative;
}
.red-line--short { width: 60px; margin: 12px 0; }
.red-line::after {
  content: '';
  position: absolute;
  left: 0; top: -1px;
  width: 40px; height: 3px;
  background: var(--red-bright);
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.section {
  padding: var(--section-pad);
  position: relative;
}
.section--dark { background-color: var(--black); }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 52px;
}

/* ============================================================
   PAPER CARD
   ============================================================ */
.paper-card {
  background: #1a1410;
  background-size: 200px 200px;
  border: 1px solid #2a221c;
  border-left: 3px solid var(--red-dark);
  padding: 28px 32px;
  position: relative;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.7), inset 0 0 40px rgba(0,0,0,0.3);
  transition: transform .2s, box-shadow .2s;
}
.paper-card:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 28px rgba(0,0,0,0.8), inset 0 0 40px rgba(0,0,0,0.3);
}

/* card tape (visual decoration) */
.card-tape {
  position: absolute;
  top: -10px; left: 30px;
  width: 60px; height: 22px;
  background: rgba(0,0,0,0.55);
  border: 1px solid #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.card-tape--right { left: auto; right: 30px; }

/* ============================================================
   STAMP
   ============================================================ */
.stamp {
  display: inline-block;
  font-family: var(--font-title);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  border: 3px solid;
  padding: 6px 14px;
  transform: rotate(-2deg);
  position: relative;
}
.stamp--large {
  font-size: 1.6rem;
  padding: 10px 20px;
  border-width: 4px;
  border-color: var(--gray-doc);
  color: var(--gray-doc);
  opacity: 0.75;
}
.stamp--small {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-color: var(--gray-doc);
  color: var(--gray-doc);
  opacity: 0.8;
  margin-bottom: 16px;
}
.stamp--red {
  border-color: var(--red) !important;
  color: var(--red) !important;
  opacity: 0.85 !important;
  transform: rotate(1.5deg);
}

/* ============================================================
   CASE TAG
   ============================================================ */
.case-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-doc);
  border: 1px solid #2a221c;
  padding: 4px 10px;
  margin-right: 8px;
  margin-bottom: 8px;
}
.case-tag strong { color: var(--paper-light); }

/* ============================================================
   VERDICT BADGE
   ============================================================ */
.verdict-badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  padding: 5px 14px;
  margin-top: 16px;
  border: 2px solid;
}
.verdict-badge--guilty    { border-color: var(--red); color: var(--red); }
.verdict-badge--accomplice{ border-color: #6b5500; color: #9b8000; }
.verdict-badge--innocent  { border-color: #1a5c1a; color: #3a8c3a; }

/* ============================================================
   FATE BADGE
   ============================================================ */
.fate-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  margin-top: 14px;
  border: 1px solid;
  text-transform: uppercase;
}
.fate-badge--red  { border-color: var(--red); color: var(--red); }
.fate-badge--gray { border-color: var(--gray-doc); color: var(--gray-doc); }
.fate-badge--green{ border-color: #2a6e2a; color: #4a9e4a; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--red-dark);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-logo {
  font-family: var(--font-title);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-dept {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gray-doc);
}
.logo-num {
  font-size: 1.8rem;
  color: var(--paper-light);
  letter-spacing: 0.05em;
}
.header-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.header-nav a {
  font-family: var(--font-type);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-doc);
  transition: color .2s;
}
.header-nav a:hover { color: var(--paper-light); }
.header-stamp {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--red);
  border: 1px solid var(--red-dark);
  padding: 3px 8px;
  opacity: 0.8;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  background: var(--dark-brown);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* hero vignette */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-tape {
  background: var(--red-dark);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 8px 0;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  z-index: 2;
  opacity: 0.9;
}
.hero-tape--top { border-bottom: 1px solid var(--red-bright); }
.hero-tape--bottom { margin-top: auto; border-top: 1px solid var(--red-bright); }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  flex: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 48px 24px;
  position: relative;
  z-index: 2;
  align-items: center;
}

/* Photo side */
.hero-photo-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 48px;
  border-right: 1px solid #2a221c;
}
.hero-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 500px;
  overflow: hidden;
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, #1a1208 0%, #2a1e0e 40%, #1a1208 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.photo-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 150px;
  opacity: 0.12;
  mix-blend-mode: overlay;
}
.photo-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--paper);
  text-align: center;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  opacity: 0.8;
}
.photo-label small { font-size: 0.6rem; display: block; margin-top: 4px; color: var(--gray-doc); }

/* photo corners */
.photo-corner {
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--gray-doc);
  border-style: solid;
  opacity: 0.6;
}
.photo-corner--tl { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.photo-corner--tr { top: 8px; right: 8px; border-width: 2px 2px 0 0; }
.photo-corner--bl { bottom: 8px; left: 8px; border-width: 0 0 2px 2px; }
.photo-corner--br { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }

.hero-photo-caption {
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--gray-doc);
  line-height: 1.5;
}

/* Text side */
.hero-text-side {
  padding-left: 48px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--red-bright);
  margin-bottom: 16px;
  display: block;
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--paper-light);
  text-transform: uppercase;
}
.hero-title--name {
  display: block;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  color: var(--paper);
}
.hero-title--mark { color: var(--red-bright); }

.hero-subtitle {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray-doc);
  margin-top: 16px;
}
.hero-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   CLASSIFIED BANNER
   ============================================================ */
.classified-banner {
  background: #0f0c0a;
  border-top: 2px solid var(--red-dark);
  border-bottom: 2px solid var(--red-dark);
  padding: 40px 24px;
}
.classified-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.classified-banner-inner p {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--paper);
}
.classified-banner-inner p strong { color: var(--paper-light); }

/* ============================================================
   CRIME SECTION
   ============================================================ */
.crime-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

.crime-narrative h3.card-title {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gray-doc);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.crime-narrative p {
  margin-bottom: 16px;
  color: var(--paper-light);
  font-size: 0.94rem;
}
.crime-narrative strong { color: var(--paper-light); }

.document-note {
  background: rgba(139,15,15,0.12);
  border-left: 3px solid var(--red);
  padding: 12px 16px;
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--paper);
}

/* Case data sidebar */
.crime-sidebar { display: flex; flex-direction: column; gap: 20px; }

.case-data-card .stamp--small { margin-bottom: 14px; }
.case-data-list {
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.73rem;
}
.case-data-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid #222;
  gap: 12px;
}
.case-data-list li span {
  color: var(--gray-doc);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  font-size: 0.65rem;
}
.case-data-list li strong {
  color: var(--paper-light);
  text-align: right;
  font-size: 0.72rem;
}

/* Timeline */
.timeline-card h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gray-doc);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.timeline-list { list-style: none; }
.timeline-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid #1e1a16;
  font-size: 0.76rem;
  color: var(--paper);
}
.tl-time {
  color: var(--red-bright);
  font-weight: 700;
  flex-shrink: 0;
  min-width: 48px;
}

/* ============================================================
   SUSPECTS
   ============================================================ */
.suspect-tier { margin-bottom: 40px; }

.tier-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 16px;
}
.tier-label--red   { background: var(--red-dark); color: var(--paper-light); }
.tier-label--dark  { background: #1a0f0f; color: var(--paper); border: 1px solid var(--red-dark); }
.tier-label--gray  { background: #1a1a1a; color: var(--gray-doc); border: 1px solid #333; }
.tier-label--clear { background: #0f1a0f; color: #3a7a3a; border: 1px solid #1a4a1a; }

.suspect-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.suspect-card--primary { border-left-color: var(--red); }
.suspect-card--cleared { border-left-color: #2a6e2a; }

.suspect-photo-placeholder {
  width: 160px;
  min-width: 130px;
  height: 200px;
  background: #0f0d0b;
  border: 1px solid #2a221c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 10px;
  position: relative;
  flex-shrink: 0;
}
.suspect-photo-placeholder--sm {
  width: 160px;
  min-width: 130px;
  height: 200px;
}
.suspect-silhouette {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 90px;
  background: rgba(0,0,0,0.5);
  clip-path: polygon(30% 0%, 70% 0%, 80% 18%, 74% 32%, 84% 62%, 100% 100%, 0% 100%, 16% 62%, 26% 32%, 20% 18%);
  opacity: 0.4;
}
.suspect-photo-placeholder span {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--gray-doc);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.suspect-info { flex: 1; }
.suspect-id {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--red-bright);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.suspect-name {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--paper-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.suspect-name--sm { font-size: 1.3rem; }
.suspect-role {
  font-size: 0.76rem;
  color: var(--gray-doc);
  margin: 6px 0 12px;
}
.suspect-info p {
  font-size: 0.88rem;
  color: var(--paper);
  margin-bottom: 10px;
  line-height: 1.7;
}
.suspect-info strong { color: var(--paper-light); }
.suspect-evidence {
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--gray-doc);
  line-height: 1.6;
}
.suspect-evidence strong { color: var(--paper); }

.suspect-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.suspect-card--minor {
  flex-direction: column;
  gap: 0;
}

/* ============================================================
   CLUES GRID
   ============================================================ */
.clues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.evidence-card {
  padding: 20px 22px;
}
.evidence-card:hover { transform: translateY(-2px) rotate(0.3deg); }

.evidence-tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--red-bright);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.evidence-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--paper-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.evidence-desc {
  font-size: 0.78rem;
  color: var(--paper);
  line-height: 1.8;
  margin-bottom: 12px;
}
.evidence-desc strong { color: var(--paper-light); }
.evidence-connection {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--red-bright);
  border-top: 1px solid #2a221c;
  padding-top: 10px;
  margin-top: 10px;
  line-height: 1.5;
}

/* False clue banner */
.false-clue-banner {
  background: rgba(139,15,15,0.08);
  border: 1px solid var(--red-dark);
  border-left: 4px solid var(--red);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 8px;
}
.false-clue-content h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--paper-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.false-clue-content p {
  font-size: 0.82rem;
  color: var(--paper);
  line-height: 1.8;
}
.false-clue-content strong { color: var(--paper-light); }

/* ============================================================
   TRUTH BLOCK
   ============================================================ */
.truth-block { position: relative; }
.truth-text p {
  margin-bottom: 18px;
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--paper);
}
.truth-text p strong { color: var(--paper-light); }
.truth-text { margin-top: 20px; }

/* ============================================================
   FATES GRID
   ============================================================ */
.fates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.fate-card { padding: 22px 24px; }
.fate-card--highlight { border-left-color: #2a6e2a; }
.fate-header {
  margin-bottom: 8px;
}
.fate-name {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--paper-light);
  text-transform: uppercase;
}
.fate-role {
  font-size: 0.68rem;
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.fate-card p {
  font-size: 0.82rem;
  color: var(--paper);
  line-height: 1.7;
  margin-top: 10px;
}
.fate-card strong { color: var(--paper-light); }

/* Helena memorial */
.helena-memorial { padding: 36px; }
.memorial-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.memorial-photo-placeholder {
  width: 300px;
  min-width: 300px;
  height: 380px;
  background: #0f0d0b;
  border: 1px solid #2a221c;
  flex-shrink: 0;
}
.memorial-text { flex: 1; }
.memorial-text p {
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--paper);
  line-height: 1.8;
}
.memorial-text strong { color: var(--paper-light); }
.memorial-final em { color: var(--gray-doc); font-style: italic; }
.memorial-final small { display: block; margin-top: 6px; font-size: 0.75rem; color: var(--gray-doc); }

/* ============================================================
   CTA / SCORE SECTION
   ============================================================ */
.section--cta { border-top: 2px solid var(--red-dark); }

.score-block {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.score-content { flex: 1; }
.score-content p {
  font-size: 0.88rem;
  color: var(--paper);
  margin-bottom: 20px;
  line-height: 1.7;
}
.score-checks { margin-bottom: 16px; }
.score-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #1e1a16;
}
.check-label {
  font-size: 0.82rem;
  color: var(--paper);
}
.check-box {
  width: 22px; height: 22px;
  border: 1px solid var(--gray-doc);
  display: inline-block;
  flex-shrink: 0;
}
.score-note {
  font-size: 0.72rem !important;
  color: var(--gray-doc) !important;
  font-style: italic;
}

.final-statement {
  max-width: 680px;
  border-left: 3px solid var(--red-dark);
  padding-left: 24px;
  font-size: 0.85rem;
}
.final-statement p { margin-bottom: 14px; color: var(--paper); }
.final-statement strong { color: var(--paper-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--red-dark);
  padding: 36px 24px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-logo { margin-right: auto; }
.footer-text p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gray-doc);
  line-height: 1.7;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-inner        { animation: fadeIn 0.9s ease both; }
.section-header    { animation: fadeIn 0.6s ease 0.1s both; }
.classified-banner { animation: fadeIn 0.5s ease both; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .crime-grid {
    grid-template-columns: 1fr;
  }
  .crime-sidebar { flex-direction: row; flex-wrap: wrap; }
  .crime-sidebar .paper-card { flex: 1; min-width: 260px; }

  .suspect-row {
    grid-template-columns: 1fr;
  }

  .fates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .score-block {
    flex-direction: column;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  :root { --section-pad: 56px 16px; }

  .site-header { position: sticky; }

  .header-inner { padding: 12px 16px; gap: 12px; }
  .header-nav { display: none; }
  .header-stamp { display: none; }

  .hero { min-height: auto; padding-top: 0; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 32px 16px;
    gap: 32px;
  }
  .hero-photo-side {
    border-right: none;
    border-bottom: 1px solid #2a221c;
    padding-right: 0;
    padding-bottom: 28px;
  }
  .hero-text-side { padding-left: 0; }

  .hero-title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero-title--name { font-size: clamp(3rem, 15vw, 5rem); }

  .classified-banner-inner {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .suspect-card { flex-direction: column; }

  /* Mantém as fotos dos suspeitos menores no tamanho fixo solicitado:
     Dr. Osvaldo Carneiro, Raimundo Cezar e Neuza Furtado. */
  .suspect-card:not(.suspect-card--minor) .suspect-photo-placeholder {
    width: 100%;
    height: 120px;
  }

  .suspect-card--minor .suspect-photo-placeholder,
  .suspect-photo-placeholder--sm {
    width: 160px;
    min-width: 130px;
    height: 200px;
  }

  .suspect-silhouette { display: none; }

  .fates-grid {
    grid-template-columns: 1fr;
  }

  .memorial-inner {
    flex-direction: column;
  }
  .memorial-photo-placeholder { width: 100%; min-width:  auto; }

  .clues-grid { grid-template-columns: 1fr; }

  .false-clue-banner { flex-direction: column; }

  .paper-card { padding: 20px 18px; }

  .score-block { flex-direction: column; }
  .score-block .stamp { align-self: flex-start; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}
/* ============================================================
   GATE — TELA DE ACESSO COM SENHA
   ============================================================ */

.gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--dark-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gate-overlay.gate-unlock {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.gate-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.055;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.gate-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}

.gate-overlay::before,
.gate-overlay::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--red-dark);
  opacity: 0.6;
}
.gate-overlay::before { top: 10%; }
.gate-overlay::after  { bottom: 10%; }

.gate-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 520px;
  padding: 24px;
  animation: fadeIn 0.7s ease both;
}

.gate-logo {
  font-family: var(--font-title);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 4px;
}
.gate-logo-dept {
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  color: var(--gray-doc);
}
.gate-logo-num {
  font-size: 4rem;
  color: var(--paper-light);
  letter-spacing: 0.05em;
  line-height: 1;
}

.gate-stamp-row {
  display: flex;
  justify-content: center;
}
.gate-stamp-row .stamp--large {
  font-size: 1.1rem;
  transform: rotate(-3deg);
}

.gate-card {
  width: 100%;
  background: #18120e;
  background-color: black;
  background-size: 200px 200px;
  border: 1px solid #2a221c;
  border-left: 4px solid var(--red-dark);
  padding: 36px 40px 32px;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.8), inset 0 0 60px rgba(0,0,0,0.4);
}

.gate-card-tape {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: rgba(0,0,0,0.5);
  border: 1px solid #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.gate-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--red-bright);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.gate-title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 8vw, 3.8rem);
  color: var(--paper-light);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gate-desc {
  font-size: 0.8rem;
  color: var(--gray-doc);
  line-height: 1.85;
  margin-bottom: 28px;
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gate-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.gate-input-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gray-doc);
  text-transform: uppercase;
}

.gate-input {
  background: #0d0a08;
  border: 1px solid #3a2e24;
  border-bottom: 2px solid var(--red-dark);
  color: var(--paper-light);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  caret-color: var(--red-bright);
}
.gate-input::placeholder {
  color: #3a2e24;
  letter-spacing: 0.4em;
}
.gate-input:focus {
  border-color: var(--red);
  border-bottom-color: var(--red-bright);
  box-shadow: 0 0 0 1px rgba(139,15,15,0.3);
}
.gate-input--error {
  animation: shake 0.4s ease;
  border-color: var(--red-bright) !important;
  box-shadow: 0 0 0 2px rgba(155,26,26,0.4) !important;
}

.gate-error {
  font-size: 0.72rem;
  color: var(--red-bright);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: none;
}
.gate-error--visible { display: block; }

.gate-btn {
  background: transparent;
  border: 2px solid var(--red-dark);
  color: var(--paper);
  font-family: var(--font-title);
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  width: 100%;
  transition: background .2s, border-color .2s, color .2s;
  position: relative;
  overflow: hidden;
}
.gate-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-dark);
  opacity: 0;
  transition: opacity .2s;
}
.gate-btn:hover::before { opacity: 1; }
.gate-btn:hover {
  border-color: var(--red);
  color: var(--paper-light);
}

.gate-footer {
  margin-top: 24px;
  font-size: 0.65rem;
  color: #3a3028;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-8px); }
  40%       { transform: translateX(8px); }
  60%       { transform: translateX(-5px); }
  80%       { transform: translateX(5px); }
}

@media (max-width: 640px) {
  .gate-card { padding: 28px 20px 24px; }
  .gate-logo-num { font-size: 3rem; }
}

/* ============================================================
   MOBILE FIX — AJUSTES FINAIS DE RESPONSIVIDADE
   ============================================================ */

/* Segurança geral contra estouro lateral */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Imagens reais dentro dos placeholders devem preencher sem deformar */
.hero-photo-placeholder img,
.suspect-photo-placeholder img,
.memorial-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tablet intermediário */
@media (max-width: 900px) {
  .section-inner,
  .hero-inner,
  .classified-banner-inner,
  .footer-inner {
    width: 100%;
    max-width: 100%;
  }

  .crime-sidebar {
    flex-direction: column;
  }

  .crime-sidebar .paper-card {
    width: 100%;
    min-width: 0;
  }

  .suspect-row,
  .fates-grid {
    grid-template-columns: 1fr;
  }

  .memorial-inner {
    flex-direction: column;
  }

  .memorial-photo-placeholder {
    width: min(300px, 100%);
    min-width: 0;
    height: auto;
    aspect-ratio: 300 / 380;
    margin-inline: auto;
    overflow: hidden;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --section-pad: 44px 14px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
    line-height: 1.65;
  }

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

  .grain-overlay {
    background-size: 130px 130px;
    opacity: 0.035;
  }

  /* Estrutura base */
  .section {
    padding: var(--section-pad);
    overflow: hidden;
  }

  .section-inner,
  .hero-inner,
  .classified-banner-inner,
  .footer-inner {
    width: 100%;
    max-width: 100%;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-title {
    font-size: clamp(2rem, 12vw, 3.2rem);
    line-height: 0.95;
    letter-spacing: 0.035em;
    overflow-wrap: anywhere;
  }

  .section-title--sm {
    font-size: clamp(1.45rem, 8vw, 2.1rem);
  }

  .section-intro {
    max-width: 100%;
    margin-top: 14px;
  }

  .typewriter-text {
    font-size: 0.82rem;
    line-height: 1.75;
  }

  /* Elementos que costumam estourar largura por causa de letter-spacing */
  .stamp,
  .case-tag,
  .tier-label,
  .verdict-badge,
  .fate-badge,
  .header-stamp {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .stamp--large {
    font-size: 1.05rem;
    padding: 8px 12px;
    border-width: 3px;
    letter-spacing: 0.08em;
  }

  .stamp--small {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .case-tag {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    padding: 4px 8px;
  }

  .tier-label {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    padding: 6px 10px;
  }

  /* Header */
  .site-header {
    position: sticky;
  }

  .header-inner {
    width: 100%;
    max-width: 100%;
    padding: 10px 14px;
    gap: 10px;
  }

  .header-logo {
    min-width: 0;
  }

  .logo-dept {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }

  .logo-num {
    font-size: 1.55rem;
  }

  .header-nav,
  .header-stamp {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 0;
    overflow: hidden;
  }

  .hero-tape {
    font-size: 0.55rem;
    letter-spacing: 0.16em;
    padding: 7px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 28px 14px;
    gap: 28px;
  }

  .hero-photo-side {
    width: 100%;
    align-items: center;
    padding-right: 0;
    padding-bottom: 24px;
    border-right: none;
    border-bottom: 1px solid #2a221c;
  }

  .hero-photo-frame {
    width: 100%;
    max-width: 340px;
    max-height: none;
    aspect-ratio: 3 / 4;
    margin-inline: auto;
  }

  .hero-photo-caption {
    width: 100%;
    max-width: 340px;
    font-size: 0.68rem;
  }

  .hero-text-side {
    width: 100%;
    padding-left: 0;
  }

  .hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: clamp(2.3rem, 15vw, 3.8rem);
    line-height: 0.92;
    letter-spacing: 0.015em;
    overflow-wrap: anywhere;
  }

  .hero-title--name {
    font-size: clamp(3rem, 18vw, 4.8rem);
    line-height: 0.88;
  }

  .hero-subtitle {
    font-size: 0.84rem;
    line-height: 1.75;
  }

  .hero-meta {
    gap: 6px;
  }

  /* Banner */
  .classified-banner {
    padding: 30px 14px;
  }

  .classified-banner-inner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .classified-banner-inner p {
    width: 100%;
    font-size: 0.82rem;
    line-height: 1.75;
  }

  /* Cards e blocos */
  .paper-card {
    width: 100%;
    max-width: 100%;
    padding: 20px 16px;
    overflow: hidden;
  }

  .card-tape {
    left: 20px;
    width: 52px;
    height: 18px;
  }

  .card-tape--right {
    right: 20px;
  }

  /* Crime */
  .crime-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .crime-sidebar {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .crime-sidebar .paper-card {
    width: 100%;
    min-width: 0;
    flex: none;
  }

  .crime-narrative p {
    font-size: 0.87rem;
    line-height: 1.75;
  }

  .document-note {
    padding: 10px 12px;
    font-size: 0.74rem;
  }

  .case-data-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .case-data-list li strong {
    text-align: left;
    font-size: 0.72rem;
  }

  .timeline-list li {
    gap: 9px;
    font-size: 0.72rem;
  }

  .tl-time {
    min-width: 42px;
  }

  /* Suspeitos */
  .suspect-tier {
    margin-bottom: 30px;
  }

  .suspect-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .suspect-card,
  .suspect-card--minor {
    width: 100%;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .suspect-photo-placeholder,
  .suspect-photo-placeholder--sm,
  .suspect-card:not(.suspect-card--minor) .suspect-photo-placeholder,
  .suspect-card--minor .suspect-photo-placeholder {
    width: min(160px, 100%);
    min-width: 0;
    height: 200px;
    margin-inline: auto;
    align-self: center;
    overflow: hidden;
  }

  .suspect-silhouette {
    display: none;
  }

  .suspect-info {
    width: 100%;
    min-width: 0;
  }

  .suspect-id {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }

  .suspect-name {
    font-size: clamp(1.55rem, 9vw, 2rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .suspect-name--sm {
    font-size: clamp(1.25rem, 7vw, 1.55rem);
  }

  .suspect-role,
  .suspect-info p {
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .suspect-evidence {
    font-size: 0.7rem;
  }

  /* Evidências */
  .clues-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }

  .evidence-card {
    padding: 18px 16px;
  }

  .evidence-tag {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }

  .evidence-title {
    font-size: 1.05rem;
    line-height: 1.05;
  }

  .evidence-desc,
  .evidence-connection {
    font-size: 0.74rem;
    line-height: 1.65;
  }

  .false-clue-banner {
    flex-direction: column;
    gap: 14px;
    padding: 18px 16px;
  }

  .false-clue-content h4 {
    font-size: 1rem;
  }

  .false-clue-content p {
    font-size: 0.78rem;
    line-height: 1.7;
  }

  /* Verdade / destinos */
  .truth-text p {
    font-size: 0.84rem;
    line-height: 1.8;
  }

  .fates-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .fate-card {
    padding: 18px 16px;
  }

  .fate-name {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .fate-role {
    font-size: 0.62rem;
  }

  .fate-card p {
    font-size: 0.78rem;
    line-height: 1.65;
  }

  /* Memorial */
  .helena-memorial {
    padding: 22px 16px;
  }

  .memorial-inner {
    flex-direction: column;
    gap: 20px;
  }

  .memorial-photo-placeholder {
    width: min(300px, 100%);
    min-width: 0;
    height: auto;
    aspect-ratio: 300 / 380;
    margin-inline: auto;
    overflow: hidden;
  }

  .memorial-text {
    width: 100%;
  }

  .memorial-text p {
    font-size: 0.82rem;
    line-height: 1.7;
  }

  /* Score / CTA */
  .score-block {
    flex-direction: column;
    gap: 22px;
    margin-bottom: 32px;
  }

  .score-content,
  .score-checks,
  .final-statement {
    width: 100%;
    max-width: 100%;
  }

  .score-content p {
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .score-item {
    align-items: flex-start;
    gap: 12px;
  }

  .check-label {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .check-box {
    width: 20px;
    height: 20px;
  }

  .final-statement {
    padding-left: 14px;
    font-size: 0.8rem;
  }

  /* Footer */
  .site-footer {
    padding: 28px 14px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-logo {
    margin-right: 0;
  }

  .footer-text p {
    font-size: 0.68rem;
  }

  /* Tela de senha */
  .gate-overlay {
    align-items: flex-start;
    overflow-y: auto;
    padding: 18px 14px;
  }

  .gate-inner {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 12px 0 22px;
    gap: 18px;
  }

  .gate-logo-dept {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
  }

  .gate-logo-num {
    font-size: 3rem;
  }

  .gate-stamp-row {
    width: 100%;
  }

  .gate-card {
    width: 100%;
    max-width: 100%;
    padding: 26px 18px 22px;
  }

  .gate-card-tape {
    width: 64px;
    height: 18px;
  }

  .gate-eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }

  .gate-title {
    font-size: clamp(2.05rem, 12vw, 3rem);
    line-height: 0.95;
    overflow-wrap: anywhere;
  }

  .gate-desc {
    font-size: 0.76rem;
    line-height: 1.65;
    margin-bottom: 22px;
  }

  .gate-input-label {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }

  .gate-input {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    padding: 12px 13px;
  }

  .gate-input::placeholder {
    letter-spacing: 0.18em;
  }

  .gate-btn {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    padding: 13px 16px;
  }

  .gate-footer {
    font-size: 0.6rem;
  }
}

/* Celulares muito estreitos */
@media (max-width: 380px) {
  .section-title {
    font-size: clamp(1.85rem, 12vw, 2.8rem);
  }

  .hero-title {
    font-size: clamp(2.05rem, 15vw, 3.2rem);
  }

  .hero-title--name {
    font-size: clamp(2.6rem, 18vw, 4rem);
  }

  .paper-card,
  .gate-card {
    padding-inline: 14px;
  }

  .suspect-photo-placeholder,
  .suspect-photo-placeholder--sm,
  .suspect-card:not(.suspect-card--minor) .suspect-photo-placeholder,
  .suspect-card--minor .suspect-photo-placeholder {
    width: 150px;
    height: 188px;
  }

  .stamp--large {
    font-size: 0.92rem;
  }
}


/* ============================================================
   CORREÇÃO FINAL — TODAS AS FOTOS DOS SUSPEITOS NO MESMO TAMANHO
   Referência: foto de Fábio Ventura dos Santos.
   Importante: remova do HTML os blocos <style> antigos de fotos,
   ou mantenha esta regra como a última regra carregada na página.
   ============================================================ */

.suspect-card .suspect-photo-placeholder,
.suspect-card .suspect-photo-placeholder--sm,
.suspect-card--primary .suspect-photo-placeholder,
.suspect-card--minor .suspect-photo-placeholder,
.suspect-card--minor .suspect-photo-placeholder--sm,
.suspect-card--cleared .suspect-photo-placeholder,
.suspect-card--cleared .suspect-photo-placeholder--sm {
  position: relative !important;
  display: block !important;
  width: 170px !important;
  min-width: 170px !important;
  max-width: 170px !important;
  height: 220px !important;
  min-height: 220px !important;
  max-height: 220px !important;
  aspect-ratio: 17 / 22 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #0f0d0b !important;
  border: 1px solid #2a221c !important;
  flex-shrink: 0 !important;
}

.suspect-card:not(.suspect-card--minor) .suspect-photo-placeholder,
.suspect-card:not(.suspect-card--minor) .suspect-photo-placeholder--sm {
  flex: 0 0 170px !important;
  margin: 0 !important;
  align-self: flex-start !important;
}

.suspect-card--minor .suspect-photo-placeholder,
.suspect-card--minor .suspect-photo-placeholder--sm {
  flex: none !important;
  margin: 0 auto 18px !important;
  align-self: center !important;
}

.suspect-card .suspect-photo-placeholder > img,
.suspect-card .suspect-photo-placeholder--sm > img,
.suspect-card--primary .suspect-photo-placeholder > img,
.suspect-card--minor .suspect-photo-placeholder > img,
.suspect-card--minor .suspect-photo-placeholder--sm > img,
.suspect-card--cleared .suspect-photo-placeholder > img,
.suspect-card--cleared .suspect-photo-placeholder--sm > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center top !important;
  transform: none !important;
  background: transparent !important;
}

@media (max-width: 900px) {
  .suspect-card .suspect-photo-placeholder,
  .suspect-card .suspect-photo-placeholder--sm,
  .suspect-card--primary .suspect-photo-placeholder,
  .suspect-card--minor .suspect-photo-placeholder,
  .suspect-card--minor .suspect-photo-placeholder--sm,
  .suspect-card--cleared .suspect-photo-placeholder,
  .suspect-card--cleared .suspect-photo-placeholder--sm {
    width: 170px !important;
    min-width: 170px !important;
    max-width: 170px !important;
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
    flex: none !important;
    margin: 0 auto 18px !important;
    align-self: center !important;
  }
}

@media (max-width: 380px) {
  .suspect-card .suspect-photo-placeholder,
  .suspect-card .suspect-photo-placeholder--sm,
  .suspect-card--primary .suspect-photo-placeholder,
  .suspect-card--minor .suspect-photo-placeholder,
  .suspect-card--minor .suspect-photo-placeholder--sm,
  .suspect-card--cleared .suspect-photo-placeholder,
  .suspect-card--cleared .suspect-photo-placeholder--sm {
    width: 160px !important;
    min-width: 160px !important;
    max-width: 160px !important;
    height: 207px !important;
    min-height: 207px !important;
    max-height: 207px !important;
  }
}
