/* ============================================================
   SYSON — styles.css
   ============================================================ */

:root {
  --red:    #C41E3A;
  --black:  #0D0D0D;
  --white:  #FFFFFF;
  --cream:  #F4F1ED;
  --gray:   #888888;
  --border: #E0DDD8;
  --dark-border: rgba(255,255,255,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; animation: pageIn 0.22s ease-out; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center;
  padding: 0 2.5rem;
  height: 62px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  gap: 1.2rem;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem;
  letter-spacing: 0.08em; color: var(--black); flex-shrink: 0;
}
.nav-logo-wrap {
  width: 28px; height: 28px; background: var(--red);
  border-radius: 5px; display: flex; align-items: center;
  justify-content: center; padding: 4px;
}
.nav-logo-wrap img { width: 100%; filter: brightness(0) invert(1); }
.nav-links {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray);
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--red);
  transform: scaleX(0); transition: transform 0.2s; transform-origin: left;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-active { color: var(--black) !important; }
.nav-active::after { transform: scaleX(1) !important; }
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 0.42rem 1rem; border-radius: 4px; font-weight: 600 !important;
  flex-shrink: 0; letter-spacing: 0.06em;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.85; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); transition: 0.2s; }
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 62px; left: 0; right: 0; z-index: 99;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0.5rem 2rem 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 0.9rem 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; color: var(--gray); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-red {
  display: inline-block; background: var(--red); color: var(--white);
  padding: 0.85rem 1.9rem; border-radius: 4px; font-weight: 600;
  font-size: 0.9rem; transition: opacity 0.2s, transform 0.2s; letter-spacing: 0.03em;
}
.btn-red:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--black);
  padding: 0.85rem 1.9rem; border-radius: 4px; font-weight: 500;
  font-size: 0.9rem; border: 1.5px solid var(--border); transition: border-color 0.2s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--black); transform: translateY(-1px); }

/* ============================================================
   COMMON COMPONENTS
   ============================================================ */
.section-line { width: 36px; height: 3px; background: var(--red); flex-shrink: 0; }
.section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red);
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.8rem;
}

/* ============================================================
   HERO (index)
   ============================================================ */
.hero {
  display: grid; grid-template-columns: 42% 58%;
  min-height: 100vh; padding-top: 65px;
}
.hero-red {
  background: var(--red);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 4rem 3rem; position: relative; overflow: hidden;
}
.hero-red::after {
  content: 'SYSON';
  position: absolute; bottom: -2rem; left: -1rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 18rem;
  color: rgba(255,255,255,0.04); pointer-events: none; line-height: 1;
}
.hero-logo-block {
  width: 150px; height: 150px; background: rgba(255,255,255,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.2); margin-bottom: 2rem;
}
.hero-logo { width: 85px; height: 85px; object-fit: contain; filter: brightness(10); }
.hero-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); text-align: center;
}
.hero-white {
  background: var(--white); display: flex;
  align-items: center; padding: 4rem 5rem 4rem 4rem;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 8vw, 8rem);
  line-height: 0.95; color: var(--black);
  margin-bottom: 1.8rem; letter-spacing: 0.02em;
}
.hero-title em { font-style: normal; color: var(--red); }
.hero-body { font-size: 1rem; color: var(--gray); line-height: 1.8; max-width: 380px; margin-bottom: 2.2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  display: grid; grid-template-columns: 28% 72%;
  min-height: 42vh; padding-top: 65px;
}
.ph-red {
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.ph-logo {
  width: 90px; height: 90px; background: rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; padding: 20px; border: 2px solid rgba(255,255,255,0.2);
}
.ph-logo img { filter: brightness(10); width: 100%; }
.ph-white {
  background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 5rem;
  border-left: 4px solid var(--red);
}
.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95; color: var(--black);
  margin-bottom: 1rem; letter-spacing: 0.02em;
}
.page-sub { font-size: 1rem; color: var(--gray); line-height: 1.7; max-width: 520px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  background: var(--black); overflow: hidden;
  padding: 0.9rem 0; border-top: 3px solid var(--red);
}
.marquee-track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marquee 22s linear infinite;
  font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.45);
}
.marquee-track .dot { color: var(--red); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   STATS (index)
   ============================================================ */
.stats-section {
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 4rem 3rem;
  border-bottom: 1px solid var(--border);
}
.stat-block { text-align: center; padding: 0 4rem; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 5vw, 5rem);
  color: var(--red); line-height: 1; letter-spacing: 0.02em;
}
.stat-desc { font-size: 0.82rem; color: var(--gray); margin-top: 0.4rem; max-width: 160px; margin-left: auto; margin-right: auto; }
.stat-sep { width: 1px; height: 70px; background: var(--border); }

