/* ==========================================================================
   CHAPA 01 - RENOVAR PARA FORTALECER | SISMA-MT
   Stylesheet Principal - Design Moderno, Responsivo e Acessível
   ========================================================================== */

:root {
  /* Cores Principais */
  --color-primary: #0b2545;       /* Azul Escuro Institucional */
  --color-primary-light: #133b6d; /* Azul Real */
  --color-secondary: #0098b8;     /* Turquesa / Ciano Ativo */
  --color-secondary-light: #00bcd4;
  --color-accent: #f59e0b;        /* Âmbar / Ouro de Destaque */
  --color-accent-hover: #d97706;
  --color-success: #10b981;
  --color-danger: #ef4444;

  /* Neutros & Fundos */
  --bg-dark: #07172b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-card-alt: #f1f5f9;
  --border-color: #e2e8f0;
  --border-light: rgba(255, 255, 255, 0.15);

  /* Textos */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-white: #ffffff;

  /* Sombras & Efeitos */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 25px rgba(0, 188, 212, 0.4);
  --shadow-gold: 0 0 25px rgba(245, 158, 11, 0.4);

  /* Transições & Raios */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', var(--font-family);
}

/* Reset Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 37, 69, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(7, 23, 43, 0.98);
  box-shadow: var(--shadow-lg);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.logo-wrapper:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #38bdf8;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: var(--color-secondary);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 80%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0b2545;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
  color: #0b2545;
}

.btn-secondary {
  background: linear-gradient(135deg, #00a8cc 0%, #007799 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 168, 204, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #00c2cb 0%, #008fa8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 204, 0.5);
  color: #ffffff;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #22bf5b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 105px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, #174276 0%, #0b2545 45%, #051324 100%);
  color: var(--text-white);
  overflow: hidden;
}

.hero-bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.badge-election {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  width: fit-content;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.badge-pulse {
  width: 10px;
  height: 10px;
  background-color: #fbbf24;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-title .chapa-num {
  color: #38bdf8;
  text-shadow: 0 0 30px rgba(56, 189, 248, 0.5);
}

.hero-title .chapa-name {
  display: block;
  font-size: 2.3rem;
  color: #ffffff;
  font-weight: 700;
  margin-top: 0.35rem;
}

.hero-slogan {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fde68a;
  border-left: 4px solid var(--color-accent);
  padding-left: 1rem;
  margin: 0.25rem 0;
}

.hero-description {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 580px;
  line-height: 1.7;
}

.hero-victory-box {
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-victory-box .icon {
  font-size: 1.8rem;
  color: #38bdf8;
  flex-shrink: 0;
}

.hero-victory-box p {
  font-size: 0.95rem;
  color: #e0f2fe;
  line-height: 1.45;
}

.hero-victory-box strong {
  color: #ffffff;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-card-featured {
  background: linear-gradient(145deg, rgba(19, 59, 109, 0.7) 0%, rgba(7, 23, 43, 0.85) 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow);
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 440px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-card-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-logo-container {
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 380px;
}

.hero-logo-center {
  width: 100%;
  max-width: 330px;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-date-highlight {
  background: linear-gradient(90deg, #f59e0b, #d97706);
  color: #0b2545;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
}

.stat-item .stat-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #38bdf8;
  display: block;
}

.stat-item .stat-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   SEÇÕES GERAIS
   ========================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-dark {
  background: #0b2545;
  color: var(--text-white);
}

.section-alt {
  background: #f1f5f9;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  color: var(--color-secondary);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.section-dark .section-tag {
  color: #38bdf8;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-dark .section-title {
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.section-dark .section-subtitle {
  color: #cbd5e1;
}

/* ==========================================================================
   BANDEIRAS / DESTAQUES DE IMPACTO
   ========================================================================== */
.bandeiras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.bandeira-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bandeira-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--color-secondary);
  transition: var(--transition);
}

.bandeira-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: #cbd5e1;
}

.bandeira-card:hover::before {
  width: 8px;
  background: var(--color-accent);
}

.bandeira-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 152, 184, 0.1);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  font-weight: bold;
}

