:root {
            --primary: #003366;
            --secondary: #B8860B;
            --accent: #8B0000;
            --light: #F5F5F5;
            --dark: #333333;
            --gray: #6c757d;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Source Sans Pro', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background-color: #f8f9fa;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 25px;
            background-color: var(--primary);
            color: white;
            border-radius: 4px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .btn:hover {
            background-color: var(--accent);
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
        }
        
        .btn-secondary:hover {
            background-color: #a0740a;
        }
        
        /* Header — rola normalmente com a página */
        #site-header {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
            z-index: 100;
            background-color: white;
        }
        
        .header-top {
            background-color: #1a3a6c;
            color: white;
            padding: 8px 0;
            font-size: 0.8rem;
        }
        
        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        
        .header-top-social {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        
        .header-top-social a {
            color: white;
            font-size: 0.95rem;
            opacity: 0.95;
        }
        
        .header-top-social a:hover {
            opacity: 1;
        }
        
        .header-top-links {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 6px 18px;
        }
        
        .header-top-links a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: white;
            font-size: 0.78rem;
            font-weight: 400;
            white-space: nowrap;
        }
        
        .header-top-links a:hover {
            opacity: 0.85;
        }
        
        .header-top-links a i {
            font-size: 0.85rem;
            width: 14px;
            text-align: center;
        }
        
        .header-brand {
            background: linear-gradient(180deg, #2b5ea8 0%, #1e4a8a 100%);
            padding: 18px 0;
        }

        .header-brand-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        .header-brand-left {
            display: flex;
            align-items: center;
            gap: 16px;
            min-width: 0;
        }

        .header-brand-inner {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 16px;
            text-align: left;
        }

        .header-brand img,
        .header-logo {
            height: 90px;
            width: auto;
            display: block;
            background: transparent;
            object-fit: contain;
            flex-shrink: 0;
        }

        .header-brand h1 {
            color: white;
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0;
            letter-spacing: 0.01em;
            line-height: 1.25;
            text-align: left;
        }

        .header-search-wrap {
            position: relative;
            flex: 0 1 420px;
            width: 100%;
            max-width: 420px;
        }

        .header-search-form {
            display: flex;
            align-items: stretch;
            border: 1px solid #d8dde3;
            border-radius: 6px;
            overflow: hidden;
            background: #fff;
        }

        .header-search-form input {
            flex: 1;
            min-width: 0;
            border: none;
            padding: 10px 14px;
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 0.88rem;
            color: var(--dark);
            outline: none;
        }

        .header-search-form input::placeholder {
            color: #9aa3ad;
            font-style: italic;
        }

        .header-search-form button {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--accent);
            color: #fff;
            border: none;
            padding: 0 18px;
            cursor: pointer;
            transition: var(--transition);
        }

        .header-search-form button:hover {
            background-color: #6d0000;
        }

        .header-nav {
            background-color: white;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .header-nav .container {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            padding: 12px 20px;
        }

        .header-nav nav ul {
            justify-content: center;
            align-items: center;
        }

        .header-nav nav ul li {
            margin-left: 0;
            margin-right: 25px;
        }

        .header-nav nav ul li:last-child {
            margin-right: 0;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        .header-nav nav > ul > li > a,
        .header-nav .nav-dropdown-toggle {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 0;
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            line-height: 1;
            color: var(--primary);
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.25s ease;
        }

        .header-nav nav > ul > li > a:hover,
        .header-nav .nav-dropdown-toggle:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }

        .header-nav .nav-dropdown.open .nav-dropdown-toggle {
            color: var(--accent);
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-toggle i {
            font-size: 0.75rem;
            transition: transform 0.2s ease;
        }

        .nav-dropdown.open .nav-dropdown-toggle i {
            transform: rotate(180deg);
        }

        .nav-dropdown-menu {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            min-width: 250px;
            background: #fff;
            border: 1px solid #e8e8e8;
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
            padding: 6px 0;
            z-index: 1100;
            list-style: none;
            margin: 0;
        }

        .nav-dropdown.open .nav-dropdown-menu,
        .nav-dropdown:hover .nav-dropdown-menu {
            display: block;
        }

        .nav-dropdown-menu li {
            margin: 0 !important;
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 12px 22px;
            font-weight: 400;
            color: #333;
            white-space: nowrap;
        }

        .nav-dropdown-menu a:hover {
            background: #f5f7fa;
            color: var(--accent);
        }

        .nav-dropdown-menu a::after {
            display: none;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .section-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 40px;
        }

        .section-tag {
            display: block;
            padding: 6px 18px;
            background-color: #e3eef9;
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            border-radius: 50px;
            margin: 0 0 16px;
            font-family: 'Montserrat', sans-serif;
            width: fit-content;
        }

        .section-header h2 {
            font-size: 2rem;
            display: block;
            width: fit-content;
            margin: 0 0 12px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary);
        }

        .section-subtitle {
            color: var(--gray);
            font-size: 1.05rem;
            max-width: 640px;
            margin: 0;
            line-height: 1.5;
        }

        /* Services Section */
        .services {
            padding: 48px 0 56px;
            background-color: #eef2f6;
        }

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

        .service-tile {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 10px;
            padding: 16px 14px 14px;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            box-shadow: 0 1px 4px rgba(0, 51, 102, 0.06);
            transition: var(--transition);
            min-height: 0;
        }

        .service-tile:hover {
            border-color: #c5d4e8;
            box-shadow: 0 6px 18px rgba(0, 51, 102, 0.1);
            transform: translateY(-2px);
        }

        .service-tile-icon {
            flex-shrink: 0;
            width: 42px;
            height: 42px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            color: #fff;
            background: var(--tile-accent, var(--primary));
        }

        .service-tile-body {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .service-tile-body h3 {
            font-size: 0.92rem;
            margin: 0 0 4px;
            line-height: 1.25;
            color: var(--primary);
        }

        .service-tile-body p {
            font-size: 0.78rem;
            color: var(--gray);
            line-height: 1.4;
            margin: 0 0 8px;
        }

        .service-tile-note {
            display: block;
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 4px;
        }

        .service-tile-ouvidoria:hover {
            border-color: #c5d4e8;
            box-shadow: 0 6px 18px rgba(0, 51, 102, 0.1);
            transform: translateY(-2px);
        }

        .service-tile-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 8px;
            width: 100%;
            margin-top: 4px;
        }

        .service-tile-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 6px 14px;
            font-size: 0.72rem;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            border-radius: 6px;
            background-color: var(--primary);
            color: #fff;
            transition: var(--transition);
        }

        .service-tile-btn:hover,
        a.service-tile:hover .service-tile-btn {
            background-color: var(--accent);
            color: #fff;
        }

        .service-tile-btn--anon {
            background-color: #fff;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .service-tile-btn--anon:hover {
            background-color: #e3eef9;
            color: var(--primary);
        }
        
        /* Councilors Section */
        .councilors {
            padding: 80px 0;
            background-color: #f0f4f8;
        }

        .councilors-carousel-wrap {
            position: relative;
            padding: 0 52px;
        }

        .councilors-slider {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 12px 4px 28px;
        }

        .councilors-slider::-webkit-scrollbar {
            display: none;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            z-index: 2;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(0, 51, 102, 0.25);
        }

        .carousel-btn:hover {
            background-color: #002244;
        }

        .carousel-btn:disabled {
            opacity: 0.35;
            cursor: not-allowed;
        }

        .carousel-btn-prev {
            left: 0;
        }

        .carousel-btn-next {
            right: 0;
        }

        .councilor-card {
            flex: 0 0 250px;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            cursor: pointer;
        }

        .councilor-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 18px 36px rgba(0, 51, 102, 0.2);
        }

        .councilor-card:hover .councilor-info h4 {
            color: var(--accent);
        }

        .councilor-photo-wrap {
            position: relative;
            height: 250px;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .councilor-photo-wrap img {
            position: relative;
            z-index: 1;
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            display: block;
            object-fit: contain;
            object-position: center center;
            transition: transform 0.45s ease;
        }

        .councilor-card:hover .councilor-photo-wrap img {
            transform: scale(1.06);
        }

        .councilor-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 10;
            background-color: var(--primary);
            color: white;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            padding: 5px 10px;
            border-radius: 4px;
            font-family: 'Montserrat', sans-serif;
            pointer-events: none;
        }

        .councilor-info {
            padding: 18px 16px 20px;
            text-align: left;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .councilor-info h4 {
            font-size: 1rem;
            line-height: 1.35;
            margin-bottom: 6px;
            color: var(--primary);
            transition: color 0.3s ease;
        }

        .councilor-cargo {
            font-size: 0.85rem;
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 4px;
        }

        .councilor-partido {
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 600;
            margin-bottom: auto;
            padding-bottom: 12px;
        }

        .councilor-apelido {
            font-size: 0.72rem;
            color: #9aa3ad;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            line-height: 1.4;
            margin-top: 8px;
            padding-top: 12px;
            border-top: 1px solid #eef1f4;
        }

        /* Modal do vereador */
        .councilor-modal {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .councilor-modal.is-open {
            opacity: 1;
            visibility: visible;
        }

        .councilor-modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.65);
            cursor: pointer;
        }

        .councilor-modal-dialog {
            position: relative;
            background: #fff;
            width: 100%;
            max-width: 1100px;
            max-height: 90vh;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transform: translateY(24px) scale(0.97);
            transition: transform 0.35s ease;
        }

        .councilor-modal.is-open .councilor-modal-dialog {
            transform: translateY(0) scale(1);
        }

        .councilor-modal-close {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 5;
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .councilor-modal-close:hover {
            background: var(--accent);
        }

        .councilor-modal-body {
            display: grid;
            grid-template-columns: 200px 1fr 260px;
            gap: 28px;
            padding: 32px 36px;
            overflow-y: auto;
            max-height: 90vh;
        }

        .councilor-modal-gallery {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .councilor-modal-img-box {
            border: 1px solid #ddd;
            background: #f5f5f5;
            min-height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .councilor-modal-img-box img {
            max-width: 100%;
            max-height: 200px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .councilor-modal-main h2 {
            font-family: 'Montserrat', serif;
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 14px;
            line-height: 1.2;
            padding-right: 40px;
        }

        .councilor-modal-meta {
            margin-bottom: 20px;
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.7;
        }

        .councilor-modal-meta strong {
            color: var(--dark);
        }

        .councilor-modal-partido-bloco {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 22px;
            padding: 16px 18px;
            background: #f8fafc;
            border: 1px solid #e8edf2;
            border-radius: 8px;
        }

        .councilor-modal-partido-bloco img {
            width: 88px;
            height: 88px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .councilor-modal-partido-bloco .partido-info strong {
            display: block;
            font-size: 0.75rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 4px;
            font-family: 'Montserrat', sans-serif;
        }

        .councilor-modal-partido-bloco .partido-info span {
            font-size: 1rem;
            color: var(--primary);
            font-weight: 600;
            line-height: 1.4;
        }

        .councilor-modal-bio {
            font-size: 0.95rem;
            line-height: 1.75;
            color: var(--dark);
        }

        .councilor-modal-bio p {
            margin-bottom: 1rem;
        }

        .councilor-modal-bio p:last-child {
            margin-bottom: 0;
        }

        .councilor-modal-contact {
            border: 1px solid #ccc;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            align-self: start;
        }

        .councilor-modal-contact h3 {
            text-align: center;
            color: var(--accent);
            font-size: 1.1rem;
            padding: 16px 12px 12px;
            margin: 0;
            border-bottom: 2px solid var(--accent);
        }

        .councilor-modal-contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .councilor-modal-contact-list li {
            padding: 14px 16px;
            border-bottom: 1px dashed #ddd;
            font-size: 0.9rem;
        }

        .councilor-modal-contact-list li:last-child {
            border-bottom: none;
        }

        .councilor-modal-contact-list strong {
            display: block;
            color: var(--primary);
            font-size: 0.8rem;
            margin-bottom: 4px;
        }

        .councilor-modal-contact-list a {
            color: #0066cc;
            word-break: break-all;
        }

        .councilor-modal-social-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 6px;
        }

        .councilor-modal-social-links a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 6px;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .councilor-modal-social-links a:hover {
            background: var(--accent);
            color: #fff;
            transform: translateX(4px);
        }

        .councilor-modal-social-links a i {
            font-size: 1.25rem;
            width: 24px;
            text-align: center;
        }

        .councilor-modal-social-links a.is-disabled {
            background: #c5cdd6;
            pointer-events: none;
            cursor: default;
            transform: none;
        }

        .councilor-modal-social-links a.is-disabled:hover {
            background: #c5cdd6;
            transform: none;
        }

        body.councilor-modal-open {
            overflow: hidden;
        }

        @media (max-width: 900px) {
            .councilor-modal-body {
                grid-template-columns: 1fr;
                padding: 48px 20px 24px;
            }

            .councilor-modal-gallery {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .councilor-modal-img-box {
                flex: 1;
                min-width: 120px;
            }
        }
        
        /* Sessions Section */
        .sessions {
            padding: 80px 0;
            background-color: white;
        }
        
        .sessions-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .sessions-table th, .sessions-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .sessions-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        
        .sessions-table tr:hover {
            background-color: #f9f9f9;
        }
        
        .status {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .status.planned {
            background-color: #fff3cd;
            color: #856404;
        }
        
        .status.completed {
            background-color: #d4edda;
            color: #155724;
        }
        
        .status.live {
            background-color: #d1ecf1;
            color: #0c5460;
        }

        .status.cancelada {
            background-color: #f8d7da;
            color: #721c24;
        }
        
        /* Transparency Section */
        .transparency {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .transparency-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .transparency-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .transparency-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .transparency-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        /* Radar da Transparência — destaque PNTP / Atricon */
        .radar-transparencia {
            margin-top: 48px;
            background: linear-gradient(135deg, var(--primary) 0%, #004080 55%, #002a52 100%);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 12px 32px rgba(0, 51, 102, 0.25);
            position: relative;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .radar-transparencia:hover {
            transform: translateY(-10px);
            box-shadow: 0 22px 50px rgba(0, 51, 102, 0.4);
        }

        .radar-transparencia::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -8%;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.12);
            pointer-events: none;
            transition: transform 0.5s ease, border-color 0.4s ease;
        }

        .radar-transparencia:hover::before {
            transform: scale(1.12);
            border-color: rgba(255, 255, 255, 0.28);
        }

        .radar-transparencia::after {
            content: '';
            position: absolute;
            top: -25%;
            right: 2%;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 2px solid rgba(184, 134, 11, 0.35);
            pointer-events: none;
            transition: transform 0.5s ease, border-color 0.4s ease;
        }

        .radar-transparencia:hover::after {
            transform: scale(1.15);
            border-color: rgba(184, 134, 11, 0.65);
        }

        .radar-transparencia-inner {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 28px;
            align-items: center;
            padding: 36px 40px;
            position: relative;
            z-index: 1;
        }

        .radar-transparencia-visual {
            min-width: 130px;
            height: 96px;
            padding: 14px 18px;
            background: #fff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 2px solid rgba(184, 134, 11, 0.45);
            transition: transform 0.4s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }

        .radar-transparencia:hover .radar-transparencia-visual {
            transform: scale(1.06);
            border-color: var(--secondary);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
        }

        .radar-atricon-logo {
            max-width: 110px;
            max-height: 68px;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
            transition: transform 0.4s ease;
        }

        .radar-transparencia:hover .radar-atricon-logo {
            transform: scale(1.05);
        }

        .radar-transparencia-content h3 {
            color: #fff;
            font-size: 1.45rem;
            margin-bottom: 8px;
            font-family: 'Montserrat', sans-serif;
            transition: color 0.3s ease;
        }

        .radar-transparencia:hover .radar-transparencia-content h3 {
            color: var(--secondary);
        }

        .radar-transparencia-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .radar-transparencia-content p {
            color: rgba(255, 255, 255, 0.88);
            font-size: 0.95rem;
            line-height: 1.65;
            margin-bottom: 16px;
            max-width: 620px;
        }

        .radar-transparencia-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .radar-transparencia-pills span {
            font-size: 0.78rem;
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.35s ease, background 0.35s ease;
        }

        .radar-transparencia:hover .radar-transparencia-pills span {
            background: rgba(255, 255, 255, 0.22);
            transform: translateY(-3px);
        }

        .radar-transparencia:hover .radar-transparencia-pills span:nth-child(2) {
            transition-delay: 0.06s;
        }

        .radar-transparencia:hover .radar-transparencia-pills span:nth-child(3) {
            transition-delay: 0.12s;
        }

        .radar-transparencia-pills span i {
            margin-right: 6px;
            color: var(--secondary);
        }

        .radar-transparencia-action {
            text-align: center;
            flex-shrink: 0;
        }

        .radar-transparencia-action .btn-radar {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: var(--secondary);
            color: var(--primary);
            font-weight: 700;
            font-size: 0.95rem;
            border-radius: 6px;
            border: none;
            transition: var(--transition);
            white-space: nowrap;
        }

        .radar-transparencia-action .btn-radar:hover {
            background: #fff;
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .radar-transparencia-action small {
            display: block;
            margin-top: 10px;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.65);
        }

        @media (max-width: 900px) {
            .radar-transparencia-inner {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 28px 24px;
            }

            .radar-transparencia-visual {
                margin: 0 auto;
            }

            .radar-transparencia-content p {
                max-width: none;
            }

            .radar-transparencia-pills {
                justify-content: center;
            }
        }
        
        /* News Section */
        .news {
            padding: 80px 0 50px;
            background-color: white;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .news-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .news-img {
            height: 200px;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
        }
        
        .news-content {
            padding: 25px;
        }
        
        .news-date {
            font-size: 0.8rem;
            color: var(--gray);
            margin-bottom: 10px;
        }
        
        .news-content h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .footer-links h4, .footer-social h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a:hover {
            color: var(--secondary);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            font-size: 1.2rem;
        }
        
        .social-icons a:hover {
            background-color: var(--secondary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .header-brand-row {
                flex-direction: column;
                align-items: stretch;
            }

            .header-search-wrap {
                max-width: 100%;
            }

            .header-nav nav > ul {
                flex-direction: column;
                align-items: stretch;
                gap: 0;
            }

            .header-nav nav > ul > li {
                margin-right: 0;
                border-bottom: 1px solid #eee;
            }

            .nav-dropdown-menu {
                position: static;
                box-shadow: none;
                border: none;
                border-top: 1px solid #eee;
                padding: 0;
                display: none;
            }

            .nav-dropdown.open .nav-dropdown-menu {
                display: block;
            }

            .nav-dropdown:hover .nav-dropdown-menu {
                display: none;
            }

            .nav-dropdown.open:hover .nav-dropdown-menu {
                display: block;
            }

            .nav-dropdown-toggle {
                width: 100%;
                justify-content: space-between;
                padding: 12px 0;
            }
        }
        
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .services, .councilors, .sessions, .transparency, .news {
                padding: 60px 0;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .councilors-carousel-wrap {
                padding: 0 44px;
            }

            .carousel-btn {
                width: 36px;
                height: 36px;
                font-size: 0.85rem;
            }

            .councilor-card {
                flex: 0 0 250px;
            }

            .councilor-photo-wrap {
                height: 250px;
            }

            .section-header h2 {
                font-size: 1.6rem;
            }
            
            .header-top .container {
                flex-direction: column;
                align-items: stretch;
            }
            
            .header-top-social {
                justify-content: center;
            }
            
            .header-top-links {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .header-brand-row {
                flex-direction: column;
                align-items: stretch;
            }

            .header-brand-left,
            .header-brand-inner {
                justify-content: center;
            }

            .header-brand h1 {
                text-align: center;
            }

            .header-search-wrap {
                max-width: 100%;
            }

            .header-brand img,
            .header-logo {
                height: 75px;
            }

            .header-brand h1 {
                font-size: 1.05rem;
            }
            
            .transparency-grid, .news-grid {
                grid-template-columns: 1fr;
            }
        }