/* ============================================================
   HOME SECTIONS
   ============================================================ */
.home-section { padding: 5rem 3rem; }
.home-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2.5rem;
}
.hs-left { display: flex; align-items: center; gap: 1rem; }
.link-arrow { font-size: 0.85rem; font-weight: 600; color: var(--red); transition: gap 0.2s; letter-spacing: 0.02em; }
.link-arrow:hover { opacity: 0.7; }

/* ============================================================
   GOLPES (grid)
   ============================================================ */
.golpes-list {
  display: grid; gap: 0;
  border: 1px solid var(--border);
}
.three-col { grid-template-columns: repeat(3, 1fr); }
.full-grid { grid-template-columns: repeat(3, 1fr); }

.golpes-page { padding: 4rem 3rem 5rem; background: var(--cream); }

.golpe {
  padding: 2.2rem 2rem; border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white); transition: background 0.25s; cursor: default;
}
.golpe:nth-child(3n) { border-right: none; }
.golpe.hidden { display: none; }

/* dark hover */
.golpe:hover { background: var(--black); }
.golpe:hover h2,
.golpe:hover .golpe-num-big { color: var(--white); }
.golpe:hover p { color: rgba(255,255,255,0.5); }
.golpe:hover .golpe-num-big { color: rgba(255,255,255,0.05); }
.golpe:hover .golpe-tags span { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.4); }
.golpe:hover .golpe-detail strong { color: rgba(255,255,255,0.9); }
.golpe:hover .golpe-detail p { color: rgba(255,255,255,0.4); }

.golpe-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.golpe-risk { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.28rem 0.55rem; border-radius: 3px; }
.golpe-risk.high { color: var(--red); background: rgba(196,30,58,0.1); }
.golpe-risk.med  { color: #B5620A; background: rgba(181,98,10,0.1); }
.golpe-num-big { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: rgba(0,0,0,0.05); line-height: 1; transition: color 0.25s; }
.golpe h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.02em; color: var(--black); margin-bottom: 0.6rem; transition: color 0.25s; }
.golpe > p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 1rem; transition: color 0.25s; }
.golpe-detail { margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.golpe-detail strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--black); transition: color 0.25s; }
.golpe-detail p { font-size: 0.84rem; color: var(--gray); line-height: 1.7; margin: 0; transition: color 0.25s; }
.golpe-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.golpe-tags span { font-size: 0.68rem; padding: 0.22rem 0.6rem; border: 1px solid var(--border); border-radius: 3px; color: var(--gray); transition: all 0.25s; }

/* ============================================================
   FILTER BAR (golpes page)
   ============================================================ */
.filter-bar {
  background: var(--white); padding: 1.2rem 3rem;
  display: flex; align-items: center; gap: 1rem;
  border-bottom: 1px solid var(--border);
}
.filter-label { font-size: 0.78rem; color: var(--gray); font-weight: 500; }
.filter-btn {
  background: none; border: 1.5px solid var(--border);
  padding: 0.4rem 1rem; border-radius: 3px; font-size: 0.78rem;
  font-weight: 600; cursor: pointer; color: var(--gray); transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--black); padding: 4rem 3rem; }
.cta-band-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  max-width: 1100px; margin: 0 auto;
}
.cta-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.6rem;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white); line-height: 1.1; letter-spacing: 0.02em;
}

/* ============================================================
   DENUNCIA CARD (index)
   ============================================================ */
