/* ========================================
   MARCELO MIRANDA - REDESIGN COMPLETO
   Desenvolvido por MagoWeb
   https://www.magoweb.com.br
======================================== */

/* ========================================
   GOOGLE FONTS
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ========================================
   RESET E VARIÁVEIS
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta Principal */
    --primary-color: #0c2340;
    --primary-light: #163a5f;
    --secondary-color: #2563eb;
    --secondary-light: #60a5fa;
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --accent-glow: rgba(245, 158, 11, 0.25);
    --success-color: #059669;
    --success-light: #34d399;

    /* Neutros */
    --text-color: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg-light: #f1f5f9;
    --bg-subtle: #f8fafc;
    --border-color: #e2e8f0;
    --white: #ffffff;

    /* Sombras */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.15);

    /* Transições */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Espaçamento de seção */
    --section-py: clamp(60px, 8vw, 100px);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ANIMAÇÕES DE SCROLL (FADE IN)
======================================== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-spring);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays para filhos */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 100ms; }
.stagger > *:nth-child(3) { transition-delay: 200ms; }
.stagger > *:nth-child(4) { transition-delay: 300ms; }
.stagger > *:nth-child(5) { transition-delay: 400ms; }
.stagger > *:nth-child(6) { transition-delay: 500ms; }

/* ========================================
   TOP BAR
======================================== */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 0;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1000;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.85;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.top-bar-item svg {
    opacity: 0.7;
    flex-shrink: 0;
}

.top-bar-text {
    opacity: 0.6;
    margin-right: 0.5rem;
    font-size: 0.82rem;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    color: var(--white);
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
}

.social-icon svg {
    width: 14px;
    height: 14px;
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ========================================
   MAIN HEADER
======================================== */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xs);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.4s var(--ease-out);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: transparent;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    position: relative;
    gap: 2rem;
}

/* ========================================
   LOGO
======================================== */
.nav-brand {
    flex-shrink: 0;
    z-index: 1001;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-icon svg {
    color: var(--primary-color);
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.logo-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.03em;
    line-height: 1.1;
    white-space: nowrap;
}

.logo-subtitle {
    font-size: 0.68rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1;
    white-space: nowrap;
}

.main-header.scrolled .logo-name {
    font-size: 1.15rem;
}

.main-header.scrolled .logo-subtitle {
    font-size: 0.65rem;
}

/* ========================================
   NAVIGATION MENU
======================================== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.15rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 0.95rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 10px;
    transition: all 0.3s var(--ease-out);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform: translateX(-50%);
}

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

.nav-link:hover::after {
    width: 60%;
}

.nav-link.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(12, 35, 64, 0.25);
}

.nav-link.active::after {
    display: none;
}

.nav-link.active .nav-icon {
    filter: brightness(0) invert(1);
}

.nav-icon {
    font-size: 1rem;
    display: flex;
    align-items: center;
    line-height: 1;
}

.dropdown-arrow {
    transition: transform 0.3s var(--ease-out);
    margin-left: 0.15rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.nav-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ========================================
   DROPDOWN MENU
======================================== */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    min-width: 210px;
    padding: 0.4rem;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s var(--ease-out);
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s var(--ease-out);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
    padding-left: 1.4rem;
}

/* ========================================
   NAV ACTIONS
======================================== */
.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.btn-nav-volunteer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 2px 12px var(--accent-glow);
    font-size: 0.85rem;
    white-space: nowrap;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-nav-volunteer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-nav-volunteer:hover::before {
    left: 100%;
}

.btn-nav-volunteer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
    background: #e09000;
}

.btn-nav-volunteer svg {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
}

