/* ==========================================================================
   LANDING PAGE OFICIAL - VEREADOR CLEILSON MÓVEIS
   Cores Principais: Azul Royal / Marinho e Amarelo Ouro
   ========================================================================== */

:root {
  /* Cores Base do Hero e Tema */
  --bg-dark-blue: #030d29;
  --bg-hero-blue: #09205e;
  --bg-gradient-start: #041238;
  --bg-gradient-end: #0c2d7e;
  --accent-yellow: #ffcc00;
  --accent-yellow-hover: #e6b800;
  --blue-primary: #004ae6;
  --blue-hover: #0039b3;
  --blue-stats-bg: #07256e;
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-bg-light: #ffffff;
  
  /* Textos */
  --text-white: #ffffff;
  --text-yellow: #ffcc00;
  --text-muted: #d0d8f0;
  --text-dark: #1e293b;
  --text-secondary: #475569;
  
  /* Layout e Sombras */
  --max-width: 1240px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 25px rgba(255, 204, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background-color: #f8fafc;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   CABEÇALHO / HEADER (Fidelidade ao Layout)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(4, 18, 56, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(3, 13, 41, 0.96);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.brand-subtext-top {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a0aec0;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.brand-subtext-top::before,
.brand-subtext-top::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}

.brand-main-title {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.brand-main-title .blue-part {
  color: #2b77ff;
}

.brand-main-title .yellow-part {
  color: var(--accent-yellow);
}

.brand-slogan {
  font-family: 'Dancing Script', 'Caveat', cursive, sans-serif;
  font-size: 1.15rem;
  color: #4da6ff;
  margin-top: -2px;
  letter-spacing: 0.5px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
  opacity: 0.85;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: var(--text-white);
}

.nav-link.active::after,
.nav-link:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-yellow);
  border-radius: 2px;
}

/* Header WhatsApp Button */
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-primary);
  color: var(--text-white);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 74, 230, 0.4);
  transition: var(--transition);
}

.btn-header-cta:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 74, 230, 0.6);
  color: var(--text-white);
}

.btn-header-cta i {
  font-size: 1.2rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ==========================================================================
   PRIMEIRA DOBRA / HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: #041238;
  padding-top: 110px;
  overflow: hidden;
  color: var(--text-white);
}

/* Fundo com a foto da cidade de Juazeiro do Norte e sobreposição azul marinho */
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(4, 18, 56, 0.88) 0%, rgba(9, 32, 94, 0.84) 50%, rgba(3, 13, 41, 0.92) 100%),
    url('img/juazeiro_bg.jpg') no-repeat center center / cover;
  pointer-events: none;
}

.hero-bg-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 75% 40%, rgba(0, 74, 230, 0.35) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(255, 204, 0, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: flex-end;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Lado Esquerdo do Hero */
.hero-content {
  padding-bottom: 3.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 1.2rem;
  color: var(--text-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight-yellow {
  color: var(--accent-yellow);
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1.5rem;
  max-width: 580px;
}

.hero-divider {
  width: 80px;
  height: 4px;
  background-color: var(--accent-yellow);
  border-radius: 2px;
  margin-bottom: 2rem;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

/* Grid dos 4 Pilares de Atuação */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.35rem;
  color: #38bdf8;
  transition: var(--transition);
}

.feature-item:hover .feature-icon-wrapper {
  background: rgba(255, 204, 0, 0.15);
  border-color: var(--accent-yellow);
  color: var(--accent-yellow);
  transform: translateY(-3px);
}

.feature-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.3;
}

/* Lado Direito do Hero (Foto) */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: auto;
}

.hero-person-img {
  width: 100%;
  max-width: 490px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
  transform: translateY(4px);
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   FAIXA DE ESTATÍSTICAS (BARRA AZUL INFERIOR)
   ========================================================================== */
.stats-banner {
  background-color: var(--blue-stats-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 204, 0, 0.3);
  position: relative;
  z-index: 10;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.2);
}

.stats-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.5rem 1rem;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-yellow);
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-yellow);
  line-height: 1;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: 1px;
  margin-top: 3px;
}