.bandeira-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.bandeira-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.bandeira-tag {
  align-self: flex-start;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  background: #f1f5f9;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary-light);
}

/* ==========================================================================
   MANIFESTO / MISSÃO & VISÃO
   ========================================================================== */
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.manifesto-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(10px);
}

.manifesto-box h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fbbf24;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.manifesto-box p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.7;
}

/* ==========================================================================
   CENTRAL DE PROPOSTAS INTERATIVA
   ========================================================================== */
.propostas-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.propostas-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.search-box {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3.25rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-color);
  font-size: 1rem;
  outline: none;
  background-color: #f8fafc;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--color-secondary);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 152, 184, 0.15);
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--text-muted);
}

.search-clear {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  display: none;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-btn {
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: #f1f5f9;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-btn:hover {
  background: #e2e8f0;
  color: var(--color-primary);
}

.filter-btn.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 10px rgba(11, 37, 69, 0.25);
}

.propostas-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.propostas-counter strong {
  color: var(--color-primary);
}

.btn-print {
  background: none;
  border: none;
  color: var(--color-secondary);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.btn-print:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.propostas-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.eixo-group {
  margin-bottom: 2rem;
}

.eixo-header {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
}

.eixo-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eixo-badge-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.proposta-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
}

.proposta-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
}

.proposta-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.proposta-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
}

.proposta-card-num {
  display: inline-block;
  background: rgba(0, 152, 184, 0.12);
  color: var(--color-secondary);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-right: 8px;
}

.proposta-card-body {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.proposta-card-body ul {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
}

.proposta-card-body li {
  margin-bottom: 0.4rem;
}

.proposta-card-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.btn-share-zap {
  background: rgba(37, 211, 102, 0.1);
  color: #15803d;
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-share-zap:hover {
  background: #25d366;
  color: #ffffff;
}

.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}

/* ==========================================================================
   DIRETORIA EXECUTIVA (FOTOS IMPONENTES)
   ========================================================================== */
.diretoria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.diretor-card-highlight {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  background: linear-gradient(145deg, #10335e 0%, #081a30 100%);
  border: 2px solid rgba(56, 189, 248, 0.4);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4), var(--shadow-glow);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.diretor-card-highlight::before {
  content: 'CANDIDATO A PRESIDENTE';
  position: absolute;
  top: 1.25rem;
  right: -3.5rem;
  background: var(--color-accent);
  color: #0b2545;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 3.5rem;
  transform: rotate(45deg);
  box-shadow: var(--shadow-md);
  letter-spacing: 0.5px;
}

.diretor-card {
  background: linear-gradient(145deg, #0d2a4d 0%, #061528 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.diretor-card:hover {
  transform: translateY(-8px);
  border-color: #38bdf8;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.diretor-photo-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: radial-gradient(circle, #1a4a82 0%, #07172b 80%);
  aspect-ratio: 1 / 1.15;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.diretor-photo-wrapper.highlight {
  aspect-ratio: 1 / 1.1;
  max-height: 380px;
}

.diretor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition);
}

.diretor-card:hover .diretor-photo,
.diretor-card-highlight:hover .diretor-photo {
  transform: scale(1.04);
}

.diretor-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.diretor-card-highlight .diretor-name {
  font-size: 2.1rem;
  color: #ffffff;
}

.diretor-cargo {
  color: #38bdf8;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.diretor-card-highlight .diretor-cargo {
  font-size: 1.15rem;
  color: #fbbf24;
}

.diretor-bio {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.diretor-card-highlight .diretor-bio {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 650px;
}

.diretor-quote {
  font-style: italic;
  color: #94a3b8;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.75rem;
  margin-top: auto;
}

.diretor-card-highlight .diretor-quote {
  font-size: 1rem;
  color: #e2e8f0;
  border-left: 3px solid #38bdf8;
  border-top: none;
  padding-left: 1rem;
  padding-top: 0;
  margin-top: 1.25rem;
}

/* ==========================================================================
   PAINEL DOS 36 INTEGRANTES (ESTRUTURA COMPLETA)
   ========================================================================== */
.painel-36-header {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.painel-36-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.painel-36-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.painel-status-tag {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #b45309;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.regioes-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.regiao-chip {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.regiao-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
}

.setores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.75rem;
}

.setor-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.setor-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.setor-badge {
  font-size: 0.78rem;
  background: rgba(0, 152, 184, 0.1);
  color: var(--color-secondary);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.membros-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.membro-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.6rem 0.75rem;
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px solid #edf2f7;
  transition: var(--transition);
}

.membro-item:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.membro-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  overflow: hidden;
}

.membro-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.membro-details {
  flex-grow: 1;
}

.membro-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-primary);
}