/* ========================================
   MOBILE TOGGLE
======================================== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s var(--ease-out);
    display: block;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 35, 64, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* ========================================
   HERO CAMPAIGN - REDESIGN PREMIUM
======================================== */
.hero-campaign {
    background: var(--primary-color);
    color: var(--white);
    padding: 70px 20px 80px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-campaign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 70% 60% at 25% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 75% 30%, rgba(245, 158, 11, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 80% 40% at 50% 100%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, #0a1929 0%, var(--primary-color) 40%, #0a1929 100%);
    z-index: 0;
}

.hero-campaign::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

/* Particulas flutuantes */
.hero-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

.p1 { width: 6px; height: 6px; background: var(--accent-color); top: 20%; left: 15%; animation-delay: 0s; animation-duration: 7s; }
.p2 { width: 4px; height: 4px; background: var(--secondary-color); top: 60%; left: 80%; animation-delay: 1.5s; animation-duration: 9s; }
.p3 { width: 8px; height: 8px; background: rgba(245,158,11,0.6); top: 75%; left: 30%; animation-delay: 3s; animation-duration: 10s; }
.p4 { width: 3px; height: 3px; background: rgba(255,255,255,0.8); top: 30%; left: 65%; animation-delay: 2s; animation-duration: 6s; }
.p5 { width: 5px; height: 5px; background: var(--secondary-color); top: 45%; left: 45%; animation-delay: 4s; animation-duration: 11s; }

@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(0) scale(0.5); }
    15%  { opacity: 0.8; }
    50%  { opacity: 0.4; transform: translateY(-60px) scale(1); }
    85%  { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-120px) scale(0.3); }
}

/* HERO GRID - Foto esquerda, texto direita */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ========================================
   HERO IMAGE - Foto com efeitos dramaticos
======================================== */
.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-glow {
    position: absolute;
    width: 85%; height: 85%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(37,99,235,0.35) 0%, rgba(245,158,11,0.1) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glowPulse 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.image-ring {
    position: absolute;
    width: 92%; height: 92%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,0.08);
    pointer-events: none;
    animation: ringRotate 40s linear infinite;
}

@keyframes ringRotate {
    0%   { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3 / 4;
    border-radius: 200px 200px 40px 40px;
    overflow: hidden;
    box-shadow:
        0 0 0 4px rgba(255,255,255,0.06),
        0 0 0 8px rgba(37,99,235,0.15),
        0 30px 80px rgba(0,0,0,0.5),
        0 0 120px rgba(37,99,235,0.12);
    background: linear-gradient(180deg, rgba(37,99,235,0.2) 0%, rgba(12,35,64,0.8) 100%);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(245,158,11,0.4) 0%, rgba(37,99,235,0.4) 50%, transparent 100%);
    z-index: -1;
    opacity: 0.6;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

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

/* ========================================
   CREDENCIAIS FLUTUANTES
======================================== */
.hero-credential {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 0.7rem 1.1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.1);
    z-index: 5;
    transition: transform 0.3s var(--ease-out);
}

.hero-credential:hover {
    transform: translateY(-4px) !important;
}

.credential-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.credential-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.credential-text strong {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-color);
}

.credential-text span {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.cred-1 { top: 5%; left: -10%; animation: credFloat1 5s ease-in-out infinite; }
.cred-1 .credential-icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: var(--secondary-color); }

.cred-2 { top: 40%; right: -14%; animation: credFloat2 6s ease-in-out infinite; }
.cred-2 .credential-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #b45309; }

.cred-3 { bottom: 12%; left: -8%; animation: credFloat3 5.5s ease-in-out infinite; }
.cred-3 .credential-icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #047857; }

@keyframes credFloat1 { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes credFloat2 { 0%, 100% { transform: translateY(0) rotate(1deg); } 50% { transform: translateY(-10px) rotate(-1deg); } }
@keyframes credFloat3 { 0%, 100% { transform: translateY(0) rotate(0.5deg); } 50% { transform: translateY(-14px) rotate(-0.5deg); } }

/* ========================================
   HERO CONTENT - Texto e CTAs
======================================== */
.hero-content {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(245,158,11,0.08);
    color: var(--accent-light);
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245,158,11,0.2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent-color);
    animation: dotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245,158,11,0.4); }
    50%      { opacity: 0.7; box-shadow: 0 0 0 6px rgba(245,158,11,0); }
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 900;
    line-height: 0.92;
    margin-bottom: 1.2rem;
    letter-spacing: -0.04em;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #fcd34d 40%, var(--accent-color) 80%, #fcd34d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    animation: shimmer 5s linear infinite;
    margin-top: 0.1em;
}

@keyframes shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    opacity: 0.9;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.hero-cargo {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 0;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 3px;
    margin: 1.5rem 0;
    opacity: 0.7;
}

