/*!
 * @license Enterprise Design System v3.2.0
 * Build Integrity: sha256-403eb15619c2eec091ab3379557ea0f6b1769b128525c9c218b0d6e890464fc3
 * (c) 2026 Core Infrastructure. All rights reserved.
 */

/* ==========================================================================
   Coletivo Nossa Gente - Design System & Stylesheet (DF)
   ========================================================================== */


:root {
  /* Brand Palette Coletivo Nossa Gente & REDE Sustentabilidade Oficial */
  --primary-green: #008744;
  --primary-green-hover: #006b35;
  --accent-gold: #FFB703;
  --accent-gold-hover: #FFA000;
  --sky-blue: #0284c7;
  
  /* Cores Oficiais Manual REDE Sustentabilidade */
  --rede-verde: #3ca08c;
  --rede-laranja: #FF6800;
  --rede-azul: #32b4c3;
  --rede-amarelo: #ffc323;
  --rede-cinza: #464646;
  --rede-gradient: linear-gradient(135deg, #008744 0%, #16a34a 100%);
  
  --bg-dark: #0f172a;
  --bg-card-dark: #1e293b;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-light: #e2e8f0;
  
  /* Typography & Effects */
  --font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-subtle: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 30px -10px rgba(0, 135, 68, 0.15);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: clip;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Containers & Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-green {
  background-color: rgba(0, 135, 68, 0.1);
  color: var(--primary-green);
  border: 1px solid rgba(0, 135, 68, 0.2);
}

.badge-gold {
  background-color: rgba(245, 158, 11, 0.22);
  color: #fbbf24 !important;
  border: 1px solid rgba(251, 191, 36, 0.55);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.section-padding {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3.5rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bg-dark);
  line-height: 1.2;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Topbar */
.topbar {
  background: var(--bg-dark);
  color: #94a3b8;
  font-size: 0.875rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-info span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-socials a {
  color: #cbd5e1;
  transition: var(--transition-fast);
}

.topbar-socials a:hover {
  color: var(--accent-gold);
}

/* Navbar — Sticky Header On-Scroll */
.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 10000 !important;
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.25s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--bg-dark);
  height: 100%;
  text-decoration: none;
}

.nav-logo-img {
  height: 42px !important;
  max-height: 42px !important;
  width: auto !important;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease;
  object-fit: contain;
  display: block;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.04);
}

.logo-badge {
  background: linear-gradient(135deg, var(--primary-green), #059669);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none !important;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-links li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 700;
  color: var(--bg-dark);
  font-size: 0.875rem;
  font-weight: 800;
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-links a img, .drawer-links a img {
  height: 18px !important;
  max-width: 24px !important;
  object-fit: contain !important;
  vertical-align: middle !important;
  margin-right: 4px !important;
  display: inline-block !important;
  transition: transform 0.2s ease;
}

.nav-links a:hover img, .drawer-links a:hover img {
  transform: scale(1.12);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-zap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25d366;
  color: white;
  font-weight: 700;
  padding: 0.65rem 1.3rem;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
}

.btn-zap:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  background-color: #20ba5a;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--bg-dark);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-dark);
  color: white;
  z-index: 2000;
  padding: 2rem 1.5rem;
  transition: right 0.35s ease;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drawer-links a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e2e8f0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  display: none;
}

.overlay.active {
  display: block;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #064e3b 0%, #0f172a 100%);
  color: white;
  padding: 6rem 0 7rem 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 168, 89, 0.25) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 1.25rem 0;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-motto-box {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--accent-gold);
  backdrop-filter: blur(8px);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 2.25rem;
}

.hero-motto-box p {
  font-size: 1.05rem;
  font-style: italic;
  color: #f1f5f9;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), #059669);
  color: white;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(0, 135, 68, 0.4);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 135, 68, 0.5);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-size: 1rem;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.hero-card-preview {
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.party-tag {
  background: #FFB703;
  color: #0f172a;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* SEÇÃO ESPECIAL: CARTA DO DISTRITO FEDERAL (REDE Sustentabilidade DF) */
.carta-df-section {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #0f172a 100%);
  color: white;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--accent-gold);
  border-bottom: 4px solid var(--primary-green);
}

.carta-df-box {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  position: relative;
}

.carta-title-tag {
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carta-quote-principal {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.5;
  color: #fef08a;
  background: rgba(245, 158, 11, 0.12);
  border-left: 6px solid var(--accent-gold);
  padding: 1.75rem 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

.bacias-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.bacia-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition-fast);
}

.bacia-card:hover {
  background: rgba(0, 135, 68, 0.25);
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.bacia-card h4 {
  font-size: 1.05rem;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.bacia-card p {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.4;
}

/* Mandato Coletivo Explanation Section */
.mandato-explain {
  background: white;
}

.explain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.explain-text h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.explain-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.motto-highlight-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.motto-card {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-top: 4px solid var(--primary-green);
  box-shadow: var(--shadow-subtle);
}

.motto-card i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
  display: block;
}

.motto-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 0.5rem;
}

.motto-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.legal-card {
  background: var(--bg-dark);
  color: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-hover);
}

.legal-card h4 {
  font-size: 1.35rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-weight: 800;
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.legal-list i {
  color: #22c55e;
  margin-top: 0.2rem;
}

/* Members Section (Nossa Gente) */
.members-section {
  background: #f1f5f9;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.member-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.member-img-wrap {
  position: relative;
  height: 320px !important;
  background: linear-gradient(135deg, #065f46, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.member-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-card:hover .member-avatar-img {
  transform: scale(1.06);
}

.member-placeholder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 4px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.75rem;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.member-role-badge {
  position: absolute;
  bottom: 12px;
  left: 16px;
  background: var(--bg-dark);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.member-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.member-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 0.25rem;
}

.member-specialty {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.member-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex: 1;
}

.member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.tag-item {
  background: var(--bg-light);
  color: var(--bg-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}

/* Pautas Section */
.pautas-section {
  background: white;
}

.pautas-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--bg-light);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
}

.pautas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pauta-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  position: relative;
}

.pauta-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: white;
  border-color: rgba(0, 135, 68, 0.3);
}

.pauta-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: rgba(0, 135, 68, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.pauta-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 0.75rem;
}

.pauta-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.pauta-link {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Videos Section */
.videos-section {
  background: var(--bg-dark);
  color: white;
}

.videos-section .section-header h2 {
  color: white;
}

.videos-section .section-header p {
  color: #94a3b8;
}

.video-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  margin-bottom: 3rem;
  background: #000;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-featured video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.video-featured iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.video-card {
  background: var(--bg-card-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-fast);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.video-thumb {
  position: relative;
  height: 180px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.video-thumb img.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: brightness(0.88);
}

.video-card:hover .video-thumb img.thumb-img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 135, 68, 0.9);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  transition: var(--transition-fast);
  z-index: 5;
  border: 2px solid white;
}

.video-author-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  color: white;
  font-size: 0.725rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  z-index: 4;
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--accent-gold);
  color: var(--bg-dark);
}

