/*
Theme Name: Fábio Araújo - Campanha 2026
Theme URI: 
Author: Antigravity
Description: Tema de ALTO IMPACTO customizado para a campanha eleitoral de Fábio Araújo.
Version: 2.7
*/

:root {
  /* Paleta Refinada */
  --color-primary: #0D2B65; /* Azul Profundo / Premium */
  --color-primary-light: #1A3F6D;
  --color-secondary: #F1B000; /* Amarelo Vibrante */
  --color-secondary-hover: #D99F00;
  --color-white: #FFFFFF;
  --color-bg: #F8FAFC;
  --color-text: #334155;
  --color-text-light: #64748B;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(241, 176, 0, 0.4);
  
  --radius-md: 12px;
  --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.site-wrapper {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 800; color: var(--color-primary); }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }

/* UTILS */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section-title { font-size: 3rem; text-align: center; margin-bottom: 50px; text-transform: uppercase; letter-spacing: -1px; }
.section-title span { color: var(--color-secondary); }
.py-20 { padding: 100px 0; }

/* BOTOES */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 36px; font-size: 1.125rem; font-weight: 700; font-family: 'Outfit', sans-serif;
  text-transform: uppercase; letter-spacing: 1px; border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--color-secondary); color: var(--color-primary); box-shadow: var(--shadow-glow); }
.btn-primary:hover { background: var(--color-secondary-hover); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(241, 176, 0, 0.6); }
.btn-outline { background: transparent; border-color: var(--color-white); color: var(--color-white); }
.btn-outline:hover { background: var(--color-white); color: var(--color-primary); }

/* HEADER & MENU */
.main-header {
  position: absolute; width: 100%; top: 0; z-index: 999999;
  transition: 0.3s;
  background: rgba(13, 43, 101, 0.98); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.1);
}
/* Top Bar */
.top-bar {
  background: var(--color-primary); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar-flex { display: flex; justify-content: flex-end; align-items: center; }
.top-bar-text { font-size: 0.8rem; font-weight: 600; color: var(--color-secondary); text-transform: uppercase; letter-spacing: 1px; }

/* Ajuste automático quando a barra de admin do WordPress estiver visível */
body.admin-bar .main-header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .main-header { top: 46px; } }

.header-flex { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 10px; padding-bottom: 10px; }
.logo img { max-height: 65px; object-fit: contain; padding: 5px 0; }

.nav-links-container { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; gap: 25px; align-items: center; list-style: none; padding: 0; margin: 0; }
.nav-links li { position: relative; }
.nav-links a { 
  color: var(--color-white); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; 
  position: relative; padding-bottom: 5px;
}
/* Efeito de Hover Moderno no Menu (Linha que cresce) */
.nav-links a::after {
  content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0;
  background-color: var(--color-secondary); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--color-secondary); }

/* Sub-menus do WordPress (Dropdown) */
.nav-links ul.sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--color-primary); min-width: 200px;
  list-style: none; padding: 10px 0; margin: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-radius: var(--radius-sm);
  z-index: 1000;
}
.nav-links li:hover > ul.sub-menu { display: block; }
.nav-links ul.sub-menu li { padding: 0; display: block; }
.nav-links ul.sub-menu a {
  padding: 10px 20px; display: block; font-size: 0.85rem; text-transform: uppercase;
}
.nav-links ul.sub-menu a::after { display: none; }
.nav-links ul.sub-menu a:hover { background: rgba(255,255,255,0.05); }

/* Redes Sociais no Header */
.header-actions { display: flex; align-items: center; gap: 20px; }
.social-icons { display: flex; gap: 10px; }
.social-icons a { 
  color: var(--color-secondary); display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; background: rgba(0,0,0,0.1);
  transition: 0.3s;
}
.social-icons a:hover { background: var(--color-secondary); color: var(--color-primary); transform: translateY(-3px); }
.social-icons svg { width: 14px; height: 14px; fill: currentColor; }

.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