.denuncia-home { background: var(--cream); border-top: 1px solid var(--border); }
.dh-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.dh-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 4vw, 4rem); line-height: 1; margin-bottom: 1rem; letter-spacing: 0.02em; }
.dh-text p { font-size: 0.95rem; color: var(--gray); line-height: 1.7; }
.dh-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.dh-card-top {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1rem 1.3rem; background: var(--red);
  font-size: 0.85rem; font-weight: 600; color: var(--white);
}
.dh-logo-sm { width: 24px; height: 24px; background: rgba(255,255,255,0.15); border-radius: 50%; padding: 4px; }
.dh-logo-sm img { filter: brightness(10); width: 100%; }
.dh-check { margin-left: auto; font-size: 1rem; }
.dh-stat { padding: 1.2rem 1.3rem; border-bottom: 1px solid var(--border); }
.dh-big { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--black); display: block; }
.dh-sub { font-size: 0.78rem; color: var(--gray); }
.dh-bar-row { display: flex; align-items: center; gap: 0.8rem; padding: 0.6rem 1.3rem; font-size: 0.78rem; color: var(--gray); border-bottom: 1px solid var(--border); }
.dh-bar-row:last-child { border-bottom: none; }
.dh-bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.dh-fill { height: 100%; background: var(--red); border-radius: 2px; }
.dh-bar-row > span:first-child { min-width: 90px; }
.dh-bar-row > span:last-child { min-width: 32px; text-align: right; }

/* ============================================================
   REGRAS (proteger page)
   ============================================================ */
.regras-page { padding: 5rem 3rem; background: var(--white); }
.regras-page-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 3rem; max-width: 960px; margin-left: auto; margin-right: auto; }
.regras-full { display: flex; flex-direction: column; border-top: 1px solid var(--border); max-width: 960px; margin: 0 auto; width: 100%; }
.regra-full { display: flex; gap: 3rem; padding: 3rem 0; border-bottom: 1px solid var(--border); }
.rf-left { display: flex; flex-direction: column; align-items: center; gap: 0; min-width: 64px; flex-shrink: 0; }
.rf-body { flex: 1; min-width: 0; }
.rf-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--red); letter-spacing: 0.05em; }
.rf-line { flex: 1; width: 1px; background: var(--border); margin-top: 0.5rem; }
.rf-body h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.02em; margin-bottom: 1rem; color: var(--black); }
.rf-body > p { font-size: 0.92rem; color: var(--gray); line-height: 1.8; margin-bottom: 0.8rem; }
.rf-example { background: var(--cream); border-left: 3px solid var(--red); padding: 0.9rem 1.2rem; margin-top: 1.2rem; border-radius: 0 4px 4px 0; }
.rf-example strong { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 0.3rem; color: var(--black); }
.rf-example p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin: 0; }
.rf-steps { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.2rem; }
.rf-step { background: var(--cream); padding: 0.8rem 1.1rem; border-radius: 4px; }
.rf-step span { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 0.25rem; color: var(--red); }
.rf-step p { font-size: 0.84rem; color: var(--gray); margin: 0; }

/* ============================================================
   CHECKLIST (proteger page)
   ============================================================ */
