


/* CSS Customizado */
:root {
            --primary-400: #60a5fa;
            --primary-500: #3b82f6;
            --accent-400: #f87171;
            --accent-500: #ef4444;
        }

        * {
            font-family: 'Inter', sans-serif;
        }

        /* Mobile menu */
        .mobile-menu {
            display: none;
        }

        .mobile-menu.active {
            display: block;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 40;
        }

        .menu-content {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 80%;
            max-width: 320px;
            background: white;
            z-index: 50;
            padding: 1.5rem;
            overflow-y: auto;
        }

        /* Custom scroll */
        html {
            scroll-behavior: smooth;
        }

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

        .privacy-section {
            scroll-margin-top: 80px;
        }