/* HERO SECTION (IMPACTO) */
.hero {
  position: relative; height: 800px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #051424 100%);
  display: flex; align-items: stretch; padding-top: 100px; overflow: hidden;
}
/* Detalhe de Fundo animado */
.hero::before {
  content: ''; position: absolute; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(0,0,0,0) 70%);
  top: -200px; right: -200px; border-radius: 50%;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; position: relative; z-index: 2; width: 100%;
}
.hero-content { align-self: center; margin-top: -150px; }
/* Animações de Entrada (Hero) */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.7); } to { opacity: 1; transform: scale(1); } }

.hero-subtitle { 
  color: var(--color-secondary); letter-spacing: 2px; text-transform: uppercase; 
  font-size: 1.3rem; font-weight: 800; margin-bottom: 5px; 
  animation: fadeInUp 0.8s ease backwards; animation-delay: 0.1s;
}
.hero-title { 
  font-size: 5.5rem; line-height: 0.85; font-family: 'Outfit', sans-serif; 
  color: var(--color-white); margin-bottom: 10px; text-transform: uppercase; 
  animation: fadeInUp 0.8s ease backwards; animation-delay: 0.3s;
}
@keyframes heartbeat {
  0% { transform: scale(1); }
  10% { transform: scale(1.08); }
  20% { transform: scale(1); }
  30% { transform: scale(1.08); }
  40% { transform: scale(1); }
  100% { transform: scale(1); }
}
.hero-number-box { 
    display: inline-block; background: transparent; color: var(--color-secondary);
    padding: 0; font-size: 10rem; font-weight: 900; font-family: 'Outfit';
    margin-bottom: 20px; border: none; box-shadow: none; line-height: 0.85;
    text-shadow: 0 10px 40px rgba(0,0,0,0.6);
    animation: scaleIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) backwards; animation-delay: 0.6s;
}
.hero-number-box span { display: inline-block; animation: heartbeat 3s infinite 1.5s; }
.hero-content .slogan { 
  font-size: 1.8rem; color: rgba(255,255,255,1); font-weight: 400; font-style: italic; 
  border-left: 5px solid var(--color-secondary); padding-left: 20px; 
  animation: fadeInUp 0.8s ease backwards; animation-delay: 0.9s; margin-bottom: 20px;
}

/* Nova Área de Ação (Apoiador) */
.hero-actions {
    background: rgba(0,0,0,0.25); padding: 25px; border-radius: var(--radius-md);
    border-left: 4px solid var(--color-secondary); backdrop-filter: blur(5px);
    animation: fadeInUp 0.8s ease backwards; animation-delay: 1.2s;
}
.hero-cta-text { color: rgba(255,255,255,0.9); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.5; }
.hero-cta-text strong { color: var(--color-secondary); font-size: 1.1rem; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-large { padding: 15px 30px; font-size: 1rem; flex: 1; text-align: center; }
@media(max-width: 768px){ 
  .hero-buttons { flex-direction: column; } 
  .hero-title { font-size: 4.5rem; } 
  .hero-number-box { font-size: 8rem; padding: 0; }
  .hero-content { margin-top: 0; }
}

.hero-image { position: relative; text-align: center; align-self: flex-end; transform: translateY(60px); }
.hero-image img { max-width: 95%; margin: 0 auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6)); position: relative; z-index: 2; display: block; }
.hero-image .shape { position: absolute; width: 100%; height: 80%; background: var(--color-secondary); bottom: 0; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; z-index: 1; opacity: 0.9; animation: morph 8s ease-in-out infinite; }

@keyframes morph {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
  67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

/* CARDS SOBREPOSTOS AO HERO (Destaques Rápidos) */
.hero-cards-wrapper { margin-top: -120px; position: relative; z-index: 10; padding-bottom: 40px; }
.hero-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.glass-card {
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
  padding: 40px 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--color-secondary); transition: 0.3s;
  animation: fadeInUp 0.8s ease backwards;
}
.glass-card:nth-child(1) { animation-delay: 1.5s; }
.glass-card:nth-child(2) { animation-delay: 1.7s; }
.glass-card:nth-child(3) { animation-delay: 1.9s; }
.glass-card:hover { transform: translateY(-10px); }
.glass-card h4 { font-size: 1.5rem; margin-bottom: 15px; }

