/* Botão flutuante */
@-webkit-keyframes pulse-floating-button {
	0% {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
		opacity: 0.7;
	}
	50% {
		-webkit-transform: scale(1.3);
		        transform: scale(1.3);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
		opacity: 0.7;
	}
}
@keyframes pulse-floating-button {
	0% {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
		opacity: 0.7;
	}
	50% {
		-webkit-transform: scale(1.3);
		        transform: scale(1.3);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
		opacity: 0.7;
	}
}
.floating-button {
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 20px;
    z-index: 9999999;
}
.floating-button a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
}
.floating-button__icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    -webkit-box-shadow: 0px 0px 2px #000;
            box-shadow: 0px 0px 2px #000;
    text-align: center;
    font-size: 30px;
    color: #FFF;
}
.floating-button__icon::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 500px;
	background-color: rgba(127,203,108,.4);
	z-index: -1;
    -webkit-animation: pulse-floating-button 1s infinite;
            animation: pulse-floating-button 1s infinite; 
}
.floating-button__icon.whatsapp-color {
    background-color: #20B038;
}
.floating-button__icon i {
    line-height: 0;
}
.floating-button__text {
    position: relative;
    margin-right: 12px;
    padding: 8px 12px;
    border: 1px solid #999;
    border-radius: 4px;
    background-color: #FFF;
    line-height: 1.2;
    text-align: center;
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    color: #000;
}
.floating-button__text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px;
    -webkit-transform: translateY(-50%) rotate(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    background-color: #FFF;
}
@media screen and (max-width: 767px){
    .floating-button__text {
        display: none;
    }
}
.floating-button__text strong {
    display: block;
}

/* Popup com CF7 */
.fcl-cf7-wpp {
    position: fixed;
    right: 0;
    bottom: -100%;
	width: 95%;
	margin-bottom: 92px;
	border-radius: 12px;
	background-color: #FFF;
	-webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.2);
	        box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.2);
    z-index: 99999999;
	-webkit-transition: all 200ms;
	-o-transition: all 200ms;
	transition: all 200ms;
}
@media screen and (min-width: 768px){
	.fcl-cf7-wpp {
	    max-width: 320px;
		margin-right: 28px;
	}
}
@media screen and (max-width: 767px){
	.fcl-cf7-wpp {
		right: unset;
		left: 50%;
		-webkit-transform: translateX(-50%);
		    -ms-transform: translateX(-50%);
		        transform: translateX(-50%);
	}
}
.fcl-cf7-wpp.fcl-cf7-wpp--open {
	bottom: 0;
}
@media screen and (max-width: 767px){
	.fcl-cf7-wpp.fcl-cf7-wpp--open {
		bottom: -80px;
	}	
}
.fcl-cf7-wpp__close {
    position: absolute;
    right: 0;
    padding: 6px 8px;
    line-height: 0;
    color: #FFF;	
	cursor: pointer;
	-webkit-transition: all 200ms;
	-o-transition: all 200ms;
	transition: all 200ms;
}
.fcl-cf7-wpp__close:hover {
	background-color: #097065;
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.fcl-cf7-wpp__header {
    padding: 16px 18px 14px 18px;
	border-radius: 12px 12px 0px 0px;
    background-color: #075E54;
}
.fcl-cf7-wpp__header h4 {
	padding-bottom: 2px;
	font-weight: 600;
	font-size: 18px;
	color: #FFF;
}
.fcl-cf7-wpp__header p {
	font-size: 13px;
	color: #FFF;
}
.fcl-cf7-wpp__form {
	max-height: calc(70vh - 140px);
	padding: 24px 18px;
	background-color: #ece5dd;
    overflow-y: auto;
}
.fcl-cf7-wpp__form .wpcf7-submit {
	padding: 8px 12px;
    border: 2px solid #3fa248;
	border-radius: 4px;
	background-color: #46b450;
	font-weight: 600;
	color: #FFF;
	-webkit-transition: all 200ms;
	-o-transition: all 200ms;
	transition: all 200ms;
}
.fcl-cf7-wpp__form .wpcf7-submit:hover {
	border-color: #ece5dd;
	background-color: #3fa248;
}
.fcl-cf7-wpp__form .wpcf7-not-valid-tip,
.fcl-cf7-wpp__form .wpcf7-response-output {
	font-size: 13px !important;
}
.fcl-cf7-wpp__footer {
    padding: 4px 0px;
	text-align: center;
	font-size: 14px;
}
.fcl-cf7-wpp__footer i {
    margin-right: 2px;
	color: #20B038;
}
