/* Reset Geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #090d16;
    --bg-secondary: #111827;
    --card-bg: rgba(17, 24, 39, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --accent-green: #10b981;
    --accent-green-glow: rgba(16, 185, 129, 0.15);
    --accent-gold: #f59e0b;
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--bg-primary);
    background-image: radial-gradient(circle at 50% 0%, #1e293b 0%, var(--bg-primary) 70%);
    color: var(--text-primary);
    font-family: var(--font-family);
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: 40px;
    position: relative;
    overflow-x: hidden;
}

/* Círculos decorativos de fundo */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: rgba(16, 185, 129, 0.12);
    top: 10%;
    left: -100px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: rgba(245, 158, 11, 0.06);
    bottom: 10%;
    right: -150px;
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    padding: 40px 0 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon {
    font-size: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.4));
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text p {
    font-size: 13px;
    color: var(--accent-green);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.last-update {
    font-size: 13px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

/* Card Principal (Política) */
main {
    margin-top: 40px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
}

section {
    margin-bottom: 36px;
}

section:last-of-type {
    margin-bottom: 0;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

p {
    color: var(--text-secondary);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 16px;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

hr {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 32px 0;
}

/* Listas */
ul, ol {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

li {
    margin-bottom: 10px;
    font-size: 15px;
}

li::marker {
    color: var(--accent-green);
}

a {
    color: var(--accent-green);
    text-decoration: none;
    border-bottom: 1px dashed var(--accent-green);
    transition: all 0.2s ease;
}

a:hover {
    color: #34d399;
    border-bottom-style: solid;
}

/* Seção de Contato */
.contact-section {
    background: radial-gradient(circle at 100% 100%, rgba(16, 185, 129, 0.05) 0%, rgba(0, 0, 0, 0) 60%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    margin-top: 40px;
}

.email-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
    margin-top: 8px;
}

/* Footer */
footer {
    margin-top: 60px;
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

footer p {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .last-update {
        align-self: flex-start;
    }

    .card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 18px;
    }
    
    body {
        padding-bottom: 20px;
    }
}