.hero-slogan {
    margin: 0 0 1.5rem;
}

.hero-slogan h2 {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.45;
    opacity: 0.9;
}

.hero-slogan em {
    font-style: normal;
    color: var(--accent-light);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.3rem;
    font-weight: 500;
    line-height: 1.3;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.8rem 0 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 20px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.btn-hero-primary:hover::before { left: 100%; }

.btn-hero-primary:hover {
    background: #e09000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245,158,11,0.45);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.05);
    color: var(--white);
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid rgba(255,255,255,0.15);
    transition: all 0.3s var(--ease-out);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-3px);
}

.hero-social {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.hero-social > span {
    font-size: 0.8rem;
    opacity: 0.5;
    font-weight: 500;
}

.hero-social a {
    color: var(--white);
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.3s var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-social a:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.hero-social a svg { opacity: 0.7; }


/* ========================================
   CAMPAIGN NUMBERS
======================================== */
.campaign-numbers {
    background: var(--white);
    padding: 50px 20px 60px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

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

.number-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-out);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.number-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
    transform-origin: left;
}

.number-card:hover::before {
    transform: scaleX(1);
}

.number-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.number-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.number-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    letter-spacing: -0.03em;
}

.number-label {
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.6rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    opacity: 0.4;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   SOBRE PREVIEW - CONTAINED LAYOUT
======================================== */
.sobre-preview {
    background: var(--bg-subtle);
    padding: var(--section-py) 20px;
    position: relative;
    overflow: hidden;
}

.sobre-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 580px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Photo as full background of the card */
.sobre-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sobre-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
}

.sobre-text {
    position: relative;
    z-index: 2;
    padding: 3rem;
    max-width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 580px;
}

.sobre-text .section-label {
    text-align: left;
    justify-content: flex-start;
}

.sobre-text .section-label::before {
    display: none;
}

.sobre-text h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.sobre-text p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-align: left;
    color: var(--text-light);
    line-height: 1.8;
}

.sobre-text p strong {
    color: var(--text-color);
    font-weight: 700;
}

