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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #ffffff 0%, #dfdfdf 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            max-width: 600px;
            width: 100%;
            position: relative;
        }

        .header {
            background: linear-gradient(135deg, #254126 0%, #254126 100%);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-top: 20px solid #254126;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .subtitle {
            font-size: 16px;
            opacity: 0.9;
            font-weight: 300;
        }

        .form-container {
            padding: 40px;
        }

        .progress-bar {
            background: #f8f9fa;
            border-radius: 10px;
            height: 8px;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .progress-fill {
            background: linear-gradient(90deg, #254126, #265628);
            height: 100%;
            border-radius: 10px;
            transition: width 0.3s ease;
            width: 5%;
        }

        .step-title {
            font-size: 24px;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
            width: 100%;
        }

        .step-second-title {
            font-size: 16px;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
            width: 100%;
        }

        .step-description {
            color: #254125;
            margin-bottom: 20px;
            font-size: 19px;
            line-height: 1.5;
        }

        .form-step {
            display: none;
        }

        .active {
            animation: slideIn 0.3s ease-out;
        }

        .container-preview {
            position: absolute;
            width: 100vw;
            height: 100vh;
            margin-top: -51px;
            background-color: #dededeb0;
            z-index: 999999;
            display: flex;
            flex-wrap: wrap;
            align-content: center;
            justify-content: center;
            align-items: center;
            gap: 30px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .invalid::before,
        .invalid::after {
        content: "";
        position: absolute;
        top: 46%;
        left: 0;
        width: 100%;
        height: 4px;
        background: red;
        }

        .invalid::before {
        transform: rotate(10deg);
        }

        .invalid::after {
        transform: rotate(351deg);
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #34495e;
            font-weight: 500;
            font-size: 14px;
        }

        .required {
            color: #e74c3c;
            margin-right: 5px;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 2px solid #ecf0f1;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #fff;
        }

        .form-control:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-control.error {
            border-color: #e74c3c;
            box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
        }

        .form-control.tip {
            border-color: #2c7a21;
        }

        .obrigatorios {
            border-color: #cb7753;
        }

        .tipMsg {
            font-size: 14px;
            color: #2c7a21;
            margin-top: 5px;
        }

        .radio-group, .checkbox-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .radio-card, .checkbox-card {
            position: relative;
            cursor: pointer;
        }

        .radio-card input, .checkbox-card input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .radio-card label, .checkbox-card label {
            display: block;
            padding: 20px;
            border: 2px solid #ecf0f1;
            border-radius: 12px;
            text-align: center;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            background: white;
        }

        .radio-card input:checked + label, .checkbox-card input:checked + label {
            border-color: #cb7753;
            background: linear-gradient(135deg, #254126, #265628);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .radio-card label:hover, .checkbox-card label:hover {
            border-color: #bdc3c7;
            transform: translateY(-1px);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-row-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 15px;
        }

        .file-upload {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .file-upload input[type="file"] {
            position: absolute;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .file-upload-label {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            border: 2px dashed #bdc3c7;
            border-radius: 12px;
            background: #f8f9fa;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .file-upload-label:hover {
            border-color: #667eea;
            background: rgba(102, 126, 234, 0.05);
        }

        .file-upload-icon {
            font-size: 24px;
            color: #7f8c8d;
            margin-right: 10px;
        }

        .file-upload-text {
            color: #7f8c8d;
            font-weight: 500;
        }

        .search-input {
            position: relative;
            margin-bottom: 20px;
        }

        .search-input input {
            padding-left: 45px;
        }

        .search-input::before {
            content: '\f002';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #7f8c8d;
            z-index: 1;
        }

        .products-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .products-box {
            border: 2px solid #ecf0f1;
            border-radius: 12px;
            overflow: hidden;
        }

        .products-header {
            padding: 15px;
            color: white;
            font-weight: 600;
            text-align: center;
        }

        .products-header.fabricante {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
        }

        .products-header.distribuidor {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
        }

        .products-list {
            max-height: 300px;
            overflow-y: auto;
            padding: 15px;
            background: #f8f9fa;
        }

        .product-item {
            display: flex;
            align-items: center;
            padding: 10px;
            margin-bottom: 8px;
            background: white;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .product-item:hover {
            background: #ecf0f1;
        }

        .product-item input[type="checkbox"] {
            margin-right: 10px;
            scale: 1.2;
        }

        .comparison-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid #ecf0f1;
            margin-bottom: 20px;
        }

        .table-header {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            background: #f8f9fa;
            font-weight: 600;
        }

        .table-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            border-top: 1px solid #ecf0f1;
        }

        .table-cell {
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .table-cell:first-child {
            justify-content: flex-start;
        }

        .premium-col {
            color: #3498db;
            background: rgba(52, 152, 219, 0.05);
        }

        .free-col {
            color: #7f8c8d;
        }

        .icon-check {
            color: #27ae60;
            font-size: 18px;
        }

        .icon-x {
            color: #e74c3c;
            font-size: 18px;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #254126, #265628);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .btn-secondary {
            background: #ecf0f1;
            color: #34495e;
        }

        .btn-secondary:hover {
            background: #d5dbdb;
        }

        .btn-full {
            width: 100%;
        }

        .button-group {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .error-message {
            color: #e74c3c;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }

        .success-container {
            text-align: center;
            padding: 40px;
            display: none;
        }

        .success-icon {
            font-size: 64px;
            color: #27ae60;
            margin-bottom: 20px;
        }

        .success-title {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .success-message {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .success-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .success-link {
            padding: 15px 20px;
            background: #f8f9fa;
            border-radius: 10px;
            text-decoration: none;
            color: #34495e;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .success-link:hover {
            background: #ecf0f1;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .container {
                margin: 10px;
                border-radius: 15px;
            }

            .form-container {
                padding: 20px;
            }

            .form-row, .form-row-3 {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .radio-group, .checkbox-group {
                grid-template-columns: 1fr;
            }

            .products-container {
                grid-template-columns: 1fr;
            }

            .table-header, .table-row {
                grid-template-columns: 1fr;
            }

            .table-cell {
                border-bottom: 1px solid #ecf0f1;
                justify-content: flex-start;
            }

            .button-group {
                flex-direction: column;
            }
        }

        .hidden {
            display: none !important;
        }
        .svg-logo 	{ fill: #fff; }