 :root {
            /* Paleta de cores refinada - Padrão AgendWork */
            --bg-dark: #0a0a10;
            --bg-card: #12121a;
            --bg-card-hover: #171724;
            --text: #f0f0f5;
            --muted: #9e9eb5;
            --brand-1: #0052cc;
            --brand-2: #0cb0f0;
            --brand-3: #ff9500;
            --success: #39E000;
            --danger: #ff4d4f;
            --warning: #ff9500;
            --shadow: 0 10px 30px rgba(0, 0, 0, .5);
            --shadow-light: 0 5px 15px rgba(0, 0, 0, .3);
            --radius: 12px;
            --radius-lg: 20px;
            --transition: all 0.3s ease;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg-dark);
            color: var(--text);
            min-height: 100vh;
            line-height: 1.6;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(800px 400px at 85% -5%, rgba(0, 153, 255, 0.25), transparent 60%),
                radial-gradient(700px 350px at 5% 15%, rgba(0, 162, 255, 0.15), transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        /* Container Principal */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* Header */
        .header {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 2rem;
            margin-bottom: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            box-shadow: var(--shadow-light);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }

        .logo-container h1 {
            font-size: 1.8rem;
            background: linear-gradient(to right, #fff, var(--brand-2));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }

        .header-info {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.5rem;
        }

        .header-info span:first-child {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .badge {
            background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* Seção de Introdução */
        .intro-section {
            margin-bottom: 2rem;
        }

        .intro-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-light);
        }

        .intro-card h2 {
            color: var(--brand-2);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .intro-card h2 i {
            color: var(--brand-2);
        }

        .intro-text {
            color: var(--muted);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius);
            border-left: 3px solid var(--brand-2);
        }

        .date-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--muted);
            font-size: 0.95rem;
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius);
        }

        .date-info i {
            color: var(--brand-2);
        }

        .date-info strong {
            color: #fff;
        }

        /* Progress Bar */
        .progress-container {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius);
            height: 8px;
            margin: 2rem 0;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
            width: 0%;
            transition: width 0.5s ease;
            border-radius: var(--radius);
        }

        /* Container de Termos */
        .terms-container {
            margin-bottom: 3rem;
        }

        /* Seção de Termos */
        .term-section {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: var(--transition);
        }

        .term-section:hover {
            border-color: rgba(12, 176, 240, 0.3);
            box-shadow: var(--shadow-light);
        }

        .term-header {
            padding: 1.5rem 2rem;
            background: rgba(255, 255, 255, 0.03);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .term-header:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .term-header h3 {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .term-number {
            color: var(--brand-2);
            font-weight: 700;
        }

        .toggle-icon {
            color: var(--muted);
            transition: transform 0.3s ease;
        }

        .term-section.active .toggle-icon {
            transform: rotate(180deg);
            color: var(--brand-2);
        }

        .term-content {
            padding: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: none;
        }

        .term-section.active .term-content {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .term-item {
            margin-bottom: 1.5rem;
        }

        .term-item:last-child {
            margin-bottom: 0;
        }

        .term-subheader {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .term-subnumber {
            color: var(--brand-2);
            font-weight: 600;
            font-size: 0.95rem;
            min-width: 40px;
        }

        .term-subheader h4 {
            color: #fff;
            font-size: 1.05rem;
            font-weight: 600;
            margin: 0;
        }

        .term-item p {
            color: var(--muted);
            line-height: 1.7;
            margin-left: 3rem;
        }

        /* Listas Especiais */
        .responsibility-list {
            list-style: none;
            margin-left: 3rem;
            margin-top: 0.75rem;
        }

        .responsibility-list li {
            color: var(--muted);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .responsibility-list li i {
            color: var(--danger);
            margin-top: 0.25rem;
        }

        .prohibited-list {
            margin-left: 3rem;
            margin-top: 1rem;
        }

        .prohibited-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            padding: 0.75rem;
            background: rgba(255, 77, 79, 0.05);
            border-radius: var(--radius);
            border-left: 3px solid var(--danger);
        }

        .prohibited-item.prohibited-critical {
            background: rgba(255, 77, 79, 0.1);
            border-left: 3px solid #ff0000;
        }

        .prohibited-item i {
            color: var(--danger);
            margin-top: 0.25rem;
        }

        .prohibited-item span {
            color: var(--muted);
            flex: 1;
        }

        .penalties {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-left: 3rem;
            margin-top: 1rem;
        }

        .penalty {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: rgba(255, 149, 0, 0.1);
            border-radius: var(--radius);
            color: var(--warning);
        }

        .penalty i {
            font-size: 1.1rem;
        }

        .nested-terms {
            margin-left: 2rem;
            margin-top: 1rem;
            padding-left: 1rem;
            border-left: 2px solid rgba(255, 255, 255, 0.1);
        }

        .nested-term {
            margin-bottom: 0.75rem;
            display: flex;
            gap: 0.75rem;
        }

        .nested-term:last-child {
            margin-bottom: 0;
        }

        .nested-number {
            color: var(--muted);
            font-weight: 500;
            min-width: 50px;
        }

        .nested-term p {
            color: var(--muted);
            margin: 0;
        }

        /* Seção de Aceitação */
        .acceptance-section {
            margin-bottom: 3rem;
        }

        .acceptance-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-light);
        }

        .acceptance-card h3 {
            color: var(--success);
            font-size: 1.4rem;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .acceptance-card h3 i {
            color: var(--success);
        }

        .confirmation-box {
            margin-bottom: 2rem;
        }

        .checkbox-container {
            margin-bottom: 1.5rem;
            padding: 1.25rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }

        .checkbox-container:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(12, 176, 240, 0.2);
        }

        .checkbox-container label {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            cursor: pointer;
        }

        .terms-checkbox {
            display: none;
        }

        .checkmark {
            width: 24px;
            height: 24px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            position: relative;
            flex-shrink: 0;
            margin-top: 0.25rem;
            transition: var(--transition);
        }

        .terms-checkbox:checked + label .checkmark {
            background: var(--success);
            border-color: var(--success);
        }

        .terms-checkbox:checked + label .checkmark::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: bold;
        }

        .checkbox-text {
            flex: 1;
        }

        .checkbox-text strong {
            color: #fff;
            font-size: 1.05rem;
            display: block;
            margin-bottom: 0.35rem;
        }

        .checkbox-note {
            color: var(--muted);
            font-size: 0.9rem;
        }

        .action-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: var(--radius);
            border: none;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1rem;
            min-width: 180px;
            justify-content: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
            color: white;
        }

        .btn-primary:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(12, 176, 240, 0.3);
        }

        .btn-primary:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-secondary {
            background: transparent;
            color: var(--muted);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
        }

        .legal-note {
            color: var(--muted);
            font-size: 0.9rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius);
            border-left: 3px solid var(--brand-2);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .legal-note i {
            color: var(--brand-2);
            margin-top: 0.15rem;
        }

        /* Navegação Rápida */
        .quick-nav {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 1.75rem;
            margin-bottom: 2rem;
            position: sticky;
            top: 2rem;
        }

        .quick-nav h4 {
            color: var(--brand-2);
            font-size: 1.1rem;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .quick-nav h4 i {
            color: var(--brand-2);
        }

        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .nav-links .nav-link {
            padding: 0.6rem 1rem;
            background: rgba(12, 176, 240, 0.1);
            color: var(--brand-2);
            text-decoration: none;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
        }

        .nav-links .nav-link:hover {
            background: rgba(12, 176, 240, 0.2);
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 2rem;
            margin-top: 2rem;
            box-shadow: var(--shadow-light);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-logo-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .footer-title {
            font-size: 1.3rem;
            background: linear-gradient(to right, #fff, var(--brand-2));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }

        .footer-info {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-info p {
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin: 0;
        }

        .footer-info i {
            color: var(--brand-2);
            width: 20px;
        }

        .footer-legal {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-legal p {
            color: var(--muted);
            margin: 0;
        }

        .legal-disclaimer {
            font-size: 0.9rem;
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius);
            border-left: 3px solid var(--warning);
            margin-top: 0.5rem;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }
            
            .header {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }
            
            .logo-container h1 {
                font-size: 1.5rem;
            }
            
            .header-info {
                align-items: center;
            }
            
            .intro-card,
            .acceptance-card,
            .quick-nav,
            .footer {
                padding: 1.5rem;
            }
            
            .term-header {
                padding: 1.25rem 1.5rem;
            }
            
            .term-content {
                padding: 1.5rem;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                min-width: auto;
            }
            
            .nav-links {
                justify-content: center;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-logo,
            .footer-info p {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .term-header h3 {
                font-size: 1.1rem;
            }
            
            .intro-card h2 {
                font-size: 1.25rem;
            }
            
            .acceptance-card h3 {
                font-size: 1.2rem;
            }
            
            .checkbox-text strong {
                font-size: 1rem;
            }
        }