.sobre-highlights {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.2rem 1.4rem;
    border-radius: 14px;
    margin: 1.2rem 0 1.5rem;
    border: 1px solid rgba(255,255,255,0.5);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s var(--ease-out);
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.92rem;
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item:hover {
    padding-left: 0.5rem;
}

.highlight-icon {
    background: linear-gradient(135deg, var(--secondary-color), #3b82f6);
    color: var(--white);
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}



/* ========================================
   PROPOSTAS
======================================== */
.propostas-preview {
    padding: var(--section-py) 20px;
    background: var(--white);
}

.propostas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.proposta-card {
    background: var(--white);
    padding: 2rem 1.8rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s var(--ease-out);
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.proposta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

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

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

.proposta-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.4s var(--ease-spring);
}

.proposta-card:hover .proposta-icon {
    transform: scale(1.15) rotate(-5deg);
}

.proposta-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.proposta-card p {
    color: var(--text-light);
    line-height: 1.65;
    font-size: 0.92rem;
}

.proposta-categoria {
    display: inline-block;
    background: var(--bg-light);
    color: var(--secondary-color);
    padding: 0.25rem 0.9rem;
    border-radius: 6px;
    font-size: 0.78rem;
    margin-top: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   NOTÍCIAS
======================================== */
.noticias-preview {
    background: var(--bg-subtle);
    padding: var(--section-py) 20px;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
}

.noticia-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out);
    border: 1px solid var(--border-color);
}

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

.noticia-imagem {
    width: 100%;
    height: 210px;
    overflow: hidden;
    position: relative;
}

.noticia-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.noticia-card:hover .noticia-imagem img {
    transform: scale(1.08);
}

.noticia-categoria {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.3rem 0.9rem;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.noticia-content {
    padding: 1.4rem 1.5rem;
}

.noticia-data {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.noticia-content h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    margin: 0.6rem 0;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 700;
}

.noticia-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   EVENTOS
======================================== */
.eventos-preview {
    padding: var(--section-py) 20px;
    background: var(--white);
}

.eventos-grid {
    display: grid;
    gap: 1.2rem;
    max-width: 850px;
    margin: 0 auto;
}

.evento-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 16px;
    display: flex;
    gap: 1.8rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.evento-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
    border-radius: 0 4px 4px 0;
}

.evento-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.evento-data {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 1rem;
    border-radius: 12px;
    text-align: center;
    min-width: 75px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.evento-data .dia {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.evento-data .mes {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 0.2rem;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

.evento-tipo {
    display: inline-block;
    background: var(--bg-light);
    color: var(--secondary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.evento-info h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.evento-local, .evento-horario {
    color: var(--text-light);
    font-size: 0.88rem;
    margin: 0.2rem 0;
    font-weight: 500;
}

/* ========================================
   DEPOIMENTOS
======================================== */
.depoimentos-preview {
    background: var(--bg-subtle);
    padding: var(--section-py) 20px;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}

.depoimento-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.4s var(--ease-out);
}

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

.depoimento-quote {
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 4.5rem;
    color: var(--accent-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.depoimento-card img,
.depoimento-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.depoimento-avatar {
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
}

.depoimento-texto {
    font-style: italic;
    margin-bottom: 1.3rem;
    color: var(--text-color);
    font-size: 0.98rem;
    line-height: 1.75;
}

.depoimento-autor-info {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.depoimento-autor {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

.depoimento-cargo {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.2rem;
    font-weight: 500;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--section-py) 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 60% at 30% 50%, rgba(37, 99, 235, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 70% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-cta-primary:hover {
    background: #e09000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.btn-cta-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1.5px solid rgba(255,255,255,0.2);
    transition: all 0.3s var(--ease-out);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
}

/* ========================================
   BOTÕES GERAIS
======================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    border: none;
    font-size: 0.92rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 35, 64, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}

.btn-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-link:hover {
    color: var(--primary-color);
    gap: 0.6rem;
}

/* ========================================
   FOOTER - REDESIGN PREMIUM
======================================== */
.site-footer {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
}

/* ---- Newsletter CTA Banner ---- */
.footer-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e40af 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 50% 80% at 0% 50%, rgba(245,158,11,0.15) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 100% 50%, rgba(37,99,235,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 2.5rem 0;
    position: relative;
    z-index: 1;
}

.footer-cta-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-shrink: 0;
}

.footer-cta-text > svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.8;
    color: var(--accent-light);
}

.footer-cta-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--white);
}

.footer-cta-text p {
    font-size: 0.88rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

.footer-cta-form {
    flex: 1;
    max-width: 480px;
}

.form-group-inline {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.form-group-inline:focus-within {
    border-color: var(--accent-color);
    background: rgba(255,255,255,0.13);
}

.form-group-inline input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: none;
    background: transparent;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    min-width: 0;
}

.form-group-inline input::placeholder {
    color: rgba(255,255,255,0.45);
}

.form-group-inline input:focus {
    outline: none;
}

.form-group-inline button {
    padding: 0.9rem 1.6rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.form-group-inline button:hover {
    background: #e09000;
}

.form-group-inline button svg {
    transition: transform 0.3s ease;
}

.form-group-inline button:hover svg {
    transform: translateX(3px);
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    opacity: 0.5;
    margin-top: 0.6rem;
    padding-left: 0.2rem;
}

/* ---- Footer Principal ---- */
.footer-main {
    padding: 60px 20px 40px;
    position: relative;
    overflow: hidden;
}

.footer-bg-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(37,99,235,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245,158,11,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0; left: 5%; right: 5%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

/* ---- Footer Brand (coluna 1) ---- */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text strong {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.footer-logo-text span {
    font-size: 0.72rem;
    opacity: 0.5;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 0.88rem;
    opacity: 0.6;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    transition: all 0.3s var(--ease-out);
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

/* ---- Footer Links (colunas 2 e 3) ---- */
.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    opacity: 0.6;
    transition: all 0.3s var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a svg {
    width: 0;
    opacity: 0;
    transition: all 0.3s var(--ease-out);
    flex-shrink: 0;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-light);
}

.footer-links a:hover svg {
    width: 14px;
    opacity: 0.7;
}

/* ---- Footer Contact (coluna 4) ---- */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.1rem;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255,255,255,0.6);
}

.contact-icon-whatsapp {
    color: #25d366;
    border-color: rgba(37,211,102,0.2);
    background: rgba(37,211,102,0.08);
}

.contact-detail {
    display: flex;
    flex-direction: column;
}

.contact-detail span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.4;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.contact-detail a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s var(--ease-out);
    word-break: break-all;
}

.contact-detail a:hover {
    opacity: 1;
    color: var(--accent-light);
}

/* ---- Footer Bottom ---- */
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 1.2rem 20px;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0; left: 5%; right: 5%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.78rem;
    opacity: 0.5;
}

.footer-credits {
    font-size: 0.78rem;
    opacity: 0.4;
}

.magoweb-link {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.magoweb-link:hover {
    opacity: 1;
    text-decoration: underline;
}


/* ========================================
   WHATSAPP FLUTUANTE
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    color: var(--white);
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
    animation: pulse-whatsapp 2.5s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    animation: none;
}

/* ========================================
   UTILIDADES
======================================== */
.text-center {
    text-align: center;
}

section {
    position: relative;
}

/* ========================================
   PÁGINA SOBRE - ESTILOS ADICIONAIS
======================================== */

/* Breadcrumb */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: var(--text-muted);
}

/* Page Hero */
.page-hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.page-label {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 0.4rem 1.3rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.8rem;
    font-weight: 800;
    position: relative;
}

.page-subtitle {
    font-size: 1.15rem;
    opacity: 0.85;
    position: relative;
}

/* Sobre Main */
.sobre-main {
    padding: var(--section-py) 20px;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.sobre-content h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.sobre-content h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.sobre-content p {
    margin-bottom: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
}

.destaque-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.destaque-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent 70%);
    pointer-events: none;
}

.destaque-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.destaque-text h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0 0 0.8rem 0;
}

.destaque-text p {
    margin: 0;
    text-align: left;
    color: rgba(255,255,255,0.85);
}

.lista-destaque {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.lista-destaque li {
    padding: 1rem 1.2rem;
    background: var(--bg-subtle);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    border-left: 3px solid var(--secondary-color);
    font-weight: 500;
    transition: all 0.3s var(--ease-out);
}

.lista-destaque li:hover {
    padding-left: 1.5rem;
    background: var(--bg-light);
}

.quote-box {
    background: var(--bg-subtle);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: -5px;
    left: 20px;
    font-family: Georgia, serif;
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    margin: 0.8rem 0;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.quote-author {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
    margin: 0;
    font-size: 0.95rem;
}

/* Sidebar */
.info-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.info-card-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.3rem 1.5rem;
}

.info-card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    padding-bottom: 0;
}

.info-card-header h3::after {
    display: none;
}

.info-card-body {
    padding: 1.3rem 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.qualificacao-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border-color);
}

.qualificacao-item:last-child {
    border-bottom: none;
}

.qualificacao-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.qualificacao-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.15rem;
    font-size: 0.92rem;
}

.qualificacao-item p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.cta-sidebar {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(37, 99, 235, 0.3), transparent 60%);
    pointer-events: none;
}

.cta-sidebar h3 {
    color: var(--white);
    margin-bottom: 0.8rem;
    position: relative;
}

.cta-sidebar h3::after {
    display: none;
}

.cta-sidebar p {
    margin-bottom: 1.5rem;
    position: relative;
    opacity: 0.85;
}

/* Gestão Pública Timeline */
.gestao-publica {
    background: var(--bg-subtle);
    padding: var(--section-py) 20px;
}

.gestao-timeline {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.gestao-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
}

.timeline-item {
    display: flex;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-marker {
    position: relative;
    flex-shrink: 0;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37,99,235,0.2);
    border: 3px solid var(--white);
}

.timeline-content {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    border: 1px solid var(--border-color);
    transition: all 0.3s var(--ease-out);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
}

.timeline-date {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.2rem 0.9rem;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.timeline-content h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content ul li {
    padding: 0.4rem 0;
    padding-left: 1.4rem;
    position: relative;
    font-size: 0.92rem;
    color: var(--text-light);
}

.timeline-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Conquistas */
.conquistas-section {
    padding: var(--section-py) 20px;
}

.conquistas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.conquista-card {
    background: var(--white);
    padding: 2.2rem 1.8rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s var(--ease-out);
    border: 1px solid var(--border-color);
}

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

.conquista-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.03em;
}

.conquista-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.conquista-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.conquista-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Valores */
.valores-section {
    background: var(--bg-subtle);
    padding: var(--section-py) 20px;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.valor-card {
    background: var(--white);
    padding: 2.2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s var(--ease-out);
    border: 1px solid var(--border-color);
}

.valor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.valor-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.valor-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.valor-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.92rem;
}

/* Visão */
.visao-section {
    padding: var(--section-py) 20px;
}

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

.visao-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.visao-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.visao-items {
    margin: 1.5rem 0;
}

.visao-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.visao-icon {
    background: var(--success-color);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
    font-size: 0.8rem;
}

.visao-item p {
    margin: 0;
    line-height: 1.6;
}

.visao-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.visao-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visao-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.visao-image-wrapper .image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

/* ========================================
   PAGINAÇÃO
======================================== */
.paginacao ul {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.paginacao li a,
.paginacao li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-out);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    background: var(--white);
}

