.contato--step--line {
    height: 3px;
    display: block;
    background-color: var(--color-green-light);
    margin-right: -15px;
    margin-left: -2px;
    border-radius: 5px;
}
.contato--step--line__left {
    height: 3px;
    display: block;
    background-color: var(--color-green-light);
    width: 10px;
    margin-left: -16px;
    padding-right: 30px;
}
.contato--step--info {
    height: 32px;
}
.contato--step--descricao {
    font-size: 23px;
    color: var(--color-green-light);
    font-weight: 700;
}
.contato--step__num {
    display: block;
    background-color: var(--color-green-light);
    border-radius: 12px;
    text-align: center;
    padding: 3px 6px;
}
.contato--step__num p {
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
}
.contato--step--intro h2 {
    color: var(--color-green-darken);
    font-size: 36px;
    line-height: 1.0;
    font-weight: 700;
}
.contato--step--intro div {
    color: var(--color-green-darken);
    border-radius: 15px;
    padding: 2px 0px;
    border: 2px solid var(--color-green-darken);
    font-weight: 300;
}
.contato--step--intro p:nth-child(2) {
    font-size: 29px;
    color: var(--color-green-light);
}
.contato--step--fim {
    width: 85%;
    line-height: 1;
    color: var(--color-green-darken);
}
.contato--step--fim p:nth-child(1){
    font-size: 30px;
    font-weight: 700;
}
.contato--step--fim p:nth-child(2){
    font-size: 19px;
}

#contato--form label {
    width: 100%;
    font-weight: 700;
    color: var(--color-green-darken);
    margin-bottom: 0;
    margin-top: 11px;
    line-height: 1.0;
    margin-left: 11px;
}
#contato--form input {
    background-color: var(--color-grey);
    border: none;
    border-radius: 15px;
    width: 100%;
    height: 35px;
    color: var(--color-green-darken);
    padding: 0 10px;
}
#contato--form input[type="checkbox"] {
    width: 20px;
    height: 14px;
    border: 2px solid var(--color-grey);
}
#contato--form button {
    background-color: var(--color-green-light);
    border: none;
    padding: 10px;
    font-weight: 700;
    color: var(--color-white);
    font-size: 21px;
    border-radius: 26px;
    cursor: pointer;
}
#contato--form button:disabled {
    cursor: not-allowed;
}
#contato--form button span {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('../../imagens/icons/icon-fly-message.png');
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateX(-20px);
    transition: .5s;
    opacity: 0;
}
#contato--form button:hover span {
    transform: translateX(8px);
    opacity: 1;
}
#contato--form select {
    appearance: none;
    background-color: var(--color-grey);
    border: none;
    border-radius: 15px;
    width: 100%;
    height: 35px;
    color: var(--color-green-darken);
    padding: 0 10px;
    /* Icon */
    background-repeat: no-repeat;
    background-image: url("../../imagens/icons/bold-arrow-down.png");
    background-size: contain;
    background-position: right 0.7rem top 50%;
    background-size: 1rem auto;
}

@media (max-width: 767px) and (min-width: 426px){
    .contato--step:nth-child(-n + 2) {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px){
    .contato--step--intro {
        margin-top: 0 !important;
    }
    .contato--step:nth-child(n+2) {
        margin-bottom: 56px;
    }
    .contato--step--line__left {
        display: none;
    }
    .step-0 {
        display: flex;
        flex-direction: column-reverse;
    }
    .contato--step--info {
        height: auto;
        flex-direction: column;
        align-items: start !important;
        margin-left: 9px;
    }
    .contato--step--descricao {
        margin: 0 !important;
        margin-top: 40px !important;
        font-size: 35px;
    }
    .step-0 .contato--step--descricao ~ span {
        display: none !important;
    }
    .contato--step--descricao:last-child {
        display: none !important;
    }
    .contato--step--line {
        width: 2px !important;
        height: 43px;
        margin-left: 12px;
        margin-top: 12px;
        display: block !important;
    }
    .step-3 div:last-child {
        margin-top: 0 !important;
    }
    .contato--step--fim {
        width: 100%;
    }
    .contato--step--fim p:nth-child(1){
        font-size: 36px;
        font-weight: 700;
    }
    .contato--step--fim p:nth-child(2), #contato--form button {
        margin-top: 1.5rem !important;
    }
}