:root {
  --text-primary: #ffffff;
  --bg-highlight: #FF694F;
  --text-orange: #FF694F;
  --text-magenta: #780162;
}

body
{
  background-image: url(../img/bg.png);
  font-family: Arial, sans-serif;
  color: var(--text-primary);
  font-style: normal;
}

.home-p-1
{
  font-size: 19px;
  font-weight: 400;
  line-height: 27px;
}

.home-p-1 > span
{
	color: var(--text-orange);
	text-decoration: underline;
}

.home-p-2
{
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -1.317px;
}

.home-p-2 > span.bg-title
{
  color: #ffffff;
  background-color: var(--bg-highlight);
}

.home-p-2 > span.bg-title-2
{

  text-decoration: underline;
	text-decoration-color:  var(--bg-highlight);;
}

.home-p-3,
.home-p-4
{
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
}

.home-p-4 > span
{
  color: var(--text-orange);
}

.home-p-5,
.home-p-6
{
  text-align: center;
  font-size: 17px;
  line-height: normal;
	color: black;
}

.home-p-5 > span
{
  color: var(--text-magenta);
}

.container-seta {
  position: relative;
}

.seta-destaque
{
  position: absolute;
  top: -80px;
  left: 16.12%;
  width: 130px;
  z-index: 1;
  pointer-events: none;
}

.img-fade
{
  max-width: 100%;
  height: auto;
  /* mask-image: linear-gradient(to bottom, black 60%, transparent 100%); */
  /* -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%); */
}

@media (max-width: 991.98px)
{

	body
	{
		background-image: url(../img/bg.png);
		background-position: center;
	}

  .seta-destaque
	{
    display: none;
  }

	.img-fade
	{
		max-width: 90%;
		height: auto;
		mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
		-webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
	}

	.home-p-1,
	.home-p-2
	{
		text-align: center;
	}

	.home-textos
	{
		margin-top: -30px;
	}
}