/* ==========================================================================
   PORTAL OFICIAL - ALEXSANDRA TOMAZ 
   Design System & Master Stylesheet
   Inspirado nas melhores práticas e estética de portais eleitorais de referência
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Nobre, Patriótica e Confiável */
  --primary: #07162c;
  --primary-rgb: 7, 22, 44;
  --primary-deep: #030a16;
  --primary-light: #0f2747;
  
  --secondary: #124090;
  --secondary-light: #1e5cd1;
  --secondary-cyan: #0ea5e9;
  
  /* Acentos de Destaque */
  --gold: #f59e0b;
  --gold-hover: #d97706;
  --gold-glow: rgba(245, 158, 11, 0.35);
  
  --green-patriot: #00875a;
  --green-vibrant: #10b981;
  --green-glow: rgba(16, 185, 129, 0.3);
  
  --red-accent: #ef4444;
  --yellow-accent: #fbbf24;

  /* Neutros e Superfícies */
  --bg-main: #060e1d;
  --bg-surface: #0a172e;
  --bg-surface-elevated: #0f2244;
  --bg-card: rgba(15, 34, 68, 0.7);
  --bg-card-hover: rgba(23, 50, 98, 0.85);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(30, 92, 209, 0.5);
  --border-gold: rgba(245, 158, 11, 0.4);
  
  --text-main: #ffffff;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  /* Tipografia */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Sombras & Efeitos */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 30px rgba(245, 158, 11, 0.25);
  --shadow-blue: 0 8px 30px rgba(30, 92, 209, 0.3);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6, p, span, a, li, label, div {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Utilitários e Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* ==========================================================================
   TOP BAR PATRIOTA
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #041022 0%, #082046 50%, #041022 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.45rem 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 135, 90, 0.2);
  color: #34d399;
  border: 1px solid rgba(0, 135, 90, 0.4);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
}

.top-bar-link:hover {
  color: var(--gold);
}

.social-icons-mini {
  display: flex;
  gap: 0.6rem;
}

.social-icons-mini a {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.social-icons-mini a:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVBAR SUSPENSA (Glassmorphism)
   ========================================================================== */
.header-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 22, 44, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.header-navbar.scrolled {
  background: rgba(4, 13, 27, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

/* Logo Oficial */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-badge {
  width: 46px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 82, 165, 0.45);
  transition: transform var(--transition-fast);
  overflow: hidden;
  flex-shrink: 0;
}

.brand-logo:hover .brand-badge {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 82, 165, 0.65);
}

.brand-badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Menu de Navegação */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--text-main);
}

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

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

/* Botões Customizados */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: 100%;
  text-align: center;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(30, 92, 209, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ee071 0%, #1da851 100%);
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION - IMPACTO OFICIAL
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 3rem;
  background: radial-gradient(circle at 75% 30%, rgba(18, 64, 144, 0.4) 0%, rgba(6, 14, 29, 0.98) 70%),
              url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.015"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
  overflow: hidden;
}

/* Efeito de luz decorativa */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.glow-1 {
  top: -150px;
  right: 10%;
  background: rgba(30, 92, 209, 0.25);
}

.glow-2 {
  bottom: -100px;
  left: 5%;
  background: rgba(245, 158, 11, 0.15);
}

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

/* Conteúdo Hero */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(18, 64, 144, 0.35);
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  width: fit-content;
  color: var(--secondary-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green-vibrant);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-ring 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-main);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-title .highlight-gold {
  background: linear-gradient(135deg, #ffdf00 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-slogan {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 500;
  max-width: 580px;
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
}

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

/* Indicadores de Confiança */
.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.trust-item:nth-child(2) .trust-icon {
  background: rgba(0, 135, 90, 0.15);
  color: #34d399;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-main);
}

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

/* Coluna da Imagem Hero */
.hero-media-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7),
              0 0 0 1px rgba(255, 255, 255, 0.15),
              0 0 40px rgba(30, 92, 209, 0.35);
  background: linear-gradient(180deg, rgba(30, 92, 209, 0.2) 0%, rgba(7, 22, 44, 0.9) 100%);
}

.hero-candidate-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.hero-image-frame:hover .hero-candidate-photo {
  transform: scale(1.03);
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 10, 22, 0.95) 85%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.candidate-name-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
}

.candidate-name-overlay p {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
}

.candidate-number-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
  color: var(--primary-deep);
  padding: 0.4rem 0.9rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

/* Badges Flutuantes */
.floating-card {
  position: absolute;
  background: rgba(10, 23, 46, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}

.float-card-1 {
  top: 10%;
  left: -25px;
}

.float-card-2 {
  bottom: 15%;
  right: -25px;
}

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.float-card-1 .floating-icon {
  background: rgba(0, 135, 90, 0.2);
  color: #10b981;
}

.float-card-2 .floating-icon {
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold);
}

.floating-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
}

.floating-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   STATS COUNTER BAR (Faixa de Impacto)
   ========================================================================== */
