 body.bg-cadastro {
        background: #384654;
        /* cinza-azulado */
    }

    .container-cadastro {
        border-radius: 25px;
        margin-top: 30px;
        margin-bottom: 30px;
    }


    /* Limita a largura do conteï¿½do do formulï¿½rio para Não ficar colado nas bordas */
    #form-cadastro {
        max-width: 1615px;
        margin: 0 auto;
    }

    /* Tï¿½tulo "Preencha seus dados abaixo" ï¿½ mais leve, com respiro */
    #form-cadastro>h3.box-title {
        margin-top: 18px;
        margin-bottom: 6px;
        font-size: 24px;
        font-weight: 600;
        color: #111827;
    }

    /* Linha "Favor preencher todos os campos obrigatï¿½rios" ï¿½ menor e mais discreta */
    #form-cadastro>p.cor-vermelha {
        margin-top: 4px;
        margin-bottom: 26px;
        font-size: 13px;
        color: #ef4444;
        opacity: 0.9;
    }

    /* Tï¿½tulos dos steps (Informaï¿½ï¿½es Tï¿½cnicas, Dados pessoais etc.) */
    .step .box-title {
        font-size: 22px;
        margin-top: 10px;
        margin-bottom: 22px;
        font-weight: 600;
        color: #111827;
    }

    /* Inputs arredondados, limpos */
    .form-control {
        border-radius: 10px;
        border: 1px solid #d0d7e2;
        box-shadow: none;
        height: 40px;
        font-size: 14px;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
        background-color: #f9fafb;
    }

    .form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.18);
        background-color: #ffffff;
    }

    label {
        font-weight: 600;
        color: #111827;
    }

    .cor-vermelha {
        color: #d60000;
        font-size: 12px;
    }

    .texto-radios {
        display: inline-block;
        margin-left: 5px;
        margin-top: 2px;
        font-weight: 500;
    }

    /* ï¿½REA DOS STEPS */
    .step {
        display: none;
    }

    .step.active {
        display: block;
        animation: fadeIn .35s ease-in-out;
        margin-left: 30px;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Aï¿½ï¿½ES DO STEP ï¿½ BOTï¿½ES */
    .step-actions {
        margin-top: 25px;
        display: flex;
        gap: 12px;
        justify-content: flex-start;
        /* Voltar fica ï¿½ esquerda */
        flex-wrap: wrap;
    }

    .step-actions .btn {
        min-width: 140px;
        border-radius: 999px;
        font-weight: 600;
    }

    /* Empurra SEMPRE o botï¿½o .btn-next para a direita */
    .step-actions .btn-next {
        margin-left: auto;
    }

    .btn-next {
        background: #007bff;
        color: #ffffff;
        border: none;
    }

    .btn-next:hover,
    .btn-next:focus {
        background: #0062d1;
        color: #ffffff;
    }

    .btn-prev {
        background: #f3f4f6;
        color: #111827;
        border: none;
    }

    .btn-prev:hover,
    .btn-prev:focus {
        background: #e5e7eb;
        color: #111827;
    }

    /* Checkbox contrato */
    #chkcontrato {
        margin-right: 5px;
    }

    /* Step final um pouco mais compacto */
    #step-6 .step-actions {
        margin-top: 18px;
    }

    /* Responsivo */
    @media (max-width: 768px) {
        .container-cadastro .col-sm-12.col-lg-12 {
            padding: 22px 16px 26px;
        }

        #form-cadastro {
            max-width: 100%;
        }

        .step-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .step-actions .btn-next {
            margin-left: 0;
        }

        .step-actions .btn {
            width: 100%;
        }
    }

    /* ======== SEGMENTED CONTROL (iOS-like) ======== */

    .tipo-segmentado {
        display: inline-flex;
        padding: 10px;
        border-radius: 14px;
        gap: 65px;
    }

    .tipo-segmentado input[type="radio"] {
        display: none;
    }

    .tipo-segmentado .segment {
        padding: 10px 30px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        color: #475569;
        border-radius: 12px;
        transition: all .25s ease;
        user-select: none;
    }

    .tipo-segmentado input[type="radio"]:checked+label {
        background: #0d6efd;
        color: white;
        box-shadow: 0 4px 14px rgba(13, 110, 253, 0.25);
    }

    .tipo-segmentado label:hover {
        background: #e2e8f0;
    }

    /* Tï¿½tulo + linha na mesma linha */
    .section-header {
        display: flex;
        align-items: center;
        margin-top: 10px;
        margin-bottom: 22px;
    }

    /* reaproveita a .box-title, mas zera as margens dentro do header */
    .section-header .box-title {
        margin: 0;
        font-size: 22px;
        font-weight: 600;
        color: #111827;
    }

    /* linha cinza discreta ï¿½ direita do tï¿½tulo */
    .section-line {
        flex: 1;
        height: 1.5px;
        background-color: #e5e7eb;
        margin-left: 16px;
    }

    /* ================= HEADER ================== */
    .header-cadastro {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 20px;
        padding: 10px 4px 20px;
    }

    .header-text {
        flex: 1;
    }

    /* tï¿½tulo principal */
    #bemvindo-title {
        font-family: "Poppins", "Inter", sans-serif;
        font-size: 36px;
        font-weight: 700;
        color: #0f172a;
        margin: 0 0 6px;
        letter-spacing: -0.5px;
    }

    /* subtï¿½tulos (exibidos depois da seleï¿½ï¿½o) */
    .info-usuario {
        font-family: "Inter", sans-serif;
        font-size: 15px;
        color: #475569;
        line-height: 1.5;
        margin-top: 6px;
        margin-top: 45px;
        margin-left: 30px;
    }

    .info-usuario span {
        color: #e11d48;
    }

    /* escondido inicialmente */
    .hidden {
        display: none;
    }

    /* logo no canto direito, menor */
    .header-logo img {
        margin-top: 10px;
        max-height: 33px;
        width: auto;
        opacity: 0.95;
    }

    /* responsivo */
    @media (max-width: 768px) {
        .header-cadastro {
            flex-direction: column-reverse;
            align-items: flex-start;
            gap: 12px;
        }

        #bemvindo-title {
            font-size: 28px;
        }

        .header-logo img {
            max-height: 40px;
        }
    }

    /* tï¿½tulo moderno */
    #form-cadastro-title {
        font-family: "Inter", "Poppins", "Segoe UI", sans-serif;
        font-size: 26px;
        font-weight: 600;
        color: #1f2933;
        margin: 0 0 6px;
        letter-spacing: -0.3px;
        margin-left: 25px;
    }

    #form-cadastro-title .welcome-small {
        font-size: 21px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: #64748b;
    }

    #form-cadastro-title .welcome-main {
        margin-left: 68px;
        font-size: 35px;
        font-weight: 700;
        color: #0f172a;
    }

    .info-usuario {
        font-family: "Inter", sans-serif;
        font-size: 15px;
        color: #475569;
        line-height: 1.5;
        margin-top: 45px;
        margin-left: 30px;
    }

    /* frase de obrigatoriedade em vermelho */
    .info-obrigatorio {
        color: #dc2626;
        /* vermelho mais vivo */
        font-weight: 600;
    } 

    .info-obrigatorio span {
        color: #b91c1c;
        /* asterisco ligeiramente mais escuro */
    } 