/* ==========================================================================
   WEBSITE OFICIAL - PROFESSORA LÉO SIMÃO
   Candidata a Deputada Estadual por Rondônia - Número 13.789
   Tema: Vermelho Institucional / Professional Polish
   Identidade: Vermelho (#E30613), Vermelho Escuro (#A5050E), Vermelho Profundo (#73030A),
               Branco (#FFFFFF), Cinza Claro (#F9FAFB), Texto Neutro (#1F2937)
   Desenvolvido em CSS3 Puro, Moderno, Acessível e Responsivo
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIÁVEIS E RESET GLOBAL
   -------------------------------------------------------------------------- */
:root {
  /* Cores Principais em Tons de Vermelho Institucional */
  --vermelho: #E30613;
  --vermelho-escuro: #A5050E;
  --vermelho-profundo: #73030A;
  --vermelho-noite: #4A0105;
  --vermelho-suave: #FEF2F2;
  --vermelho-claro: #FDE8E8;
  --vermelho-borda: #FECACA;
  --vermelho-destaque: #FF1E27;
  
  /* Cores Neutras */
  --branco: #FFFFFF;
  --cinza-claro: #F9FAFB;
  --cinza-borda: #E5E7EB;
  --cinza-subtitulo: #4B5563;
  --texto: #1F2937;

  /* Aliases para compatibilidade mantendo o padrão 100% vermelho */
  --azul: var(--vermelho);
  --azul-claro: var(--vermelho-suave);
  --azul-escuro: var(--vermelho-profundo);
  --azul-noite: var(--vermelho-noite);

  /* Tipografia */
  --font-heading: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout & Espaçamento */
  --max-width: 1200px;
  --header-height: 70px;
  --header-height-mobile: 64px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Sombras Elegantes */
  --shadow-sm: 0 1px 3px rgba(115, 3, 10, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 14px rgba(115, 3, 10, 0.08);
  --shadow-lg: 0 10px 25px rgba(115, 3, 10, 0.15);

  /* Transições Suaves */
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset básico e box-sizing */
*, *::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-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--texto);
  background-color: var(--branco);
  overflow-x: hidden;
}

/* Acessibilidade de foco */
:focus-visible {
  outline: 3px solid var(--vermelho);
  outline-offset: 2px;
}

/* Elementos tipográficos base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--vermelho-profundo);
  line-height: 1.25;
  font-weight: 800;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   2. UTILITÁRIOS E ESTRUTURA
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: 76px;
  padding-bottom: 76px;
  position: relative;
}

.section--cinza {
  background-color: var(--cinza-claro);
}

.section--azul,
.section--vermelho {
  background: linear-gradient(135deg, var(--vermelho-profundo) 0%, var(--vermelho-noite) 100%);
  color: var(--branco);
}

.section--azul h2,
.section--azul h3,
.section--azul p,
.section--vermelho h2,
.section--vermelho h3,
.section--vermelho p {
  color: var(--branco);
}

/* Cabeçalhos de Seção Padronizados */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--vermelho);
  margin-bottom: 10px;
}

.section-tag--azul {
  color: #FCA5A5;
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--vermelho-profundo);
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.section--azul .section-title,
.section--vermelho .section-title {
  color: var(--branco);
}

.section-description {
  font-size: 1.05rem;
  color: var(--cinza-subtitulo);
  line-height: 1.7;
}

.section-divider {
  width: 56px;
  height: 3px;
  background-color: var(--vermelho);
  margin: 16px auto 0 auto;
  border-radius: 2px;
}

.section-divider--azul,
.section-divider--vermelho {
  background-color: var(--vermelho-escuro);
}

.section-divider--branco {
  background-color: var(--branco);
}

/* --------------------------------------------------------------------------
   3. HEADER / NAVEGAÇÃO STICKY
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--branco);
  border-bottom: 1px solid #F3F4F6;
  z-index: 1000;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.header.is-scrolled {
  box-shadow: 0 4px 16px rgba(115, 3, 10, 0.08);
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
  height: 48px;
}

.header-logo {
  height: 44px;
  max-height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--texto);
  padding: 8px 4px;
  position: relative;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vermelho);
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--vermelho);
}

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

.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background-color: var(--vermelho-suave);
  color: var(--vermelho);
  transition: var(--transition);
}

.social-icon-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-icon-btn:hover {
  background-color: var(--vermelho);
  color: var(--branco);
  transform: translateY(-2px);
}

/* Botão Menu Mobile (Hamburger) */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  padding: 0;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--vermelho-profundo);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   4. BANNER PRINCIPAL (SEM TEXTO SOBREPOSTO)
   -------------------------------------------------------------------------- */
