.v1{
	line-height: 1.2;

	font-weight: 300;
	color: $color_destaque;
	@include propriedade-fluida("font-size", 20, 25, 320, 1360);
	@include desktop {
		@include propriedade-fluida("font-size", 25, 30, 1024, 1920);
	}
	@include mq-min(1920) {
		font-size: valor-fluido(30, 1920);
	}
	b, strong{
		display: block;

		font-weight: 700;
		color: $color2;
		text-transform: uppercase;
		@include propriedade-fluida("font-size", 25, 55, 320, 1360);
		@include mq-min(1920) {
			font-size: valor-fluido(55, 1920);
		}
	}
	&[style]:not([style=""]) {
		b, strong{
			color: inherit;
		}
	}
}

.v2{
	font-weight: 300;
	color: $color_destaque;
	line-height: 1.2;
	@include propriedade-fluida("font-size", 20, 29, 320, 1360);
	@include mq-min(1920) {
		font-size: valor-fluido(29, 1920);
	}
	b, strong{
		font-weight: 700;
		color: $color2;
		text-transform: uppercase;
		display: block;
		@include propriedade-fluida("font-size", 30, 52, 320, 1360);
		@include mq-min(1920) {
			font-size: valor-fluido(52, 1920);
		}
	}
	&[style]:not([style=""]) {
		b, strong{
			color: inherit;
		}
	}
}

.v3{
	@extend .v2;
	b, strong{
		@include propriedade-fluida("font-size", 25, 38, 320, 1360);
		@include mq-min(1920) {
			font-size: valor-fluido(38, 1920);
		}
	}
}