/* SECAO: PROPOSTAS COMPLETAS (Carousel Animado) */
.propostas-section { background: var(--color-bg); padding: 60px 0 100px; position: relative; }
.carousel-wrapper { position: relative; display: flex; align-items: center; margin-top: 50px; }
.propostas-carousel { 
  display: flex; gap: 30px; overflow-x: auto; scroll-snap-type: x mandatory; 
  scroll-behavior: smooth; padding: 20px 5px; width: 100%;
  -ms-overflow-style: none; scrollbar-width: none; 
}
.propostas-carousel::-webkit-scrollbar { display: none; }

.proposta-card {
  flex: 0 0 380px; scroll-snap-align: center;
  background: var(--color-white); border-radius: var(--radius-md); padding: 30px;
  box-shadow: var(--shadow-sm); border-top: 5px solid var(--color-secondary);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor: grab;
}
.proposta-card:active { cursor: grabbing; }
.proposta-card:hover { box-shadow: var(--shadow-lg); transform: scale(1.02); }
.proposta-card h4 { font-size: 1.3rem; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.proposta-card h4 span { 
  background: var(--color-primary); color: var(--color-secondary); 
  min-width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; 
  border-radius: 50%; font-size: 1.1rem; font-family: 'Outfit'; 
}
.proposta-card ul { padding-left: 20px; color: var(--color-text-light); font-size: 0.95rem; margin-top: 15px; }
.proposta-card li { margin-bottom: 8px; }

/* Botoes do Carousel */
.carousel-btn {
  background: var(--color-primary); color: var(--color-secondary);
  border: none; width: 50px; height: 50px; border-radius: 50%;
  font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  position: absolute; z-index: 10; box-shadow: var(--shadow-lg); transition: 0.3s;
}
.carousel-btn:hover { background: var(--color-secondary); color: var(--color-primary); transform: scale(1.1); }
.carousel-btn.prev { left: -25px; }
.carousel-btn.next { right: -25px; }
@media(max-width: 768px){ 
  .carousel-btn { display: flex; opacity: 0.9; } 
  .carousel-btn.prev { left: 5px; } 
  .carousel-btn.next { right: 5px; }
  .proposta-card { flex: 0 0 100%; } 
}

/* SECAO: HISTORIA E TRAJETORIA */
.historia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.historia-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; position: relative; }
.historia-img img { width: 100%; display: block; }
.historia-img::after { content: ''; position: absolute; inset: 0; border: 4px solid var(--color-secondary); border-radius: var(--radius-lg); transform: translate(15px, 15px); z-index: -1; }
.historia-content p { font-size: 1.125rem; color: var(--color-text-light); margin-bottom: 20px; }

/* SECAO: ATUACAO PARLAMENTAR (Projetos, Emendas, Indicacoes) */
.atuacao-section { background-color: var(--color-primary); color: var(--color-white); }
.atuacao-section .section-title { color: var(--color-white); }
.atuacao-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.atuacao-card {
  background: var(--color-primary-light); padding: 40px; border-radius: var(--radius-md);
  text-align: center; border-bottom: 4px solid var(--color-secondary);
}
.atuacao-card .big-number { font-size: 4rem; font-family: 'Outfit'; font-weight: 900; color: var(--color-secondary); line-height: 1; margin-bottom: 10px; }

/* BANNER DE CAPTACAO */
.captacao-banner {
  background: var(--color-secondary); padding: 80px 20px; text-align: center; color: var(--color-primary);
}
.captacao-banner h2 { font-size: 3.5rem; margin-bottom: 20px; color: var(--color-primary); }
.captacao-banner p { font-size: 1.2rem; font-weight: 500; margin-bottom: 40px; max-width: 700px; margin-inline: auto; }
.btn-dark { background: var(--color-primary); color: var(--color-secondary); box-shadow: 0 10px 25px rgba(10,37,64,0.3); }