.hero-banner {
  width: 100%;
  background-color: var(--vermelho-profundo);
  line-height: 0;
}

.hero-banner picture,
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   5. FAIXA ELEGANTE ABAIXO DO BANNER (PROFESSIONAL POLISH)
   -------------------------------------------------------------------------- */
.strip-info {
  background: linear-gradient(135deg, var(--vermelho-profundo) 0%, var(--vermelho-escuro) 100%);
  color: var(--branco);
  padding: 16px 0;
  border-top: 4px solid var(--vermelho);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.strip-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.strip-candidate {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}

.strip-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--branco);
}

.strip-role {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.strip-badges {
  display: flex;
  align-items: center;
  gap: 14px;
}

.strip-number-box {
  background-color: var(--vermelho);
  color: var(--branco);
  padding: 4px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: baseline;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(227, 6, 19, 0.4);
}

.strip-number-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.5px;
}

.strip-number-val {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  color: var(--branco);
  letter-spacing: 1px;
}

.strip-state-box {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   6. SEÇÃO: QUEM É A PROFESSORA LÉO SIMÃO?
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}

.about-media {
  position: relative;
}

.about-photo-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--cinza-claro);
  border: 1px solid var(--cinza-borda);
  box-shadow: var(--shadow-md);
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-header {
  margin-bottom: 24px;
}

.about-lead-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--vermelho-profundo);
  margin-top: 8px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text {
  font-size: 1.05rem;
  color: var(--texto);
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 1.25rem;
}

/* Destaques da Biografia (Cards pequenos e sofisticados) */
.bio-highlights {
  margin-top: 48px;
}

.bio-highlights-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--vermelho-profundo);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bio-highlights-title::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 4px;
  background-color: var(--vermelho);
  border-radius: 2px;
}

.bio-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.bio-card {
  background-color: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-left: 4px solid var(--vermelho);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.bio-card:nth-child(even) {
  border-left-color: var(--vermelho-escuro);
}

.bio-card:hover {
  background-color: var(--vermelho-suave);
  border-color: var(--vermelho-borda);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.bio-card-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: var(--vermelho-suave);
  color: var(--vermelho);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.bio-card:nth-child(even) .bio-card-icon {
  background-color: var(--vermelho-claro);
  color: var(--vermelho-escuro);
}

.bio-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.bio-card-highlight {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--vermelho);
  margin-bottom: 4px;
}

.bio-card-desc {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--texto);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   7. SEÇÃO: UMA HISTÓRIA DE LUTA (TIMELINE VERTICAL)
   -------------------------------------------------------------------------- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 35px;
  width: 3px;
  background: linear-gradient(to bottom, var(--vermelho) 0%, var(--vermelho-escuro) 50%, var(--vermelho-profundo) 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 36px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-badge {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background-color: var(--branco);
  border: 3px solid var(--vermelho);
  color: var(--vermelho);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.timeline-item:nth-child(even) .timeline-badge {
  border-color: var(--vermelho-escuro);
  color: var(--vermelho-escuro);
}

.timeline-item:hover .timeline-badge {
  transform: scale(1.08);
  background-color: var(--vermelho);
  color: var(--branco);
}

.timeline-content {
  margin-left: 28px;
  background-color: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  flex-grow: 1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-item:hover .timeline-content {
  border-color: var(--vermelho);
  box-shadow: var(--shadow-md);
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--vermelho-profundo);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 1rem;
  color: var(--texto);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   8. SEÇÃO DE IMPACTO (VERMELHO PROFUNDO COM FRASE DE PAULO FREIRE)
   -------------------------------------------------------------------------- */
.impact-box {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.impact-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 16px;
}

.impact-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 750px;
  margin: 0 auto 36px auto;
  line-height: 1.7;
}

.quote-card {
  background-color: #610207;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 6px solid var(--vermelho);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  box-shadow: var(--shadow-md);
}

.quote-icon {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  fill: rgba(255, 255, 255, 0.15);
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
  color: var(--branco);
  margin-bottom: 14px;
}

.quote-author {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FCA5A5;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* --------------------------------------------------------------------------
   9. SEÇÃO: NOSSAS LUTAS (CARDS OBJETIVOS)
   -------------------------------------------------------------------------- */
.lutas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.luta-card {
  background-color: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.luta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--vermelho);
}

.luta-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background-color: var(--vermelho-suave);
  color: var(--vermelho);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.luta-icon--vermelho,
.luta-icon--azul {
  background-color: var(--vermelho-suave);
  color: var(--vermelho);
}

.luta-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.luta-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vermelho-profundo);
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   10. SEÇÃO: COMPROMISSOS ENQUANTO PARLAMENTAR (GRID 4 ÁREAS)
   -------------------------------------------------------------------------- */
.compromissos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.compromisso-card {
  background-color: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.compromisso-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--vermelho-borda);
}

/* Faixa colorida no topo do card */
.compromisso-top-bar {
  height: 4px;
  width: 100%;
}

.top-bar--educacao {
  background-color: var(--vermelho);
}

.top-bar--saude {
  background-color: var(--vermelho-escuro);
}

.top-bar--seguranca {
  background-color: var(--vermelho-profundo);
}

.top-bar--igualdade {
  background-color: #C50510;
}

.compromisso-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.compromisso-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.compromisso-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon--educacao {
  background-color: var(--vermelho-suave);
  color: var(--vermelho);
}

.icon--saude {
  background-color: var(--vermelho-claro);
  color: var(--vermelho-escuro);
}

.icon--seguranca {
  background-color: rgba(115, 3, 10, 0.1);
  color: var(--vermelho-profundo);
}

.icon--igualdade {
  background-color: var(--vermelho-suave);
  color: #C50510;
}

.compromisso-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.compromisso-area-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--vermelho-profundo);
  letter-spacing: -0.2px;
}

