        /* Variáveis de cores */
        :root {
            --terms-primary-color: #6d28d9;
            --terms-primary-light: #8b5cf6;
            --terms-primary-dark: #5b21b6;
            --terms-gray-dark: #374151;
            --terms-gray-medium: #6b7280;
            --terms-gray-light: #f3f4f6;
            --terms-white: #ffffff;
            --terms-success: #10b981;
            --terms-warning: #f59e0b;
            --terms-info: #3b82f6;
        }
        
        /* Reset e Base */
        .terms-body-override {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
 
            color: var(--terms-gray-dark);
            background: #f8f6fc;
            min-height: 100vh;
            margin: 0;
            padding: 0;
        }
        
        /* Container Principal */
        .terms-container-main {
            background: var(--terms-white);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 40px;
            margin: 60px auto;
            max-width: 1200px;
            position: relative;
            border: 1px solid #e5e7eb;
        }
        
        /* Cabeçalho */
        .terms-header-section {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 30px;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .terms-header-section h1 {
            color: var(--terms-gray-dark);
            font-size: 2.2rem;
            margin-bottom: 16px;
            font-weight: 700;
        }
        
        .terms-header-subtitle {
            color: var(--terms-gray-medium);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 20px;
            line-height: 1.6;
        }
        
        .terms-last-update {
            display: inline-block;
            background: var(--terms-gray-light);
            color: var(--terms-gray-medium);
            font-size: 0.875rem;
            padding: 6px 16px;
            border-radius: 7px;
            font-weight: 500;
        }
        
        /* Navegação Lateral - Título acima, links abaixo em coluna */
        .terms-navigation-sidebar {
           /* position: sticky;*/
           /* top: 30px;*/
            background: var(--terms-white);
            border-radius: 12px;
            padding: 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5e7eb;
            height: fit-content;
            max-height: calc(100vh - 160px);
            overflow-y: auto;
            margin-bottom: 40px;
        }
        
        .terms-nav-header {
            background: linear-gradient(135deg, var(--terms-primary-light) 0%, var(--terms-primary-color) 100%);
            color: var(--terms-white);
            padding: 20px;
            border-radius: 12px 12px 0 0;
            text-align: center;
        }
        
        .terms-nav-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .terms-nav-subtitle {
            font-size: 0.85rem;
            opacity: 0.9;
        }
        
        .terms-nav-content {
            padding: 20px;
        }
        
        .terms-nav-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .terms-nav-item {
            margin: 0;
        }
        
        .terms-nav-link {
            color: var(--terms-gray-dark);
            text-decoration: none;
            padding: 14px 16px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.2s ease;
            font-size: 0.95rem;
            border-left: 3px solid transparent;
            background: var(--terms-gray-light);
        }
        
        .terms-nav-link:hover {
            background: linear-gradient(135deg, rgba(109, 40, 217, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            color: var(--terms-primary-color);
            border-left-color: var(--terms-primary-light);
            transform: translateX(5px);
        }
        
        .terms-nav-link.active {
            background: linear-gradient(135deg, rgba(109, 40, 217, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
            color: var(--terms-primary-color);
            border-left-color: var(--terms-primary-color);
            font-weight: 500;
        }
        
        .terms-nav-icon {
            width: 20px;
            text-align: center;
            font-size: 1.1rem;
        }
        
        /* Conteúdo Principal */
        .terms-content-main {
            width: 100%;
        }
        
        /* Seções */
        .terms-content-section {
            margin-bottom: 50px;
            scroll-margin-top: 30px;
            background: var(--terms-white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid #e5e7eb;
        }
        
        .terms-section-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 2px solid #f1f5f9;
        }
        
        .terms-section-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--terms-primary-light), var(--terms-primary-color));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--terms-white);
            font-size: 1.4rem;
            flex-shrink: 0;
        }
        
        .terms-section-title {
            color: var(--terms-gray-dark);
            font-size: 1.6rem;
            font-weight: 600;
        }
        
        /* Conteúdo */
        .terms-section-content {
            padding-left: 0;
        }
        
        .terms-lead-text {
            font-size: 1.05rem;
            color: var(--terms-gray-dark);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        /* Cards de Recursos */
        .terms-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        
        .terms-feature-card {
            background: var(--terms-white);
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            padding: 20px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .terms-feature-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            border-color: var(--terms-primary-light);
        }
        
        .terms-feature-icon {
            font-size: 1.8rem;
            margin-bottom: 16px;
            color: var(--terms-primary-color);
        }
        
        .terms-feature-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--terms-gray-dark);
            margin-bottom: 10px;
        }
        
        .terms-feature-desc {
            color: var(--terms-gray-medium);
            line-height: 1.6;
            font-size: 0.9rem;
        }
        
        /* Boxes Informativos */
        .terms-info-box,
        .terms-success-box,
        .terms-warning-box {
            padding: 22px;
            margin: 24px 0;
            border-radius: 10px;
            border-left: 4px solid;
        }
        
        .terms-info-box {
            background: #f0f9ff;
            border-left-color: var(--terms-info);
        }
        
        .terms-success-box {
            background: #f0fdf4;
            border-left-color: var(--terms-success);
        }
        
        .terms-warning-box {
            background: #fffbeb;
            border-left-color: var(--terms-warning);
        }
        
        .terms-box-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        
        .terms-box-icon {
            font-size: 1.2rem;
        }
        
        .terms-box-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--terms-gray-dark);
        }
        
        /* Listas */
        .terms-styled-list {
            list-style: none;
            margin: 16px 0;
        }
        
        .terms-styled-list li {
            padding: 10px 0 10px 32px;
            position: relative;
            color: var(--terms-gray-dark);
            line-height: 1.6;
        }
        
        .terms-styled-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            width: 22px;
            height: 22px;
            background: var(--terms-primary-color);
            color: var(--terms-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        /* Processo Steps */
        .terms-process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 32px 0;
        }
        
        .terms-step {
            text-align: center;
            position: relative;
        }
        
        .terms-step-number {
            width: 48px;
            height: 48px;
            background: var(--terms-white);
            border: 2px solid var(--terms-primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--terms-primary-color);
            margin: 0 auto 16px;
            transition: all 0.3s ease;
        }
        
        .terms-step:hover .terms-step-number {
            background: var(--terms-primary-color);
            color: var(--terms-white);
        }
        
        .terms-step-title {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--terms-gray-dark);
            margin-bottom: 6px;
        }
        
        .terms-step-desc {
            color: var(--terms-gray-medium);
            font-size: 0.85rem;
            line-height: 1.5;
        }
        
        /* Seção de Contato */
        .terms-contact-section {
            background: linear-gradient(135deg, var(--terms-primary-light) 0%, var(--terms-primary-color) 100%);
            border-radius: 12px;
            padding: 36px;
            margin: 50px 0;
            color: var(--terms-white);
            text-align: center;
        }
        
        .terms-contact-title {
            font-size: 1.6rem;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .terms-contact-subtitle {
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 24px;
            font-size: 1.05rem;
        }
        
        .terms-contact-email {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--terms-white);
            color: var(--terms-primary-color);
            font-size: 1.1rem;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: 10px;
            text-decoration: none;
            margin: 16px 0;
            transition: all 0.3s ease;
        }
        
        .terms-contact-email:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }
        
        .terms-contact-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 24px;
            flex-wrap: wrap;
        }
        
        .terms-contact-item {
            text-align: center;
        }
        
        .terms-contact-label {
            font-size: 0.85rem;
            opacity: 0.8;
            margin-bottom: 4px;
        }
        
        .terms-contact-value {
            font-size: 1.05rem;
            font-weight: 600;
        }
        
        /* Rodapé */
        .terms-footer-section {
            text-align: center;
            padding-top: 40px;
            margin-top: 50px;
            border-top: 1px solid #e5e7eb;
        }
        
        .terms-footer-title {
            color: var(--terms-gray-dark);
            font-size: 1.4rem;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .terms-footer-tagline {
            color: var(--terms-gray-medium);
            font-size: 1.05rem;
            max-width: 700px;
            margin: 0 auto 28px;
            line-height: 1.6;
        }
        
        .terms-trust-badges {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 32px 0;
        }
        
        .terms-badge {
            background: var(--terms-white);
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .terms-badge:hover {
            border-color: var(--terms-primary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
        }
        
        .terms-badge-icon {
            font-size: 1.8rem;
            margin-bottom: 12px;
            color: var(--terms-primary-color);
        }
        
        .terms-badge-title {
            font-weight: 600;
            color: var(--terms-gray-dark);
            font-size: 1.05rem;
        }
        
        .terms-badge-desc {
            color: var(--terms-gray-medium);
            font-size: 0.85rem;
            margin-top: 6px;
        }
        
        /* Botão Voltar ao Topo */
        .terms-back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--terms-primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: 0 4px 12px rgba(109, 40, 217, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }
        
        .terms-back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .terms-back-to-top:hover {
            background: var(--terms-primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(109, 40, 217, 0.4);
        }
        
        /* Responsividade */
        @media (max-width: 1100px) {
            .terms-container-main {
                padding: 32px;
                margin: 40px 20px;
            }
        }
        
        @media (max-width: 768px) {
            .terms-container-main {
                padding: 28px 24px;
                margin: 32px 16px;
                border-radius: 10px;
            }
            
            .terms-header-section h1 {
                font-size: 1.8rem;
            }
            
            .terms-header-subtitle {
                font-size: 1rem;
            }
            
            .terms-section-header {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
            
            .terms-section-title {
                font-size: 1.4rem;
            }
            
            .terms-content-section {
                padding: 24px;
            }
            
            .terms-contact-section {
                padding: 28px 20px;
            }
            
            .terms-contact-email {
                font-size: 1rem;
                padding: 12px 24px;
            }
            
            .terms-features-grid {
                grid-template-columns: 1fr;
            }
            
            .terms-process-steps {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .terms-back-to-top {
                bottom: 20px;
                right: 20px;
                width: 44px;
                height: 44px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .terms-container-main {
                padding: 24px 20px;
            }
            
            .terms-header-section h1 {
                font-size: 1.6rem;
            }
            
            .terms-section-title {
                font-size: 1.3rem;
            }
            
            .terms-contact-info {
                flex-direction: column;
                gap: 20px;
            }
            
            .terms-trust-badges {
                grid-template-columns: 1fr;
            }
            
            .terms-nav-link {
                padding: 12px 14px;
                font-size: 0.9rem;
            }
        }
        
        /* Utilitários */
        .terms-highlight {
            background: linear-gradient(120deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
            color: var(--terms-primary-color);
        }
        
        .terms-text-primary {
            color: var(--terms-primary-color);
        }
        
        .terms-text-muted {
            color: var(--terms-gray-medium);
        }
        
        .terms-font-semibold {
            font-weight: 600;
        }
                     /* ============================================= */
/* BLOCO DE CONSENTIMENTO - TERMOS DE SERVIÇO */
/* ============================================= */

.terms-consent-box {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    border: 2px solid #d4e0ff;
    border-radius: 16px;
    padding: 30px 35px;
    margin: 30px 0 40px 0;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: 0 8px 32px rgba(106, 27, 154, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.terms-consent-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(106, 27, 154, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.terms-consent-box::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.terms-consent-box:hover {
    border-color: #b8ccff;
    box-shadow: 0 12px 40px rgba(106, 27, 154, 0.12);
    transform: translateY(-2px);
}

/* Ícone do consentimento */
.terms-consent-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #6a1b9a 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(106, 27, 154, 0.3);
    position: relative;
    z-index: 1;
    animation: pulseIcon 3s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(106, 27, 154, 0.3);
    }
    50% {
        box-shadow: 0 4px 28px rgba(106, 27, 154, 0.5);
    }
}

/* Conteúdo do consentimento */
.terms-consent-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.terms-consent-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.3px;
}

.terms-consent-content h3 .fa-shield-alt {
    color: #6a1b9a;
    margin-right: 10px;
}

.terms-consent-content > p {
    font-size: 15px;
    color: #2d3748;
    line-height: 1.7;
    margin: 0 0 16px 0;
    font-weight: 400;
}

/* Lista de itens do consentimento */
.terms-consent-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 25px;
}

.terms-consent-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #1e293b;
    line-height: 1.5;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.terms-consent-list li:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(4px);
}

.terms-consent-list li i {
    color: #059669;
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* Rodapé do consentimento */
.terms-consent-footer {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.6;
    margin: 6px 0 0 0;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border-left: 4px solid #6a1b9a;
    font-style: italic;
}

/* ============================================= */
/* RESPONSIVIDADE */
/* ============================================= */

/* Tablets e telas médias */
@media (max-width: 992px) {
    .terms-consent-box {
        padding: 24px 28px;
        gap: 20px;
    }
    
    .terms-consent-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .terms-consent-icon {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }
    
    .terms-consent-content h3 {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .terms-consent-box {
        flex-direction: column;
        align-items: center;
        padding: 20px 18px;
        margin: 20px 0 30px 0;
        text-align: center;
    }
    
    .terms-consent-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 4px;
    }
    
    .terms-consent-content h3 {
        font-size: 17px;
        text-align: center;
    }
    
    .terms-consent-content > p {
        font-size: 14px;
        text-align: center;
    }
    
    .terms-consent-list li {
        text-align: left;
        padding: 7px 10px;
        font-size: 13px;
    }
    
    .terms-consent-list li i {
        font-size: 16px;
        margin-top: 2px;
    }
    
    .terms-consent-footer {
        font-size: 12px;
        text-align: center;
        padding: 12px 14px;
    }
}

/* Telas muito pequenas (celulares) */
@media (max-width: 480px) {
    .terms-consent-box {
        padding: 16px 14px;
        margin: 16px 0 20px 0;
        border-radius: 12px;
    }
    
    .terms-consent-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .terms-consent-content h3 {
        font-size: 15px;
    }
    
    .terms-consent-content > p {
        font-size: 13px;
    }
    
    .terms-consent-list li {
        font-size: 12px;
        padding: 6px 8px;
        gap: 8px;
    }
    
    .terms-consent-list li i {
        font-size: 14px;
    }
    
    .terms-consent-footer {
        font-size: 11px;
        padding: 10px 12px;
    }
}

/* ============================================= */
/* MODO ESCURO (OPCIONAL) */
/* ============================================= */
@media (prefers-color-scheme: dark) {
    .terms-consent-box {
        background: linear-gradient(135deg, #1e1e3a 0%, #2a1f4a 100%);
        border-color: #3d2a6a;
    }
    
    .terms-consent-box::before {
        background: radial-gradient(circle, rgba(106, 27, 154, 0.1) 0%, transparent 70%);
    }
    
    .terms-consent-box::after {
        background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    }
    
    .terms-consent-content h3 {
        color: #e8e4ff;
    }
    
    .terms-consent-content > p {
        color: #c8c4e0;
    }
    
    .terms-consent-list li {
        background: rgba(255, 255, 255, 0.08);
        color: #d0cce8;
    }
    
    .terms-consent-list li:hover {
        background: rgba(255, 255, 255, 0.14);
    }
    
    .terms-consent-footer {
        background: rgba(255, 255, 255, 0.06);
        color: #b0acd0;
        border-left-color: #7c3aed;
    }
}

/* ============================================= */
/* ANIMAÇÃO DE ENTRADA */
/* ============================================= */
.terms-consent-box {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay para animação */
.terms-consent-box {
    animation-delay: 0.2s;
}

/* ============================================= */
/* VARIAÇÃO COM BORDA GRADIENTE */
/* ============================================= */
.terms-consent-box.gradient-border {
    border-image: linear-gradient(135deg, #6a1b9a, #7c3aed, #6a1b9a) 1;
    border-image-slice: 1;
    border-width: 2px;
    border-style: solid;
}