/* CSS Privacidade */
html {
            scroll-behavior: smooth;
        }

        .policy-card {
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .policy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-left-color: #3b82f6;
        }