.checklist-section { padding: 5rem 3rem; background: var(--cream); border-top: 1px solid var(--border); }
.cl-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem; }
.cl-sub { font-size: 0.9rem; color: var(--gray); margin-bottom: 2.5rem; }
.cl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2.5rem; }
.cl-group h3 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--black); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--red); }
.cl-item {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.6rem 0; border-bottom: 1px solid var(--border);
  cursor: pointer; font-size: 0.85rem; color: var(--gray); line-height: 1.4;
}
.cl-check-input { accent-color: var(--red); width: 15px; height: 15px; margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.cl-item:has(:checked) { color: var(--black); }
.cl-score-display { display: flex; align-items: center; gap: 1.5rem; }
.cl-progress-bar { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; max-width: 400px; }
.cl-progress-fill { height: 100%; background: var(--red); border-radius: 3px; width: 0%; transition: width 0.4s ease; }
.cl-score-text { font-size: 0.82rem; font-weight: 600; color: var(--gray); }

/* ============================================================
   RECURSOS (proteger page)
   ============================================================ */
.recursos-section { padding: 5rem 3rem; background: var(--white); }
.recursos-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.recursos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.recurso-card {
  display: block; padding: 2rem 1.5rem; background: var(--cream);
  border: 1px solid var(--border); border-radius: 6px;
  transition: all 0.25s; cursor: pointer;
}
.recurso-card:hover { border-color: var(--red); background: var(--white); transform: translateY(-2px); }
.recurso-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.recurso-card h3 { font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: 0.5rem; }
.recurso-card p { font-size: 0.84rem; color: var(--gray); line-height: 1.6; margin-bottom: 1rem; }
.recurso-link { font-size: 0.82rem; font-weight: 600; color: var(--red); }

/* ============================================================
   ALERTA CNCS (index)
   ============================================================ */
.alerta-cncs { background: #FFF8E1; border-top: 3px solid #F59E0B; border-bottom: 1px solid #F0D060; padding: 1.4rem 3rem; }
.ac-inner { display: flex; align-items: center; gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.ac-icon { font-size: 1.4rem; flex-shrink: 0; }
.ac-text { flex: 1; font-size: 0.88rem; color: #5C4A00; line-height: 1.6; }
.ac-text strong { color: #3D3000; }
.ac-link { font-size: 0.82rem; font-weight: 600; color: #B45309; white-space: nowrap; flex-shrink: 0; transition: opacity .2s; }
.ac-link:hover { opacity: 0.7; }

/* ============================================================
   ENTIDADES card (index denuncia home)
   ============================================================ */
.dh-entidades { padding: 0.5rem 0; }
.dh-entidade { display: flex; align-items: flex-start; gap: 0.8rem; padding: 0.8rem 1.3rem; border-bottom: 1px solid var(--border); }
.dh-entidade:last-child { border-bottom: none; }
.dh-ent-icon { font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.dh-entidade strong { font-size: 0.88rem; font-weight: 600; display: block; margin-bottom: 0.15rem; color: var(--black); }
.dh-entidade p { font-size: 0.78rem; color: var(--gray); margin: 0; }

/* ============================================================
   URGÊNCIA BANNER (denunciar)
   ============================================================ */
.urgencia-banner {
  background: #FEF2F2; border-top: 3px solid var(--red); border-bottom: 1px solid #FECACA;
  padding: 1.2rem 3rem; display: flex; align-items: center; gap: 1.2rem;
}
.urg-icon { font-size: 1.3rem; flex-shrink: 0; }
.urgencia-banner div { flex: 1; font-size: 0.88rem; color: #7F1D1D; line-height: 1.5; }
.urgencia-banner strong { color: #991B1B; }
.urg-link { font-size: 0.82rem; font-weight: 600; color: var(--red); white-space: nowrap; flex-shrink: 0; }

/* ============================================================
   EMERGÊNCIA (4 cols)
   ============================================================ */
.emergencia-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================================
   CONTEXTO (sobre)
   ============================================================ */
.contexto-section { padding: 5rem 3rem; background: var(--black); }
.ctx-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 1100px; margin: 0 auto; align-items: start; }
.ctx-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 4vw, 4rem); color: var(--white); line-height: 1; margin: 1rem 0 1.2rem; letter-spacing: 0.02em; }
.ctx-text h2 span { color: var(--red); }
.ctx-text p { font-size: 0.9rem; color: rgba(255,255,255,0.4); line-height: 1.8; }
.ctx-cards { display: flex; flex-direction: column; gap: 1rem; }
.ctx-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 1.3rem 1.5rem; transition: border-color .2s; }
.ctx-card:hover { border-color: rgba(196,30,58,0.4); }
.ctx-card-icon { font-size: 1.3rem; margin-bottom: 0.5rem; }
.ctx-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.ctx-card p { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 0.6rem; }
.ctx-card a { font-size: 0.8rem; font-weight: 600; color: var(--red); }

/* ============================================================
   DENUNCIAR PAGE
   ============================================================ */

.denunciar-page { padding: 5rem 3rem; background: var(--white); }
.dp-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; max-width: 1100px; margin: 0 auto; align-items: start; }
.dp-info h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; line-height: 1; margin-bottom: 2rem; letter-spacing: 0.02em; }
.dp-steps { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); margin-bottom: 2rem; }
.dp-step { display: flex; gap: 1.2rem; padding: 1.3rem 0; border-bottom: 1px solid var(--border); }
.dp-step-n {
  width: 28px; height: 28px; background: var(--red); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; flex-shrink: 0;
}
.dp-step-body strong { font-size: 0.9rem; font-weight: 600; display: block; margin-bottom: 0.25rem; color: var(--black); }
.dp-step-body p { font-size: 0.84rem; color: var(--gray); line-height: 1.6; margin: 0; }
.dp-aviso { background: #FFF8E1; border-left: 3px solid #F59E0B; padding: 1rem 1.2rem; border-radius: 0 4px 4px 0; }
.dp-aviso strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 0.3rem; }
.dp-aviso p { font-size: 0.83rem; color: #6B5B00; margin: 0; line-height: 1.6; }

.form-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.02em; margin-bottom: 1.5rem; }
.form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); }
.field input, .field textarea, .field select {
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 4px; padding: 0.8rem 0.9rem; font-size: 0.9rem;
  color: var(--black); transition: border-color 0.2s; resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); }
