section.area-lead {
    width: 100%;
    min-height: 280px;
    background-image: url("../img/lead/background-home.webp");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
section.area-lead .content {
    padding: 1rem;
    position: relative;
    z-index: 1;
}
section.area-lead h2 {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-roxo);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
section.area-lead h2 span {
    display: block;
    font-weight: 600;
}
section.area-lead form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
section.area-lead .item-input label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-roxo);
}
section.area-lead input[type="text"] {
    width: 100%;
    height: 35px;
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    box-shadow: none !important;
    outline: none !important;
    font-size: 0.75rem;
    border: 1px solid transparent;
    background-color: #dedede;
}
section.area-lead .item-input input:focus {
    border-color: var(--color-roxo);
}
section.area-lead .box-lead {
    max-width: 600px;
}
section.area-lead .area-termos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    text-align: center;
    color: var(--color-roxo);
    font-size: 14px;
    font-weight: 400;
}
section.area-lead .area-termos input {
    cursor: pointer;
}
section.area-lead .area-termos a {
    color: var(--color-roxo);
    border-bottom: 1px solid var(--color-roxo);
}
section.area-lead .area-termos a:hover {
    transition: .3s;
    color: var(--color-verde);
    border-color: var(--color-verde);
}
section.area-lead button.btn-lead {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 120px;
    margin: 0 auto;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--color-roxo);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: .3s;
}
section.area-lead button.btn-lead:hover {
    background-color: var(--color-verde);
    color: var(--color-roxo);
}
@media (max-width: 1020px) {
    section.area-lead {
        background-position-y: center;
        background-position-x: 50%;
    }
    section.area-lead .content {
        padding: 2rem 1rem;
    }
    section.area-lead .box-lead {
        max-width: 100%;
    }
    section.area-lead h2 {
        margin-bottom: 1rem;
    }
    section.area-lead h2 span {
        display: inline-block;
    }
    section.area-lead .area-termos label {
        text-align: left;
    }
}
@media (max-width: 450px) {
    section.area-lead {
        background-position-x: 60%;
    }
}