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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #0F0F0F;
            min-height: 100vh;
            padding: 40px 20px;
            color: white;
            line-height: 1.6;
        }

        .container {
            max-width: 800px;
            width: 100%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 48px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }

        /* Gradiente no topo */
        .container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #00D4FF, #0ea5e9);
            opacity: 1;
        }

        .header {
            text-align: center;
            margin-bottom: 48px;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .header-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #00D4FF, #0ea5e9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
        }

        h1 {
            font-size: 2.2em;
            color: #00D4FF;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .subtitle {
            color: #9ca3af;
            font-size: 1.1em;
            font-weight: 400;
        }

        /* ========================================
           DESCRIÇÃO DA VAGA
           ======================================== */
        .job-description {
            background: rgba(0, 212, 255, 0.03);
            border: 1px solid rgba(0, 212, 255, 0.15);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 32px;
        }

        .job-badges {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .job-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            color: #00D4FF;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: 500;
        }

        .job-intro {
            color: #e5e7eb;
            font-size: 1.05em;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .job-intro strong {
            color: #00D4FF;
        }

        .job-tasks h3 {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #00D4FF;
            font-size: 1em;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .job-tasks ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .job-tasks li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #d1d5db;
            padding: 8px 0;
            font-size: 0.95em;
            line-height: 1.5;
        }

        .job-tasks li i {
            color: #22c55e;
            flex-shrink: 0;
            margin-top: 2px;
        }

        @media (max-width: 600px) {
            .job-description {
                padding: 20px 16px;
            }
            
            .job-badges {
                justify-content: center;
            }
        }

        .form-section {
            margin-bottom: 40px;
        }

        .section-title {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #00D4FF;
            font-size: 1.3em;
            font-weight: 600;
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(0, 212, 255, 0.3);
        }

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

        label {
            display: block;
            color: #e5e7eb;
            font-size: 1.05em;
            font-weight: 500;
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .required {
            color: #ef4444;
            margin-left: 4px;
        }

        .label-note {
            display: block;
            color: #9ca3af;
            font-size: 0.9em;
            font-weight: 400;
            margin-top: 4px;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: white;
            font-size: 1em;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus,
        textarea:focus {
            outline: none;
            border-color: #00D4FF;
            background: rgba(0, 212, 255, 0.05);
            box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        /* Campo condicional */
        #training_details_group {
            margin-top: 20px;
            padding: 20px;
            background: rgba(0, 212, 255, 0.03);
            border-left: 3px solid #00D4FF;
            border-radius: 8px;
            animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                max-height: 0;
                margin-top: 0;
                padding-top: 0;
                padding-bottom: 0;
            }
            to {
                opacity: 1;
                max-height: 200px;
                margin-top: 20px;
                padding-top: 20px;
                padding-bottom: 20px;
            }
        }

        .radio-group,
        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .radio-option,
        .checkbox-option {
            display: flex;
            align-items: center;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .radio-option:hover,
        .checkbox-option:hover {
            background: rgba(0, 212, 255, 0.05);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .radio-option.selected,
        .checkbox-option.selected {
            background: rgba(0, 212, 255, 0.1);
            border-color: #00D4FF;
        }

        input[type="radio"],
        input[type="checkbox"] {
            margin-right: 12px;
            width: 20px;
            height: 20px;
            accent-color: #00D4FF;
            cursor: pointer;
        }

        .radio-option label,
        .checkbox-option label {
            margin: 0;
            cursor: pointer;
            flex: 1;
            color: #d1d5db;
        }

        .submit-button {
            background: linear-gradient(135deg, #00D4FF, #0ea5e9);
            color: white;
            border: none;
            padding: 18px 36px;
            border-radius: 12px;
            font-size: 1.2em;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 6px 30px rgba(0, 212, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(0, 212, 255, 0.6);
        }

        .submit-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .progress-bar {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 1000;
            margin-bottom: 20px;
            border-radius: 2px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #00D4FF, #0ea5e9);
            width: 0%;
            transition: width 0.3s ease;
        }

        .error-message {
            color: #ef4444;
            font-size: 0.9em;
            margin-top: 8px;
            display: none;
        }

        .form-group.error input,
        .form-group.error textarea {
            border-color: #ef4444;
        }

        .form-group.error .error-message {
            display: block;
        }

        /* Sistema Multi-Step */
        .form-section {
            display: none;
        }

        .form-section.active {
            display: block;
            animation: fadeInSection 0.4s ease;
        }

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

        .form-navigation {
            display: flex;
            gap: 16px;
            margin-top: 32px;
            justify-content: space-between;
        }

        .nav-button {
            flex: 1;
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: none;
            font-family: inherit;
        }

        .btn-prev {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: #e5e7eb;
        }

        .btn-prev:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .btn-next {
            background: linear-gradient(135deg, #00D4FF, #0ea5e9);
            color: white;
            box-shadow: 0 6px 30px rgba(0, 212, 255, 0.4);
        }

        .btn-next:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 35px rgba(0, 212, 255, 0.6);
        }

        .btn-next:disabled,
        .btn-prev:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .step-indicator {
            text-align: center;
            margin-bottom: 32px;
            color: #9ca3af;
            font-size: 0.95em;
        }

        .step-indicator span {
            color: #00D4FF;
            font-weight: 600;
        }

        @media (max-width: 600px) {
            .container {
                padding: 32px 20px;
            }

            h1 {
                font-size: 1.8em;
            }

            .subtitle {
                font-size: 1em;
            }

            .section-title {
                font-size: 1.1em;
            }

            .submit-button {
                padding: 16px 24px;
                font-size: 1.1em;
            }
        }

        /* Estilos customizados para intl-tel-input (tema dark) */
        .iti {
            width: 100%;
        }

        .iti__input {
            width: 100%;
            padding: 14px 18px 14px 52px !important;
            background: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            border-radius: 12px !important;
            color: white !important;
            font-size: 1em !important;
            font-family: inherit !important;
            transition: all 0.3s ease !important;
        }

        .iti__input:focus {
            outline: none !important;
            border-color: #00D4FF !important;
            background: rgba(0, 212, 255, 0.05) !important;
            box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1) !important;
        }

        .iti__dropdown {
            background: #1a1a1a !important;
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
            border-radius: 12px !important;
            margin-top: 4px !important;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
            max-height: 300px !important;
            overflow-y: auto !important;
        }

        .iti__country {
            padding: 12px 18px !important;
            color: #e5e7eb !important;
            transition: background 0.2s ease !important;
        }

        .iti__country:hover {
            background: rgba(0, 212, 255, 0.1) !important;
        }

        .iti__selected-country {
            background: rgba(255, 255, 255, 0.05) !important;
            border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
            padding: 0 12px !important;
            transition: all 0.3s ease !important;
        }

        .iti__selected-country:hover {
            background: rgba(0, 212, 255, 0.05) !important;
        }

        .iti__arrow {
            border-top-color: #9ca3af !important;
        }

        .iti__search-input {
            background: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            color: white !important;
            padding: 12px !important;
            margin: 8px !important;
            border-radius: 8px !important;
        }

        .iti__search-input:focus {
            outline: none !important;
            border-color: #00D4FF !important;
        }

        .iti__search-input::placeholder {
            color: #6b7280 !important;
        }

        .iti__divider {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        }

        .iti__dial-code {
            color: #9ca3af !important;
        }

        .iti__selected-dial-code {
            color: #e5e7eb !important;
        }

        /* Validação de erro para o campo de telefone */
        .form-group.error .iti__input {
            border-color: #ef4444 !important;
        }

        /* Sugestão de correção de email */
        .email-suggestion {
            display: none;
            margin-top: 12px;
            padding: 12px 16px;
            background: rgba(0, 212, 255, 0.1);
            border-left: 3px solid #00D4FF;
            border-radius: 8px;
            font-size: 0.95em;
            color: #e5e7eb;
            animation: slideDown 0.3s ease-out;
        }

        .email-suggestion.show {
            display: block;
        }

        .email-suggestion strong {
            color: #00D4FF;
            cursor: pointer;
            text-decoration: underline;
            transition: color 0.2s ease;
        }

        .email-suggestion strong:hover {
            color: #0ea5e9;
        }

        /* Estilos customizados para CookieConsent (tema dark) */
        #cc-main {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        }

        #cc-main .cm {
            background: rgba(15, 15, 15, 0.98) !important;
            border: 1px solid rgba(0, 212, 255, 0.3) !important;
            border-radius: 16px !important;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8) !important;
        }

        #cc-main .cm__title {
            color: #00D4FF !important;
            font-size: 1.5em !important;
            font-weight: 700 !important;
        }

        #cc-main .cm__desc {
            color: #e5e7eb !important;
            font-size: 1em !important;
            line-height: 1.6 !important;
        }

        #cc-main .cm__btn {
            border-radius: 10px !important;
            padding: 12px 24px !important;
            font-weight: 600 !important;
            font-size: 1em !important;
            transition: all 0.3s ease !important;
        }

        #cc-main .cm__btn.cm__btn--primary {
            background: linear-gradient(135deg, #00D4FF, #0ea5e9) !important;
            color: white !important;
            border: none !important;
        }

        #cc-main .cm__btn.cm__btn--primary:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5) !important;
        }

        #cc-main .cm__btn.cm__btn--secondary {
            background: rgba(255, 255, 255, 0.05) !important;
            border: 2px solid rgba(255, 255, 255, 0.2) !important;
            color: #e5e7eb !important;
        }

        #cc-main .cm__btn.cm__btn--secondary:hover {
            background: rgba(255, 255, 255, 0.08) !important;
            border-color: rgba(255, 255, 255, 0.3) !important;
        }

        #cc-main .pm {
            background: rgba(15, 15, 15, 0.98) !important;
            border: 1px solid rgba(0, 212, 255, 0.3) !important;
            border-radius: 16px !important;
        }

        #cc-main .pm__title {
            color: #00D4FF !important;
            font-weight: 700 !important;
        }

        #cc-main .pm__section-desc {
            color: #9ca3af !important;
        }

        #cc-main .section__toggle {
            background: rgba(255, 255, 255, 0.1) !important;
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
        }

        #cc-main .section__toggle.toggle--on {
            background: linear-gradient(135deg, #00D4FF, #0ea5e9) !important;
            border-color: #00D4FF !important;
        }

        #cc-main a {
            color: #00D4FF !important;
            text-decoration: underline !important;
        }

        #cc-main a:hover {
            color: #0ea5e9 !important;
        }

        /* Spinner de loading */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        /* Aviso de privacidade LGPD */
        .privacy-notice {
            margin-bottom: 24px;
            padding: 16px 20px;
            background: rgba(0, 212, 255, 0.05);
            border-left: 4px solid #00D4FF;
            border-radius: 8px;
            font-size: 0.95em;
            color: #e5e7eb;
            line-height: 1.6;
        }

        .privacy-notice strong {
            color: #00D4FF;
        }

        .privacy-notice a {
            color: #00D4FF;
            text-decoration: underline;
            transition: color 0.2s ease;
        }

        .privacy-notice a:hover {
            color: #0ea5e9;
        }

        /* Campo honeypot (escondido) */
        .honeypot {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
        }

        /* Mensagem de progresso salvo */
        .saved-progress-notification {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: rgba(0, 212, 255, 0.95);
            color: white;
            padding: 16px 24px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
            display: none;
            align-items: center;
            gap: 12px;
            z-index: 9999;
            animation: slideInRight 0.4s ease-out;
        }

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

        .saved-progress-notification.show {
            display: flex;
        }