.membro-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.membro-lotacao {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   GUIA DO ELEITOR / COMO VOTAR
   ========================================================================== */
.guia-voto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.passo-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  position: relative;
  text-align: center;
}

.passo-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 10px rgba(11, 37, 69, 0.25);
}

.passo-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.passo-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.alerta-votacao-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(217, 119, 6, 0.08) 100%);
  border: 2px solid rgba(245, 158, 11, 0.5);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.1);
}

.alerta-votacao-content {
  flex-grow: 1;
}

.alerta-votacao-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f59e0b;
  color: #0b2545;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.alerta-votacao-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.alerta-votacao-text {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

.alerta-votacao-text strong {
  color: var(--color-primary);
}

.alerta-votacao-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.btn-cadastro {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-cadastro:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.6);
  color: #ffffff;
}

.alerta-contatos-info {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.alerta-contatos-info a {
  color: var(--color-secondary);
  font-weight: 700;
}

@media (max-width: 860px) {
  .alerta-votacao-box {
    flex-direction: column;
    text-align: center;
  }
  .alerta-votacao-action {
    width: 100%;
  }
  .btn-cadastro {
    width: 100%;
    justify-content: center;
  }
}

.urna-simulador {
  background: linear-gradient(135deg, #0b2545 0%, #174276 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-xl);
}

.urna-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.urna-info p {
  color: #cbd5e1;
  font-size: 1rem;
}

.urna-badge-voto {
  background: #ffffff;
  color: #0b2545;
  padding: 1.25rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

.urna-badge-voto .numero {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.urna-badge-voto .nome-chapa {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-secondary);
}

/* ==========================================================================
   MOBILIZAÇÃO / WHATSAPP CALLOUT
   ========================================================================== */
.mobilizacao-card {
  background: radial-gradient(circle at 10% 20%, #1e4d8c 0%, #0b2545 90%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.mobilizacao-card h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.mobilizacao-card p {
  font-size: 1.15rem;
  color: #e2e8f0;
  max-width: 680px;
  margin: 0 auto 2rem auto;
}

.mobilizacao-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #051324;
  color: #94a3b8;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-container {
  background: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  display: inline-block;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.footer-logo {
  max-width: 230px;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #38bdf8;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   MODAIS & NOTIFICAÇÕES
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #0f172a;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  border-left: 4px solid var(--color-success);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   ESTILOS DE IMPRESSÃO (PRINT)
   ========================================================================== */
@media print {
  .header, .hero-cta, .propostas-controls, .btn-share-zap, .btn-print, .mobilizacao-card, .footer {
    display: none !important;
  }
  
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .section-dark {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .section-title, .eixo-header, .proposta-card-title {
    color: #000000 !important;
  }

  .proposta-card {
    border: 1px solid #ccc !important;
    page-break-inside: avoid;
    margin-bottom: 1rem;
  }
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE / TABLET)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .badge-election {
    margin: 0 auto;
  }

  .hero-slogan {
    border-left: none;
    padding-left: 0;
  }

  .hero-cta {
    justify-content: center;
  }

  .diretor-card-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .diretor-card-highlight .diretor-photo-wrapper {
    margin: 0 auto 1.5rem auto;
    max-width: 300px;
  }

  .diretor-card-highlight .diretor-quote {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 1rem;
  }

  .manifesto-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .urna-simulador {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #07172b;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-xl);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .menu-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-title .chapa-name {
    font-size: 1.8rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .propostas-wrapper {
    padding: 1.25rem;
  }

  .painel-36-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