/* Divisores entre os cards no desktop */
.stat-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   SEÇÃO SEPARADORA & BANNER DE VALORES
   ========================================================================== */
.values-strip {
  background: #ffffff;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.values-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.value-box {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.value-box:hover {
  transform: translateY(-50px);
  border-color: #004ae6;
  box-shadow: var(--shadow-md);
}

.value-box i {
  font-size: 2.2rem;
  color: var(--blue-primary);
  margin-bottom: 1rem;
}

.value-box h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bg-dark-blue);
  margin-bottom: 0.5rem;
}

.value-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   SEÇÃO SOBRE CLEILSON MÓVEIS (BIOGRAFIA COMPLETA)
   ========================================================================== */
.about-section {
  padding: 6rem 1.5rem;
  background: #f1f5f9;
  position: relative;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(0, 74, 230, 0.1);
  color: var(--blue-primary);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--bg-dark-blue);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-title span {
  color: var(--blue-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Imagem e Cards da Foto */
.about-img-box {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
}

.about-img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-dark-blue);
  color: var(--text-white);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-left: 5px solid var(--accent-yellow);
}

.about-badge-card h4 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent-yellow);
}

.about-badge-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Conteúdo Biográfico */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--bg-dark-blue);
  line-height: 1.3;
}

.about-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Quote Mission Card */
.mission-quote-box {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--blue-primary);
  box-shadow: var(--shadow-sm);
  margin: 0.5rem 0;
}

.mission-quote-box i {
  font-size: 1.5rem;
  color: var(--accent-yellow);
  margin-bottom: 0.5rem;
}

.mission-quote-box blockquote {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bg-dark-blue);
  font-style: italic;
  line-height: 1.5;
}

/* Timeline e Trajetória Escolar/Profissional */
.bio-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.bio-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  background: #ffffff;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  height: 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.bio-item i {
  font-size: 1.4rem;
  color: var(--blue-primary);
  margin-bottom: 2px;
}

.bio-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--bg-dark-blue);
  line-height: 1.3;
  margin-bottom: 4px;
}

.bio-item span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   SEÇÃO PROJETOS E BANDEIRAS DE ATUAÇÃO
   ========================================================================== */
.projects-section {
  padding: 6rem 1.5rem;
  background: #ffffff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.project-card {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-primary), var(--accent-yellow));
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: #ffffff;
}

.project-card:hover::before {
  opacity: 1;
}

.project-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(0, 74, 230, 0.08);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.project-card:hover .project-icon {
  background: var(--bg-dark-blue);
  color: var(--accent-yellow);
}

.project-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bg-dark-blue);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.project-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.project-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-primary);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   SEÇÃO ATUAÇÃO NAS COMUNIDADES (DESIGN EXCLUSIVO SEM IMAGENS)
   ========================================================================== */
.community-impact-section {
  padding: 6rem 1.5rem;
  background: var(--bg-dark-blue);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.community-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 74, 230, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 204, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.community-impact-section .section-title {
  color: var(--text-white);
}

.community-section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0.8rem auto 0 auto;
  line-height: 1.6;
}

/* Barra de Métricas */
.community-metrics-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.metric-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: var(--transition);
}

.metric-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-yellow);
  transform: translateY(-3px);
}

.metric-pill i {
  font-size: 1.8rem;
  color: var(--accent-yellow);
}

.metric-pill strong {
  display: block;
  font-size: 1.15rem;
  color: var(--text-white);
}

.metric-pill span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Grid de Cards de Depoimentos/Comunidade */
.community-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.community-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.community-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-yellow);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 204, 0, 0.15);
}

.community-card.highlight-card {
  border-color: rgba(255, 204, 0, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

.community-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.neighborhood-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 74, 230, 0.3);
  color: #60a5fa;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.rating-stars {
  color: var(--accent-yellow);
  font-size: 0.85rem;
  display: flex;
  gap: 3px;
}