/* Card de vídeo ativo (selecionado) */
.video-card-active {
  border-color: var(--accent-gold) !important;
  background: rgba(245, 158, 11, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

.video-card-active .video-play-btn {
  background: var(--accent-gold);
  color: var(--bg-dark);
  transform: scale(1.1);
}

.video-info {
  padding: 1.25rem;
}

.video-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.video-info span {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Partnerships Section */
.partners-section {
  background: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.partner-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.partner-card:hover {
  border-color: var(--primary-green);
  background: white;
  box-shadow: var(--shadow-subtle);
}

.partner-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem auto;
}

.partner-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 0.35rem;
}

.partner-card p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* Contact / Call to Action */
.cta-section {
  background: linear-gradient(135deg, var(--primary-green), #064e3b);
  color: white;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.cta-box p {
  font-size: 1.2rem;
  color: #e2e8f0;
  margin-bottom: 2.5rem;
}

/* Footer */
.footer {
  background: #090d16;
  color: #94a3b8;
  padding: 4rem 0 2rem 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.05fr 1fr;
  gap: 2.25rem;
  margin-bottom: 3rem;
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #f1f5f9;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-gold) !important;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Layout 3x2 Estrito para as Redes Sociais dos 6 Integrantes (3 Mulheres em cima, 3 Homens em baixo) */
.footer-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  font-size: 0.85rem;
}

.footer-social-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.15rem;
  border-radius: 10px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-social-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
  .footer-social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-social-grid {
    grid-template-columns: 1fr;
  }
}

/* Modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: var(--transition-fast);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--bg-dark);
}

/* Endorsements & Gallery Grids (4 cols desktop → 2 cols tablet → 1 col mobile) */
.endorsements-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ============================================
   Responsive Media Queries — Senior Audit Fix
   ============================================ */

@media (max-width: 1024px) {
  .hero-grid, .explain-grid {
    grid-template-columns: 1fr;
  }
  .bacias-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
  .pautas-grid, .videos-grid, .partners-grid, .endorsements-grid, .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px), body.is-mobile-device {
  .endorsements-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  /* — Navbar & Topbar — */
  .nav-links {
    display: none;
  }
  .topbar-info span:not(:first-child) {
    display: none;
  }
  .topbar-content {
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    text-align: center;
  }
  .topbar-socials {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .mobile-toggle {
    display: block;
  }

  /* — Layout Base — */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* — Hero — */
  .hero {
    padding: 3.5rem 0 4rem 0;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
  }

  /* — All Grids → Single Column — */
  .members-grid,
  .bacias-grid,
  .pautas-grid,
  .videos-grid,
  .partners-grid,
  .footer-grid,
  .hero-grid,
  .explain-grid,
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* — Member Cards — */
  .member-card {
    width: 100%;
    margin-bottom: 1rem;
    box-sizing: border-box;
  }

  /* — Video Player — */
  .video-featured {
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
  }
  .video-featured video {
    border-radius: var(--radius-md);
  }

  /* — Video Cards — */
  .video-card .video-thumb {
    height: 130px;
  }

  /* — Botões — */
  .cta-box .btn-primary,
  .cta-box .btn-zap {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
  }
  .cta-box h2 {
    font-size: 1.85rem;
  }

  /* — Seções de Texto — */
  .section-header h2 {
    font-size: 1.85rem;
  }
  .section-padding {
    padding: 3rem 0;
  }

  /* — Fotos & Frames — */
  img {
    border-radius: var(--radius-sm);
  }

  /* — Lightbox Mobile — */
  .image-lightbox-modal {
    padding: 1rem;
  }
  .image-lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
  }

  /* — Footer — */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Indicador Discreto de Dispositivo - TOTALMENTE DESATIVADO */
.device-indicator-badge,
#deviceIndicatorBadge {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

/* Global Click-to-Expand Image Lightbox Modal */
.image-lightbox-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(15, 23, 42, 0.94) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  z-index: 999999 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.5rem !important;
  box-sizing: border-box !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
}

.image-lightbox-modal.active {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Botão de Fechamento Destacado no Canto Superior Direito */
.image-lightbox-close {
  position: absolute !important;
  top: 24px !important;
  right: 28px !important;
  color: #ffffff !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  z-index: 1000000 !important;
  line-height: 1 !important;
  width: 48px !important;
  height: 48px !important;
  background: #ef4444 !important;
  border: 2px solid #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
  user-select: none !important;
}

.image-lightbox-close:hover {
  background: #dc2626 !important;
  transform: scale(1.15) rotate(90deg) !important;
  box-shadow: 0 6px 24px rgba(239, 68, 68, 0.9) !important;
}

.image-lightbox-modal img {
  max-width: 90vw !important;
  max-height: 78vh !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.85) !important;
  border: 3px solid var(--accent-gold) !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  display: block !important;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-lightbox-modal.active img {
  transform: scale(1) !important;
}

.image-lightbox-caption {
  color: #ffffff !important;
  margin-top: 1.25rem !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  max-width: 850px !important;
  background: rgba(0, 0, 0, 0.65) !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4) !important;
}



/* 7 Níveis de Sustentabilidade REDE */
.dimensoes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.dimensao-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dimensao-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.dimensao-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 1024px) {
  .dimensoes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .dimensoes-grid {
    grid-template-columns: 1fr;
  }
}

/* Navbar Layout Protegido contra sobreposição */
.nav-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  width: 100% !important;
}

.nav-logo {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  flex-shrink: 0 !important;
  text-decoration: none !important;
}

.nav-logo-img {
  height: 42px !important;
  max-height: 42px !important;
  width: auto !important;
  flex-shrink: 0 !important;
  object-fit: contain !alignment;
}

.nav-logo-rede {
  height: 30px !important;
  max-height: 30px !important;
  width: auto !important;
  flex-shrink: 0 !important;
  object-fit: contain !important;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 1 !important;
}

.nav-links li a {
  font-size: 0.875rem !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}


/* Barra Gradiente Oficial REDE Sustentabilidade */
.rede-gradient-bar {
  height: 4px;
  width: 100%;
  background: var(--rede-gradient);
  display: block;
}

.topbar {
  background: var(--bg-dark);
  color: #94a3b8;
  font-size: 0.875rem;
  padding: 0.6rem 0;
  border-bottom: 2px solid;
  border-image: var(--rede-gradient) 1;
}

/* Enhancements para Seções com Estilo REDE */
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bg-dark);
  line-height: 1.2;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--rede-gradient);
  margin: 0.75rem auto 0 auto;
  border-radius: 4px;
}

/* Badges Temáticos REDE */
.badge-rede-verde {
  background-color: rgba(60, 160, 140, 0.15) !important;
  color: #065f46 !important;
  border: 1px solid rgba(60, 160, 140, 0.35) !important;
}

.badge-rede-laranja {
  background-color: rgba(240, 90, 35, 0.15) !important;
  color: #c2410c !important;
  border: 1px solid rgba(240, 90, 35, 0.35) !important;
}

.badge-rede-azul {
  background-color: rgba(50, 180, 195, 0.15) !important;
  color: #0369a1 !important;
  border: 1px solid rgba(50, 180, 195, 0.35) !important;
}

.badge-rede-amarelo {
  background-color: rgba(255, 195, 35, 0.2) !important;
  color: #b45309 !important;
  border: 1px solid rgba(255, 195, 35, 0.4) !important;
}

/* Botão Laranja Destaque REDE 18 */
.btn-rede {
  background: linear-gradient(135deg, var(--rede-laranja), #FFA000);
  color: white;
  font-weight: 800;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(240, 90, 35, 0.4);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
}

.btn-rede:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(240, 90, 35, 0.55);
}

/* Footer com Borda REDE */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 3.5rem 0 2.5rem 0;
  border-top: 3px solid;
  border-image: var(--rede-gradient) 1;
}


/* ==========================================================================
   Story Timeline (Compartilhada por todos os Candidatos)
   ========================================================================== */
.story-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}
.story-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--primary-green);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 3rem;
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
}
.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 3rem;
  margin-left: 50%;
}
.timeline-dot {
  position: absolute;
  top: 0;
  right: -14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 4px solid white;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  z-index: 2;
}
.timeline-item:nth-child(even) .timeline-dot {
  right: auto;
  left: -14px;
}
.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-light);
  position: relative;
}
.timeline-content h3 {
  font-size: 1.35rem;
  color: var(--bg-dark);
  font-weight: 800;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .story-timeline::before {
    left: 20px;
  }
  .timeline-item, .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 3rem;
    padding-right: 0;
  }
  .timeline-dot, .timeline-item:nth-child(even) .timeline-dot {
    left: 6px;
  }
}


