﻿/* =========================
   BASE
========================= */

body {
    min-height: 100vh;
    background: radial-gradient(circle at 12% 18%, rgba(34, 197, 94, 0.16), transparent 24%), radial-gradient(circle at 88% 18%, rgba(20, 184, 166, 0.12), transparent 24%), radial-gradient(circle at 85% 80%, rgba(56, 189, 248, 0.08), transparent 20%), linear-gradient(135deg, #041218 0%, #071d27 42%, #06131a 100%);
    color: var(--cor-texto);
    overflow-x: hidden;
    position: relative;
}

    body::after {
        content: "";
        position: fixed;
        inset: 0;
        background: radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.08), transparent 40%), radial-gradient(circle at 80% 70%, rgba(56, 189, 248, 0.07), transparent 40%);
        opacity: 0.6;
        z-index: 0;
        pointer-events: none;
        animation: bgMove 18s ease-in-out infinite alternate;
    }

@keyframes bgMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-40px, -30px);
    }
}

.bg-grid {
    position: fixed;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.13;
    pointer-events: none;
    z-index: 0;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 340px;
    height: 340px;
    left: -110px;
    top: 120px;
    background: rgba(34, 197, 94, 0.12);
}

.orb-2 {
    width: 400px;
    height: 400px;
    right: -120px;
    top: 120px;
    background: rgba(20, 184, 166, 0.10);
}

/* =========================
   TOPO (ALINHADO CORRETAMENTE)
========================= */

.topo-politica-header {
    width: 100%;
    max-width: 1100px; /* MESMA LARGURA DO CONTEÚDO */
    margin: 0 auto;
    padding: 24px 20px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
}

/* LOGO */

.topo-logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topo-logo-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e, #14b8a6);
    color: #041218;
    font-size: 1.4rem;
    font-weight: 900;
}

.topo-logo-textos h1 {
    margin: 0;
    font-size: 1.9rem;
    font-weight: 900;
    color: #f8fafc;
}

.topo-logo-textos span {
    font-size: 0.9rem;
    color: #cdeee0;
}

/* MENU */

.topo-acoes-politica {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.link-topo-politica {
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #c7d7d2;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

    .link-topo-politica:hover {
        background: rgba(255, 255, 255, 0.06);
        color: #ffffff;
    }

    .link-topo-politica.ativo {
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(56, 189, 248, 0.2));
        color: #ffffff;
    }

.link-topo-icone-politica {
    font-size: 0.8rem;
    color: #7df0ad;
}

/* =========================
   CONTEÚDO (ALINHADO)
========================= */

.pagina-politica {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 130px 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* =========================
   CARD BASE
========================= */

.card-base {
    background: rgba(10, 24, 33, 0.88);
    border: 1px solid rgba(125, 240, 173, 0.10);
    border-radius: 20px;
    padding: 24px;
}

/* =========================
   HERO
========================= */

.hero-politica {
    padding: 28px;
}

.tag-politica {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(31, 209, 107, 0.10);
    color: #7df0ad;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-politica h2 {
    margin: 0 0 6px;
    font-size: 2.2rem;
    color: #ffffff;
}

.hero-politica p {
    margin: 0;
    color: #9ab0aa;
}

/* =========================
   BLOCOS
========================= */

.bloco-politica h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.4rem;
}

.bloco-politica p,
.bloco-politica li {
    color: #b5c7c2;
    line-height: 1.7;
    font-size: 0.95rem;
}

.bloco-politica ul {
    padding-left: 18px;
    margin-top: 10px;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {
    .topo-politica-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .topo-acoes-politica {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .link-topo-politica {
        width: 100%;
    }

    .pagina-politica {
        padding: 150px 16px 30px;
    }

    .hero-politica h2 {
        font-size: 1.7rem;
    }
}
