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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f7fa;
            
        }

        /* Botão para abrir o modal */
        .trigger-btn {
            background: linear-gradient(135deg, #14b8a6, #0d9488);
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
        }

        .trigger-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
        }

        /* Modal */
        .new-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(4px);
        }

        .new-modal.open {
            opacity: 1;
            visibility: visible;
        }

        .new-modal-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .new-modal-content {
            background: #fff;
            border-radius: 16px;
            max-width: 650px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            padding: 32px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            transform: translateY(-30px) scale(0.9);
            transition: all 0.3s ease;
        }

        .new-modal.open .new-modal-content {
            transform: translateY(0) scale(1);
        }

        .new-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #f3f4f6;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            color: #666;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .new-modal-close:hover {
            background: #e5e7eb;
            color: #333;
        }

        /* Cabeçalho */
        .new-modal-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .new-modal-title {
            font-size: 2rem;
            font-weight: 700;
            color: #14b8a6;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .new-modal-subtitle {
            font-size: 1.1rem;
            color: #6b7280;
            line-height: 1.6;
        }

        /* Barra de progresso */
        .new-modal-progress {
            margin-bottom: 40px;
        }

        .new-progress-bar {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-bottom: 16px;
        }

        .new-progress-bar::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            height: 3px;
            background: #e5e7eb;
            border-radius: 2px;
            z-index: 1;
        }

        .new-progress-bar::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            height: 3px;
            background: linear-gradient(90deg, #14b8a6, #0d9488);
            border-radius: 2px;
            z-index: 2;
            transition: width 0.5s ease;
            width: 0%;
        }

        .new-progress-bar[data-step="1"]::after { width: 0%; }
        .new-progress-bar[data-step="2"]::after { width: 50%; }
        .new-progress-bar[data-step="3"]::after { width: 100%; }

        .new-progress-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            width: 33.33%;
            position: relative;
            z-index: 3;
        }

        .new-progress-icon {
            width: 40px;
            height: 40px;
            background: #e5e7eb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #9ca3af;
            transition: all 0.4s ease;
            border: 3px solid #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .new-progress-step.active .new-progress-icon {
            background: linear-gradient(135deg, #14b8a6, #0d9488);
            color: #fff;
            transform: scale(1.1);
        }

        .new-progress-step.completed .new-progress-icon {
            background: #10b981;
            color: #fff;
        }

        .new-progress-label {
            font-size: 0.9rem;
            color: #9ca3af;
            text-align: center;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .new-progress-step.active .new-progress-label {
            color: #14b8a6;
            font-weight: 600;
        }

        /* Formulário */
        .new-form-steps {
            position: relative;
            overflow: hidden;
            min-height: 400px;
        }

        .new-form-step {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateX(100px);
            transition: all 0.4s ease;
            pointer-events: none;
        }

        .new-form-step.active {
            opacity: 1;
            transform: translateX(0);
            pointer-events: all;
        }

        .new-form-step.prev {
            transform: translateX(-100px);
        }

        .new-form-group {
            margin-bottom: 24px;
        }

        .new-form-label {
            font-size: 1rem;
            font-weight: 600;
            color: #374151;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .new-form-label i {
            color: #14b8a6;
        }

        .new-form-input,
        .new-form-select,
        .new-form-textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fff;
        }

        .new-form-input:focus,
        .new-form-select:focus,
        .new-form-textarea:focus {
            outline: none;
            border-color: #14b8a6;
            box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
            transform: translateY(-1px);
        }

        .new-form-input.invalid,
        .new-form-select.invalid {
            border-color: #ef4444;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
        }

        .new-form-error {
            color: #ef4444;
            font-size: 0.875rem;
            margin-top: 6px;
            min-height: 20px;
            font-weight: 500;
        }

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

        .new-form-textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

        /* Ações do formulário */
        .new-form-actions {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            margin-top: 40px;
            padding-top: 24px;
            border-top: 1px solid #e5e7eb;
        }

        .new-btn {
            padding: 14px 28px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            border: none;
            min-width: 140px;
            justify-content: center;
        }

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

        .new-btn-ghost {
            background: #f9fafb;
            border: 2px solid #e5e7eb;
            color: #6b7280;
        }

        .new-btn-ghost:hover:not(:disabled) {
            background: #f3f4f6;
            border-color: #d1d5db;
            color: #374151;
        }

        .new-btn-primary {
            background: linear-gradient(135deg, #14b8a6, #0d9488);
            color: #fff;
            box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
        }

        .new-btn-primary:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .new-modal-content {
                width: 95%;
                padding: 24px;
                margin: 20px;
            }

            .new-form-row {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .new-progress-label {
                font-size: 0.8rem;
            }

            .new-modal-title {
                font-size: 1.6rem;
            }

            .new-form-actions {
                flex-direction: column;
            }

            .new-btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .new-progress-step {
                gap: 8px;
            }

            .new-progress-icon {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }

            .new-progress-label {
                font-size: 0.75rem;
            }
        }