main.box-main {
    background-color: #fff;
    background-image: url('../img/contato/background-main.webp');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 0 1rem 3rem;
}
.contato .box-introduction {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.contato .left {
    padding-right: 30px;
    width: 50%;
}
.contato .right {
    width: 40%;
}
.contato .area-image {
    width: fit-content;
    height: 700px;
    position: relative;
    display: inline-flex;
}
.contato .area-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    border: 2px solid #ffffff;
    pointer-events: none;
}
.contato .area-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
}
.contato h2.title {
    font-size: 2rem;
    line-height: 1;
    font-family: "Bebas Neue";
    letter-spacing: 1px;
    font-weight: 600;
    color: #0e0e0e;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #a4a48d;
}
.contato h2.title span.color {
    color: #a4a48d;
}
.contato p {
    margin-bottom: 2rem;
    font-weight: 500;
    max-width: 220px;
}
.contato form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contato form input {
    box-shadow: none !important;
    outline: none !important;
    padding: 15px 1rem;
    border-radius: 40px;
    border: 2px solid #a4a48d;
    background-color: transparent;
}
.area-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    left: 0px;
}
.contato .area-termos {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.contato .area-termos input {
    cursor: pointer;
    outline: none;
}
.contato .area-termos a {
    text-decoration: underline;
}
.contato .area-termos a:hover {
    transition: .3s;
    color: #4d4d4d;
    border-color: #4d4d4d;
}
.contato form button {
    background-color: #a4a48d;
    color: #fff;
    padding: 7px 2rem 5px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    font-weight: 500;
    border-radius: 40px;
    white-space: nowrap;
    margin-top: 1rem;
    display: flex;
    height: 55px;
    width: 100%;
    max-width: 260px;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none !important;
}
.contato form button:hover {
    transition: .3s;
    background-color: #666652;
}
@media (max-width: 1000px) {
    .contato .box-introduction {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    .contato .left, .contato .right {
        width: 100%;
    }
    .contato .area-image {
        height: auto;
    }
    .area-button {
        left: 0;
        justify-content: center;
    }
}
@media (max-width: 500px) {
    main.box-main {
        background-position-x: 10%;
    }
    .contato form button {
        max-width: 100%;
    }
    .contato form {
        gap: 1rem;
    }
    .contato .left {
        padding-right: 0px;
    }
}