/*ADICIONADO ESTILIZAÇÃO PARA A PÁGINA DE ANUNCIE SEU IMÓVEL*/

.cadastro-imovel-wizard {
    position: relative;
    background: var(--cor-site-5) !important;
    border: 2px solid #99999959;
    background-color: transparent;
    padding: 30px 20px 40px;
    border-radius: 8px;
}

.wizard-steps {
    position: relative;
    margin-bottom: 40px;
    padding: 0 20px;
    z-index: 1;
}

.wizard-line {
    position: absolute;
    top: 16px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: #d9d9d9;
    z-index: 1;
}

.wizard-arrow svg {
  display: block;
  margin: auto;
  transition: stroke 0.2s;
}
.wizard-arrow:active svg,
.wizard-arrow:hover svg {
  stroke: var(--cor-site-1);
}

@media (max-width: 1000px) {
.wizard-step {
  margin-right: 1% !important;
}
}

@media (max-width: 667px) {
.wizard-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}
.wizard-step {
    margin-right: -4% !important;
}
}

@media (max-width: 600px) {
    .wizard-steps {
        width: 100%;
        max-width: 100%;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
        background: transparent;
    }
    .wizard-steps-inner {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        padding: 0 38px;
        box-sizing: border-box;
        margin: 0;
        position: relative;
        z-index: 1; 
    }
    .wizard-step {
        min-width: 120px;
        flex: 0 0 120px;
        box-sizing: border-box;
        background: transparent;
    }

    /* A LINHA SEMPRE VISÍVEL */
        .wizard-line {
        position: absolute;
        left: 38px;
        right: 38px;
        width: 490px;
        height: 2px;
        background: var(--cor-site-6) !important; 
        z-index: 1;
        display: block !important;
        border-radius: 2px;
    }

    .wizard-arrow {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        z-index: 5;
        cursor: pointer;
        box-shadow: 0 1px 8px #0001;
        transition: background 0.2s;
        color: var(--cor-site-1);
        font-size: 22px;
        padding: 0;
    }
    .wizard-arrow-left { left: 6px; }
    .wizard-arrow-right { right: 6px; }
}

@media (min-width: 601px) {
    .wizard-arrow { display: none; }
    .wizard-steps-inner { display: contents; overflow-x: visible; padding: 0; }
    .wizard-line { 
        position: absolute;
        left: 0; 
        right: 0;
        height: 2px;
        z-index: 1;
        display: block;
        border-radius: 2px;
    }
}

.campo-mensagem {
    min-height: calc(4.5em + (4.75rem + 6px)) !important;
}

.wizard-step {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    margin-right: 19%;
}

.wizard-step:last-child {
    margin-right: 0;
}

.wizard-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #d9d9d9;
}

.wizard-step-active .wizard-circle,
.wizard-step-completed .wizard-circle {
    background-color: var(--cor-site-1); 
}

.wizard-label {
    margin-top: 8px;
    padding: 6px 18px;
    background-color: transparent;
    color: #333;
    font-size: 13px;
    border-radius: 11px;
}

.wizard-step-active .wizard-label {
    background-color: var(--cor-site-1);
    color: #fff;
}

/* Painéis */
.wizard-panel {
    display: none;
}

.wizard-panel-active {
    display: block;
}

/* Botões navegação */
.wizard-actions .btn {
    min-width: 150px;
}

.theme-btn-1 {
    background-color: var(--cor-site-1);
    color: var(--cor-site-5);
    border-radius: 10px;
}

.theme-btn-1:hover, .theme-btn-1:focus {
    background-color: var(--cor-site-3);
    color: var(--cor-site-5);
    border-radius: 10px;
}

.theme-btn-2 {
    background-color: #e0e0e0;
    color: #333;
    border: none;
    border-radius: 11px;
}

.theme-btn-2:hover, .theme-btn-2:focus {
    background-color: #d5d5d5;
    border-radius: 11px;
    color: #000;
}

.theme-btn-2:disabled {
    opacity: 0.6;
    border-radius: 11px;
    cursor: default;
}


.dropdown-white {
    position: relative;
    width: 100%;
}

.dropdown-white-toggle {
    width: 100%;
    text-align: left;
    padding: 10px 40px 10px 14px;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.dropdown-white-toggle::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #555;
}

.dropdown-white-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    list-style: none;
    padding: 4px 0;
    max-height: 220px;
    overflow-y: auto;
    z-index: 999;
    display: none;
}

.dropdown-white-menu li {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.dropdown-white-menu li:hover {
    background-color: #f1f1f1;
}

.dropdown-white.open .dropdown-white-menu {
    display: block;
}

.dropdown-white.disabled .dropdown-white-toggle {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
}

@media (max-width: 1400px) {
.wizard-step {
    margin-right: 13%;
}
}

@media (max-width: 767.98px) {
    .wizard-step {
        margin-right: 15%;
    }
    .wizard-line {
        left: 30px;
        right: 30px;
    }
}
