body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/images/Background_Termo.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
            opacity: 0.65;  /* Só a IMAGEM fica transparente */
            z-index: -1;
}
        .page-termos {
            min-height: calc(100vh - 100px); /* respeita o header */
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .container-termos {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.70);  /* Branco com 95% opacidade */
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            backdrop-filter: blur(10px);  /* Efeito de vidro fosco */
            margin-bottom: 40px;
        }
        
        .termos-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px 30px;
            text-align: center;
        }
        
        .termos-header h1 {
            font-size: 2.5em;
            margin: 0;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
        }
        
        .termos-header p {
            margin: 10px 0 0 0;
            font-size: 1.1em;
            opacity: 0.9;
        }
        
        .termos-content {
            padding: 40px;
            color: #333;
            line-height: 1.8;
            font-family: 'Lato', sans-serif;
        }
        
        .termos-content h2 {
            color: #667eea;
            font-size: 1.8em;
            margin: 30px 0 15px 0;
            font-family: 'Poppins', sans-serif;
            border-bottom: 2px solid #667eea;
            padding-bottom: 10px;
            text-align: center;
        }
        
        .termos-content h3 {
            color: #764ba2;
            font-size: 1.3em;
            margin: 20px 0 10px 0;
            font-family: 'Poppins', sans-serif;
            text-align: left;
        }
        
        .termos-content p {
            margin: 12px 0;
            text-align: left;
        }
        
        .termos-content ul {
            margin: 15px 0 15px 30px;
            padding: 0;
        }
        
        .termos-content li {
            margin: 8px 0;
            text-align: left;
        }
        
        .intro-box {
            background: #f0f4ff;
            border-left: 4px solid #667eea;
            padding: 20px;
            margin-bottom: 30px;
            border-radius: 4px;
        }
        
        .intro-box p {
            margin: 0;
            color: #333;
            font-weight: 500;
        }
        
        .termos-footer {
            background: #f8f9fa;
            padding: 30px;
            text-align: center;
            border-top: 1px solid #e0e0e0;
        }
                
        .btn-voltar {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .btn-voltar:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
        }
        
        @media (max-width: 768px) {
            .termos-header h1 {
                font-size: 1.8em;
            }
            
            .termos-content {
                padding: 25px;
            }
            
            .termos-content h2 {
                font-size: 1.4em;
            }
            
            .termos-content h3 {
                font-size: 1.1em;
            }
        }