/*****************************************
**************** FORM ********************
*****************************************/

.form_field-area {
    position: relative;
}

.form_field-area:not(:last-child) {
    margin: 0 0 15px;
}

.form_field {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    outline: none;
    padding: 15px 15px 15px 47px;
    transition: .4s;
}

.form_field:focus {
    border-color: #333;
}

.form_input {
    height: 50px;
}

.form_textarea {
    height: 170px;
}

.form_label {
    cursor: text;
    position: absolute;
    top: 18.5px;
    left: 40px;
    background-color: #fff;
    color: #646464;
    font-size: 14px;
    font-weight: 300;
    padding: 0 8px;
    transition: .4s;
}

.form_field:focus~.form_label,
.form_field:valid~.form_label {
    color: #333;
    transform: scale(.9) translate(-5px, -26px);
}

.form_icon {
    position: absolute;
    left: 15px;
    top: 17px;
    width: 20px;
    fill: #bebebe;
    transition: .5s ease;
}

.form_field:focus~.form_icon,
.form_field:valid~.form_icon {
    fill: #333;
}

.form_lgpd-txt {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 10px;
}

.form_checkbox-box {
    margin: 0 0 30px;
}

.form_lgpd-checkbox {
    position: relative;
    top: 0;
    width: 15px;
    height: 15px;
    -webkit-appearance: none;
    outline: none;
    margin: 0 8px 0 0;
    transition: .5s ease;
}

.form_lgpd-checkbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    border: 1px solid #bebebe;
    border-radius: 2px;
    transition: .5s ease;
}

.form_lgpd-checkbox:checked::before {
    border-left: none;
    border-top: none;
    width: 7px;
    height: 14px;
    transform: rotate(45deg) translate(4px, -3px);
    border-color: #333;
    border-radius: 0;
    transition: .5s ease;
}

.form_lgpd-label {
    position: relative;
    display: block;
    width: fit-content;
    color: #121212;
    font-size: 14px;
    font-weight: 500;
    transition: .5s ease;
}

.form_lgpd-checkbox:checked~.form_lgpd-label {
    color: #333;
}

.form_lgpd-label::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background-color: #333;
    transform: scaleX(0);
    transform-origin: left;
    transition: .5s ease;
}

.form_lgpd-checkbox:checked~.form_lgpd-label::before {
    transform: scaleX(1);
}

.form_lgpd-link {
    color: #333;
    text-decoration: underline;
    font-weight: 500;
    transition: .5s ease;
}

.form_btn {
    display: block;
    width: 100%;
}

.form_btn:disabled {
    pointer-events: none;
    opacity: 0.4;
}

.modal .form_field:focus {
    border-color: #028916;
}

.modal .form_field:focus~.form_label,
.form_field:valid~.form_label {
    color: #028916;
}

.modal .form_field:focus~.form_icon,
.form_field:valid~.form_icon {
    fill: #028916;
}

.modal .form_lgpd-checkbox:checked::before {
    border-color: #028916;
}

.modal .form_lgpd-checkbox:checked~.form_lgpd-label {
    color: #028916;
}

.modal .form_lgpd-label::before {
    background-color: #028916;
}

.modal .form_lgpd-link {
    color: #028916;
}

@media (min-width: 993px) {

    .form_lgpd-link:hover {
        color: #121212;
    }

}

@media (max-width: 575px) {

    .form_input {
        height: 45px;
        padding: 12px 12px 12px 35px;
    }

    .form_textarea {
        height: 135px;
    }

    .form_icon {
        left: 12px;
        top: 15px;
        width: 14px;
    }

    .form_label {
        top: 17px;
        left: 29px;
        font-size: 12px;
    }

    .form_field:focus~.form_label,
    .form_field:valid~.form_label {
        transform: scale(.9) translate(-5px, -23px);
    }

    .form_lgpd-txt {
        font-size: 11px;
    }

    .form_checkbox-box {
        margin: 0 0 25px;
    }

    .form_lgpd-label {
        font-size: 13px;
    }

}

/*****************************************
*************** BOTÕES *******************
*****************************************/

.btn {
    position: relative;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    font-size: 17.5px;
    font-weight: 500;
    letter-spacing: .5px;
    border: 2px solid;
    border-radius: 8px;
    padding: 19px 33px;
    transition: .5s ease;
}

.btn.primary {
    background-color: #333;
    border-color: #333;
    color: #fff;
}

.btn.secondary {
    background-color: #3a4c57;
    border-color: #3a4c57;
    color: #fff;
}

.btn.terceary {
    background-color: #fff;
    border-color: #fff;
    color: #333;
}

.btn.wpp {
    background-color: #028916;
    border-color: #028916;
    color: #fff;
}