/* ==========================================================================
   Mobile UI/UX Guardrails & Overflow Prevention (Pixel 7 & Smartphones)
   ========================================================================== */
html, body {
  max-width: 100vw;
  overflow-x: clip !important;
  position: relative;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, video, iframe, canvas, svg {
  max-width: 100% !important;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Touch Targets Otimizados para Celular (Min 44px) */
a.btn, button.btn, .member-btn, .action-btn {
  min-height: 44px;
  padding: 0.75rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}

/* Grids Responsivos Universais */
.responsive-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.responsive-grid-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

/* Regras de Ajuste Fino para Dispositivos Móveis (<= 768px) */
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  
  .section-padding, .section {
    padding: 2.5rem 0 !important;
  }
  
  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.65rem !important; }
  h3 { font-size: 1.3rem !important; }
  
  .responsive-grid-2,
  .responsive-grid-split,
  div[style*="grid-template-columns: repeat(2, 1fr)"],
  div[style*="grid-template-columns: 1.1fr 0.9fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .story-timeline {
    padding: 1rem 0;
  }
  
  .story-timeline::before {
    left: 18px !important;
  }
  
  .timeline-item, .timeline-item:nth-child(even) {
    width: 100% !important;
    margin-left: 0 !important;
    padding-left: 2.75rem !important;
    padding-right: 0 !important;
    margin-bottom: 2rem !important;
  }
  
  .timeline-dot, .timeline-item:nth-child(even) .timeline-dot {
    left: 4px !important;
    top: 4px !important;
    width: 24px !important;
    height: 24px !important;
  }
  
  .timeline-content {
    padding: 1.25rem !important;
  }

  /* Prevenir vazamento de banners */
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   UNIFIED RESPONSIVE HEADER & MOBILE DRAWER (REDE 18 OFFICIAL)
   ========================================================================== */

/* DESKTOP VIEW (Width >= 1151px): Exibe TODOS os links na barra superior */
@media (min-width: 1151px) {
  .nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 0.30rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .nav-links li a {
    white-space: nowrap !important;
  }

  .mobile-toggle {
    display: none !important;
  }
  
  .mobile-drawer, .overlay {
    display: none !important;
  }
}

/* MOBILE & TABLET VIEW (Width <= 1150px): Esconde a barra e exibe o Hambúrguer ☰ */
@media (max-width: 1150px) {
  .nav-links {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 1.6rem !important;
    color: var(--bg-dark) !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0.25rem !important;
  }

  .mobile-drawer {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 320px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    background: #0f172a !important;
    color: #ffffff !important;
    z-index: 2000 !important;
    padding: 1.75rem 1.25rem !important;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5) !important;
    overflow-y: auto !important;
  }

  .mobile-drawer.active {
    right: 0 !important;
  }

  .drawer-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-bottom: 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    margin-bottom: 1.25rem !important;
  }

  .drawer-links {
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.6rem !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .drawer-links a {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.85rem 1rem !important;
    color: #f8fafc;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
  }

  .drawer-links a:hover, .drawer-links a:active {
    background: rgba(255, 255, 255, 0.18) !important;
    opacity: 0.9;
  }

  .overlay {
    display: none;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.65) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    z-index: 1999 !important;
  }

  .overlay.active {
    display: block !important;
  }
}

/* ==========================================================================
   ANTI-TEXT CLIPPING & MOBILE RESPONSIVE HERO GRID ENGINE
   ========================================================================== */

/* Regras de Grid Responsivas Globais */
.hero-responsive-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.grid-3col-responsive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  width: 100%;
}