.stats-counter-bar {
  background: linear-gradient(90deg, #091c38 0%, #102d59 50%, #091c38 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(1.4rem, 2.5vw, 2rem) 0;
  position: relative;
  z-index: 10;
}

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

.stat-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 0.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-box:last-child {
  border-right: none;
}

.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   SEÇÕES GERAIS (Títulos e Layouts)
   ========================================================================== */
section {
  padding: clamp(3.5rem, 5vw, 4.8rem) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2rem, 3.5vw, 2.75rem);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

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

/* ==========================================================================
   SOBRE MIM & TRAJETÓRIA (BIOGRAFIA)
   ========================================================================== */
.about-section {
  background: var(--bg-surface);
  position: relative;
}

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

.about-image-column {
  position: relative;
}

.about-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  position: relative;
}

.about-main-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-quote-card {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: rgba(7, 22, 44, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
}

.quote-icon {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.about-quote-card p {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.4;
}

.quote-author {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
}

.about-text-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.about-text-content p {
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Timeline / Marcos de Trajetória */
.timeline {
  position: relative;
  margin-top: 2.5rem;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--secondary-light) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 1.8rem;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
}

.timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   BANDEIRAS & PROPOSTAS (INSPIRADO EM FLAVIOBOLSONARO.NET)
   ========================================================================== */
.proposals-section {
  background: var(--bg-main);
}

.proposal-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  color: #ffffff;
  border-color: var(--secondary-light);
  box-shadow: var(--shadow-blue);
}

.filter-btn-cta {
  border-color: rgba(14, 165, 233, 0.4);
  color: #38bdf8;
}

.filter-btn-cta:hover,
.filter-btn-cta.active {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  border-color: #38bdf8;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.35);
}

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

.proposal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Card 7 e Card 8 completam o grid de 3 colunas perfeitamente (2 + 1 = 3) */
@media (min-width: 1024px) {
  .proposal-card[data-category="empreendedorismo"] {
    grid-column: span 2;
  }

  .proposal-card-cta {
    grid-column: span 1;
  }
}

.proposal-card-cta {
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.1) 0%, rgba(15, 34, 68, 0.85) 100%);
  border: 1px dashed rgba(14, 165, 233, 0.4);
}

.proposal-card-cta:hover {
  border-color: var(--secondary-cyan);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.25);
}

.cta-icon-box {
  background: rgba(14, 165, 233, 0.18) !important;
  color: #38bdf8 !important;
  border-color: rgba(14, 165, 233, 0.4) !important;
}

.cta-category {
  color: #38bdf8 !important;
}

.proposal-card-cta .proposal-cta-actions {
  margin-top: auto;
  padding-top: 0.8rem;
  display: flex;
  gap: 0.6rem;
  width: 100%;
}

.proposal-card-cta .btn-card-action {
  width: 100%;
  padding: 0.7rem 1.2rem;
  font-size: 0.85rem;
}

.proposal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-light), var(--gold));
  opacity: 0;
  transition: var(--transition-fast);
}

.proposal-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

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

.proposal-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(30, 92, 209, 0.15);
  border: 1px solid rgba(30, 92, 209, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #38bdf8;
  margin-bottom: 1.5rem;
}

.proposal-category {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.proposal-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.proposal-summary {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.proposal-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--secondary-cyan);
  cursor: pointer;
  transition: var(--transition-fast);
  background: none;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.proposal-action-btn:hover {
  color: var(--gold);
  gap: 0.75rem;
}

/* ==========================================================================
   FATO OU BOATO (ANTI FAKE NEWS - INSPIRADO NO PORTAL DE FLÁVIO)
   ========================================================================== */
.fact-check-section {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.fact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition-normal);
}

.fact-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md);
}

.fact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.boato-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.fato-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.fact-date {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.boato-box {
  background: rgba(239, 68, 68, 0.05);
  border-left: 3px solid var(--red-accent);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1.25rem;
}

.boato-box h4 {
  color: #fca5a5;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.boato-box p {
  color: #e2e8f0;
  font-size: 0.92rem;
  font-style: italic;
}

.fato-box {
  background: rgba(16, 185, 129, 0.05);
  border-left: 3px solid var(--green-vibrant);
  padding: 1.2rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.fato-box h4 {
  color: #6ee7b7;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.fato-box p {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.55;
}

.fato-source {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   NOTÍCIAS & ATUALIZAÇÕES
   ========================================================================== */
.news-section {
  background: var(--bg-main);
}

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

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

.news-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0f1f38;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-thumb img {
  transform: scale(1.05);
}

.news-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(7, 22, 44, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.news-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.news-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.news-excerpt {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.news-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--secondary-cyan);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: none;
  cursor: pointer;
}

.news-link-btn:hover {
  color: var(--gold);
}

/* ==========================================================================
   HUB DE MATERIAIS DE CAMPANHA (DOWNLOAD)
   ========================================================================== */
.materials-section {
  background: var(--bg-surface);
}

.materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.flyer-preview-box {
  background: rgba(15, 34, 68, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.flyer-preview-box img {
  max-height: 480px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.flyer-preview-box:hover img {
  transform: scale(1.02);
}

.materials-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.material-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: var(--transition-normal);
}

.material-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

.material-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.material-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.material-details h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.material-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn-download {
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* ==========================================================================
   CENTRAL DO APOIADOR / SEJA VOLUNTÁRIO (FORMULÁRIO)
   ========================================================================== */
.volunteer-section {
  background: radial-gradient(circle at 50% 50%, rgba(18, 64, 144, 0.3) 0%, var(--bg-main) 80%);
  position: relative;
}

.volunteer-card {
  background: rgba(10, 23, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: clamp(2.2rem, 4vw, 3.2rem) clamp(1.4rem, 3vw, 2.75rem);
  box-shadow: var(--shadow-lg);
  max-width: 840px;
  margin: 0 auto;
}

.volunteer-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  color: #ffffff;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-control::placeholder {
  color: var(--text-dim);
}

/* Checkboxes de Participação */
.support-options-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 0.5rem;
}

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

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.checkbox-label:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--gold);
  width: 17px;
  height: 17px;
}

.form-submit-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
}

/* Alertas de Status do Form */
.form-status-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.form-status-alert.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  display: flex;
}

.form-status-alert.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
  display: flex;
}

