:root {
    --primary: #0B2545;
    --primary-light: #134074;
    --primary-dark: #071930;
    --accent: #E2B11B;
    --accent-hover: #C59610;
    --bg-light: #F4F6F9;
    --bg-white: #FFFFFF;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
    --border-color: #E5E7EB;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --font-sans: 'Outfit', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

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

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

header {
    background-color: var(--primary);
    color: #FFFFFF;
    padding: 20px 0;
    border-bottom: none; /* Integrado perfeitamente ao Hero */
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    object-fit: contain;
}

.logo-text h2 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-text span {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.85;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--accent);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
}

/* Hamburguer Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Evitar scroll da página no mobile com menu aberto */
body.menu-open {
    overflow: hidden;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    background-color: transparent;
}

.social-btn:hover {
    color: var(--accent);
    background-color: transparent;
}

.social-icon {
    width: 15px;
    height: 15px;
    display: block;
}

.btn-contact {
    background-color: var(--accent);
    color: var(--primary);
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-contact:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

.whatsapp-icon {
    width: 16px;
    height: 16px;
    display: block;
}

/* --- HERO SLIDER --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,37,69,0.82) 0%, rgba(19,64,116,0.65) 100%);
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    max-width: 680px;
}

.hero-slider .slide-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-slider .slide-subtitle {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 28px;
}

.hero-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.hero-slider .slider-arrow:hover {
    background: rgba(255,255,255,0.3);
}

.hero-slider .slider-prev { left: 20px; }
.hero-slider .slider-next { right: 20px; }

.hero-slider .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-slider .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, border-color 0.2s;
}

.hero-slider .slider-dot.active {
    background: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 768px) {
    .hero-slider { height: 380px; }
    .hero-slider .slide-title { font-size: 28px; }
    .hero-slider .slide-subtitle { font-size: 15px; }
    .hero-slider .slider-arrow { display: none; }
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.94) 0%, rgba(19, 64, 116, 0.94) 100%), url('/uploads/city_skyline.png') no-repeat center center;
    background-size: cover;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    padding: 60px 0 0 0;
}

/* Linhas onduladas decorativas no fundo */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(226, 177, 27, 0.1) 0%, transparent 60%),
                      radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-tag {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--accent);
}

.hero-description {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-hero {
    background-color: var(--accent);
    color: #000;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(226, 177, 27, 0.3);
}

.btn-hero:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    margin-bottom: 0;
}

/* Halo dourado animado atrás da foto */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        rgba(226,177,27,.28) 0%,
        rgba(226,177,27,.12) 40%,
        transparent 70%);
    z-index: 0;
    animation: heroGlowPulse 3s ease-in-out infinite alternate;
}
/* Anel decorativo */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 290px;
    height: 290px;
    border-radius: 50%;
    border: 1.5px solid rgba(226,177,27,.22);
    z-index: 1;
    animation: heroRingPulse 3s ease-in-out infinite alternate-reverse;
}
@keyframes heroGlowPulse {
    from { opacity: .7; transform: translateX(-50%) scale(1); }
    to   { opacity: 1;  transform: translateX(-50%) scale(1.08); }
}
@keyframes heroRingPulse {
    from { opacity: .5; transform: translateX(-50%) scale(.95); }
    to   { opacity: 1;  transform: translateX(-50%) scale(1.05); }
}

.hero-image {
    max-height: 580px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: -4px;
    filter: drop-shadow(0 8px 32px rgba(226,177,27,.22));
}

/* --- INDICADORES --- */
.indicators-section {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.indicators-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--border-color);
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 18px;
    border-right: 1px solid var(--border-color);
}

.indicator-item:last-child {
    border-right: none;
}

.indicator-icon {
    width: 44px;
    height: 44px;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.indicator-icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--primary-light);
    fill: none;
}

.indicator-info h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 4px;
}

.indicator-info p {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.25;
}

/* --- SECTION GENERAL --- */
.section-padding {
    padding: 80px 0;
}

