section.area-lead {
    width: 100%;
    min-height: 280px;
    background: #fcfcfc;
    max-width: 1320px;
    margin: 0 auto;
    border-radius: 2rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    top: 150px;
}
section.area-lead .content {
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}
section.area-lead h2 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-blue);
    text-transform: uppercase;
    margin-bottom: 2rem;
}
section.area-lead h2 span {
    display: block;
    font-weight: 500;
}
section.area-lead form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
section.area-lead .item-input label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-blue);
}
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-blue);
}
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-blue);
    font-size: 14px;
    font-weight: 500;
}
section.area-lead .area-termos input {
    cursor: pointer;
}
section.area-lead .area-termos a {
    color: var(--color-blue);
    border-bottom: 1px solid var(--color-blue);
}
section.area-lead .area-termos a:hover {
    transition: .3s;
    color: var(--color-laranja);
    border-color: var(--color-laranja);
}
section.area-lead .area-termos label,
section.area-lead .area-termos a {
    font-weight: 600;
}
section.area-lead button.btn-lead {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--color-laranja);
    color: #fff;
    padding: 8px 1rem;
    border-radius: 5px;
    transition: .3s;
}
section.area-lead button.btn-lead:hover {
    -webkit-box-shadow: 0px 0px 15px 5px rgba(253, 121, 64, 0.5);
    box-shadow: 0px 0px 15px 5px rgba(253, 121, 64, 0.5);
}
.right-lead {
    position: absolute;
    bottom: 1rem;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.right-lead img {
    display: block;
    width: auto;
    height: 600px;
    object-fit: contain;
}
@media (max-width: 1380px) {
    section.area-lead {
        max-width: calc(100% - 2rem);
    }
}
@media (max-width: 1300px) {
    .right-lead {
        right: 2rem;
    }
    .right-lead img {
        height: 550px;
    }
}
@media (max-width: 1120px) {
    .right-lead {
        position: relative;
        bottom: 0;
        right: 0 !important;
        min-width: 150px;
    }
    .right-lead img {
        width: 100%;
        height: 100% !important;
    }
    section.area-lead .content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 2rem 0rem 2rem 2rem;
    }
    section.area-lead {
        overflow: hidden;
    }
}
@media (max-width: 1020px) {
    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: 700px) {
    .right-lead {
        display: none;
    }
    section.area-lead .content {
        padding: 2rem;
    }
    section.area-lead h2 {
        font-size: 1.5rem;
    }
    section.area-lead {
        top: 0;
        margin: 3rem auto;
    }
}
@media (max-width: 450px) {
    section.area-lead {
        background-position-x: 60%;
    }
}