.el-chamada-ticket{
	padding: 55px 0;
	background-image: url(../imagens/pattern-1.png);
	background-color: #f9f9f9;
	background-repeat: repeat;
	@include mq-min(1920) {
		padding: valor-fluido(55, 1920) 0;
	}
	.wrapper{
		padding-left: 10px;
		padding-right: 10px;
		text-align: center;
		@include desktop {
			padding-left: 3%;
			padding-right: 3%;

			display: flex;
			align-items: center;
			justify-content: space-between;

			text-align: left;
		}
		.v3{
			margin-bottom: 15px;
			@include desktop {
				flex-shrink: 0;
				margin-bottom: 0;
			}
		}
		.frase1{
			line-height: 1.2;
			margin-bottom: 10px;
			@include desktop {
				width: 25%;
				margin-left: 2%;
				margin-bottom: 0;
			}
		}
		.frase2{
			line-height: 1.2;
			margin-bottom: 10px;
			@include desktop {
				width: 25%;
				margin-left: 2%;
				margin-bottom: 0;
			}
			b, strong{
				color: $color_destaque;
			}
		}
		.btn{
			display: inline-block;
			padding: 15px;
			line-height: 1.2;
			color: $color_destaque;
			border: 1px solid $color_destaque;
			border-radius: 8px;
			min-width: 240px;
			font-size: 17px;
			font-weight: 500;
			text-align: center;
			transition: 0.2s;
			cursor: pointer;
			@include desktop {
				margin-left: 2%;
				flex-shrink: 0;
			}
			@include mq-min(1920) {
				padding: valor-fluido(15, 1920);
				border: valor-fluido(1, 1920) solid $color_destaque;
				border-radius: valor-fluido(8, 1920);
				min-width: valor-fluido(240, 1920);
				font-size: valor-fluido(17, 1920);
			}
			&:hover{
				color: #ffffff;
				background-color: $color_destaque;
			}
		}
	}
}