.section-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.section-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-link:hover {
    color: var(--accent-hover);
}

/* --- GRID LAYOUT HOME --- */
.home-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

/* --- CARDS NOTÍCIA --- */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card-horizontal {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 200px 1fr;
    transition: transform 0.2s, box-shadow 0.2s;
}

.news-card-horizontal:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.news-image-wrapper {
    height: 100%;
    min-height: 140px;
    overflow: hidden;
}

.news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.news-card-title:hover {
    color: var(--primary-light);
}

.news-card-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- AGENDA SIDE --- */
.agenda-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.agenda-item {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.agenda-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.agenda-date-box {
    background-color: #F0F4F8;
    color: var(--primary-light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    font-weight: 700;
    text-align: center;
}

.agenda-date-box .day {
    font-size: 18px;
    line-height: 1;
}

.agenda-date-box .month {
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.8;
}

.agenda-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.agenda-details p {
    font-size: 12px;
    color: var(--text-muted);
}

.agenda-time {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-light);
    text-align: right;
}

.btn-agenda-all {
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: var(--primary-light);
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    transition: all 0.2s;
}

.btn-agenda-all:hover {
    background-color: #F0F4F8;
    border-color: var(--primary-light);
}

/* --- BANNER PARTICIPAÇÃO POPULAR --- */
.participation-banner {
    background-color: var(--accent);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    box-shadow: var(--shadow-md);
}

.participation-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #000;
}

.participation-icon {
    font-size: 36px;
}

.participation-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.participation-text p {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

.btn-participation {
    background-color: var(--primary);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(11, 37, 69, 0.2);
}

.btn-participation:hover {
    background-color: var(--primary-light);
}

/* Footer — Mandato360 logo */
.footer-mandato-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}
.footer-mandato-icon {
    flex-shrink: 0;
    line-height: 0;
}
.footer-mandato-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.footer-mandato-name {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -.3px;
    line-height: 1.1;
}
.footer-mandato-name strong {
    font-weight: 800;
    color: var(--accent);
}
.footer-mandato-sub {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .8px;
}

