.logo-container{
    left: 50px;
    position: absolute;
    top: 20px;
     z-index: 3;
}
.logo-container .logo{
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #333333;
    width: 60px;
    float: left;
}
.logo-container .brand{
    font-size: 18px;
    color: #FFFFFF;
    line-height: 20px;
    float: left;
    margin-left: 10px;
    margin-top: 10px;
    width: 60px
}

#wizardProfile .wizard-navigation {
    padding: 0px 15px 10px !important;
    position: relative !important;
}

    #wizardProfile .wizard-navigation .nav-pills {
        background-color: rgba(128, 128, 128, 0.3) !important;
        border-radius: 6px !important;
        padding: 4px !important;
        display: block !important;
        width: 100% !important;
        overflow: hidden;
        list-style: none !important;
        margin: 0;
    }

        #wizardProfile .wizard-navigation .nav-pills > li {
            width: 33.3333% !important;
            padding: 0 3px !important;
            margin: 0 !important;
            float: left !important;
            list-style: none !important;
            text-align: center;
        }

            #wizardProfile .wizard-navigation .nav-pills > li > a {
                display: block !important;
                padding: 10px 5px !important;
                margin: 0 !important;
                color: #FFFFFF !important;
                background-color: transparent !important;
                font-weight: 600 !important;
                text-transform: uppercase !important;
                font-size: 12px !important;
                border: none !important;
                border-radius: 4px !important;
                box-shadow: none !important;
                transition: all 0.2s ease-in-out !important;
                text-decoration: none;
            }

                #wizardProfile .wizard-navigation .nav-pills > li > a:hover {
                    background-color: rgba(255, 255, 255, 0.1) !important;
                }

            #wizardProfile .wizard-navigation .nav-pills > li.active > a,
            #wizardProfile .wizard-navigation .nav-pills > li.active > a:hover,
            #wizardProfile .wizard-navigation .nav-pills > li.active > a:focus {
                background-color: #ff9500 !important;
                color: #FFFFFF !important;
                box-shadow: 0 2px 5px rgba(0,0,0,.3) !important;
            }

#wizardProfile .tab-content {
    clear: both;
    padding-top: 20px;
    min-height: 280px; /* Adjust min-height as needed */
}

#wizardProfile .picture-container {
    text-align: center;
    margin-bottom: 20px;
}

#wizardProfile .picture {
    width: 106px;
    height: 106px;
    background-color: #999999;
    border: 4px solid #CCCCCC;
    color: #FFFFFF;
    border-radius: 50%;
    margin: 5px auto;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

    #wizardProfile .picture:hover {
        border-color: #ff9500;
    }

    #wizardProfile .picture input[type="file"] {
        cursor: pointer;
        display: block;
        height: 100%;
        left: 0;
        opacity: 0 !important;
        position: absolute;
        top: 0;
        width: 100%;
    }

#wizardProfile .picture-src {
    width: 100%;
}

#wizardProfile .choice {
    text-align: center;
    cursor: pointer;
    margin-bottom: 10px;
}

    #wizardProfile .choice input[type="checkbox"], #wizardProfile .choice input[type="radio"] {
        position: absolute;
        left: -10000px;
        z-index: -1;
    }

    #wizardProfile .choice .icon {
        text-align: center;
        vertical-align: middle;
        height: 116px;
        width: 116px;
        border-radius: 50%;
        color: #666666;
        margin: 5px auto;
        border: 4px solid #CCCCCC;
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #wizardProfile .choice .icon i {
            font-size: 40px;
        }

    #wizardProfile .choice:hover .icon, #wizardProfile .choice.active .icon {
        border-color: #ff9500;
        color: #ff9500;
    }

    #wizardProfile .choice.active h6 {
        color: #ff9500;
    }

#wizardProfile .form-group {
    margin-bottom: 20px;
}

    #wizardProfile .form-group label {
        margin-bottom: 5px;
        font-weight: 600;
    }

    #wizardProfile .form-group .help-block {
        color: #a94442;
        font-size: 12px;
    }

    #wizardProfile .form-group.has-error .form-control {
        border-color: #a94442;
    }

/* --- Background Image Overlay --- */
.image-container {
    position: relative; /* Necessário para o posicionamento de ::before e contexto z-index */
    z-index: 0; /* Nível base da pilha */
}

    .image-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* --- Cor e opacidade da camada --- */
        background-color: rgba(65, 73, 89, 0.65); /* Camada Azul/Cinzento Escuro */
        /* background-color: rgba(0, 0, 0, 0.5); */ /* Camada Preta Simples */
        /* background-color: rgba(255, 255, 255, 0.3); */ /* Camada Clara */
        /* --- Fim da escolha da camada --- */
        z-index: 1; /* Fica entre a imagem de fundo e o conteúdo */
    }

    /* Garante que o conteúdo dos filhos diretos fique visível sobre a camada */
    .image-container > .container,
    .image-container > .made-with-mk,
    .image-container > .footer {
        position: relative; /* Necessário para o z-index */
        z-index: 2; /* Empilha acima da camada ::before */
    }

/* Opcional: Ajusta a cor do texto do rodapé para melhor contraste */
.footer {
    color: #ccc; /* Texto mais claro para camadas escuras */
}

    .footer a {
        color: #fff; /* Torna os links mais brilhantes */
        font-weight: bold;
    }

    .footer .heart {
        color: #ff5e5e; /* Mantém a cor do coração */
    }
