/* Estilos da página de Política de Privacidade */
        html {
            scroll-behavior: smooth;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f5f5f5;
            padding: 15px;
        }
        .container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        h1 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 24px;
            text-align: center;
        }
        .subtitle {
            color: #7f8c8d;
            margin-bottom: 20px;
            font-size: 12px;
            text-align: center;
        }
        h2 {
            color: #34495e;
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 18px;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
            text-align: center;
        }
        h3 {
            color: #34495e;
            margin-top: 18px;
            margin-bottom: 12px;
            font-size: 15px;
            text-align: center;
        }
        h4 {
            color: #34495e;
            margin-top: 12px;
            margin-bottom: 10px;
            font-size: 14px;
            text-align: center;
        }
        p {
            margin-bottom: 12px;
            text-align: justify;
            font-size: 14px;
            line-height: 1.5;
        }
        ul, ol {
            margin-left: 20px;
            margin-bottom: 15px;
            font-size: 13px;
        }
        li {
            margin-bottom: 6px;
            text-align: justify;
        }
        .highlight {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 12px;
            margin: 15px 0;
            border-radius: 4px;
            font-size: 13px;
        }
        .info-box {
            background: #e8f4f8;
            border-left: 4px solid #3498db;
            padding: 12px;
            margin: 12px 0;
            border-radius: 4px;
            font-size: 13px;
        }
        .critical {
            background: #fadbd8;
            border-left: 4px solid #e74c3c;
            padding: 12px;
            margin: 12px 0;
            border-radius: 4px;
            font-size: 13px;
        }
        .table-wrapper {
            width: 100%;
            overflow-x: auto;
            overflow-y: hidden;
            margin: 15px 0;
            -webkit-overflow-scrolling: touch;
            display: block;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        table {
            width: auto;
            border-collapse: collapse;
            margin: 0;
            font-size: 12px;
            min-width: 100%;
            table-layout: auto;
        }
        table th {
            background: #34495e;
            color: white;
            padding: 10px 8px;
            text-align: left;
            font-weight: bold;
            font-size: 12px;
            white-space: normal;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        table td {
            padding: 10px 8px;
            border-bottom: 1px solid #ddd;
            font-size: 12px;
            white-space: normal;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        table tr:nth-child(even) {
            background: #f9f9f9;
        }
        .contact-section {
            background: #ecf0f1;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            font-size: 13px;
            text-align: center;
        }
        .last-updated {
            color: #7f8c8d;
            font-size: 11px;
            margin-top: 30px;
            padding-top: 15px;
            border-top: 1px solid #ddd;
            text-align: center;
        }
        a {
            color: #3498db !important;
            text-decoration: none !important;
            word-break: break-word;
            cursor: pointer !important;
            display: inline !important;
        }
        a:hover {
            text-decoration: underline !important;
        }
        .toc {
            background: #f0f8ff;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            font-size: 13px;
            text-align: left;
        }
        .toc ul {
            margin-left: 15px;
        }
        .icon {
            margin-right: 5px;
        }
        
        /* Media Query para Responsividade */
        @media (max-width: 768px) {
            body {
                padding: 10px;
            }
            .container {
                padding: 15px;
            }
            h1 {
                font-size: 20px;
            }
            h2 {
                font-size: 16px;
            }
            h3 {
                font-size: 14px;
            }
            h4 {
                font-size: 13px;
            }
            p {
                font-size: 13px;
            }
            ul, ol {
                font-size: 12px;
                margin-left: 15px;
            }
            li {
                font-size: 12px;
            }
            table {
                font-size: 11px;
            }
            table th, table td {
                padding: 8px;
                font-size: 11px;
            }
            .highlight, .info-box, .critical {
                font-size: 12px;
                padding: 10px;
            }
            .contact-section {
                font-size: 12px;
                padding: 12px;
            }
            .last-updated {
                font-size: 10px;
            }
            .subtitle {
                font-size: 11px;
            }
            .toc {
                font-size: 12px;
                padding: 12px;
                text-align: left;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 8px;
            }
            .container {
                padding: 12px;
            }
            h1 {
                font-size: 18px;
            }
            h2 {
                font-size: 15px;
            }
            h3 {
                font-size: 13px;
            }
            h4 {
                font-size: 12px;
            }
            p {
                font-size: 12px;
            }
            ul, ol {
                font-size: 11px;
                margin-left: 12px;
            }
            li {
                font-size: 11px;
            }
            table {
                font-size: 10px;
            }
                        table {
                font-size: 10px;
            }
            table th, table td {
                padding: 6px;
                font-size: 10px;
            }
            .highlight, .info-box, .critical {
                font-size: 11px;
                padding: 8px;
                margin: 10px 0;
            }
            .contact-section {
                font-size: 11px;
                padding: 10px;
            }
            .last-updated {
                font-size: 9px;
            }
            .subtitle {
                font-size: 10px;
            }
            .toc {
                font-size: 11px;
                padding: 10px;
                text-align: left;
            }
        }