.grid-4col-responsive {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

/* QUEBRA DE TEXTO OBRIGATORIA EM MOBILE (Previne texto cortado na borda direita) */
@media (max-width: 992px) {
  .hero-responsive-grid,
  .grid-3col-responsive,
  .grid-4col-responsive,
  .explain-grid,
  .bacias-grid,
  .members-grid,
  .pautas-grid,
  .videos-grid,
  .partners-grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
    width: 100% !important;
  }

  /* Previne corte lateral em caixas verdes, heroes e cards */
  .hero,
  .germana-hero,
  .bartiria-hero,
  .zeluis-hero,
  .jevan-hero,
  .hero-text,
  .germana-hero-text,
  .section-header,
  .container {
    box-sizing: border-box !important;
    max-width: 100vw !important;
    width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    overflow-x: hidden !important;
  }

  p, h1, h2, h3, h4, h5, span, div, a {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: normal !important;
    hyphens: auto !important;
    max-width: 100% !important;
  }

  .germana-hero p,
  .hero p,
  .bartiria-hero p,
  .zeluis-hero p,
  .jevan-hero p {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }

  .cats-badge, .badge {
    white-space: normal !important;
    display: inline-flex !important;
    max-width: 100% !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.1rem !important;
  }
  h2 {
    font-size: 1.75rem !important;
  }
  .hero-ctas, .germana-hero .btn-primary {
    flex-direction: column !important;
    width: 100% !important;
  }
  .btn-primary, .btn-outline, .btn-zap {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ==========================================================================
   VIEWPORT SWITCHER WIDGET - REMOVIDO / TOTALMENTE DESATIVADO
   ========================================================================== */
.viewport-switch-btn,
.device-indicator-badge,
#deviceIndicatorBadge,
#globalViewportSwitchBtn,
.device-toggle-btn {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

/* SIMULADOR MOBILE INLINE EM NAVEGADOR DESKTOP (375px iPhone Viewport) */
html.simulate-mobile-viewport {
  background: #090d16 !important;
  overflow-x: hidden !important;
}

html.simulate-mobile-viewport body {
  max-width: 375px !important;
  margin: 30px auto 60px auto !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 12px #1e293b !important;
  border-radius: 36px !important;
  overflow-x: hidden !important;
  position: relative !important;
  min-height: 100vh !important;
  background: white !important;
}

/* iPhone Top Notch Simulation Bar */
html.simulate-mobile-viewport body::before {
  content: '📱 Simulação Mobile (375px iPhone Viewport)';
  display: block;
  background: #0f172a;
  color: #22c55e;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 8px 12px;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #22c55e;
}

/* Forçar visualização mobile nas regras de grid e navegação */
html.simulate-mobile-viewport .nav-links {
  display: none !important;
}

html.simulate-mobile-viewport .mobile-toggle {
  display: block !important;
}

html.simulate-mobile-viewport .hero-responsive-grid,
html.simulate-mobile-viewport .grid-3col-responsive,
html.simulate-mobile-viewport .grid-4col-responsive,
html.simulate-mobile-viewport .explain-grid,
html.simulate-mobile-viewport .bacias-grid,
html.simulate-mobile-viewport .members-grid,
html.simulate-mobile-viewport .pautas-grid,
html.simulate-mobile-viewport .videos-grid,
html.simulate-mobile-viewport .partners-grid {
  grid-template-columns: 1fr !important;
  gap: 1.5rem !important;
  width: 100% !important;
}

html.simulate-mobile-viewport .topbar-content,
html.simulate-mobile-viewport .nav-container,
html.simulate-mobile-viewport .container {
  box-sizing: border-box !important;
  width: 100% !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

/* FORÇAR EXIBIÇÃO DO DRAWER E OVERLAY NO MODO SIMULADO MESMO EM TELAS LARGAS */
html.simulate-mobile-viewport .mobile-drawer {
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  right: -100% !important;
  width: 300px !important;
  max-width: 85% !important;
  height: 100% !important;
  background: #0f172a !important;
  color: #ffffff !important;
  z-index: 200000 !important;
  padding: 1.75rem 1.25rem !important;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5) !important;
  overflow-y: auto !important;
}

html.simulate-mobile-viewport .mobile-drawer.active {
  right: 0 !important;
}

html.simulate-mobile-viewport .overlay {
  display: none !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(4px) !important;
  z-index: 199999 !important;
}

html.simulate-mobile-viewport .overlay.active {
  display: block !important;
}

/* ==========================================================================
   PERFECT MOBILE TYPOGRAPHY & TIMELINE LAYOUT CORRECTIONS (UX/UI PRO MAX)
   ========================================================================== */

/* 1. Reset Global de Transbordamento & Word Wrapping */
html, body {
  overflow-x: clip !important;
  max-width: 100vw !important;
  width: 100% !important;
}

*, *::before, *::after {
  box-sizing: border-box;
}

p, span, h1, h2, h3, h4, h5, h6, a, li, td, th, div {
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

/* 2. Media Queries de Responsividade Global para Grids e Layouts */
@media (max-width: 992px) {
  .hero-grid,
  .hero-responsive-grid,
  .explain-grid,
  .members-grid,
  .gallery-grid,
  .endorsements-grid,
  .pautas-grid,
  .videos-grid,
  .partners-grid,
  .bacias-grid,
  .dimensoes-grid,
  .footer-grid,
  div[style*="display: grid"],
  div[style*="display:grid"],
  section[style*="display: grid"],
  section[style*="display:grid"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  /* Container Padding */
  .container {
    padding-left: 1.15rem !important;
    padding-right: 1.15rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Hero Adjustments */
  .hero, .zeluis-hero, .jevan-hero, .bartiria-hero, .germana-hero, .enilde-hero {
    padding: 3rem 0 3.5rem 0 !important;
  }

  .hero-title, .hero h1, h1 {
    font-size: 1.95rem !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
  }

  .hero-subtitle {
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }

  .hero-ctas {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.85rem !important;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline,
  .hero-ctas > div {
    width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center !important;
  }

  /* Gallery Grid Fix (Corrige 4 colunas espremidas para 1 coluna limpa no celular) */
  .gallery-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    width: 100% !important;
  }

  .gallery-grid > div {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Members Grid (Corrige 3 colunas espremidas para 1 coluna vertical) */
  .members-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    width: 100% !important;
  }

  .member-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Timeline Fix (Corrige o empurrão de 50% que jogava conteúdo para fora da tela) */
  .story-timeline {
    padding: 0.5rem 0 !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .story-timeline::before {
    left: 18px !important;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100% !important;
    left: 0 !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 3rem !important;
    padding-right: 0 !important;
    margin-bottom: 1.5rem !important;
    box-sizing: border-box !important;
    justify-content: flex-start !important;
    align-self: flex-start !important;
  }

  .timeline-dot,
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 6px !important;
    right: auto !important;
    top: 6px !important;
    width: 24px !important;
    height: 24px !important;
  }

  .timeline-content {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    padding: 1.15rem !important;
  }

  /* Seções de Título & Cabeçalhos */
  .section-header h2, h2 {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
  }

  .section-header p {
    font-size: 0.95rem !important;
  }

  /* Carta DF Quote Box */
  .carta-df-box {
    padding: 1.75rem 1.25rem !important;
  }

  .carta-quote-principal {
    font-size: 1.1rem !important;
    padding: 1.15rem !important;
    margin: 1.25rem 0 !important;
  }

  /* Cards no Hero & Legal */
  .hero-card-preview, .legal-card, .zeluis-profile-card, .jevan-profile-card {
    padding: 1.25rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Fotos e Frames de Imagem */
  .photo-frame img, .hero-card-preview img {
    height: auto !important;
    max-height: 380px !important;
  }
}

@media (max-width: 480px) {
  .hero-title, .hero h1, h1 {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
  }

  .section-header h2, h2 {
    font-size: 1.4rem !important;
  }

  h3 {
    font-size: 1.15rem !important;
  }

  .badge {
    font-size: 0.75rem !important;
    padding: 0.35rem 0.75rem !important;
    white-space: normal !important;
  }

  #waSticky {
    bottom: 1rem !important;
    right: 1rem !important;
    padding: 0.6rem 1rem !important;
    font-size: 1.16rem !important; font-weight: 800 !important;
  }
}

/* Redes Sociais Pílula no Mobile */
@media (max-width: 768px) {
  .social-pills-grid {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
  }
  .social-pill-btn {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0.9rem 1.25rem !important;
    font-size: 0.95rem !important;
    box-sizing: border-box !important;
  }
}

/* Dropdown Menu "Conheça os Membros do Coletivo" */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown .dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: white;
  border-radius: var(--radius-md, 8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--border-light, #e2e8f0);
  border-top: 4px solid var(--primary-green, #008744);
  padding: 0.5rem 0;
  z-index: 1000;
  list-style: none;
  margin-top: 0.35rem;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  display: block;
}

.nav-dropdown .dropdown-menu li {
  margin: 0;
  width: 100%;
  display: block;
}

.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 0.65rem 1.15rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f1f5f9;
  text-align: left;
}

.nav-dropdown .dropdown-menu li:last-child a {
  border-bottom: none;
}

.nav-dropdown .dropdown-menu a:hover {
  background: #f8fafc;
  padding-left: 1.4rem;
}

.nav-dropdown .dropdown-menu small {
  display: block;
  font-size: 0.725rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 2px;
}


/* Fix for Dropdown Menu Visibility over Navbar */
header, .header, nav, .navbar, .nav-container, .header-content, .nav-desktop, .nav-links {
  overflow: visible !important;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  background: white !important;
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  border: 1px solid #e2e8f0;
  border-top: 4px solid #008744;
  padding: 0.5rem 0;
  z-index: 99999 !important;
  list-style: none;
  margin-top: 0.25rem;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  display: block !important;
}


/* REDE Sustentabilidade Official Brand Gradient Text */
/* REDE Sustentabilidade Official Brand Gradient Text (Verde -> Ciano -> Azul -> Laranja -> Ouro) */
.rede-gradient-text {
  background: linear-gradient(90deg, #008744 0%, #0d9488 25%, #0284c7 50%, #FF8A00 75%, #FFB703 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  font-weight: 900 !important;
}

.nav-dropdown .dropdown-toggle.rede-gradient-text i.fa-users {
  -webkit-text-fill-color: initial !important;
  color: #008744 !important;
}

.nav-dropdown .dropdown-toggle.rede-gradient-text i.fa-chevron-down {
  -webkit-text-fill-color: initial !important;
  color: #FF8A00 !important;
  font-weight: 900 !important;
}

/* Utilitário para Laranja de Alto Contraste em Fundo Verde/Escuro */
/* Utilitário para Laranja de Alto Contraste apenas em seções escuras */
.section-dark .text-orange-high-contrast {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}


/* Garantia de Nitidez Impecável e Zero Sombreamento nos Links do Cabeçalho */
.nav-links a,
.navbar a,
.nav-container a,
.nav-dropdown a,
.dropdown-toggle {
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
  filter: none !important;
  box-shadow: none !important;
}

/* Dropdown Menu Início Especial (Zero Scrollbars & Clean View) */
.nav-dropdown .dropdown-menu-inicio {
  min-width: 320px !important;
  border-top: 4px solid #D97706 !important;
  max-height: none !important;
  overflow: visible !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.nav-dropdown .dropdown-menu-inicio::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.nav-dropdown .dropdown-menu-inicio a {
  padding: 0.55rem 1rem !important;
}

.nav-dropdown .dropdown-menu-inicio a:hover {
  background: #fffbeb !important;
  padding-left: 1.25rem !important;
}

/* Dropdown Menu 18 Compromissos Especial (Zero Scrollbars & Clean View) */
.nav-dropdown .dropdown-menu-compromissos {
  min-width: 330px !important;
  border-top: 4px solid #ea580c !important;
  max-height: none !important;
  overflow: visible !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.nav-dropdown .dropdown-menu-compromissos::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.nav-dropdown .dropdown-menu-compromissos a {
  padding: 0.55rem 1rem !important;
}

.nav-dropdown .dropdown-menu-compromissos a:hover {
  background: #fff7ed !important;
  padding-left: 1.25rem !important;
}

/* Dropdown Menu Prova Social & Mérito Especial (Zero Scrollbars & Clean View) */
.nav-dropdown .dropdown-menu-prova-social {
  min-width: 310px !important;
  border-top: 4px solid #B45309 !important;
  max-height: none !important;
  overflow: visible !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.nav-dropdown .dropdown-menu-prova-social::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.nav-dropdown .dropdown-menu-prova-social a {
  padding: 0.55rem 1rem !important;
}

.nav-dropdown .dropdown-menu-prova-social a:hover {
  background: #fffbeb !important;
  padding-left: 1.25rem !important;
}

/* Global Zero-Scrollbar Rules for Header & Navigation */
header, .header, nav, .navbar, .nav-container, .header-content, .nav-desktop, .nav-links, .nav-dropdown, .dropdown-menu {
  overflow: visible !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

header::-webkit-scrollbar,
.header::-webkit-scrollbar,
nav::-webkit-scrollbar,
.navbar::-webkit-scrollbar,
.nav-container::-webkit-scrollbar,
.nav-links::-webkit-scrollbar,
.dropdown-menu::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Scroll Offset Global para Navegação Suave sem Sobreposição do Header */
section[id], div[id] {
  scroll-margin-top: 95px;
}

/* Proporções & Fluidez dos Thumbnails de Vídeo */
.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #0f172a;
}

.video-thumb img.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.video-card:hover .video-thumb img.thumb-img,
.video-thumb:hover img.thumb-img {
  transform: scale(1.05);
}

/* Camada de Proteção de Z-Index para Drawer e Modais */
.mobile-drawer {
  z-index: 99999 !important;
}

.overlay {
  z-index: 99998 !important;
}

/* ====================================================
   DRAWER MOBILE ACCORDION (SUB-MENUS RECOLHÍVEIS)
   ==================================================== */
.drawer-accordion-btn {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  color: white !important;
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease;
  margin: 0.4rem 0 !important;
  font-family: inherit;
}

.drawer-accordion-btn:hover,
.drawer-accordion-btn.active {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: var(--accent-gold) !important;
}

.drawer-accordion-btn .accordion-chevron {
  font-size: 0.8rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--accent-gold);
}

.drawer-accordion-btn.active .accordion-chevron {
  transform: rotate(180deg);
}

.drawer-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 0.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.18);
  margin-left: 0.5rem;
  margin-bottom: 0.4rem;
}

.drawer-accordion-content.open {
  max-height: 800px;
  opacity: 1;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.drawer-accordion-content a {
  padding: 0.45rem 0.75rem !important;
  font-size: 0.88rem !important;
  border-radius: 6px;
  transition: background 0.2s ease, padding-left 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.drawer-accordion-content a:hover {
  background: rgba(255, 255, 255, 0.08);
  padding-left: 1rem !important;
}






/* ====================================================
   SISTEMA DE PROPORÇÕES & HARMONIA FULL HD (1920x1080)
   ==================================================== */
@media (min-width: 1024px) {
  /* Alinhamento Óptico Central em Monitores Desktop & Laptops */
  .container {
    max-width: 1200px !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .topbar-content,
  .footer-grid,
  .hero-grid {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .navbar .nav-container {
    max-width: 1360px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Grids Equilibrados em 3 Colunas Perfeitas */
  .members-grid,
  .grid-3col-responsive,
  .pautas-grid,
  .video-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.5rem !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Grid da Galeria de Fotos em 3 Colunas Harmoniosas */
  .gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.25rem !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Tabela Comparativa & Player Centralizados */
  .compare-table {
    max-width: 1050px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Limite de Linha de Leitura Confortável (Evita Textos Muito Longos) */
  .section-header {
    max-width: 780px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-subtitle,
  .manifesto-hero p,
  .legal-hero p,
  .prova-social-hero p {
    max-width: 720px !important;
  }

  /* Cards com Alturas Homogêneas */
  .member-card,
  .pauta-card,
  .video-card,
  .cert-card,
  .compromisso-card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .member-body,
  .video-info {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
  }

  .member-card .btn-primary,
  .video-card .btn-video-card {
    margin-top: auto !important;
  }
}

/* ==========================================================================
   IDENTIDADE VISUAL DRA. GERMANA LOPES (LILÁS + VERDE REDE 18 + DOURADO)
   ========================================================================== */
.germana-hero {
  background: linear-gradient(135deg, #2e1065 0%, #3b0764 35%, #064e3b 70%, #0f172a 100%) !important;
  color: #ffffff !important;
  border-bottom: 4px solid #FFB703 !important;
  position: relative !important;
  padding: 4.5rem 0 4rem 0 !important;
}

.germana-hero h1 {
  color: #ffffff !important;
}

.germana-hero p {
  color: #f8fafc !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

.badge-germana-gold {
  background: rgba(245, 158, 11, 0.25) !important;
  color: #fde047 !important;
  border: 1.5px solid rgba(253, 224, 71, 0.6) !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
}

.badge-germana-lilas {
  background: rgba(168, 85, 247, 0.28) !important;
  color: #f3e8ff !important;
  border: 1.5px solid rgba(192, 132, 252, 0.65) !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
}

.badge-germana-green {
  background: rgba(0, 135, 68, 0.32) !important;
  color: #86efac !important;
  border: 1.5px solid rgba(134, 239, 172, 0.65) !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
}

.badge-germana-blue {
  background: rgba(2, 132, 199, 0.32) !important;
  color: #7dd3fc !important;
  border: 1.5px solid rgba(125, 211, 252, 0.65) !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
}

.badge-germana-rose {
  background: rgba(225, 29, 72, 0.28) !important;
  color: #fbcfe8 !important;
  border: 1.5px solid rgba(244, 114, 182, 0.65) !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
}

/* ====================================================
   ESTRELA DA CAMPANHA: NÚMERO 18123 EM ALTO DESTAQUE
   ==================================================== */
.numero-destaque-18123 {
  font-family: 'Outfit', 'Montserrat', 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.28em !important;
  color: #FFE600 !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF855 20%, #FFE600 58%, #FFAC1C 85%, #EA580C 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  letter-spacing: 1.5px !important;
  filter: 
    drop-shadow(0.65px 0px 0px #ea580c) 
    drop-shadow(-0.65px 0px 0px #ea580c) 
    drop-shadow(0px 0.65px 0px #ea580c) 
    drop-shadow(0px -0.65px 0px #ea580c) 
    drop-shadow(0 2px 3px rgba(0, 0, 0, 0.35)) !important;
}

/* ====================================================
   FONTE HARMONIZADA (-25%) NA ABA DE NAVEGAÇÃO
   ==================================================== */
.navbar .nav-container {
  max-width: 1600px !important;
  width: 100% !important;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.nav-links {
  gap: 0.30rem !important;
}

.nav-links a,
.nav-links li a,
.nav-dropdown .dropdown-toggle,
.navbar .nav-links a {
  font-size: 0.74rem !important; /* -25% proporcional para encaixe perfeito e harmonia visual */
  font-weight: 800 !important;
  letter-spacing: -0.05px !important;
  padding: 0.25rem 0.30rem !important;
  white-space: nowrap !important;
}

.nav-links a i,
.nav-dropdown .dropdown-toggle i:not(.fa-chevron-down) {
  font-size: 0.82rem !important;
  margin-right: 2px !important;
}

.nav-dropdown .dropdown-toggle i.fa-chevron-down {
  font-size: 0.55rem !important;
  margin-left: 2px !important;
}


/* ==========================================================================
   HERO CAMPAIGN BANNER (2-LINE OFFICIAL FORMAT: VOTE 18123)
   ========================================================================== */
.hero-campaign-banner {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.95) 0%, rgba(11, 19, 41, 0.98) 100%) !important;
  border: 2px solid #FFB703 !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 50px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45) !important;
  max-width: 100% !important;
  margin-bottom: 1.35rem !important;
}

.hero-campaign-banner .banner-icon {
  background: linear-gradient(135deg, #FFE600 0%, #FFB703 100%) !important;
  color: #064e3b !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35) !important;
  flex-shrink: 0 !important;
}

.hero-campaign-banner .banner-text-group {
  display: inline-flex !important;
  flex-direction: column !important;
  text-align: left !important;
  line-height: 1.2 !important;
  justify-content: center !important;
}

.hero-campaign-banner .banner-main-row {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.hero-campaign-banner .banner-main-text {
  color: #ffffff !important;
  font-size: 1.15rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.2px !important;
}

.hero-campaign-banner .banner-number-badge {
  font-size: 1.6rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  color: #FFE600 !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF855 20%, #FFE600 58%, #FFAC1C 85%, #EA580C 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  letter-spacing: 1px !important;
  filter: 
    drop-shadow(0.75px 0px 0px #ea580c) 
    drop-shadow(-0.75px 0px 0px #ea580c) 
    drop-shadow(0px 0.75px 0px #ea580c) 
    drop-shadow(0px -0.75px 0px #ea580c) 
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) !important;
}

.hero-campaign-banner .banner-sub-line {
  color: #4ade80 !important;
  font-size: 0.825rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  margin-top: 2px !important;
}

@media (max-width: 580px) {
  .hero-campaign-banner {
    border-radius: 16px !important;
    padding: 0.65rem 0.9rem !important;
  }
  .hero-campaign-banner .banner-main-text {
    font-size: 1rem !important;
  }
  .hero-campaign-banner .banner-number-badge {
    font-size: 1.25rem !important;
  }
  .hero-campaign-banner .banner-sub-line {
    font-size: 0.75rem !important;
  }
}


/* ==========================================================================
   HERO RESPONSIVE GRID - STRICT TOP ALIGNMENT (BARTÍRIA MODEL STANDARD)
   ========================================================================== */
.hero-responsive-grid,
.hero-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr !important;
  gap: 2.5rem !important;
  align-items: start !important;
  width: 100% !important;
}

.hero-responsive-grid > div:first-child,
.hero-grid > div:first-child,
.hero-text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-responsive-grid > div:first-child > .hero-campaign-banner,
.hero-grid > div:first-child > .hero-campaign-banner,
.hero-text > .hero-campaign-banner {
  margin-top: 0 !important;
}

.germana-profile-card,
.zeluis-profile-card,
.jevan-profile-card,
.marcilio-profile-card,
.hero-card-preview {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.photo-frame {
  margin-top: 0 !important;
}

@media (max-width: 991px) {
  .hero-responsive-grid,
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* Navbar 7 Tabs Responsive Tuning */
@media (min-width: 1151px) and (max-width: 1366px) {
  .navbar .nav-container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .nav-logo-img {
    height: 35px !important;
    max-height: 35px !important;
  }
  .nav-logo-rede {
    height: 28px !important;
    max-height: 28px !important;
  }
  .nav-logo {
    gap: 0.35rem !important;
  }
  .nav-links {
    gap: 0.16rem !important;
  }
  .nav-links a,
  .nav-links li a,
  .nav-dropdown .dropdown-toggle,
  .navbar .nav-links a {
    font-size: 0.67rem !important;
    letter-spacing: -0.2px !important;
    padding: 0.16rem 0.18rem !important;
  }
  .nav-links a i,
  .nav-dropdown .dropdown-toggle i:not(.fa-chevron-down) {
    font-size: 0.72rem !important;
  }
  .nav-dropdown .dropdown-toggle i.fa-chevron-down {
    font-size: 0.46rem !important;
  }
}

@media (min-width: 1367px) and (max-width: 1536px) {
  .navbar .nav-container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .nav-links {
    gap: 0.25rem !important;
  }
  .nav-links a,
  .nav-links li a,
  .nav-dropdown .dropdown-toggle,
  .navbar .nav-links a {
    font-size: 0.73rem !important;
    letter-spacing: -0.1px !important;
    padding: 0.22rem 0.26rem !important;
  }
  .nav-links a i,
  .nav-dropdown .dropdown-toggle i:not(.fa-chevron-down) {
    font-size: 0.80rem !important;
  }
  .nav-dropdown .dropdown-toggle i.fa-chevron-down {
    font-size: 0.52rem !important;
  }
}

@media (min-width: 1537px) {
  .nav-links {
    gap: 0.35rem !important;
  }
  .nav-links a,
  .nav-links li a,
  .nav-dropdown .dropdown-toggle,
  .navbar .nav-links a {
    font-size: 0.78rem !important;
    letter-spacing: 0px !important;
    padding: 0.28rem 0.32rem !important;
  }
  .nav-links a i,
  .nav-dropdown .dropdown-toggle i:not(.fa-chevron-down) {
    font-size: 0.86rem !important;
  }
  .nav-dropdown .dropdown-toggle i.fa-chevron-down {
    font-size: 0.58rem !important;
  }
}

/* ==========================================================================
   SEÇÃO POR QUE VOTAR NO COLETIVO NOSSA GENTE (CONVERSÃO & MANIFESTO POPULAR)
   ========================================================================== */
.por-que-votar-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #090d16 0%, #022c22 40%, #064e3b 80%, #090d16 100%);
  border-top: 4px solid var(--accent-gold);
  border-bottom: 4px solid var(--primary-green);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.por-que-votar-box {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(255, 183, 3, 0.35);
  border-radius: 24px;
  padding: 3.25rem 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  position: relative;
}

.por-que-votar-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
}

.por-que-votar-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
  margin-top: 0.85rem;
  margin-bottom: 1rem;
}

.por-que-votar-lead {
  font-size: 1.12rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.por-que-votar-intro-card {
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.45) 0%, rgba(15, 23, 42, 0.65) 100%);
  border-left: 5px solid var(--accent-gold);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 2.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #f1f5f9;
}

.por-que-votar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.por-que-votar-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.por-que-votar-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

.por-que-votar-card-icon {
  font-size: 1.85rem;
  margin-bottom: 0.85rem;
  display: inline-block;
}

.por-que-votar-card h4 {
  font-size: 1.12rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.por-que-votar-card p {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.por-que-votar-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 992px) {
  .por-que-votar-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .por-que-votar-box {
    padding: 2rem 1.25rem !important;
  }
  .por-que-votar-title {
    font-size: 1.7rem !important;
  }
  .por-que-votar-lead {
    font-size: 0.98rem !important;
  }
}

/* ==========================================================================
   ESTILO OFICIAL DO NÚMERO DA CAMPANHA (18.123 DOURADO PURO SEM RANHURAS)
   ========================================================================== */
.numero-campanha-gold,
.numero-18123-gold {
  font-family: 'Outfit', 'Montserrat', 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.12em !important;
  color: #FFE600 !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF855 20%, #FFE600 58%, #FFAC1C 85%, #EA580C 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  letter-spacing: 0.4px !important;
  filter: 
    drop-shadow(0.6px 0px 0px #ea580c) 
    drop-shadow(-0.6px 0px 0px #ea580c) 
    drop-shadow(0px 0.6px 0px #ea580c) 
    drop-shadow(0px -0.6px 0px #ea580c) 
    drop-shadow(0 1.5px 2px rgba(0, 0, 0, 0.35)) !important;
}

.banner-number-badge {
  font-family: 'Outfit', 'Montserrat', 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.6rem !important;
  line-height: 1 !important;
  color: #FFE600 !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF855 20%, #FFE600 58%, #FFAC1C 85%, #EA580C 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  letter-spacing: 0.5px !important;
  filter: 
    drop-shadow(0.75px 0px 0px #ea580c) 
    drop-shadow(-0.75px 0px 0px #ea580c) 
    drop-shadow(0px 0.75px 0px #ea580c) 
    drop-shadow(0px -0.75px 0px #ea580c) 
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45)) !important;
}

.btn-zap .numero-campanha-gold,
.btn-primary .numero-campanha-gold,
.por-que-votar-actions .numero-campanha-gold {
  font-size: 1.15em !important;
  white-space: nowrap !important;
  margin-left: 2px !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF966 22%, #FFE600 60%, #FFB703 85%, #F97316 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: 
    drop-shadow(0.6px 0px 0px #c2410c) 
    drop-shadow(-0.6px 0px 0px #c2410c) 
    drop-shadow(0px 0.6px 0px #c2410c) 
    drop-shadow(0px -0.6px 0px #c2410c) 
    drop-shadow(0 1.5px 2px rgba(0, 0, 0, 0.4)) !important;
}

/* ==========================================================================
   DIAGRAMAÇÃO E ALINHAMENTO HARMONIZADO DE BOTÕES CTA & WHATSAPP
   ========================================================================== */
.btn-zap,
.btn-whatsapp,
.btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 0.65rem !important;
  line-height: 1.35 !important;
}

/* ==========================================================================
   CARDS DE FEED ELEITORAL DO INSTAGRAM — DRA. BARTÍRIA MONTEIRO (@BARTIRIA.ADV)
   ========================================================================== */
.feed-insta-card {
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease !important;
}

.feed-insta-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 30px rgba(0, 135, 68, 0.15) !important;
  border-color: rgba(22, 163, 74, 0.45) !important;
}

.feed-insta-card:hover img {
  transform: scale(1.03) !important;
}

/* ==========================================================================
   BARRA DE COMPARTILHAMENTO DE FOTOS & ÍCONES SOCIAIS (WHATSAPP, FACEBOOK, X)
   ========================================================================== */
.photo-share-bar a {
  min-height: 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.2s ease, opacity 0.2s ease !important;
}

.photo-share-bar a:hover {
  transform: scale(1.06) !important;
  opacity: 0.95 !important;
}

.fa-x-twitter {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  display: inline-block !important;
  line-height: 1 !important;
}

/* ==========================================================================
   MOSAICO DE STORIES DO INSTAGRAM — DRA. BARTÍRIA MONTEIRO (@BARTIRIA_BRITO)
   ========================================================================== */
.stories-mosaic-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: 0 10px 35px rgba(225, 48, 108, 0.08);
  border: 2px solid rgba(225, 48, 108, 0.2);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.stories-avatar-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: pulse-ring 2.5s infinite;
  flex-shrink: 0;
}

.stories-avatar-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
}

@keyframes pulse-ring {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.5); }
  70% { transform: scale(1.04); box-shadow: 0 0 0 8px rgba(225, 48, 108, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(225, 48, 108, 0); }
}

.stories-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.15rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .stories-mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

@media (max-width: 480px) {
  .stories-mosaic-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.85rem;
    gap: 0.75rem;
    -webkit-overflow-scrolling: touch;
  }
  .story-mosaic-card {
    min-width: 160px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}

.story-mosaic-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  background: #0f172a;
}

.story-mosaic-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 35px rgba(225, 48, 108, 0.3);
  border-color: #e1306c;
}

.story-mosaic-card img,
.story-mosaic-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.story-mosaic-card:hover img {
  transform: scale(1.06);
}

.story-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.2) 50%, rgba(15, 23, 42, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 0.85rem;
  color: #ffffff;
  z-index: 2;
}

.story-header-info {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.story-mini-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  object-fit: cover;
}

.story-author {
  font-size: 0.75rem;
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.story-time-badge {
  font-size: 0.65rem;
  color: #cbd5e1;
  font-weight: 600;
}

.story-play-indicator {
  align-self: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(225, 48, 108, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  opacity: 0.85;
  transition: transform 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.story-mosaic-card:hover .story-play-indicator {
  transform: scale(1.15);
  opacity: 1;
  background: #e1306c;
}

.story-footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.story-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(225, 48, 108, 0.3);
  border: 1px solid rgba(225, 48, 108, 0.6);
  color: #fbcfe8;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.story-title {
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.story-location {
  font-size: 0.7rem;
  color: #fbbf24;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ==========================================================================
   MODAL DO VIEWER DE STORIES INTERATIVO (INSTAGRAM STORIES PLAYER)
   ========================================================================== */
.stories-viewer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.stories-viewer-backdrop.active {
  display: flex;
  opacity: 1;
}

.stories-viewer-phone {
  width: 100%;
  max-width: 410px;
  height: 88vh;
  max-height: 820px;
  background: #000000;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
}

.stories-viewer-progress-container {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 5px;
  z-index: 10;
}

.story-progress-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 3px;
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}

.story-progress-fill {
  height: 100%;
  background: #ffffff;
  width: 0%;
}

.stories-viewer-header {
  position: absolute;
  top: 24px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  color: white;
  padding-top: 4px;
}

.stories-viewer-user {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.stories-viewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #e1306c;
  object-fit: cover;
}

.stories-viewer-media-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stories-viewer-media-wrapper img,
.stories-viewer-media-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stories-nav-touch-left,
.stories-nav-touch-right {
  position: absolute;
  top: 60px;
  bottom: 120px;
  width: 40%;
  z-index: 5;
  cursor: pointer;
}

.stories-nav-touch-left { left: 0; }
.stories-nav-touch-right { right: 0; }

.stories-viewer-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
  padding: 1.5rem 1.25rem 1.25rem 1.25rem;
  z-index: 10;
  color: white;
}

.stories-viewer-close-btn {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.stories-viewer-close-btn:hover {
  background: rgba(225, 48, 108, 0.8);
}





/* ==========================================================================
   SIMULADOR DE URNA ELETRÔNICA INTERATIVO 18.123 — COLETIVO NOSSA GENTE
   ========================================================================== */
.urna-wrapper {
  background: #f8fafc;
  border-radius: var(--radius-lg, 16px);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
  border: 2px solid #e2e8f0;
  max-width: 960px;
  margin: 0 auto;
}
.urna-case {
  background: #2b2f38;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: inset 0 2px 6px rgba(255,255,255,0.1), 0 15px 35px rgba(0,0,0,0.3);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  border: 4px solid #1e2229;
}
@media (max-width: 768px) {
  .urna-case {
    grid-template-columns: 1fr;
  }
}
.urna-screen {
  background: #f4f6f0;
  border: 3px solid #111;
  border-radius: 6px;
  padding: 1.2rem;
  font-family: 'Outfit', sans-serif;
  color: #111;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 3px 8px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.urna-screen-header {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #475569;
  border-bottom: 2px solid #cbd5e1;
  padding-bottom: 0.35rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.urna-cargo-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.urna-digits-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.urna-digit-box {
  width: 38px;
  height: 48px;
  border: 2px solid #1e293b;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #0f172a;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.urna-digit-box.active {
  border-color: #16a34a;
  animation: blink-border 1s infinite;
}
@keyframes blink-border {
  50% { border-color: transparent; }
}
.urna-candidate-preview {
  display: none;
  animation: fadeIn 0.3s ease forwards;
}
.urna-candidate-preview.active {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.urna-info-line {
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.35rem;
}
.urna-info-highlight {
  font-size: 1.05rem;
  font-weight: 900;
  color: #064e3b;
}
.urna-keypad {
  background: #1e2229;
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}
.urna-keypad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.urna-key-btn {
  background: #111827;
  color: white;
  border: 1px solid #374151;
  border-bottom: 4px solid #030712;
  border-radius: 6px;
  height: 48px;
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.05s, border-bottom-width 0.05s;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  user-select: none;
}
.urna-key-btn:active {
  transform: translateY(3px);
  border-bottom-width: 1px;
}
.urna-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.urna-action-btn {
  border: none;
  height: 46px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transition: transform 0.05s;
}
.urna-action-btn:active {
  transform: translateY(2px);
}
.urna-btn-branco { background: #f8fafc; color: #0f172a; border-bottom: 3px solid #cbd5e1; }
.urna-btn-corrige { background: #ea580c; color: white; border-bottom: 3px solid #9a3412; }
.urna-btn-confirma { background: #16a34a; color: white; border-bottom: 3px solid #14532d; font-size: 0.82rem; }


/* ==========================================================================
   SELETOR TERRITORIAL INTERATIVO DAS RAs — COLETIVO NOSSA GENTE
   ========================================================================== */
.ra-pills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.ra-pill-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.6rem 1.15rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.ra-pill-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  transform: translateY(-2px);
}
.ra-pill-btn.active {
  background: linear-gradient(135deg, #16a34a, #059669);
  color: white;
  border-color: #4ade80;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
}
.ra-display-card {
  display: none;
  animation: fadeIn 0.35s ease forwards;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg, 16px);
  padding: clamp(1.25rem, 3vw, 2rem);
  backdrop-filter: blur(10px);
  text-align: left;
}
.ra-display-card.active {
  display: block;
}


/* ==========================================================================
   GERADOR INTERATIVO DE SANTINHO DIGITAL 9:16 — CANVAS DESIGN
   ========================================================================== */
.santinho-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg, 16px);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 10px 35px rgba(0, 135, 68, 0.08);
  border: 2px solid rgba(22, 163, 74, 0.25);
  max-width: 1000px;
  margin: 0 auto;
}
.santinho-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 820px) {
  .santinho-grid {
    grid-template-columns: 1fr;
  }
}
.santinho-preview-box {
  background: #0f172a;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.santinho-canvas {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9/16;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  background: #064e3b;
  display: block;
}
.santinho-theme-btn {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 0.6rem;
}
.santinho-theme-btn:hover {
  border-color: #16a34a;
  background: #f0fdf4;
}
.santinho-theme-btn.active {
  border-color: #16a34a;
  background: #f0fdf4;
  box-shadow: 0 2px 10px rgba(22,163,74,0.15);
}


/* ==========================================================================
   MÓDULO DE MENSAGENS VIRAIS PRONTAS PARA WHATSAPP — VIRAL COPY FACTORY
   ========================================================================== */
.viral-msg-card {
  background: white;
  border-radius: var(--radius-md, 12px);
  padding: 1.35rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.viral-msg-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.viral-bubble {
  background: #f0fdf4;
  border-left: 4px solid #16a34a;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #1e293b;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-style: italic;
  white-space: pre-line;
}
.copy-btn-feedback {
  background: #0f172a;
  color: white;
  border: none;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: background 0.2s;
}
.copy-btn-feedback:hover {
  background: #334155;
}


/* ==========================================================================
   BANNER DE COMUNIDADE VIP DO WHATSAPP — ZERO FRICTION LEAD CAPTURE
   ========================================================================== */
.community-vip-box {
  background: linear-gradient(135deg, #064e3b 0%, #0f172a 100%);
  border: 2px solid #22c55e;
  border-radius: var(--radius-lg, 16px);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: 0 15px 40px rgba(6, 78, 59, 0.35);
  color: white;
  position: relative;
  overflow: hidden;
}
.community-vip-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.community-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}
.community-btn-pulse {
  background: #25d366;
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse-green 2.5s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.community-btn-pulse:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
}


/* ==========================================================================
   BARRA DE PÍLULAS DESLIZANTES (STICKY CHIP CAROUSEL BAR) — UI/UX MOBILE 2026
   ========================================================================== */
.quick-nav-bar {
  background: #ffffff;
  border-bottom: 2px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  position: sticky;
  top: var(--nav-height, 70px);
  z-index: 99;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}
.quick-nav-container {
  padding: 0 1rem;
}
.quick-nav-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding: 2px 0;
}
.quick-nav-scroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.quick-chip-btn {
  background: #f8fafc;
  color: #334155;
  border: 1px solid #cbd5e1;
  border-radius: 50px;
  padding: 0.45rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.quick-chip-btn:hover {
  background: #f0fdf4;
  color: #16a34a;
  border-color: #4ade80;
  transform: translateY(-1px);
}
.quick-chip-btn.active {
  background: #064e3b;
  color: #ffffff;
  border-color: #064e3b;
  box-shadow: 0 2px 8px rgba(6, 78, 59, 0.3);
}

/* ==========================================================================
   DROPDOWN & DRAWER EM GRADE CATEGORIZADA (APP-LIKE 3-BLOCK GRID)
   ========================================================================== */
.dropdown-menu-grid {
  min-width: 580px !important;
  padding: 1.25rem !important;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border: 2px solid #e2e8f0;
}
@media (max-width: 768px) {
  .dropdown-menu-grid {
    min-width: 100% !important;
    grid-template-columns: 1fr;
  }
}
.drawer-grid-block {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.85rem;
  margin-bottom: 0.75rem;
}
.drawer-grid-title {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #064e3b;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.3rem;
}
.drawer-grid-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
}
.drawer-grid-item-link {
  background: white;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 0.45rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.15s ease;
}
.drawer-grid-item-link:hover {
  background: #f0fdf4;
  border-color: #16a34a;
  color: #16a34a;
}


/* ==========================================================================
   MENU EM GRADE APP-LIKE (PADRÃO GOOGLE APPS / NUBANK / UBER) — 3 COLUNAS
   ========================================================================== */
.dropdown-menu-inicio {
  min-width: 480px !important;
  padding: 1.25rem !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18) !important;
  border: 2px solid #e2e8f0 !important;
  background: #ffffff !important;
}
@media (max-width: 768px) {
  .dropdown-menu-inicio {
    min-width: 100% !important;
  }
}
.app-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.app-grid-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.85rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: #1e293b !important;
  user-select: none;
}
.app-grid-card:hover {
  background: #ffffff;
  border-color: #16a34a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.15);
  color: #16a34a !important;
}
.app-grid-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
  transition: transform 0.2s ease;
}
.app-grid-card:hover .app-grid-icon-wrap {
  transform: scale(1.1);
}
.app-grid-title {
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  display: block;
}
.app-grid-card:hover .app-grid-title {
  color: #16a34a;
}


/* ==========================================================================
   FLOATING ACTION BUTTON (WHATSAPP FAB) - ALTA CONVERSÃO MOBILE & DESKTOP
   ========================================================================== */
.cng-whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  padding: 12px 22px 12px 18px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}
.cng-whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.65), 0 6px 14px rgba(0, 0, 0, 0.3);
  color: #ffffff !important;
}
.cng-whatsapp-fab:active {
  transform: scale(0.97);
}
.cng-whatsapp-fab i {
  font-size: 1.5rem;
  color: #ffffff;
  animation: pulse-cng-wa 2.2s infinite ease-in-out;
}
@keyframes pulse-cng-wa {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
@media (max-width: 640px) {
  .cng-whatsapp-fab {
    bottom: 18px;
    right: 18px;
    padding: 12px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    justify-content: center;
  }
  .cng-whatsapp-fab span {
    display: none;
  }
  .cng-whatsapp-fab i {
    font-size: 1.7rem;
    margin: 0;
  }
}


/* ==========================================================================
   RADAR DA NOSSA GENTE & COMPARTILHAMENTO VIRAL
   ========================================================================== */
.radar-pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  margin-bottom: 10px;
}
.radar-pill {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.radar-pill:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  color: #0f172a;
}
.radar-pill.active {
  background: #008744 !important;
  color: #ffffff !important;
  border-color: #008744 !important;
  box-shadow: 0 2px 6px rgba(0, 135, 68, 0.35);
}
.radar-protocolo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  border: 1px dashed #008744;
  color: #064e3b;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.cng-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: all 0.2s ease;
}
.cng-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}