.field input::placeholder, .field textarea::placeholder { color: #AAAAAA; }
.field select option { background: var(--white); }
.checkbox-field {}
.checkbox-label { display: flex; align-items: flex-start; gap: 0.7rem; cursor: pointer; }
.checkbox-label input { accent-color: var(--red); margin-top: 3px; flex-shrink: 0; }
.checkbox-label span { font-size: 0.83rem; color: var(--gray); line-height: 1.5; text-transform: none; letter-spacing: 0; font-weight: 400; }
.submit-btn {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--red); color: var(--white); border: none;
  padding: 1rem 1.3rem; border-radius: 4px; font-size: 0.95rem;
  font-weight: 600; cursor: pointer; transition: opacity 0.2s, transform 0.2s;
}
.submit-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.arrow { font-size: 1.1rem; transition: transform 0.2s; }
.submit-btn:hover .arrow { transform: translateX(4px); }

/* EMERGÊNCIA */
.emergencia-section { padding: 4rem 3rem; background: var(--cream); border-top: 1px solid var(--border); }
.emergencia-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem; }
.emergencia-sub { font-size: 0.9rem; color: var(--gray); margin-bottom: 2rem; }
.emergencia-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.emergencia-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 2rem 1.5rem; }
.em-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.emergencia-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.emergencia-card p { font-size: 0.84rem; color: var(--gray); line-height: 1.6; margin-bottom: 1.2rem; }
.em-btn {
  display: inline-block; background: var(--black); color: var(--white);
  padding: 0.5rem 1.1rem; border-radius: 4px; font-size: 0.8rem;
  font-weight: 600; transition: background 0.2s;
}
.em-btn:hover { background: var(--red); }

/* ============================================================
   SOBRE PAGE
   ============================================================ */
.manifesto-section { padding: 6rem 3rem; background: var(--white); }
.manifesto-inner { display: grid; grid-template-columns: 220px 1fr; gap: 6rem; max-width: 1050px; margin: 0 auto; align-items: start; }
.manifesto-left { display: flex; flex-direction: column; gap: 1.5rem; }
.manifesto-logo { width: 70px; height: 70px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 16px; }
.manifesto-logo img { filter: brightness(10); width: 100%; }
.manifesto-right h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 3.5vw, 3.5rem); line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: 0.02em; }
.manifesto-right h2 span { color: var(--red); }
.manifesto-right p { font-size: 0.95rem; color: var(--gray); line-height: 1.85; margin-bottom: 1.2rem; }

.pilares-section { padding: 5rem 3rem; background: var(--cream); }
.pilares-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.pilares-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.pilar-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 2rem 1.5rem; transition: all 0.25s; }
.pilar-card:hover { border-color: var(--red); transform: translateY(-2px); }
.pilar-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.pilar-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.pilar-card p { font-size: 0.84rem; color: var(--gray); line-height: 1.7; }