.btn_wpp-icon {
    position: relative;
    top: 0px;
    fill: currentColor;
    width: 23px;
    height: 23px;
    vertical-align: sub;
    margin: 0 7px 0 0;
}



.btn_icon {
    position: relative;
    display: inline-block;
    vertical-align: sub;
    fill: currentColor;
    width: 20px;
    height: 20px;
    margin: 0 8px 0 0;
}

.btn-center {
    text-align: center;
    margin: 90px 0 0;
}

@media (min-width: 993px) {

    .btn.primary:hover {
        background-color: #fff;
        color: #333;
    }

    .btn.secondary:hover {
        background-color: #fff;
        color: #3a4c57;
    }

    .btn.terceary:hover {
        background-color: transparent;
        color: #fff;
    }

    .btn.wpp:hover {
        background-color: #fff;
        color: #028916;
    }



    .btn.instagram:hover {
        color: #bc1888;
        border-color: #bc1888;
    }

    .btn.instagram:hover::before {
        opacity: 0;
    }

}

@media (max-width: 1450px) {

    .btn {
        font-size: 16px;
        border-radius: 6px;
        padding: 18px 28px;
    }

    .btn_wpp-icon {
        width: 21px;
        height: 21px;
    }

    .btn-center {
        margin: 70px 0 0;
    }

}

@media (max-width: 992px) {

    .btn {
        font-size: 15px;
        padding: 15px 22px;
    }

    .btn_wpp-icon {
        width: 18px;
        height: 18px;
    }

    .btn-center {
        margin: 45px 0 0;
    }

}

@media (max-width: 575px) {

    .btn {
        font-size: 13px;
        padding: 14px 28px;
        line-height: 1.4;
    }

    .btn_icon {
        width: 17px;
        height: 17px;
    }

}

/*****************************************
************ WHATSAPP FIXO ***************
*****************************************/

.fixed-whatsapp_area {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 998;
}

.fixed-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #028916;
    fill: #fff;
    border: 2px solid #028916;
    border-radius: 100%;
    transition: .5s ease;
}

.fixed-whatsapp_icon {
    position: relative;
    top: -2px;
    width: 35px;
    height: 35px;
}

@media (min-width: 993px) {

    .fixed-whatsapp:hover {
        background-color: #fff;
        fill: #028916;
    }

}

@media (max-width: 1450px) {

    .fixed-whatsapp {
        width: 58px;
        height: 58px;
    }

    .fixed-whatsapp_icon {
        width: 29px;
        height: 29px;
    }

}

@media (max-width: 575px) {

    .fixed-whatsapp_area {
        bottom: 10px;
        right: 10px;
    }

    .fixed-whatsapp {
        width: 50px;
        height: 50px;
    }

    .fixed-whatsapp_icon {
        width: 26px;
        height: 26px;
    }

}

/*****************************************
**************** MODAL *******************
*****************************************/

.modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
    overflow: auto;
    z-index: 999;
}

.box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.modal::before {
    content: '';
    box-sizing: border-box;
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin: 0 -0.05em 0 0
}

.modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .88;
}

.modal_holder {
    position: relative;
    display: inline-block;
    width: 650px;
    max-width: 95%;
    vertical-align: middle;
    text-align: left;
    overflow: hidden;
    padding: 45px 0;
}

.modal_box {
    overflow: hidden;
    border-radius: 8px;
}

.modal_header {
    background-color: #028916;
    padding: 30px 40px;
}

.modal_header-icon {
    width: 55px;
    height: 55px;
    fill: #fff;
    margin: 0 20px 0 0;
}

.modal_header-title-area {
    width: calc(100% - 75px - 45px);
}

.modal_header-title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px;
}

.modal_close {
    cursor: pointer;
    position: relative;
    background-color: transparent;
    border: none;
    width: 25px;
    height: 25px;
    margin: 0 0 0 20px;
    opacity: .5;
    transition: .5s ease;
}

.modal_close:before,
.modal_close:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.modal_close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal_close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal_header-description {
    color: #fff;
    font-size: 17px;
    font-weight: 300;
}

.modal_body {
    background-color: #fff;
    padding: 40px;
}

@media (max-width: 575px) {

    .modal_header,
    .modal_body {
        padding: 20px;
    }

    .modal_header-icon {
        width: 9vw;
        height: auto;
        margin: 0 3.5vw 0 0;
    }

    .modal_header-title-area {
        width: calc(100% - 22.5vw);
    }

    .modal_header-title {
        font-size: 4.25vw;
        margin: 0 0 7px;
    }

    .modal_header-description {
        font-size: 3vw;
        line-height: 1.2;
    }

    .modal_close {
        width: 5vw;
        height: 5vw;
        margin: 0 0 0 5vw;
    }

}