/* DIVISOR DE ÁGUAS */
/***********************************
    ########################## BTN CLASS
    ***********************************/
#lp_hunter {
    display: none;

}

.btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px;
    background: #56b748;
    border: 1px #4a9e3e solid;
    color: #fff;
    text-shadow: 1px 1px 0 #333;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none !important;
    cursor: pointer;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.btn:hover {
    background: #4a9e3e;
    border-color: #3e8434;
}

.btn_blue {
    background-color: #0E96E5;
    border-color: #096397;
}

.btn_blue:hover {
    background-color: #096397;
    border-color: #135c7d;
}

.btn_yellow {
    background-color: #F2AA27;
    border-color: #E49D48;
}

.btn_yellow:hover {
    background-color: #CC8D41;
    border-color: #9B6B31;
}

.btn_red {
    background-color: #F43E33;
    border-color: #B32C24;
}

.btn_red:hover {
    background-color: #B32C24;
    border-color: #91211B;
}

.btn_purple {
    background-color: #7551CD;
    border-color: #6046A4;
}

.btn_purple:hover {
    background-color: #6046A4;
    border-color: #4B3781;
}

.btn_pink {
    background-color: #B873CD;
    border-color: #A366B7;
}

.btn_pink:hover {
    background-color: #A366B7;
    border-color: #835293;
}

/***********************************
######################## OPTIN MODAL
***********************************/
.ajax_load_box{
    z-index: 1;
}

.lpoptin_modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.lpoptin_modal_box {
    z-index: 999;
    display: block;
    position: relative;
    width: 600px;
    max-width: 90%;
    background: rgba(255, 255, 255, 0.3);
    margin: 4% auto;
    padding: 5px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.lpoptin_modal_box_close {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 0.9em;
    font-weight: bold;
    padding: 6px 11px;
    cursor: pointer;
    background: #000;
    border: 2px double #ccc;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;

}

.lpoptin_modal_box_close:hover {
    background: #B32C24;
}

.lpoptin_modal_box .header {
    background-color: #F1811D;
    padding: 10px;
    color: #ffffff !important;
    text-align: center;
    border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px 3px 0 0;
}

.lpoptin_modal_box .header p {
    font-weight: 500;
    font-size: 1.5em;
    text-shadow: 1px 1px 0 #555;
    color: #ffffff;
}

.lpoptin_modal_box #optin {
    padding: 30px;
    background: #fff;
    border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    -webkit-border-radius: 0 0 3px 3px;
}


/***********************************
######################### OPTIN FORM
***********************************/

#optin {
    width: 100%;
    text-align: center;
}

#optin * {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

#optin input {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

#optin input[type="text"],
#optin input[type="email"] {
    border: 1px solid #ccc;
    font-size: 15px;
    margin-bottom: 15px;
    padding: 15px;
    width: 100%
}

#optin input.email {
    background: #fff url(images/email.png) no-repeat center right;
}

#optin input.name {
    background: #fff url(images/name.png) no-repeat center right;
}

#optin button {
    display: block;
    width: 100%;
    padding: 15px;
    background: #56b748;
    border: 1px #4a9e3e solid;
    color: #fff;
    text-shadow: 1px 1px 0 #333;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none !important;
    cursor: pointer;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

#optin button:hover {
    background: #4a9e3e;
    border-color: #3e8434;
}

#optin .btn_blue {
    background-color: #0E96E5;
    border-color: #096397;
}

#optin .btn_blue:hover {
    background-color: #096397;
    border-color: #135c7d;
}

#optin .btn_yellow {
    background-color: #F2AA27;
    border-color: #E49D48;
}

#optin .btn_yellow:hover {
    background-color: #CC8D41;
    border-color: #9B6B31;
}

#optin .btn_red {
    background-color: #F43E33;
    border-color: #B32C24;
}

#optin .btn_red:hover {
    background-color: #B32C24;
    border-color: #91211B;
}

#optin .btn_purple {
    background-color: #7551CD;
    border-color: #6046A4;
}

#optin .btn_purple:hover {
    background-color: #6046A4;
    border-color: #4B3781;
}

#optin .btn_pink {
    background-color: #B873CD;
    border-color: #A366B7;
}

#optin .btn_pink:hover {
    background-color: #A366B7;
    border-color: #835293;
}

#optin .termos {
    font-size: 0.8em;
    margin: 10px 0 0 0;
    display: inline-block;
    padding-left: 25px;
    background: url(images/privace.png) left center no-repeat;
    text-transform: uppercase;
    color: #555;
}

/***********************************
############################ LP HOME
***********************************/

.lp_hunter {
    display: block;
    width: 100%;
    background-image: url(images/bg_optin.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 6% 0;
}

.lp_hunter_optin {
    display: block;
    width: 540px;
    max-width: 90%;
    margin: 0 auto;
    background: #fff;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-shadow: 0 0 10px 1px #000;
}

.lp_hunter_optin header {
    display: block;
    padding: 30px;
    text-align: center;
}

.lp_hunter_optin header img {
    margin-bottom: 20px;
    width: 260px;
    max-width: 80%;
}

.lp_hunter_optin header h1 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.lp_hunter_optin header p {
    font-size: 0.9em;
    color: #888;
}

.lp_hunter_optin_btn {
    padding: 0 30px;
    padding-bottom: 40px;
}