.quote-icon {
  font-size: 1.6rem;
  color: var(--accent-yellow);
  opacity: 0.85;
  margin-bottom: 0.8rem;
}

.community-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: #e2e8f0;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.community-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 204, 0, 0.15);
  border: 1px solid var(--accent-yellow);
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.author-details strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-white);
}

.author-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Banner de Chamada para Ação nos Bairros */
.community-cta-box {
  background: linear-gradient(135deg, rgba(0, 74, 230, 0.4) 0%, rgba(9, 32, 94, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.community-cta-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.community-cta-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.btn-community-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-yellow);
  color: var(--bg-dark-blue);
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-community-cta:hover {
  background: var(--accent-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

/* ==========================================================================
   SEÇÃO NOTÍCIAS & ATUAÇÃO PARLAMENTAR
   ========================================================================== */
.news-section {
  padding: 6rem 1.5rem;
  background: #f8fafc;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.news-body {
  padding: 1.5rem;
}

.news-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.news-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bg-dark-blue);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.news-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO FALE COM O VEREADOR / CONTATO E OUVIDORIA
   ========================================================================== */
.contact-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-hero-blue) 100%);
  color: var(--text-white);
  position: relative;
}

.contact-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-info h2 span {
  color: var(--accent-yellow);
}

.contact-info p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  font-size: 1.2rem;
}

.contact-item-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-white);
}

.contact-item-text span {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.btn-whatsapp-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25d366;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.btn-whatsapp-big:hover {
  background: #1eb957;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.btn-whatsapp-big i {
  font-size: 1.5rem;
}

/* Formulário da Ouvidoria */
.contact-form-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.contact-form-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-white);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-yellow);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

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

.btn-form-submit {
  width: 100%;
  padding: 0.95rem;
  background: var(--accent-yellow);
  color: var(--bg-dark-blue);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-form-submit:hover {
  background: var(--accent-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

/* ==========================================================================
   RODAPÉ / FOOTER
   ========================================================================== */
.footer {
  background: #020819;
  color: var(--text-muted);
  padding: 4rem 1.5rem 2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent-yellow);
  color: var(--bg-dark-blue);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

.footer-links a:hover {
  color: var(--accent-yellow);
  padding-left: 4px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #64748b;
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE & TABLET EXATO CONFORME A FOTO DE REFERÊNCIA)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Header Mobile */
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 75px;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 75px);
    background: var(--bg-dark-blue);
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    gap: 1.5rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.4s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }

  .btn-header-cta {
    display: none; /* No mobile fica no menu ou flutuante */
  }

  /* Hero Section Mobile (Exatamente como a imagem 2 de referência) */
  .hero-section {
    padding-top: 90px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding-bottom: 2rem;
    gap: 1rem;
    text-align: left;
  }

  /* No mobile a imagem fica posicionada acima do texto sem sobrepor */
  .hero-image-wrapper {
    order: -1;
    margin-bottom: 0.5rem;
  }
  
  .hero-person-img {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  .hero-content {
    padding-bottom: 1rem;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  /* Lista Vertical dos 4 Pilares no Mobile */
  .hero-features-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .feature-icon-wrapper {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .feature-text {
    font-size: 0.9rem;
  }

  /* Faixa de estatísticas empilhada no mobile */
  .stats-container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.8rem 1.5rem;
  }

  .stat-card {
    padding: 0.5rem 0;
  }

  .stat-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 1.2rem;
  }

  /* Seções internas no mobile */
  .values-container,
  .about-grid,
  .projects-grid,
  .community-metrics-bar,
  .community-cards-grid,
  .news-grid,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .community-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem 1.5rem;
    gap: 1.5rem;
  }

  .bio-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .about-img-frame img {
    height: 420px;
    object-position: top center;
  }

  .about-badge-card {
    right: 10px;
    bottom: -15px;
    padding: 0.9rem 1.2rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