.compromisso-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compromisso-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--texto);
  line-height: 1.55;
}

.compromisso-item-bullet {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--vermelho-suave);
  color: var(--vermelho);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.compromisso-item-bullet svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* --------------------------------------------------------------------------
   11. SEÇÃO: EDUCAÇÃO E INCLUSÃO (EDITORIAL)
   -------------------------------------------------------------------------- */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

.editorial-content {
  display: flex;
  flex-direction: column;
}

.editorial-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--vermelho-profundo);
  margin-top: 8px;
  margin-bottom: 24px;
  line-height: 1.3;
}

.editorial-text {
  font-size: 1.1rem;
  color: var(--texto);
  line-height: 1.8;
}

.editorial-text p {
  margin-bottom: 1.5rem;
}

.editorial-media {
  position: relative;
}

.editorial-photo-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--cinza-claro);
  border: 1px solid var(--cinza-borda);
  box-shadow: var(--shadow-md);
}

.editorial-photo {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   12. SEÇÃO: CLASSE TRABALHADORA
   -------------------------------------------------------------------------- */
.trabalhadores-box {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.trabalhadores-header {
  text-align: center;
  margin-bottom: 36px;
}

.trabalhadores-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--vermelho-profundo);
  margin-top: 8px;
  margin-bottom: 12px;
}

.trabalhadores-intro {
  font-size: 1.05rem;
  color: var(--cinza-subtitulo);
  line-height: 1.7;
}

.trabalhadores-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.trabalhador-pillar-card {
  background-color: var(--cinza-claro);
  border-radius: var(--radius-md);
  padding: 20px;
  border-left: 4px solid var(--vermelho);
  transition: var(--transition);
}

.trabalhador-pillar-card:hover {
  background-color: var(--branco);
  box-shadow: var(--shadow-sm);
  border-left-color: var(--vermelho-escuro);
}

.trabalhador-pillar-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vermelho-profundo);
  margin-bottom: 6px;
}

.trabalhador-pillar-desc {
  font-size: 0.925rem;
  color: var(--cinza-subtitulo);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   13. SEÇÃO: COMPROMISSO COM RONDÔNIA
   -------------------------------------------------------------------------- */
.rondonia-card {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--vermelho-profundo) 0%, var(--vermelho-escuro) 60%, var(--vermelho) 100%);
  color: var(--branco);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.rondonia-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.rondonia-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 20px;
}

.rondonia-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto 32px auto;
}

.rondonia-quote {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: 0.2px;
}

/* --------------------------------------------------------------------------
   14. SEÇÃO: REDES SOCIAIS
   -------------------------------------------------------------------------- */
.social-section-box {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.social-card {
  background-color: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--vermelho);
}

.social-card--instagram:hover {
  border-color: #E1306C;
}

.social-card--facebook:hover {
  border-color: #1877F2;
}

.social-card--youtube:hover {
  border-color: #FF0000;
}

.social-card--whatsapp:hover {
  border-color: #25D366;
}

.social-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background-color: var(--vermelho-suave);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vermelho);
  margin-bottom: 12px;
  transition: var(--transition);
}

.social-card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-card:hover .social-card-icon {
  background-color: var(--vermelho);
  color: var(--branco);
}

.social-card--instagram:hover .social-card-icon {
  background-color: #E1306C;
}

.social-card--facebook:hover .social-card-icon {
  background-color: #1877F2;
}

