/* #417337 */
/* #434343 */

@import url('https://fonts.googleapis.com/css2?family=Livvic:wght@300;700&display=swap');

*, *:after, *:before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    position: relative;
    font-family: 'Livvic', sans-serif;
    min-height: 100vh;
}

.trigger{
    position: relative;
    width: 100%;
    padding: 15px;
    background: #333;
    font-size: 1em;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}

.trigger_none{margin-bottom: 0;}
.trigger p{margin-top: 10px;}
.trigger_ajax{display: none; cursor: pointer;}
.trigger_success{background-color: #00B494;}
.trigger_info{background-color: #0E96E5;}
.trigger_alert{background-color: #FAAD50;}
.trigger_error{background-color: #F45563;}

.trigger_modal{
    position: fixed;
    right: 0;
    top: 0;
    width: 460px;
    max-width: 80%;
    padding: 20px 20px 0 0;
    cursor: pointer;
    z-index: 999;
}

.trigger_modal .trigger{
    padding: 20px;
    margin: auto 30px auto auto;
}

/* ESTRUTURA */
.coming-soon {
    position: relative;
    height: 100vh;
    background: #f9f9f9;
    background: linear-gradient(0deg, rgba(111,160,65,0.39) 0%, rgba(255,255,255,1) 100%);
}

.coming-soon::before,
.coming-soon::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.coming-soon::before {
    top: 0;
    background: url('./images/eff-top.png') no-repeat top left;
    background-size: calc(50% + 100px);
}

.coming-soon::after {
    background: url('./images/eff-bottom.png') no-repeat bottom center;
    background-size: contain;
}

/* FORMULARIO */
.soon-form {
    position: relative;
    text-align: center;
    width: 568px;
    margin: 0 auto;
    padding: 7em 0 0;
    max-width: 95%;
    color: #417337;
    z-index: 1;
}
.soon-form h2 {
    font-weight: bold;
    margin: 35px 0 20px;
}
.soon-form span {
    color: #434343;
    font-weight: 300;
    font-size: 1.6em;
    margin: 35px 0;
    display: block;
}
.soon-form label {
    display: block;
    width: 100%;
    position: relative;
}
.soon-form input {
    height: 55px;
    padding: 0 20px;
    border: 4px solid #417337;
    border-radius: 2em;
    font-size: 1.2em;
}
.soon-form input:hover,
.soon-form input:focus {
    border-color: #434343;
}
.soon-form button {
    position: absolute;
    top: 0;
    right: 0;
    height: 55px;
    border: none;
    background: #417337;
    border-top-right-radius: 2em;
    border-bottom-right-radius: 2em;
    white-space: nowrap;
    padding: 0 25px;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .trigger_modal {
        max-width: 95%;
        width: 95%;
        margin: 0 2.5%;
        padding: 0;
    }
    .soon-form button {
        position: relative;
        border-radius: 3em;
        margin-top: 2em;
    }
}