  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }
        
      body {
    background: #f5f7fb;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 40px auto;        /* espaço externo */
    padding: 40px 32px;       /* 🔥 espaço interno lateral */
    background: #ffffff;
    border-radius: 12px;
}

        
        header {
            background: linear-gradient(135deg, #1a73e8 0%, #6c8ef5 100%);
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        h1 {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }
        
        .subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .tab-container {
            display: flex;
            border-bottom: 1px solid #e0e0e0;
            background-color: #f8f9fa;
            position: relative;
        }
        
        .tab {
            padding: 18px 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            color: #555;
            position: relative;
        }
        
        .tab:hover {
            background-color: #edf2f7;
            color: #1a73e8;
        }
        
        .tab.active {
            color: #1a73e8;
            border-bottom: 3px solid #1a73e8;
            background-color: white;
        }
        
        .tab.disabled {
            color: #aaa;
            cursor: not-allowed;
            pointer-events: none;
            opacity: 0.6;
        }
        
        .tab.disabled::after {
            content: "🔒";
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.9rem;
        }
        
        .tab-content {
            display: none;
            padding: 40px;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .contact-section {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid #1a73e8;
        }
        
        .contact-form {
            flex: 2;
            min-width: 300px;
        }
        
        h2 {
            color: #1a73e8;
            margin-bottom: 20px;
            font-size: 1.6rem;
        }
        
        h3 {
            color: #444;
            margin: 25px 0 15px 0;
            font-size: 1.3rem;
        }
        
        .info-item {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .info-item:last-child {
            border-bottom: none;
        }
        
        .info-title {
            font-weight: 600;
            color: #1a73e8;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }
        
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #1a73e8;
            box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            margin: 25px 0;
        }
        
        .checkbox-group input {
            width: auto;
            margin-top: 5px;
            margin-right: 10px;
        }
        
        .checkbox-group label {
            font-weight: normal;
            font-size: 0.95rem;
            color: #666;
        }
        
        .btn {
            background: linear-gradient(to right, #1a73e8, #6c8ef5);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn:hover {
            background: linear-gradient(to right, #0d62d9, #5a7cf0);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
        }
        
        .btn:disabled {
            background: #cccccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
            opacity: 0.6;
        }
        
        .lgpd-principles {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .principle-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            border-left: 4px solid #1a73e8;
            transition: transform 0.3s;
        }
        
        .principle-card:hover {
            transform: translateY(-5px);
        }
        
        .principle-title {
            font-weight: 700;
            color: #1a73e8;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .lgpd-requirements {
            background-color: #f0f7ff;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border: 1px solid #d0e3ff;
        }
        
        .requirements-list {
            list-style-type: none;
        }
        
        .requirements-list li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }
        
        .requirements-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #1a73e8;
            font-weight: bold;
        }
        
        .data-types {
            margin: 25px 0;
        }
        
        .data-category {
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #ddd;
        }
        
        .footer-note {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            color: #777;
            font-size: 0.9rem;
        }
        
        .required-field::after {
            content: " *";
            color: #e53935;
        }
        
        .error-message {
            color: #e53935;
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }
        
        .completion-message {
            background-color: #e8f5e9;
            border: 1px solid #c8e6c9;
            border-radius: 8px;
            padding: 15px;
            margin: 20px 0;
            display: none;
            color: #2e7d32;
            font-weight: 500;
        }
        
        @media (max-width: 768px) {
            .contact-section {
                flex-direction: column;
            }
            
            .tab {
                padding: 15px;
                font-size: 0.95rem;
            }
            
            .tab-content {
                padding: 25px;
            }
        }