.paginacao li a:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.paginacao li.ativo span {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ========================================
   SKIP NAVIGATION (Acessibilidade)
======================================== */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 0 0 10px 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: top 0.3s var(--ease-out);
}

.skip-nav:focus {
    top: 0;
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* ========================================
   FOCUS STATES (Acessibilidade Teclado)
======================================== */
:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
    border-radius: 4px;
}

.nav-link:focus-visible,
.btn:focus-visible,
.btn-nav-volunteer:focus-visible,
.btn-hero-primary:focus-visible,
.btn-hero-secondary:focus-visible,
.btn-cta-primary:focus-visible,
.btn-cta-secondary:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* ========================================
   BOTÃO VOLTAR AO TOPO
======================================== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out);
}

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

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top svg {
    pointer-events: none;
}

/* ========================================
   LGPD / COOKIE BANNER
======================================== */
.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.12);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
    border-top: 3px solid var(--secondary-color);
}

.lgpd-banner.visible {
    transform: translateY(0);
}

.lgpd-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.lgpd-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.lgpd-text {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    flex: 1;
    min-width: 280px;
}

.lgpd-icon {
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.lgpd-text p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.55;
}

.lgpd-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.lgpd-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.lgpd-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: none;
    white-space: nowrap;
}

.lgpd-accept {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.2);
}