/* ==========================================================================
   CANAIS OFICIAIS DE CONTATO
   ========================================================================== */
.contact-section {
  background: var(--bg-surface);
  position: relative;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  width: 100%;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-normal);
  height: 100%;
}

.contact-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.contact-icon.wa-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.contact-icon.email-icon {
  background: rgba(14, 165, 233, 0.15);
  color: #0ea5e9;
}

.contact-icon.location-icon {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
}

.contact-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.contact-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  width: 100%;
  justify-content: center;
}

.contact-action-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
}

/* ==========================================================================
   RODAPÉ OFICIAL & INFORMAÇÕES ELEITORAIS
   ========================================================================== */
.footer-official {
  background: #030812;
  border-top: 1px solid var(--border-subtle);
  padding: clamp(3rem, 4vw, 4rem) 0 1.75rem;
  color: var(--text-muted);
}

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

.footer-brand p {
  margin: 1.25rem 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
}

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

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--primary-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer-legal-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.82rem;
  text-align: center;
  color: var(--text-dim);
}

.footer-legal-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   VÍDEOS & SHORTS DA CAMPANHA (GALERIA MULTIMÍDIA)
   ========================================================================== */
.videos-section {
  background: linear-gradient(180deg, #050f1e 0%, #07172f 50%, #050e1c 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.video-card {
  background: rgba(13, 27, 49, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  position: relative;
}

.video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45), 0 0 25px rgba(212, 175, 55, 0.15);
}

.video-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 13;
  overflow: hidden;
  background: #061120;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-card:hover .video-thumb-img {
  transform: scale(1.08);
}

.video-placeholder-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0d203d 0%, #06101f 100%);
  color: rgba(255, 255, 255, 0.35);
  gap: 0.75rem;
}

.video-placeholder-box .placeholder-icon {
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.2);
}

.video-placeholder-box span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 14, 28, 0.9) 0%, rgba(5, 14, 28, 0.2) 50%, rgba(5, 14, 28, 0.55) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  pointer-events: none;
}

.video-type-badge {
  align-self: flex-start;
  background: #dc2626;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
}

.video-status-tag {
  align-self: flex-end;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(7, 22, 44, 0.85);
  backdrop-filter: blur(6px);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.video-play-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f59e0b);
  color: #07162c;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
}

.video-play-btn i {
  margin-left: 3px;
}

.video-card:hover .video-play-btn:not(.disabled) {
  transform: scale(1.16);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.7);
}

.video-play-btn.disabled {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
  cursor: default;
}

.video-play-btn.disabled i {
  margin-left: 0;
}

.video-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-category-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.video-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.video-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.video-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.video-watch-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  padding: 0.55rem 0.8rem;
}

.video-link-external {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ef4444;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.video-link-external:hover {
  background: #ef4444;
  color: #ffffff;
  transform: scale(1.08);
}

.video-status-notice {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0;
}

.video-card-placeholder {
  opacity: 0.85;
  cursor: default;
}

.video-card-placeholder:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
}

.videos-cta-bar {
  margin-top: 2.5rem;
  background: rgba(13, 27, 49, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.videos-cta-bar span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   MODAL DE LEITURA (PROPOSTAS E NOTÍCIAS)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.modal-content-card {
  background: #0a1832;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.active .modal-content-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--red-accent);
  transform: rotate(90deg);
}

.modal-tag {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.modal-body {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.modal-body p {
  margin-bottom: 1rem;
}

.modal-body ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.modal-body li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   MODAL DE VÍDEO (PLAYER INTERATIVO)
   ========================================================================== */
.video-modal-backdrop {
  z-index: 2100;
  padding: 1rem;
}

.modal-video-card {
  background: #081427;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.2);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal-backdrop.active .modal-video-card {
  transform: scale(1);
}

.video-modal-close {
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.video-iframe-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 72vh;
  background: #000000;
  display: flex;
}

.video-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-info {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #06101f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* WhatsApp Floating Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-bounce);
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background: #2ee071;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}