/* GRID DE MATERIAIS / VIDEOS / BLOG */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.media-card { background: var(--color-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.media-thumb { height: 200px; background: #ddd; position: relative; }
.media-content { padding: 25px; }

/* GALERIA CUSTOMIZADA (Mosaico) */
.custom-gallery { margin-top: 50px; }
.gallery-grid { 
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
  gap: 20px; align-items: stretch;
}
.gallery-item { 
  border-radius: var(--radius-md); overflow: hidden; 
  box-shadow: var(--shadow-sm); transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); z-index: 2; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ANIMACOES (Iniciadas via JS) */
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* BARRA FLUTUANTE DE CTA (Rodapé) */
.floating-cta {
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999;
  background: linear-gradient(135deg, var(--color-primary) 0%, #051424 100%);
  border-top: 4px solid var(--color-secondary);
  padding: 15px 0; box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
  animation: slideUpCTA 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) backwards; animation-delay: 2s;
}
.floating-cta-flex { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.floating-cta-text h3 { color: var(--color-secondary); font-size: 1.5rem; margin-bottom: 5px; }
.floating-cta-text p { color: #fff; font-size: 0.95rem; margin: 0; opacity: 0.9; }
.floating-cta-buttons { display: flex; gap: 15px; align-items: center; }
.zap-btn { border-color: #25D366; color: #25D366; background: rgba(37,211,102,0.1); }
.zap-btn:hover { background: #25D366; color: #fff; border-color: #25D366; }
.close-cta { position: absolute; top: 10px; right: 20px; font-size: 2rem; color: #fff; cursor: pointer; line-height: 1; transition: 0.3s; opacity: 0.7; }
.close-cta:hover { color: var(--color-secondary); opacity: 1; transform: scale(1.2); }

@keyframes slideUpCTA { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* EDITORIAL PREMIUM (Minha História) */
.historia-hero {
  position: relative; height: 70vh; min-height: 500px;
  background-image: url('img/galeria/468757882_18284092282244516_3502159531464742914_n.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
  display: flex; align-items: center; justify-content: center;
}
.historia-hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, var(--color-bg) 0%, rgba(10,37,64,0.4) 100%);
}
.historia-hero-content { position: relative; z-index: 2; text-align: center; }
.historia-title { font-size: 5rem; color: var(--color-white); font-family: 'Outfit'; font-weight: 900; line-height: 1; margin-bottom: 10px; text-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.historia-subtitle { font-size: 1.5rem; color: var(--color-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }

.editorial-block { display: grid; gap: 50px; align-items: center; margin-bottom: 50px; }
.editorial-right, .editorial-left { grid-template-columns: 1fr 1fr; }
.editorial-heading { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 20px; }
.divider-small { width: 50px; height: 4px; background: var(--color-secondary); margin-bottom: 30px; }
.editorial-image { position: relative; }
.editorial-image img { width: 100%; border-radius: var(--radius-md); position: relative; z-index: 2; box-shadow: var(--shadow-lg); }
.editorial-bg-square { position: absolute; width: 100%; height: 100%; border: 4px solid var(--color-secondary); top: 20px; left: 20px; z-index: 1; border-radius: var(--radius-md); }
.editorial-bg-square-left { position: absolute; width: 100%; height: 100%; border: 4px solid var(--color-secondary); top: 20px; right: 20px; left: auto; z-index: 1; border-radius: var(--radius-md); }

.historia-parallax {
  position: relative; padding: 120px 0; background-size: cover; background-position: center; background-attachment: fixed; text-align: center;
}
.parallax-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10,37,64,0.85); }
.parallax-content { position: relative; z-index: 2; }

.timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 40px 0; }
.timeline::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 4px; height: 100%; background: rgba(10,37,64,0.1); }
.timeline-item { display: flex; justify-content: space-between; align-items: center; margin-bottom: 60px; position: relative; width: 100%; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-dot { position: absolute; left: 50%; transform: translateX(-50%); width: 20px; height: 20px; background: var(--color-secondary); border-radius: 50%; box-shadow: 0 0 0 5px rgba(241,176,0,0.2); z-index: 2; }
.timeline-date { width: 45%; text-align: right; font-size: 2.5rem; font-family: 'Outfit'; font-weight: 900; color: rgba(10,37,64,0.1); line-height: 1; }
.timeline-item:nth-child(even) .timeline-date { text-align: left; }
.timeline-content { width: 45%; background: var(--color-white); padding: 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border-top: 4px solid var(--color-primary); }
.timeline-content h3 { font-size: 1.5rem; color: var(--color-primary); margin-bottom: 15px; }

/* DASHBOARD DE ESTATÍSTICAS (Trajetória) */
.stats-dashboard {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  background: var(--color-white); padding: 50px; border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3); border-top: 5px solid var(--color-secondary);
  color: var(--color-primary); text-align: center;
}
.stat-box { padding: 20px; }
.stat-number { font-size: 4.5rem; font-family: 'Outfit'; font-weight: 900; color: var(--color-secondary); line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 1.5rem; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; color: var(--color-primary); }
.stat-box p { color: var(--color-text-light); font-size: 1.1rem; margin: 0; }

/* PROPOSTAS PREMIUM (Cards e Grid) */
.propostas-hero {
  position: relative; height: 50vh; min-height: 400px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #051424 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 100px;
}
.propostas-hero-pattern {
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(241,176,0,0.05) 10%, transparent 10%), radial-gradient(circle, rgba(241,176,0,0.05) 10%, transparent 10%);
  background-size: 40px 40px; background-position: 0 0, 20px 20px;
  animation: bgScroll 30s linear infinite;
}
@keyframes bgScroll { 0% { transform: translateY(0); } 100% { transform: translateY(-40px); } }
.propostas-hero-content { position: relative; z-index: 2; text-align: center; }

.propostas-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px;
}
.proposta-card-premium {
  background: var(--color-white); padding: 40px 30px; border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-top: 4px solid var(--color-secondary);
  position: relative; overflow: hidden; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.proposta-card-premium:hover { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.proposta-icon { font-size: 3rem; margin-bottom: 20px; }
.proposta-number {
  position: absolute; top: -10px; right: 10px; font-size: 6rem; font-family: 'Outfit';
  font-weight: 900; color: rgba(10,37,64,0.05); line-height: 1; z-index: 0;
  transition: 0.4s;
}
.proposta-card-premium:hover .proposta-number { color: rgba(241,176,0,0.15); transform: scale(1.1); }
.proposta-card-premium h3 { font-size: 1.4rem; color: var(--color-primary); margin-bottom: 20px; position: relative; z-index: 1; }
.proposta-card-premium ul { list-style: none; padding: 0; position: relative; z-index: 1; }
.proposta-card-premium li { font-size: 1.05rem; color: var(--color-text-light); margin-bottom: 12px; position: relative; padding-left: 20px; }
.proposta-card-premium li::before { content: '✓'; position: absolute; left: 0; color: var(--color-secondary); font-weight: bold; }
.cta-propostas-box { background: rgba(10,37,64,0.03); border: 2px dashed rgba(10,37,64,0.1); padding: 60px; border-radius: var(--radius-lg); }

/* CENTRAL DE DOWNLOADS */
.download-hero {
  position: relative; height: 40vh; min-height: 350px;
  background-color: var(--color-primary);
  display: flex; align-items: center; justify-content: center; padding-top: 100px;
}
.download-hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at bottom right, rgba(241,176,0,0.1) 0%, transparent 60%);
}
.download-hero-content { position: relative; z-index: 2; }
.download-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px;
  max-width: 1000px; margin: 0 auto;
}
.download-card {
  background: var(--color-white); padding: 30px; border-radius: var(--radius-md);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: 0.3s;
}
.download-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: var(--color-secondary); }
.highlight-card { border: 2px solid var(--color-secondary); }
.download-icon { font-size: 3rem; margin-bottom: 15px; }
.download-info h3 { font-size: 1.3rem; color: var(--color-primary); margin-bottom: 10px; }
.download-info p { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 25px; line-height: 1.4; }
.btn-download {
  display: inline-block; width: 100%; padding: 12px; border-radius: var(--radius-sm);
  background: var(--color-secondary); color: var(--color-primary); font-weight: 700;
  text-decoration: none; transition: 0.3s;
}
.btn-download:hover { background: #e5b800; transform: scale(1.02); }
.btn-pdf { background: #e74c3c; color: white; }
.btn-pdf:hover { background: #c0392b; }
.btn-zap { background: #25D366; color: white; }
.btn-zap:hover { background: #128C7E; }
.btn-download.disabled { background: #e0e0e0; color: #999; cursor: not-allowed; }
.btn-download.disabled:hover { transform: none; }

/* PÁGINA FALE COMIGO */
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contato-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.contato-icon { font-size: 1.5rem; background: rgba(241,176,0,0.15); width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--color-secondary); }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.social-box { display: flex; align-items: center; gap: 10px; background: var(--color-white); padding: 12px; border-radius: var(--radius-sm); color: var(--color-primary); font-weight: 600; text-decoration: none; border: 1px solid rgba(0,0,0,0.05); transition: 0.3s; }
.social-box:hover { border-color: var(--color-secondary); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.s-icon { font-size: 1.2rem; display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; }
.form-wrapper { background: var(--color-white); padding: 40px; border-radius: var(--radius-lg); box-shadow: 0 15px 40px rgba(0,0,0,0.08); border-top: 5px solid var(--color-secondary); }
.custom-form .form-group { margin-bottom: 20px; text-align: left; }
.custom-form label { display: block; font-weight: 600; color: var(--color-primary); margin-bottom: 8px; font-size: 0.95rem; }
.custom-form input, .custom-form textarea { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: var(--radius-sm); font-size: 1rem; font-family: 'Inter', sans-serif; transition: 0.3s; }
.custom-form input:focus, .custom-form textarea:focus { border-color: var(--color-secondary); outline: none; box-shadow: 0 0 0 3px rgba(241,176,0,0.2); }
.map-overlay-box { position: absolute; bottom: 30px; left: 30px; background: var(--color-white); padding: 25px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border-left: 4px solid var(--color-secondary); z-index: 10; max-width: 300px; }

/* RODAPÉ PREMIUM */
.footer-premium { background: var(--color-primary); padding: 0; color: var(--color-white); margin-bottom: 80px; transition: margin-bottom 0.3s ease; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; }
.footer-logo { max-width: 250px; margin-bottom: 25px; }
.footer-about { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 25px; font-size: 1.05rem; }
.footer-socials { display: flex; gap: 15px; }
.footer-social-link { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; background: rgba(255,255,255,0.05); border-radius: 50%; color: var(--color-white); border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
.footer-social-link:hover { background: var(--color-secondary); color: var(--color-primary); transform: translateY(-5px); border-color: var(--color-secondary); }
.footer-title { font-size: 1.3rem; color: var(--color-white); margin-bottom: 30px; position: relative; padding-bottom: 15px; }
.footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--color-secondary); }
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 15px; }
.footer-menu a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; display: inline-block; }
.footer-menu a:hover { color: var(--color-secondary); transform: translateX(5px); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.footer-contact li svg { color: var(--color-secondary); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { background: rgba(0, 0, 0, 0.25); padding: 25px 0; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-credits strong { color: var(--color-secondary); font-weight: 700; }

/* === MENU HAMBÚRGUER (ESTILOS BASE) === */
.hamburger-btn { display: none; background: transparent; border: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 10px; z-index: 1000; }
.hamburger-btn span { display: block; width: 30px; height: 3px; background: var(--color-white); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); border-radius: 2px; }
.hamburger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

/* === ESTILOS EDITORIAIS DE NOTÍCIA (SINGLE POST) === */
.entry-content { font-size: 1.15rem; line-height: 1.85; color: #333; max-width: 800px; margin: 0 auto; }
.entry-content p { margin-bottom: 25px; }
.entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5 { color: var(--color-primary); font-weight: 800; margin-top: 40px; margin-bottom: 20px; line-height: 1.3; }
.entry-content h2 { font-size: 2.1rem; }
.entry-content h3 { font-size: 1.8rem; }
.entry-content h4 { font-size: 1.5rem; }
.entry-content h5 { font-size: 1.2rem; }
.entry-content ul, .entry-content ol { margin-bottom: 25px; padding-left: 20px; }
.entry-content ul li, .entry-content ol li { margin-bottom: 12px; }
.entry-content ul { list-style-type: disc; }
.entry-content ol { list-style-type: decimal; }
.entry-content blockquote { margin: 40px 0; padding: 25px 35px; border-left: 6px solid var(--color-secondary); background: rgba(0, 0, 0, 0.02); font-style: italic; font-size: 1.3rem; color: var(--color-primary); border-radius: 0 10px 10px 0; }
.entry-content blockquote p { margin-bottom: 0; }
.entry-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 20px 0 10px; display: block; }
.entry-content figure, .entry-content .wp-caption { margin: 30px 0; text-align: center; }
.entry-content figcaption, .entry-content .wp-caption-text { font-size: 0.95rem; color: var(--color-text-light); font-style: italic; margin-top: 10px; }
.entry-content a { color: var(--color-primary); font-weight: 600; text-decoration: underline; text-decoration-color: var(--color-secondary); text-underline-offset: 3px; }
.entry-content a:hover { color: var(--color-secondary); background: var(--color-primary); text-decoration: none; padding: 0 4px; border-radius: 2px; }

/* === BREAKPOINTS RESPONSIVOS === */

@media(max-width: 1200px) {
  /* NOTEBOOKS E TABLETS HORIZONTAIS */
  .hero-title { font-size: 3rem; }
  .historia-title { font-size: 3.5rem; }
}

@media(max-width: 992px) {
  /* TABLETS VERTICAIS */
  .hamburger-btn { display: flex; }
  .header-flex { flex-wrap: wrap; justify-content: space-between; align-items: center; }
  .header-actions { display: block; margin-top: 30px; width: 100%; }
  
  .hero { height: auto; padding-top: 150px; padding-bottom: 0; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 20px; align-items: flex-end; }
  .hero-content { margin-top: 0; text-align: left; padding-bottom: 40px; }
  .hero-content .slogan { font-size: 1.4rem; }
  .hero-image { margin-top: 0; transform: translateY(0); align-self: flex-end; }
  .hero-image img { width: 100%; max-width: 100%; margin: 0; display: block; }
  .hero-number-box { font-size: 7rem; }
  
  /* OVERLAY DO MENU LATERAL */
  .menu-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.7); z-index: 99990; opacity: 0; visibility: hidden; transition: 0.4s ease; backdrop-filter: blur(4px); }
  .menu-overlay.active { opacity: 1; visibility: visible; }
  
  /* MENU LATERAL (OFF-CANVAS) */
  .nav-links-container {
    position: fixed; top: 0; right: 0; left: auto; width: 65%; max-width: 320px; height: 100vh; 
    background: var(--color-primary); z-index: 99995; box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    padding: 80px 30px 40px; transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    transform: translateX(100%);
    overflow-y: auto; margin: 0; border: none; display: block;
  }
  .nav-links-container.active { transform: translateX(0); animation: none; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 25px; }
  .nav-links a { font-size: 1.1rem; padding: 5px 0; display: block; width: 100%; text-transform: uppercase; }
  .nav-links ul.sub-menu { position: static; display: block; box-shadow: none; min-width: 100%; border: none; background: transparent; margin-top: 10px; padding-left: 15px; border-radius: 0; }
  
  .hamburger-btn { z-index: 99999; position: relative; } /* Ficar acima de tudo inclusive barras flutuantes */
  
  .propostas-grid, .download-grid, .contato-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  
  .media-grid { grid-template-columns: 1fr 1fr; }
  .media-grid .media-card:first-child { grid-column: span 2; }
}

@media(max-width: 768px) {
  /* CELULARES E PEQUENOS TABLETS */
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-content { text-align: center; padding-bottom: 0; }
  .hero-content .slogan { font-size: 1.3rem; border-left: none; border-bottom: 3px solid var(--color-secondary); display: inline-block; padding-left: 0; padding-bottom: 5px; margin-top: 10px; }
  .hero-image { margin-top: 20px; text-align: center; align-self: center; }
  .hero-image img { width: 85%; max-width: 400px; margin: 0 auto; }
  .hero-number-box { font-size: 6rem; display: block; width: 100%; margin-bottom: 15px; }
  
  .media-grid { grid-template-columns: 1fr; }
  .media-grid .media-card:first-child { grid-column: auto; }
  
  .historia-grid, .atuacao-grid { grid-template-columns: 1fr; gap: 30px; }
  .captacao-banner h2 { font-size: 2.5rem; }
  
  .floating-cta-text h3 { font-size: 1.1rem; margin-bottom: 2px; }
  .floating-cta-text p { font-size: 0.8rem; }
  .floating-cta-buttons .btn { padding: 8px 15px; font-size: 0.85rem; }
}

@media(max-width: 560px) {
  .floating-cta { padding: 10px 0; animation: none !important; transform: none !important; position: fixed !important; bottom: 0 !important; left: 0 !important; right: 0 !important; width: 100vw !important; max-width: 100vw !important; z-index: 999999 !important; }
  .floating-cta .container { width: 100% !important; max-width: 100vw !important; padding: 0 15px !important; box-sizing: border-box !important; }
  .floating-cta-flex { flex-direction: column; text-align: center; gap: 8px; width: 100%; align-items: center; justify-content: center; }
  .floating-cta-text { width: 100%; text-align: center; }
  .floating-cta-text h3 { font-size: 0.95rem; margin-bottom: 0; line-height: 1.2; width: 100%; text-align: center; }
  .floating-cta-text p { display: none; }
  .floating-cta-buttons { display: flex; flex-direction: column; width: 100%; gap: 6px; align-items: center; justify-content: center; }
  .floating-cta-buttons .btn { width: 100%; max-width: 100%; padding: 10px; font-size: 0.85rem; justify-content: center; white-space: normal; text-align: center; box-sizing: border-box; display: inline-flex; }
  .close-cta { top: 2px; right: 10px; font-size: 1.5rem; z-index: 99; }
}

@media(max-width: 768px) {
  .propostas-grid, .download-grid, .contato-grid { grid-template-columns: 1fr; }
  .hero-cards { grid-template-columns: 1fr; }
  
  .editorial-right, .editorial-left { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-dot { left: 20px; transform: translateX(-50%); }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; align-items: flex-start; padding-left: 50px; }
  .timeline-date, .timeline-item:nth-child(even) .timeline-date { width: 100%; text-align: left; font-size: 2rem; margin-bottom: 10px; }
  .timeline-content { width: 100%; }
  .editorial-bg-square, .editorial-bg-square-left { display: none; }
  
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .footer-logo { margin: 0 auto 25px; }
  .footer-socials { justify-content: center; }
  .footer-title::after { left: 50%; transform: translateX(-50%); }
  .footer-contact li { justify-content: center; text-align: center; flex-direction: column; align-items: center; gap: 5px; }
  .footer-bottom-flex { flex-direction: column; text-align: center; }
  
  .stats-dashboard { grid-template-columns: 1fr; padding: 30px; }
  .map-overlay-box { display: none; }
}

@media(max-width: 576px) {
  /* CELULARES PEQUENOS (PORTRAIT) */
  .header-flex { flex-wrap: nowrap; }
  .logo img { max-height: 50px; }
  
  .historia-title { font-size: 2.5rem; }
  .historia-subtitle { font-size: 1.1rem; }
  .section-title { font-size: 2rem; }
  .hero-title { font-size: 1.8rem; line-height: 1.2; word-break: break-word; }
  .hero-content .slogan { font-size: 1.1rem; }
  .stat-number { font-size: 3.5rem; }
  .proposta-number { font-size: 4rem; }
  .btn { padding: 12px 20px; font-size: 0.95rem; }
  
  .author-box-flex { flex-direction: column; align-items: center; text-align: center; }
  .author-info > div { justify-content: center !important; }
  .author-links { justify-content: center !important; flex-direction: column; }
  
  .propostas-hero { padding-top: 80px; height: auto; min-height: 250px; padding-bottom:40px; }
  .download-hero { padding-top: 80px; height: auto; min-height: 250px; padding-bottom:40px; }
  .fale-hero { padding: 120px 0 40px; }
  .contato-icon { width: 35px; height: 35px; font-size: 1.2rem; }
  .social-grid { grid-template-columns: 1fr; }
}

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