 #policy-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            z-index: 2000;
            display: none; /* Começa escondido */
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        #policy-overlay.visible {
            display: flex;
            opacity: 1;
        }

        #policy-content {
            background-color: #0a0a0a;
            color: #f0f0f0;
            padding: 20px 30px;
            border-radius: 12px;
            border: 1px solid #333;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            font-family: 'Nunito', sans-serif;
            transform: scale(0.95);
            transition: transform 0.3s ease;
        }
        
        #policy-overlay.visible #policy-content {
            transform: scale(1);
        }

        .policy-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #333;
            padding-bottom: 15px;
            margin-bottom: 15px;
            flex-shrink: 0;
        }

        .policy-header h2 {
            margin: 0;
            font-size: 1.5em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        #close-policy-button {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 2.5rem;
            line-height: 1;
            font-weight: 300;
            padding: 0;
            margin: 0;
            color: #aaa;
            transition: color 0.2s ease, transform 0.2s ease;
        }

        #close-policy-button:hover {
            color: #fff;
            transform: rotate(90deg);
        }

        .policy-body {
            overflow-y: auto;
            padding-right: 15px;
        }

        .policy-section h3 {
            font-size: 1.4em;
            color: #ffffff;
            border-bottom: 2px solid #e9e9e9;
            padding-bottom: 8px;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .policy-section h4 {
            font-size: 1.2em;
            color: #ffffff;
            margin-top: 25px;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .policy-section p {
             font-size: 1em;
            line-height: 1.7;
            color: #dcdcdc;
            margin-bottom: 15px;
        }

        .policy-section ul {
            list-style: none;
            padding-left: 0;
        }
        
        .policy-section li {
            font-size: 1em;
            line-height: 1.7;
            color: #dcdcdc;
            padding-left: 1.5em;
            position: relative;
            margin-bottom: 10px;
        }

        .policy-section li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #ffffff;
            font-weight: bold;
            font-size: 1.2em;
        }

        .policy-divider {
            border: 0;
            height: 1px;
            background-color: #333;
            margin: 40px 0;
        }

        .policy-body::-webkit-scrollbar { width: 8px; }
        .policy-body::-webkit-scrollbar-track { background: #111; }
        .policy-body::-webkit-scrollbar-thumb {
            background-color: #555;
            border-radius: 10px;
            border: 2px solid #111;
        }