.lgpd-accept:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(12, 35, 64, 0.3);
}

.lgpd-more {
    background: var(--bg-light);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.lgpd-more:hover {
    background: var(--border-color);
}

/* ========================================
   MAGOWEB LINK (Footer)
======================================== */
.magoweb-link {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
    opacity: 1;
    transition: all 0.3s var(--ease-out);
    padding-left: 0;
}

.magoweb-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
    padding-left: 0;
}

/* ========================================
   RESPONSIVIDADE DO HEADER
======================================== */
@media (max-width: 1199px) {
    .nav-link {
        padding: 0.6rem 0.75rem;
        font-size: 0.84rem;
    }

    .btn-nav-volunteer {
        padding: 0.6rem 1.2rem;
        font-size: 0.82rem;
    }
}

@media (max-width: 991px) {
    .main-nav {
        gap: 1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        padding: 80px 20px 20px;
        overflow-y: auto;
        transition: right 0.4s var(--ease-out);
        z-index: 1000;
        flex-direction: column;
        gap: 1rem;
        justify-content: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 0.9rem 1rem;
        justify-content: flex-start;
        border-radius: 10px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active {
        background: var(--bg-light);
        color: var(--secondary-color);
        box-shadow: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 0.4rem;
        display: none;
        border: none;
    }

    .nav-item.has-dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-actions {
        width: 100%;
        margin-top: 1rem;
    }

    .btn-nav-volunteer {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.92rem;
    }

    /* Numbers grid */
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer grid */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta-text {
        justify-content: center;
    }

    .footer-cta-form {
        max-width: 100%;
        width: 100%;
    }

    .form-hint {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-cta-text {
        flex-direction: column;
        align-items: center;
    }

    .form-group-inline {
        flex-direction: column;
        border-radius: 14px;
    }

    .form-group-inline button {
        border-radius: 0 0 13px 13px;
        justify-content: center;
        padding: 0.85rem;
    }

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