﻿  :root {
            --green-900: #063817;
            --green-800: #0b4a1c;
            --green-700: #0f5c24;
            --green-600: #198233;
            --gold-500: #f2b705;
            --gold-600: #d79a00;
            --brown-800: #4a2b17;
            --brown-700: #6b3f20;
            --cream-50: #fbf8ef;
            --cream-100: #f4efe2;
            --cream-200: #e8dcc7;
            --white: #ffffff;
            --text-dark: #26180f;
            --text-muted: #70665b;
            --shadow-soft: 0 10px 30px rgba(6, 56, 23, 0.10);
            --shadow-card: 0 16px 40px rgba(6, 56, 23, 0.12);
            --radius: 18px;
            --transition: all .25s ease;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--cream-50);
            color: var(--text-dark);
            line-height: 1.6;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul {
            list-style: none;
        }

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

        .top-bar {
            background: linear-gradient(90deg, var(--green-900), var(--green-700));
            color: var(--white);
            font-size: .86rem;
            border-bottom: 3px solid var(--gold-500);
        }

        .top-bar .container {
            min-height: 42px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .top-bar-left {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }

        .top-bar i {
            color: var(--gold-500);
            margin-right: 7px;
        }

        .instagram-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 16px;
            border-radius: 999px;
            
            font-weight: 600;
            transition: var(--transition);
        }

        .instagram-btn:hover {
    
            color: #fff;
            transform: translateY(-1px);
        }

        .main-header {
            background: rgba(255,255,255,.96);
            backdrop-filter: blur(12px);
            box-shadow: 0 8px 28px rgba(6, 56, 23, .08);
        }

        .main-header .container {
            min-height: 106px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
        }

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

        .logo-img {
            height: 82px;
            width: auto;
            object-fit: contain;
        }

        .logo-text h1 {
            font-size: 1.65rem;
            color: var(--green-900);
            font-weight: 800;
            letter-spacing: .02em;
            line-height: 1.15;
        }

        .logo-text p {
            color: var(--brown-700);
            font-weight: 600;
            font-size: .92rem;
        }

        .header-seal {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--cream-100);
            border: 1px solid var(--cream-200);
            border-radius: 14px;
            padding: 14px 18px;
            color: var(--green-900);
            font-weight: 700;
        }

        .header-seal i {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--green-900);
            color: var(--gold-500);
            font-size: 1.15rem;
        }

        .main-nav {
            background: linear-gradient(90deg, var(--green-900), var(--green-800));
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 12px 28px rgba(0,0,0,.12);
        }

        .main-nav .container {
            display: flex;
            align-items: center;
        }

        .menu-toggle {
            display: none;
            width: 100%;
            padding: 16px 0;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            text-align: left;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            width: 100%;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 19px 18px;
            color: var(--white);
            font-weight: 700;
            font-size: .93rem;
            border-bottom: 3px solid transparent;
            transition: var(--transition);
        }

        .nav-link:hover,
        .nav-item:hover > .nav-link {
            color: var(--gold-500);
            background: rgba(255,255,255,.08);
            border-bottom-color: var(--gold-500);
        }

        .nav-link i {
            margin-left: 6px;
            font-size: .75rem;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 292px;
            background: var(--white);
            border-radius: 0 0 14px 14px;
            border-top: 4px solid var(--gold-500);
            box-shadow: var(--shadow-card);
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: var(--transition);
            overflow: hidden;
        }

        .dropdown-large {
            min-width: 390px;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item2 a {
            display: block;
            padding: 5px 0px!important;
            color: var(--text-dark);
            border-bottom: 1px solid var(--cream-100);
            font-weight: 600;
            font-size: .9rem;
            transition: var(--transition);
        }
        
        
        .dropdown-item a {
            display: block;
            padding: 13px 20px;
            color: var(--text-dark);
            border-bottom: 1px solid var(--cream-100);
            font-weight: 600;
            font-size: .9rem;
            transition: var(--transition);
        }

        .dropdown-item a:hover {
            background: var(--cream-100);
            color: var(--green-800);
            padding-left: 26px;
        }

        .hero-section {
            background: var(--cream-100);
            position: relative;
            overflow: hidden;
        }

        .hero-section::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--green-700), var(--gold-500), var(--brown-700));
        }

        .banner-img {
            width: 100%;
            display: block;
            max-height: 520px;
            object-fit: cover;
        }

        .quick-access {
            margin-top: 48px;
            position: relative;
            z-index: 5;
        }

        .quick-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .quick-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 22px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(232,220,199,.7);
            transition: var(--transition);
        }

        .quick-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-card);
        }

        .quick-card i {
            width: 46px;
            height: 46px;
            display: grid;
            place-items: center;
            border-radius: 13px;
            background: linear-gradient(135deg, var(--green-900), var(--green-600));
            color: var(--gold-500);
            font-size: 1.25rem;
            margin-bottom: 14px;
        }

        .quick-card h3 {
            color: var(--green-900);
            font-size: 1.05rem;
            margin-bottom: 6px;
        }

        .quick-card p {
            color: var(--text-muted);
            font-size: .9rem;
        }

        .intro-section {
            padding: 72px 0 34px;
            background: var(--cream-50);
        }

        .intro-card {
            display: grid;
            grid-template-columns: .9fr 1.6fr;
            gap: 34px;
            align-items: center;
            background: var(--white);
            border-radius: 24px;
            padding: 42px;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--cream-200);
            position: relative;
            overflow: hidden;
        }

        .intro-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(var(--green-700), var(--gold-500));
        }

        .intro-label {
            color: var(--gold-600);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .16em;
            font-size: .78rem;
            margin-bottom: 8px;
        }

        .intro-card h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.45rem;
            color: var(--green-900);
            line-height: 1.08;
        }

        .intro-card p {
            color: #4d443b;
            font-size: 1.03rem;
            text-align: justify;
        }

        .section-title {
            text-align: center;
            margin-bottom: 38px;
        }

        .section-title span {
            display: block;
            color: var(--gold-600);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .16em;
            font-size: .78rem;
            margin-bottom: 7px;
        }

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            color: var(--green-900);
            font-size: 2.35rem;
            line-height: 1.1;
        }

        .section-title::after {
            content: "";
            display: block;
            width: 76px;
            height: 4px;
            background: linear-gradient(90deg, var(--green-700), var(--gold-500));
            border-radius: 99px;
            margin: 18px auto 0;
        }

        .news-section {
            padding: 62px 0;
            background: var(--cream-50);
        }

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

        .news-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--cream-200);
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
        }

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

        .news-content {
            padding: 28px;
        }

        .news-badge {
            display: inline-block;
            padding: 6px 13px;
            border-radius: 999px;
            background: var(--green-800);
            color: var(--white);
            font-size: .72rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .05em;
            margin-bottom: 13px;
        }

        .news-badge.comunicado {
            background: var(--gold-500);
            color: var(--brown-800);
        }

        .news-meta {
            color: var(--text-muted);
            font-size: .84rem;
            margin-bottom: 12px;
        }

        .news-meta i {
            color: var(--green-700);
            margin-right: 5px;
        }

        .news-card h3 {
            color: var(--green-900);
            font-size: 1.18rem;
            line-height: 1.3;
            margin-bottom: 10px;
        }

        .news-card p {
            color: var(--text-muted);
            font-size: .93rem;
            margin-bottom: 18px;
        }

        .news-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--green-800);
            font-weight: 800;
            font-size: .9rem;
        }

        .stats-section {
            padding: 72px 0;
            background:
                radial-gradient(circle at top left, rgba(242,183,5,.22), transparent 34%),
                linear-gradient(135deg, var(--green-900), var(--green-700) 62%, var(--brown-700));
            color: var(--white);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
            text-align: center;
        }

        .stat-item {
            padding: 32px 20px;
            border-radius: 20px;
            background: rgba(255,255,255,.09);
            border: 1px solid rgba(255,255,255,.16);
            backdrop-filter: blur(8px);
        }

        .stat-icon {
            color: var(--gold-500);
            font-size: 2.2rem;
            margin-bottom: 13px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 7px;
        }

        .stat-label {
            color: rgba(255,255,255,.78);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .06em;
            font-size: .92rem;
        }

        .faq-section {
            padding: 70px 0;
            background: var(--white);
        }

        .faq-subtitle {
            text-align: center;
            color: var(--text-muted);
            max-width: 650px;
            margin: -22px auto 38px;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid var(--cream-200);
            border-radius: 16px;
            margin-bottom: 14px;
            overflow: hidden;
            background: var(--cream-50);
        }

        .faq-question {
            padding: 21px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            cursor: pointer;
            color: var(--green-900);
            font-weight: 800;
        }

        .faq-icon {
            color: var(--gold-600);
            transition: var(--transition);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            background: var(--white);
            transition: max-height .3s ease;
        }

        .faq-answer p {
            padding: 20px 24px;
            color: #4d443b;
            border-top: 1px solid var(--cream-200);
        }

        .faq-item.active .faq-answer {
            max-height: 900px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        footer {
            background:
                linear-gradient(rgba(6,56,23,.96), rgba(6,56,23,.98)),
                radial-gradient(circle at top right, rgba(242,183,5,.18), transparent 35%);
            color: var(--white);
            border-top: 5px solid var(--gold-500);
            padding: 62px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr .8fr .8fr 1fr !important;
            gap: 32px;
            margin-bottom: 36px;
        }

        .footer-logo-side h3,
        .footer-links h4,
        .footer-contact h4 {
            color: var(--white);
            margin-bottom: 16px;
        }

        .footer-logo-side p,
        .footer-links a,
        .contact-info li {
            color: rgba(255,255,255,.75);
        }

        .responsavel-box {
            margin-top: 18px;
            background: rgba(255,255,255,.08);
            border-left: 4px solid var(--gold-500);
            border-radius: 12px;
            padding: 15px;
        }

        .responsavel-box .nome {
            display: block;
            color: var(--gold-500);
            font-weight: 800;
        }

        .responsavel-box .cargo {
            font-size: .84rem;
            color: rgba(255,255,255,.7);
        }

        .footer-links h4::after,
        .footer-contact h4::after {
            content: "";
            display: block;
            width: 42px;
            height: 3px;
            background: var(--gold-500);
            margin-top: 9px;
            border-radius: 99px;
        }

        .footer-links li {
            margin-bottom: 11px;
        }

        .footer-links a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--gold-500);
            transform: translateX(4px);
        }

        .contact-info li {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
        }

        .contact-info i {
            color: var(--gold-500);
            margin-top: 4px;
        }

        .info-acesso-img {
            max-width: 150px;
            background: rgba(255,255,255,.10);
            border-radius: 10px;
            padding: 8px;
            margin-top: 6px;
        }

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

        .footer-bottom a {
            color: rgba(255,255,255,.78);
        }

        .footer-bottom a:hover {
            color: var(--gold-500);
        }

        /* ---- Paginas internas dinamicas ---- */
        .internal-section {
            padding: 64px 0;
            background: var(--cream-50);
        }

        .internal-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;
            gap: 34px;
            align-items: start;
        }

        .content-card {
            background: var(--white);
            border: 1px solid var(--cream-200);
            border-radius: 22px;
            box-shadow: var(--shadow-soft);
            padding: 0px;
        }

        .page-hero p {
            max-width: 760px;
            color: rgba(255,255,255,.82);
            font-size: 1.02rem;
        }

        .page-content {
            color: #4d443b;
            font-size: 1.02rem;
            line-height: 1.75;
        }

        .page-content h1,
        .page-content h2,
        .page-content h3,
        .page-content h4 {
            color: var(--green-900);
            line-height: 1.25;
            margin: 30px 0 14px;
        }

        .page-content h1:first-child,
        .page-content h2:first-child,
        .page-content h3:first-child {
            margin-top: 0;
        }

        .page-content h1 { font-size: 2rem; }
        .page-content h2 { font-size: 1.65rem; }
        .page-content h3 { font-size: 1.28rem; }
        .page-content h4 { font-size: 1.08rem; }

        .page-content p {
            margin-bottom: 18px;
            text-align: justify;
        }

        .page-content a {
            color: var(--green-800);
            font-weight: 800;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .page-content ul,
        .page-content ol {
            margin: 0 0 20px 24px;
            padding-left: 16px;
        }

        .page-content ul { list-style: disc; }
        .page-content ol { list-style: decimal; }

        .page-content li {
            margin-bottom: 8px;
        }

        .page-content blockquote {
            margin: 28px 0;
            padding: 22px 24px;
            border-left: 5px solid var(--gold-500);
            border-radius: 0 18px 18px 0;
            background: var(--cream-100);
            color: var(--green-900);
            font-weight: 700;
        }

        .page-content img {
            max-width: 100%;
            height: auto;
            border-radius: 18px;
            box-shadow: var(--shadow-soft);
            margin: 24px auto;
            display: block;
        }

        .page-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            overflow: hidden;
            border-radius: 14px;
        }

        .page-content th,
        .page-content td {
            border: 1px solid var(--cream-200);
            padding: 12px 14px;
            text-align: left;
            vertical-align: top;
        }

        .page-content th {
            background: var(--green-900);
            color: var(--white);
        }

        .not-found-card {
            max-width: 760px;
            margin: 0 auto;
            text-align: center;
        }

        .not-found-card > i {
            color: var(--gold-600);
            font-size: 3rem;
            margin-bottom: 18px;
        }

        .not-found-card p {
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        /* ---- Visualização de Notícia ---- */
        .page-hero {
            padding: 48px 0;
            background:
                radial-gradient(circle at right top, rgba(242,183,5,.22), transparent 34%),
                linear-gradient(135deg, var(--green-900), var(--green-700) 62%, var(--brown-700));
            color: #fff;
            position: relative;
        }

        .page-hero::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--green-600), var(--gold-500), var(--brown-700));
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 9px;
            margin-bottom: 20px;
            font-size: .9rem;
            color: rgba(255,255,255,.76);
        }

        .breadcrumb a { color: var(--gold-500); font-weight: 700; }
        .breadcrumb i { font-size: .7rem; color: rgba(255,255,255,.55); }

        .page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            line-height: 1.1;
            max-width: 900px;
            margin-bottom: 14px;
        }

        .news-meta-hero {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            color: rgba(255,255,255,.82);
            font-size: .95rem;
        }

        .news-meta-hero i { color: var(--gold-500); margin-right: 7px; }

        .news-layout {
            display: grid;
            grid-template-columns: minmax(0,1fr) 340px;
            gap: 34px;
            align-items: start;
        }

        .article-card {
            background: var(--white);
            border: 1px solid var(--cream-200);
            border-radius: 22px;
            box-shadow: var(--shadow-soft);
            overflow: hidden;
        }

        .article-cover {
            width: 100%;
            height: 390px;
            object-fit: cover;
            display: block;
            background: var(--cream-100);
        }

        .article-content { padding: 40px; }

        .badge {
            display: inline-block;
            padding: 7px 15px;
            border-radius: 999px;
            background: var(--gold-500);
            color: var(--brown-800);
            font-weight: 800;
            font-size: .76rem;
            text-transform: uppercase;
            letter-spacing: .06em;
            margin-bottom: 18px;
        }

        .article-lead {
            font-size: 1.16rem;
            color: var(--green-900);
            font-weight: 700;
            line-height: 1.65;
            margin-bottom: 24px;
            padding-left: 20px;
            border-left: 5px solid var(--gold-500);
        }

        .article-content p {
            color: #4d443b;
            font-size: 1.02rem;
            margin-bottom: 18px;
            text-align: justify;
        }

        .article-content h2 {
            color: var(--green-900);
            font-size: 1.55rem;
            margin: 32px 0 14px;
        }

        .article-highlight {
            margin: 28px 0;
            padding: 24px;
            border-radius: 18px;
            background: var(--cream-100);
            border-left: 5px solid var(--green-700);
            color: var(--text-dark);
            font-weight: 600;
        }

        .share-box {
            margin-top: 34px;
            padding-top: 26px;
            border-top: 1px solid var(--cream-200);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            flex-wrap: wrap;
        }

        .share-box strong { color: var(--green-900); }

        .share-links { display: flex; gap: 10px; }

        .share-links a {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--green-900);
            color: var(--gold-500);
            transition: var(--transition);
        }

        .share-links a:hover {
            background: var(--gold-500);
            color: var(--brown-800);
            transform: translateY(-3px);
        }

        .side-card {
            background: var(--white);
            border: 1px solid var(--cream-200);
            border-radius: 22px;
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            position: sticky;
            top: 92px;
            margin-bottom: 22px;
        }

        .news-layout > aside {
            position: sticky;
            top: 92px;
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .news-layout > aside .side-card {
            position: static;
            top: auto;
            margin-bottom: 0;
        }

        .side-title {
            background: linear-gradient(90deg, var(--green-900), var(--green-700));
            color: var(--white);
            padding: 18px 22px;
            font-weight: 800;
        }

        .latest-list a {
            display: block;
            padding: 18px 22px;
            border-bottom: 1px solid var(--cream-100);
            transition: var(--transition);
        }

        .latest-list a:hover { background: var(--cream-100); }

        .latest-list small {
            display: block;
            color: var(--gold-600);
            font-weight: 800;
            margin-bottom: 5px;
            font-size: .82rem;
        }

        .latest-list span {
            display: block;
            color: var(--green-900);
            font-weight: 800;
            line-height: 1.35;
            font-size: .92rem;
        }

        .side-menu a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 15px 22px;
            border-bottom: 1px solid var(--cream-100);
            color: var(--text-dark);
            font-weight: 700;
            line-height: 1.35;
            transition: var(--transition);
        }

        .side-menu a:last-child,
        .latest-list a:last-child {
            border-bottom: 0;
        }

        .side-menu a:hover,
        .side-menu a.active {
            background: var(--cream-100);
            color: var(--green-800);
            padding-left: 28px;
        }

        .side-menu i {
            color: var(--gold-600);
            font-size: .75rem;
            flex: 0 0 auto;
        }

        .service-box {
            padding: 24px;
            background: radial-gradient(circle at top right, rgba(242,183,5,.18), transparent 40%), var(--white);
            border: 1px solid var(--cream-200);
            border-radius: 22px;
            box-shadow: var(--shadow-soft);
        }

        .service-box i {
            color: var(--gold-600);
            font-size: 1.8rem;
            margin-bottom: 12px;
            display: block;
        }

        .service-box h3 { color: var(--green-900); margin-bottom: 8px; font-weight: 800; }
        .service-box p  { color: var(--text-muted); font-size: .93rem; margin-bottom: 16px; }

        .service-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 16px;
            background: var(--green-900);
            color: var(--white);
            border-radius: 999px;
            font-weight: 800;
            font-size: .88rem;
            transition: var(--transition);
        }

        .service-btn:hover { background: var(--green-700); }
        /* ---- fim visualização de notícia ---- */

        @media (max-width: 1024px) {
            .quick-grid,
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .intro-card {
                grid-template-columns: 1fr;
            }

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

            .footer-logo-side {
                grid-column: span 2;
            }

            .header-seal {
                display: none;
            }

            .news-layout {
                grid-template-columns: 1fr;
            }

            .internal-layout {
                grid-template-columns: 1fr;
            }

            .side-card {
                position: static;
            }

            .news-layout > aside {
                position: static;
            }
        }

        @media (max-width: 768px) {
            .top-bar .container,
            .main-header .container {
                flex-direction: column;
                text-align: center;
                padding-top: 12px;
                padding-bottom: 12px;
            }

            .top-bar-left,
            .logo-block {
                justify-content: center;
            }

            .logo-block {
                flex-direction: column;
            }

            .menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                align-items: stretch;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--green-900);
            }

            .nav-menu.open {
                display: flex;
            }

            .nav-link {
                padding: 15px 22px;
                border-bottom: 1px solid rgba(255,255,255,.08);
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                min-width: 100%;
                border-radius: 0;
                border-top: 0;
                max-height: 0;
                box-shadow: none;
                background: rgba(0,0,0,.16);
            }

            .nav-item.active-menu .dropdown {
                max-height: 760px;
            }

            .dropdown-item a {
                color: rgba(255,255,255,.82);
                border-bottom: 1px solid rgba(255,255,255,.06);
                padding-left: 34px;
            }

            .dropdown-item a:hover {
                color: var(--gold-500);
                background: rgba(255,255,255,.06);
            }

            .quick-access {
                margin-top: 24px;
            }

            .quick-grid,
            .news-grid,
            .stats-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-logo-side {
                grid-column: span 1;
            }

            .intro-section {
                padding-top: 40px;
            }

            .intro-card {
                padding: 30px 24px;
            }

            .intro-card h2,
            .section-title h2 {
                font-size: 2rem;
            }

            .page-hero h1   { font-size: 2rem; }
            .article-cover  { height: 250px; }
            .article-content{ padding: 28px 22px; }
            .content-card   { padding: 28px 22px; }
        }
        
        .page-wrapper {    max-width: 100%;
      margin: 0px auto;
      padding: 0px;
    }

    .law-card {
      background: #ffffff;
      border-radius: 18px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      border: 1px solid #e5e7eb;
    }

    .law-header {
          background: linear-gradient(135deg, #0f5c24, #4a2b17);
    color: #ffffff;
    padding: 32px;
    border-radius: 10px;
    }

    .law-label {
      display: inline-block;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: bold;
      opacity: 0.85;
      margin-bottom: 8px;
    }

    .law-title {
      display: block;
      font-size: 30px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .law-subtitle {
      display: block;
      font-size: 16px;
      opacity: 0.9;
    }

    .law-content {
      padding: 32px 0px;
    }

    .article-text {
      background: #f8fafc;
      border-left: 5px solid #0d6efd;
      border-radius: 12px;
      padding: 18px 22px;
      margin-bottom: 26px;
    }

    .article-text p {
      margin: 0;
      font-size: 17px;
    }

    .section {
      border: 1px solid #e5e7eb;
      border-radius: 14px;
      padding: 20px;
      margin-bottom: 18px;
      background: #ffffff;
    }

    .section-number {
      display: inline-block;
      background: #eef4ff;
      color: #333;
      font-weight: 800;
      border-radius: 50px;
      padding: 6px 14px;
      margin-bottom: 10px;
      font-size: 14px;
    }

    .section-title {
      display: block;
      font-size: 18px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 8px;
    }




    .section p {
      margin: 8px 0;
    }

    .list-item {
      display: block!important;
      padding: 8px 0 8px 18px;
      border-bottom: 1px dashed #000;
      position: relative;
    }

    .list-item:last-child {
      border-bottom: none;
    }

    .list-item::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #333;
      font-weight: bold;
    }

    .letter-item {
      display: block;
      margin: 8px 0;
      padding: 10px 12px;
      background: #f8fafc;
      border-radius: 10px;
    }

    .letter {
      font-weight: 800;
      color: #0d6efd;
      margin-right: 6px;
    }

    .highlight {
      font-weight: 700;
      color: #084298;
    }

    @media (max-width: 768px) {
      .page-wrapper {
        margin: 20px auto;
      }

      .law-header,
      .law-content {
        padding: 24px 0px;
      }

      .law-title {
        font-size: 24px;
      }
    }

    @media print {
      body {
        background: #ffffff;
      }

      .page-wrapper {
        margin: 0;
        max-width: 100%;
      }

      .law-card {
        box-shadow: none;
        border: none;
      }

      .law-header {
        background: #ffffff;
        color: #000000;
        border-bottom: 2px solid #000000;
      }

      .section {
        page-break-inside: avoid;
      }
    }