/* --- FOOTER --- */
footer {
    background-color: var(--primary-dark);
    color: #FFFFFF;
    padding: 60px 0 20px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

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

.footer-logo-text {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 3px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.contact-item icon {
    color: var(--accent);
}

.newsletter-box p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-newsletter {
    background-color: var(--accent);
    color: #000;
    font-weight: 600;
    padding: 10px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-newsletter:hover {
    background-color: var(--accent-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ================================================
   RESPONSIVIDADE COMPLETA
   ================================================ */

/* ── TABLET (≤ 1024px) ── */
@media (max-width: 1024px) {
    .hero-title { font-size: 36px; }
    .indicators-card { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .indicator-item { border-right: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── MOBILE (≤ 768px) ── */
@media (max-width: 768px) {
    /* Header */
    .header-wrapper { flex-direction: row; justify-content: space-between; align-items: center; }
    .menu-toggle { display: flex; }
    .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background-color: var(--accent); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background-color: var(--accent); }

    /* Nav menu gaveta */
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 290px; height: 100vh;
        background-color: var(--primary-dark); z-index: 1000;
        flex-direction: column; align-items: flex-start; justify-content: flex-start;
        padding: 90px 30px 40px 30px;
        box-shadow: -5px 0 25px rgba(0,0,0,.3);
        transition: right .4s cubic-bezier(.16,1,.3,1);
        gap: 20px; overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    .nav-menu .nav-link { font-size: 16px; width: 100%; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.05); opacity: .9; text-align: left; }
    .nav-menu .nav-link.active::after { display: none; }
    .nav-menu .nav-link.active { color: var(--accent); font-weight: 700; }
    .nav-menu .social-icons { margin-top: 25px; width: 100%; flex-wrap: wrap; gap: 12px; justify-content: flex-start; }

    /* Hero mobile */
    .hero { padding: 28px 0 0 0; }
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; gap: 0; }
    .hero-title { font-size: 26px; letter-spacing: -.5px; }
    .hero-description { font-size: 14px; margin: 0 auto 20px; max-width: 100%; }
    .hero-tag { text-align: center; display: block; }

    /* Foto aparece PRIMEIRO no mobile, colada no fundo do hero */
    .hero-image-wrapper {
        order: -1;
        justify-content: center;
        align-items: flex-end;
        margin-bottom: 0;
        margin-top: 16px;
    }
    /* Imagem mais alta, sem espaço em baixo */
    .hero-image { max-height: 420px; margin: 0 auto; margin-bottom: -4px; }
    .hero-image-wrapper::before { width: 300px; height: 300px; }
    .hero-image-wrapper::after  { width: 275px; height: 275px; }

    .btn-hero { display: none !important; }

    /* Indicadores: linha de 3 + linha de 2 */
    .indicators-section { margin-top: 20px; }
    .indicators-card {
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 1px !important;
        background: var(--border-color) !important;
        padding: 0 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }
    .indicator-item {
        background: #fff !important;
        grid-column: span 2 !important;
        flex-direction: column !important; align-items: center !important; text-align: center !important;
        padding: 18px 8px !important; gap: 8px !important;
        border: none !important;
    }
    .indicator-item:nth-child(4),
    .indicator-item:nth-child(5) { grid-column: span 3 !important; }
    .indicator-icon { width: 36px; height: 36px; }
    .indicator-icon svg { width: 26px; height: 26px; }
    .indicator-info h3 { font-size: 22px; }
    .indicator-info p { font-size: 11px; }

    /* Section padding */
    .section-padding { padding: 40px 0; }

    /* Grid 3 colunas home */
    .home-grid { grid-template-columns: 1fr; gap: 24px; }
    .news-card-horizontal { grid-template-columns: 1fr; }
    .news-image-wrapper { height: 160px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    footer { padding: 40px 0 20px; }
}

/* ── PEQUENO MOBILE (≤ 576px) ── */
@media (max-width: 576px) {
    /* Header logo compacto */
    .logo-text h2 { font-size: 15px; }
    .logo-text span { font-size: 10px; }
    .logo-img { height: 38px; }

    /* Hero pequeno mobile */
    .hero-title { font-size: 22px; }
    .hero-description { font-size: 13.5px; }
    .hero-image { max-height: 340px; margin-bottom: -4px; }
    .hero-image-wrapper::before { width: 260px; height: 260px; }
    .hero-image-wrapper::after  { width: 240px; height: 240px; }

    /* Indicadores: mantém 3+2 definido acima */
    .indicator-info h3 { font-size: 18px; }

    /* Footer — 1 coluna, centrado */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }

    /* Esconder coluna de navegação */
    .footer-col-nav { display: none; }

    /* Brand centrado */
    .footer-col-brand { text-align: center; }
    .footer-brand-link { flex-direction: column; align-items: center; gap: 10px; }
    .footer-logo-text { max-width: 320px; margin: 0 auto 12px; }
    .footer-col-brand .social-icons { justify-content: center; }

    /* Outros cols centrados */
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-col { text-align: center; }
    .contact-item { justify-content: center; }
    .social-icons { justify-content: center; }
    .newsletter-form { max-width: 360px; margin: 0 auto; }

    /* Section padding */
    .section-padding { padding: 28px 0; }
}

/* CLASSES DE GRID RESPONSIVAS PARA PÁGINAS INTERNAS */
.grid-sobre-main {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.grid-sobre-flags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.grid-contato-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.grid-news-detail {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: start;
}

.grid-3-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-agenda {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-transparencia-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.grid-transparencia-docs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-atuacao-summary {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

/* RESPONSIVIDADE PÁGINAS INTERNAS */
@media (max-width: 1024px) {
    .grid-transparencia-summary {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-transparencia-docs {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .grid-atuacao-summary {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-sobre-main,
    .grid-contato-main,
    .grid-news-detail,
    .grid-2-columns,
    .grid-agenda {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .grid-sobre-flags {
        grid-template-columns: 1fr;
    }
    
    .grid-atuacao-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .grid-atuacao-summary > div {
        border-right: none !important;
        padding: 10px !important;
    }
    
    .grid-atuacao-summary > div:nth-child(5) {
        grid-column: span 2;
        border-top: 1px solid var(--border-color);
        padding-top: 15px !important;
    }
}

@media (max-width: 576px) {
    .grid-transparencia-summary,
    .grid-transparencia-docs,
    .grid-3-columns {
        grid-template-columns: 1fr;
    }
}

/* ── ATIVIDADES PARLAMENTARES ── */
.act-section { padding: 60px 0; background: #F8FAFC; }
.act-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
.act-head-title { font-size: 26px; font-weight: 700; color: var(--primary); padding-bottom: 10px; position: relative; }
.act-head-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--accent); }
.act-head-link { font-size: 12px; font-weight: 700; color: var(--primary-light); text-transform: uppercase; letter-spacing: .6px; flex-shrink: 0; }
.act-head-link:hover { color: var(--accent); }

/* Cards scroll wrapper */
.act-cards-wrapper { position: relative; }
.act-cards-scroll {
    display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none; -ms-overflow-style: none;
}
.act-cards-scroll::-webkit-scrollbar { display: none; }

/* Card vertical */
.act-vcard {
    flex-shrink: 0; width: 226px;
    border-radius: 12px; background: #fff;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
    overflow: hidden; scroll-snap-align: start;
    display: flex; flex-direction: column; text-decoration: none;
    transition: box-shadow .2s, transform .18s;
}
.act-vcard:hover { box-shadow: 0 8px 24px rgba(0,0,0,.13); transform: translateY(-4px); }

.act-vcard-img {
    height: 148px; position: relative; overflow: hidden; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.act-vcard-img img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
}
.act-vcard-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.28) 100%);
    z-index: 1;
}
.act-vcard-icon { display: flex; align-items: center; justify-content: center; }
.act-vcard-icon svg { width: 64px; height: 64px; }

.act-vcard-body { padding: 14px 14px 10px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.act-vcard-meta { display: flex; justify-content: space-between; align-items: center; }
.act-vcard-type { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; }
.act-vcard-date { font-size: 10px; color: #94A3B8; font-weight: 500; }
.act-vcard-title {
    font-size: 14px; font-weight: 700; color: #0F172A; line-height: 1.38;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.act-vcard-status {
    display: inline-block; align-self: flex-start;
    font-size: 11px; font-weight: 700; padding: 3px 10px;
    border-radius: 99px; text-transform: capitalize;
}

.act-vcard-footer {
    margin: 0 14px 14px; padding: 9px 12px;
    border: 1.5px solid; border-radius: 8px;
    font-size: 11px; font-weight: 800; text-align: center;
    letter-spacing: .5px; text-transform: uppercase;
}

/* Scroll arrow */
.act-scroll-btn {
    position: absolute; right: -18px; top: calc(50% - 20px);
    width: 38px; height: 38px; border-radius: 50%;
    background: #fff; border: 1px solid #E2E8F0;
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
    font-size: 22px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #0F172A; z-index: 10; transition: background .15s;
}
.act-scroll-btn:hover { background: #F8FAFC; }

/* Atuação page feed (lista horizontal) */
.act-feed { display: flex; flex-direction: column; gap: 10px; }
.act-card {
    background: #fff; border-radius: 10px;
    border: 1px solid #E2E8F0; border-left: 4px solid;
    display: flex; align-items: center; gap: 16px;
    padding: 15px 20px; text-decoration: none;
    transition: box-shadow .2s, transform .15s;
}
.act-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.10); transform: translateX(3px); }
.act-card-blue   { border-left-color: #3B82F6; }
.act-card-orange { border-left-color: #F59E0B; }
.act-card-green  { border-left-color: #10B981; }
.act-card-purple { border-left-color: #8B5CF6; }
.act-card-teal   { border-left-color: #14B8A6; }
.act-type-icon {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.act-type-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.act-card-blue   .act-type-icon { background: #EFF6FF; color: #3B82F6; }
.act-card-orange .act-type-icon { background: #FFFBEB; color: #D97706; }
.act-card-green  .act-type-icon { background: #ECFDF5; color: #10B981; }
.act-card-purple .act-type-icon { background: #F5F3FF; color: #8B5CF6; }
.act-card-teal   .act-type-icon { background: #F0FDFA; color: #14B8A6; }
.act-card-body { flex: 1; min-width: 0; }
.act-type-label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 2px; }
.act-card-blue   .act-type-label { color: #3B82F6; }
.act-card-orange .act-type-label { color: #D97706; }
.act-card-green  .act-type-label { color: #059669; }
.act-card-purple .act-type-label { color: #7C3AED; }
.act-card-teal   .act-type-label { color: #0D9488; }
.act-card-title { font-size: 14.5px; font-weight: 600; color: var(--primary); line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.act-card-date  { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.act-card-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.act-status { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 99px; text-transform: uppercase; letter-spacing: .3px; white-space: nowrap; }
.act-status-aprovado   { background: #D1FAE5; color: #065F46; }
.act-status-tramitacao { background: #DBEAFE; color: #1E40AF; }
.act-status-arquivado  { background: #F3F4F6; color: #6B7280; }
.act-status-concluida  { background: #D1FAE5; color: #065F46; }
.act-status-default    { background: #F1F5F9; color: #475569; }
.act-ver-mais { font-size: 12px; font-weight: 600; color: var(--primary-light); white-space: nowrap; }

/* Filtros da página Atuação */
.act-filters { background: #fff; border-bottom: 1px solid #E2E8F0; padding: 20px 0; }
.act-filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.act-tab { padding: 7px 16px; border-radius: 99px; font-size: 13px; font-weight: 600; border: 1.5px solid #E2E8F0; color: var(--text-muted); background: #fff; cursor: pointer; text-decoration: none; transition: all .15s; }
.act-tab:hover { border-color: var(--primary-light); color: var(--primary-light); }
.act-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.act-tab-count { font-size: 11px; padding: 1px 6px; border-radius: 99px; margin-left: 4px; }
.act-tab.active .act-tab-count { background: rgba(255,255,255,.2); }
.act-tab:not(.active) .act-tab-count { background: #F1F5F9; color: var(--text-muted); }
.act-search-row { display: flex; gap: 10px; align-items: center; }
.act-search-row input[type="text"], .act-search-row select { padding: 9px 14px; border: 1.5px solid #E2E8F0; border-radius: 8px; font-size: 13.5px; color: var(--primary); background: #fff; outline: none; font-family: 'Outfit', sans-serif; }
.act-search-row input[type="text"] { flex: 1; min-width: 0; }
.act-search-row input:focus, .act-search-row select:focus { border-color: var(--primary-light); }
.act-search-row button { padding: 9px 18px; background: var(--primary); color: #fff; border: none; border-radius: 8px; font-size: 13.5px; font-weight: 600; cursor: pointer; white-space: nowrap; font-family: 'Outfit', sans-serif; }
.act-search-row button:hover { background: var(--primary-light); }

@media (max-width: 768px) {
    .act-section { padding: 40px 0; }
    .act-vcard { width: 190px; }
    .act-vcard-img { height: 128px; }
    .act-scroll-btn { display: none; }
    .act-card { gap: 10px; padding: 12px 14px; }
    .act-card-title { font-size: 13.5px; }
    .act-card-right { gap: 5px; }
    .act-search-row { flex-wrap: wrap; }
    .act-search-row input[type="text"] { min-width: 100%; }
}
@media (max-width: 576px) {
    .act-head { flex-direction: column; align-items: flex-start; gap: 12px; }
    .act-card-right { display: none; }
    .act-card-title { white-space: normal; }
    .act-filter-tabs { gap: 6px; }
    .act-tab { font-size: 12px; padding: 6px 12px; }
}