.numeros-section { padding: 5rem 3rem; background: var(--black); }
.numeros-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1050px; margin: 0 auto; }
.numeros-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 4vw, 4rem); color: var(--white); line-height: 1; margin: 1rem 0; letter-spacing: 0.02em; }
.numeros-text h2 span { color: var(--red); }
.numeros-text p { font-size: 0.9rem; color: rgba(255,255,255,0.4); line-height: 1.7; }
.numeros-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid rgba(255,255,255,0.08); }
.numero-item { padding: 2rem; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.numero-item:nth-child(2n) { border-right: none; }
.numero-item:nth-child(3), .numero-item:nth-child(4) { border-bottom: none; }
.numero-big { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--red); line-height: 1; margin-bottom: 0.3rem; }
.numero-desc { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); padding: 3.5rem 3rem 2rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.08em; color: var(--white); margin-bottom: 0.8rem; }
.footer-brand img { width: 26px; height: 26px; object-fit: contain; filter: brightness(0) invert(1); background: var(--red); border-radius: 4px; padding: 4px; }
.footer-left p { font-size: 0.84rem; color: rgba(255,255,255,0.3); max-width: 260px; line-height: 1.7; }
.footer-nav-group { display: flex; gap: 4rem; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.3); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.84rem; color: rgba(255,255,255,0.5); margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.2); }

/* ============================================================
   COUNTRY TOGGLE
   ============================================================ */
.nav-discord {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: transparent; border: 1.5px solid var(--border);
  border-radius: 6px; flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.nav-discord:hover { border-color: #5865F2; background: rgba(88,101,242,0.06); }
.nav-discord svg { width: 15px; height: 15px; fill: var(--gray); transition: fill 0.2s; }
.nav-discord:hover svg { fill: #5865F2; }

.country-toggle {
  display: flex; align-items: center;
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 6px; overflow: hidden; flex-shrink: 0;
}
.ct {
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.7rem; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; color: var(--gray);
  transition: background 0.18s, color 0.18s; white-space: nowrap;
  border-right: 1.5px solid var(--border);
}
.ct:last-child { border-right: none; }
.ct:hover { background: var(--border); color: var(--black); }
.ct.active { background: var(--red); color: var(--white); }
.ct .flag { font-size: 1rem; line-height: 1; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-red { padding: 5rem 2rem 3rem; min-height: 40vh; }
  .hero-white { padding: 3rem 2rem 4rem; }
  .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .ph-red { min-height: 25vh; }
  .ph-white { padding: 3rem 2rem; border-left: none; border-top: 4px solid var(--red); }
  .pilares-grid { grid-template-columns: 1fr 1fr; }
  .recursos-grid { grid-template-columns: 1fr 1fr; }
  .dp-inner { grid-template-columns: 1fr; gap: 3rem; }
  .dh-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .numeros-inner { grid-template-columns: 1fr; gap: 3rem; }
  .stats-section { flex-direction: column; gap: 2rem; }
  .stat-sep { width: 60px; height: 1px; }
  .nav { padding: 1rem 1.5rem; }
  .home-section, .golpes-page { padding: 4rem 1.5rem; }
  .cta-band { padding: 3rem 1.5rem; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-discord { display: none; }
  .hamburger { display: flex; }
  .full-grid, .three-col { grid-template-columns: 1fr 1fr; }
  .golpe:nth-child(3n) { border-right: 1px solid var(--border); }
  .golpe:nth-child(2n) { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 2.5rem; }
  .footer-nav-group { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; }
  .emergencia-grid { grid-template-columns: 1fr 1fr; }
  .ctx-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cl-grid { grid-template-columns: 1fr; }
  .impacto-grid { flex-direction: column; }
  .impacto-item { border-right: none; border-bottom: 1px solid var(--border); }
  .impacto-item:last-child { border-bottom: none; }
  .filter-bar { padding: 1rem 1.5rem; flex-wrap: wrap; }
  .regras-page, .checklist-section, .recursos-section, .denunciar-page, .impacto-section, .emergencia-section, .manifesto-section, .pilares-section, .numeros-section, .contexto-section { padding: 3.5rem 1.5rem; }
  .urgencia-banner, .alerta-cncs { padding: 1rem 1.5rem; flex-wrap: wrap; }
}

@media (max-width: 540px) {
  .full-grid, .three-col { grid-template-columns: 1fr; }
  .golpe { border-right: none !important; }
  .pilares-grid { grid-template-columns: 1fr; }
  .recursos-grid { grid-template-columns: 1fr 1fr; }
  .numeros-grid { grid-template-columns: 1fr; }
  .numero-item { border-right: none !important; }
}