.social-card--youtube:hover .social-card-icon {
  background-color: #FF0000;
}

.social-card--whatsapp:hover .social-card-icon {
  background-color: #25D366;
}

.social-card-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vermelho-profundo);
  margin-bottom: 4px;
}

.social-card-handle {
  font-size: 0.875rem;
  color: var(--cinza-subtitulo);
}

/* --------------------------------------------------------------------------
   15. SEÇÃO: CONTATO (FORMULÁRIO INSTITUCIONAL)
   -------------------------------------------------------------------------- */
.contact-wrapper {
  max-width: 740px;
  margin: 0 auto;
  background-color: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vermelho-profundo);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cinza-borda);
  border-radius: var(--radius-sm);
  background-color: var(--branco);
  color: var(--texto);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--vermelho);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.15);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--vermelho);
  margin-top: 3px;
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 0.9rem;
  color: var(--cinza-subtitulo);
  cursor: pointer;
  line-height: 1.5;
}

.form-submit-btn {
  background-color: var(--vermelho);
  color: var(--branco);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.form-submit-btn:hover {
  background-color: var(--vermelho-escuro);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(227, 6, 19, 0.25);
}

.form-submit-btn:active {
  transform: translateY(0);
}

/* Alerta de Feedback de Demonstração */
.form-feedback {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background-color: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 12px;
}

.form-feedback.is-visible {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* --------------------------------------------------------------------------
   16. FOOTER (VERMELHO PROFUNDO / ESCURO)
   -------------------------------------------------------------------------- */
.footer {
  background: linear-gradient(180deg, #580206 0%, #3D0104 100%);
  color: var(--branco);
  padding-top: 60px;
  padding-bottom: 30px;
  border-top: 4px solid var(--vermelho);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 48px;
  max-height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  background-color: var(--branco);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.footer-candidate-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 4px;
}

.footer-candidate-info {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: #FCA5A5;
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--branco);
  font-weight: 600;
}

.footer-social-link:hover {
  color: #FCA5A5;
}

/* Informações Legais Eleitorais e Créditos */
.footer-bottom {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.legal-box {
  background-color: rgba(0, 0, 0, 0.25);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  max-width: 800px;
  line-height: 1.5;
}

.legal-cnpj {
  font-weight: 700;
  color: var(--branco);
}

.credits-link {
  color: var(--branco);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.credits-link:hover {
  color: #FCA5A5;
}

/* --------------------------------------------------------------------------
   17. BOTÃO VOLTAR AO TOPO & ANIMAÇÕES DISCRETAS
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--vermelho);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 900;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--vermelho-escuro);
  transform: scale(1.05);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* Animações de entrada com IntersectionObserver */
.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-in-element.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   18. RESPONSIVIDADE (MOBILE-FIRST PRECISION)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2rem;
  }

  .about-grid {
    grid-template-columns: 360px 1fr;
    gap: 40px;
  }

  .editorial-grid {
    grid-template-columns: 1fr 380px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header {
    height: var(--header-height-mobile);
  }

  .header-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Menu Drawer Mobile */
  .nav {
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height-mobile));
    background-color: var(--branco);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .nav-link {
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--cinza-borda);
  }

  .header-social {
    width: 100%;
    padding-top: 12px;
    justify-content: flex-start;
  }

  .strip-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .strip-badges {
    width: 100%;
    justify-content: space-between;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-photo-wrapper {
    max-width: 380px;
    margin: 0 auto;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .editorial-media {
    order: -1;
  }

  .editorial-photo-wrapper {
    max-width: 420px;
    margin: 0 auto;
  }

  .compromissos-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .compromisso-body {
    padding: 24px 20px;
  }

  .timeline::before {
    left: 24px;
  }

  .timeline-badge {
    width: 50px;
    height: 50px;
    font-size: 0.95rem;
  }

  .timeline-content {
    margin-left: 16px;
    padding: 16px 18px;
  }

  .quote-card {
    padding: 24px 20px;
  }

  .quote-text {
    font-size: 1.2rem;
  }

  .rondonia-card {
    padding: 36px 20px;
  }

  .rondonia-title {
    font-size: 1.8rem;
  }

  .contact-wrapper {
    padding: 28px 20px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.65rem;
  }

  .about-lead-title,
  .editorial-title {
    font-size: 1.55rem;
  }

  .strip-name {
    font-size: 1.15rem;
  }

  .strip-number-val {
    font-size: 1.35rem;
  }

  .bio-cards-grid {
    grid-template-columns: 1fr;
  }

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

/* Suporte a prefers-reduced-motion para acessibilidade */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in-element {
    opacity: 1 !important;
    transform: none !important;
  }
}
