@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

*{
    box-sizing:border-box;
}

@keyframes showNav {
      from {opacity: 0;}
      to {opacity: 1;}
}
@keyframes fadeIn {
	from {
		transform: translate3d(0, -25%, 0);
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}

.popup-wrapper{
    background: rgba(0, 0, 0, .5);
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    display: none;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
   animation: showNav 0.5s ease-in-out both;
   z-index:999;
}

.popup{
    width: 100%;
    max-width: 500px;
    margin: 0% auto;
    background: white;
    position: absolute;
    right: 6em;
    bottom: 2em;
    z-index:9999;
    animation: fadeIn 0.5s ease;
    background-size: cover !important;
    background-position: center !important;
    font-family: 'Open Sans', sans-serif;
    
    
}

.popup-close{
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    color: white;
    font-size: 30px;
    font-weight: 500;
    width: 10%;
    text-align: center;
}

.modal-header-whats{
    display: flex;
    padding: 15px;
    background: #0b6156;
    flex-direction: row;
    align-items: center;
    gap:25px
}

.modal_form_whats .modal-title {
    color: white;
    width: 100%;
    display: inline-block;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1;
    margin:0;
}

.modal_form_whats .modal-title span{
    font-weight: 400;
    font-size: 14px;
}

.foto_user{
    width: 60px;
    height: 48px;
}

.foto_user img {
    border-radius: 100%;
    background: white;
}

.content_form_whats .msg_whats{
    margin: 10px;
    padding: 12px;
    display: inline-block;
    width: 80%;
    background-color: rgba(255,255,255,1);
    border: 1px solid #cacaca;
    border-radius: 6px;
    font-size: 15px;
    color: #6a6a6a;
}

.content_form_whats .form_whats {
    width: 80%;
    float: right;
    display: inline-block;
    margin: 10px;
    margin-top: 0;
}

.whats_fixo{
    position: fixed;
    bottom: 2em;
    right: 2em;
    width: 50px;
    height: 50px;
    z-index: 9999;
    animation: Updown 0.8s infinite alternate;
}

@media(max-width:600px){
    .whats_fixo{
        bottom: 1em;
        right: 1em;
        width: 45px;
        height: 45px;
    }
    
	.popup{
	    bottom: 5em !important;
        width: 100% !important;
        right: 0;
	}
    
    .content_form_whats .form_whats{
        width: 90%;
    }
    .content_form_whats .msg_whats{
        width: 90%;
    }
}

@media(max-width:1500px){

}

@keyframes Updown {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.wpcf7-spinner{
	position: absolute;
	left: 0;
	width: 100%;
	height: 55px;
	margin: 0;
	z-index: 99;
	cursor: not-allowed;
	background: white;
	opacity:0.5;
	border-radius: 0;
}

.wpcf7-spinner:after{
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	background: black;
	border-radius: 100px;
	opacity: 0.75;
	z-index: -1;
}

.form_whats form{
    position:relative;
}

.form_whats form input{
    background: #e7ffe7;
    border: none;
    padding: 10px;
    height: 38px;
    border-radius: 5px;
    width: 100%;
    display: inline-block;
    font-weight: 400;
    font-size: 15px;
    color: #606060;
    margin-bottom: 8px;
    outline: transparent;
}

.form_whats form select{
    background: #e7ffe7;
    border: none;
    padding: 10px;
    height: 36px;
    border-radius: 5px;
    width: 100%;
    display: inline-block;
    font-weight: 500;
    font-size: 15px;
    color:#4a4a4a;
    margin-bottom: 8px;
}

.form_whats form input[type=submit]{
    background: #0b6156;
    color: white;
    font-weight: 500;
    transition: all ease 0.5s;
    width: auto;
    float: right;
    margin-bottom: 0;
    padding: 10px 15px;
    display: inline-block;
    height: auto;
    font-size: 15px;
    margin: 6px 0px;
}

.form_whats form p{
    margin-bottom:0;
}

.btn_whats_click{
	cursor: pointer
}

.nova-classe{
    overflow:hidden;
}