section.lead {
    width: 100%;
    padding: 2rem 1rem;
    background-image: url("../img/lead/background-lead.webp");
    background-position: center 0;
    background-size: cover;
    background-repeat: no-repeat;
    border-top: 7px solid #4d4d4d;
}
.box-form .text h6 {
    font-family: "Bebas Neue";
    text-align: center;
    font-size: 2rem;
    line-height: 2.4rem; 
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
}
.box-form .text h6 span {
    display: block;
}
section.lead form .area-inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
section.lead .area-inputs .item-input label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 500;
}
section.lead .area-inputs .item-input input {
    width: 300px;
    height: 38px;
    padding: 5px 15px;
    background-color: #fff;
    color: #000;
    border: none;
    box-shadow: none;
    outline: none;
    border-radius: 20px;
}
section.lead .area-termos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
section.lead .area-termos input {
    cursor: pointer;
    outline: none;
}
section.lead .area-termos a {
    border-bottom: 1px solid #fff;
}
section.lead .area-termos a:hover {
    transition: .3s;
    color: #4d4d4d;
    border-color: #4d4d4d;
}
section.lead .area-button {
    display: flex;
    align-items: center;
    justify-content: center;
}
section.lead .area-button button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 120px;
    height: 30px;
    border: none;
    border-radius: 5px;
    background-color: #4d4d4d;
    color: #fff;
}
section.lead .area-button button:hover {
    transition: .3s;
    background-color: #6d6d6d;
    color: #e9e9e9;
}
@media (max-width: 670px) {
    section.lead form .area-inputs {
        flex-direction: column;
    }
    section.lead .area-inputs .item-input,
    section.lead .area-inputs .item-input input {
        width: 100%;
    }
    /*
    section.lead .box-form .text h6 span {
        display: inline;
    }
    */
    section.lead .box-form .text h6 {
        font-size: 1.5rem;
        line-height: 1.65rem;
    }
}