:root {
	--default-color: #616771;
}
body {
	color: #555;
}
.bg-partnerson {
	background-color: var(--default-color);
	color: var(--light);
}

.bloco.active {
	display: block;
}

:disabled {
	cursor: not-allowed;
}

.bg-top {
	background: url("/assets/img/bg-site.jpg") no-repeat right center;
	background-size: cover;
	min-height: 500px;
	position: relative;
}

.form-cadastro {
	background: #f1f1f1;
	width: 100%;
}

.titulo-cadastro {
	font-size: 1.2rem;
	padding: 5px 20px;
}

.form-wip.form-group {
	background: none;
	border: 1px solid #d3d3d3;
	border-radius: 5px;
	position: relative;
	margin-top: 15px;
}

.form-wip.form-group label {
	position: absolute;
	top: -15px;
	left: 10px;
	padding: 0 10px;
	background: #f1f1f1;
	text-transform: capitalize;
}

.form-wip.form-group .form-control {
	background: transparent;
	border: 0;
	padding: 0 5px;
	margin-top: 5px;
	box-shadow: none;
}

button {
	transition: 0.1s ease-in-out;
}

.previl-image img {
	width: auto;
	max-width: 100%;
}

.previl-image {
	border: 1px solid;
	padding: 2px;
	width: 85px;
	height: 85px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

form#form-simulador {
	margin-top: 50px;
}

form#form-simulador .form-group label {
	color: #555;
}

form#form-simulador .form-control {
	background: transparent;
	font-size: 18px;
	padding: 15px;
	height: unset;
	border: 1px solid #8f9699;
	color: #555;
}

form#form-simulador .form-control option {
	color: #333;
}

form#form-simulador button {
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	padding: 16px 50px;
	text-transform: uppercase;
	-webkit-border-radius: 3px 3px;
	-moz-border-radius: 3px 3px;
	border-radius: 3px 3px;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	justify-content: center;
}

form#form-simulador button[disabled] {
	cursor: not-allowed;
}

form#form-simulador .form-msg {
	margin-top: 50px;
}

form#form-simulador .form-msg * {
	color: #555;
}

form#form-simulador ::-webkit-input-placeholder {
	/* Edge */
	color: #555;
}

form#form-simulador :-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #555;
}

form#form-simulador ::placeholder {
	color: #555;
}

form#form-simulador select.form-control:not([disabled]) {
	cursor: pointer;
}

.section-white .section-title,
.section-white .section-subtitle {
	color: #fff;
}

.testimonial-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: space-between;
}

.testimonial-item {
	padding: 10px;
}

.testimonial-text {
	background: #e2e2e2;
	padding: 20px;
	border-radius: 10px;
	color: #353535;
	position: relative;
	z-index: 99;
	font-size: 1.32rem;
}

.testimonial-text:before {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 35px;
	width: 30px;
	height: 30px;
	background: #e2e2e2;
	transform: rotate(45deg);
	z-index: -1;
}

.testimonial-profile {
	display: flex;
	flex-wrap: nowrap;
	align-content: space-between;
	margin-top: 20px;
}

.testimonial-profile-info h4,
.testimonial-profile-info h6 {
	color: #fff;
}
.testimonial-profile-info h4 {
	font-size: 1.3rem;
}
.testimonial-profile-info h6 {
	font-size: 0.9rem;
}

.testimonial-profile-image {
	width: 100px;
	height: 100px;
	border-radius: 100%;
	background: #ffffff;
	border: 4px solid #c1c1c1;
	flex: 0 0 100px;
	overflow: hidden;
}

.testimonial-profile-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-profile-info {
	padding-left: 20px;
	flex: auto;
}

p.text-classificacao {
	color: #e6b80e;
}

.home-section .board-play-video {
	height: 400px;
}
.board-play-video {
	border-radius: 10px;
	display: block;
	-webkit-animation: ripple-white 1s linear infinite;
	animation: ripple-white 1s linear infinite;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	position: relative;
	width: 85%;
	overflow: hidden;
	height: 250px;
	margin: auto;
	transition: 0.5s ease-in-out;
}

button.play-video {
	position: absolute;
	top: calc(50% - 50px);
	left: calc(50% - 50px);
	width: 100px;
	height: 100px;
	border-radius: 100%;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.8);
	border: 0;
	font-size: 1.4rem;
}

button.play-video:hover {
	transition: 0.5s ease-in-out;
	-webkit-animation: ripple-white 1s linear infinite;
	animation: ripple-white 1s linear infinite;
}

button.play-video i {
	margin-left: 10px;
	margin-top: 7px;
}

.board-play-video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modal-show {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999999999999999;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
}

.modal-video {
	width: 80%;
	height: 80%;
}

button.fechar-modal {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 100%;
	width: 30px;
	height: 30px;
}

.text-convite {
	display: flex;
	flex-wrap: nowrap;
	align-content: center;
	align-items: center;
}

.img-perfil {
	flex: 0 0 80px;
	height: 80px;
	overflow: hidden;
	border-radius: 100%;
	margin-right: 10px;
}

.img-perfil img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

section#depoimentos {
	background-attachment: fixed;
	background-position: center;
	position: relative;
}

section#depoimentos:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(97, 103, 113, 0.65);
}

.mt-5 {
	margin-top: 3rem;
}

@keyframes ripple-white {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(133, 42, 42, 0.3),
			0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3),
			0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
	}

	100% {
		-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3),
			0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3),
			0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
	}
}

img.icone-caminhao {
	position: relative;
	max-width: 100%;
}

@media (max-width: 700px) {
	.testimonial-container {
		display: block;
	}
	.home-section .board-play-video {
		height: 200px;
		top: 20px;
	}
	.text-convite {
		display: block;
		text-align: center;
	}
	.img-perfil {
		width: 80px;
		margin: auto;
	}
}

@media (min-width: 700px) {
	img.icone-caminhao {
		top: -50px;
	}
}
img {
	max-width: 100%;
}
div.m-benefits {
	display: flex;
	align-items: center;
}
.text-partnerson {
	color: #616771 !important;
}

button.btn-whatsapp {
	background: #00aa4e;
	color: #fff;
	border: 0;
	border-radius: 50px !important;
	padding: 15px 25px !important;
	display: flex !important;
	flex-wrap: nowrap;
	align-content: center;
	align-items: center;
	margin: auto;
	font-size: 1.5rem;
}

button.btn-whatsapp i {
	margin-left: 20px;
}

.btn-flutuante {
	position: fixed;
	bottom: 20px;
	right: 20px;
	color: #fff;
	background: #00aa4e;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	border: 0;
	border-radius: 999px;
	font-size: 1.7rem;
}
html {
	scroll-behavior: smooth;
}
.form-control.aviso {
	box-shadow: noene;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-iteration-count: 5;
}
.bg-top:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(97, 103, 113, 0.65);
}

@keyframes pulse {
	from {
		box-shadow: 0 0 5px transparent;
	}

	to {
		box-shadow: 0 0 5px #ff0000bf;
	}
}
