		body {
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            background-color: #0a0a0a;
            margin: 0;
            padding: 15px;
            color: #ffffff;
            line-height: 1.5;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Cabeçalho Dark Premium - 3 Colunas */
        .site-header {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            padding: 15px 30px;
            background: #161616;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border: 1px solid #2d2d2d;
            border-bottom: 4px solid #EEBB00;
            margin-bottom: 20px;
        }

        /* Lado Esquerdo: Logo */
        .header-left { flex: 1; display: flex; align-items: center; }
        .site-main-logo {
            max-height: 60px;
            width: auto;
            filter: drop-shadow(0 0 8px rgba(238, 187, 0, 0.2));
            transition: transform 0.3s ease;
        }
        .site-main-logo:hover { transform: scale(1.03); }

        /* Centro: Título */
        .header-center { flex: 2; text-align: center; }
        .header-title-text {
            color: #EEBB00;
            font-size: 22px;
            font-weight: 900;
            letter-spacing: 2px;
            margin: 0;
            text-transform: uppercase;
            text-shadow: 0 0 15px rgba(238, 187, 0, 0.3);
        }

        /* Lado Direito: Botão */
        .header-right { flex: 1; display: flex; justify-content: flex-end; }
        .btn-filiacao {
            background-color: #EEBB00 !important;
            color: #0a0a0a !important;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(238, 187, 0, 0.2);
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .btn-filiacao:hover {
            background-color: #ffffff !important;
            transform: translateY(-2px);
        }

        /* Layout Principal */
        .map-section {
            display: grid;
            grid-template-columns: 1.3fr 0.7fr;
            gap: 24px;
            align-items: start;
        }

        /* Mapa */
        #mapa-interativo {
            width: 100%; 
            height: 600px; 
            background-color: #0a0a0a;     /* Cor de fundo caso a imagem demore a carregar */
            background-image: url('../img/texture.png'); 
            background-repeat: repeat;    /* Ajuste para 'no-repeat' se for imagem única */
            background-position: center;
            background-size: 250px; /*tamanho da textura*/
            border-radius: 16px;
        }
        .map-placeholder {
            background-color: #0a0a0a;
            background-image: url('../img/texture.png');
            background-size: 250px;
            border: 4px solid #EEBB00;
            border-radius: 16px; 
            overflow: hidden; 
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5); 
            position: sticky; 
            top: 20px;
        }
        .leaflet-interactive:focus { outline: none !important; }

        /* Painel de Informações */
        .map-info {
            background: #161616;
            padding: 24px;
            border-radius: 16px;
            min-height: 560px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border: 1px solid #2d2d2d;
            border-top: 4px solid #EEBB00;
            color: #ffffff;
        }
        #nome-estado-selecionado {
            color: #EEBB00;
            font-size: 24px;
            margin-bottom: 20px;
            border-left: 6px solid #EEBB00;
            padding-left: 15px;
            font-weight: 800;
            text-shadow: 0 0 15px rgba(238, 187, 0, 0.3);
        }

        /* Estilos dos Cards */
        .secao-titulo {
            font-size: 11px;
            font-weight: 700;
            color: #475569;
            text-transform: uppercase;
            margin: 25px 0 12px 0;
            border-bottom: 1px solid #2d2d2d;
            padding-bottom: 8px;
        }
        .card-candidato {
            display: flex;
            align-items: center;
            gap: 16px;
            background: #1e1e1e;
            border: 1px solid #333;
            padding: 14px;
            border-radius: 12px;
            margin-bottom: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .card-candidato:hover {
            background: #252525;
            transform: translateY(-4px) scale(1.01);
            box-shadow: 0 10px 20px rgba(238, 187, 0, 0.1);
            border-color: #EEBB00;
        }

        .cand-foto {
            width: 64px; height: 64px;
            min-width: 64px; min-height: 64px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            border: 3px solid #EEBB00;
            background-color: #1a1a1a;
        }
        .cand-nome { color: #ffffff; font-weight: 700; }
        .cand-partido { color: #94a3b8; font-size: 13px; }
        .btn-instagram {
            display: inline-flex;
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: #fff !important;
            padding: 6px 14px;
            text-decoration: none;
            border-radius: 8px;
            font-size: 12px;
            font-weight: bold;
            margin-top: 5px;
        }

        /* Sistema de Abas */
        .tabs-header { display: flex; gap: 6px; background: #121212; padding: 4px; border-radius: 12px; margin-top: 15px;}
        .tab-btn { flex: 1; padding: 10px 4px; border: none; background: none; cursor: pointer; font-size: 11px; font-weight: 700; color: #64748b; border-radius: 8px; }
        .tab-btn.active { background: #EEBB00; color: #000; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
        .tab-content { display: none; animation: slideUp 0.3s ease-out; }
        .tab-content.active { display: block; }

        /* Siglas no Mapa */
        .sigla-label { color: #fff !important; font-weight: 900; text-shadow: 2px 2px 4px #000; font-size: 11px; pointer-events: none; }
        .leaflet-control-reset { background: #fff; padding: 10px 20px; border-radius: 30px; cursor: pointer; font-weight: 700; box-shadow: 0 4px 6px rgba(0,0,0,0.1); color: #1e293b; border: none; }

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

        /* Rodapé */
        .site-footer {
            margin-top: 40px;
            padding: 40px 20px;
            background: #161616;
            color: #64748b;
            border-radius: 16px;
            border: 1px solid #2d2d2d;
            border-top: 3px solid #EEBB00;
            text-align: center;
        }
        .disclaimer { font-size: 13px; max-width: 800px; margin: 0 auto 15px auto; color: #94a3b8; }
        .disclaimer strong { color: #EEBB00; }
        .footer-external-link { margin: 15px 0; font-size: 14px; }
        .footer-external-link a { color: #EEBB00; text-decoration: none; font-weight: 700; }
        .credits { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }


        /* Fundo escurecido */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(5px);
}

/* Caixa de conteúdo */
.modal-container {
    background: #161616; width: 90%; max-width: 800px; max-height: 90vh;
    border-radius: 20px; border: 1px solid #2d2d2d; border-top: 5px solid #EEBB00;
    padding: 40px; position: relative; overflow-y: auto; color: #fff;
}

.modal-close {
    position: absolute; top: 20px; right: 20px; background: none; border: none;
    color: #EEBB00; font-size: 30px; cursor: pointer;
}

.video-wrapper {
    position: relative; padding-bottom: 56.25%; height: 0; margin: 20px 0;
}
.video-wrapper iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 12px;
}





        /* Responsividade Mobile */
        @media (max-width: 900px) { 
            .site-header { flex-direction: column; gap: 15px; padding: 20px; text-align: center; }
            .header-left, .header-center, .header-right { flex: none; width: 100%; justify-content: center; }
            .map-section { grid-template-columns: 1fr; } 
            .map-placeholder { height: 400px; position: relative; top: 0; } 
            #mapa-interativo { height: 400px; }
        }