* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--dark: #181818;
	--white: #fff;
	--fiolet: #260C30;
	--red: #CB1F52;
	--yellow: #F3B234;
	--green: #21A659;

	--fshead: 20px;
}
html {
	font-size: 20px;
}
body {
	font-family: Arial, sans-serif;
	background: var(--white);
	color: var(--dark);
	font-size: 0.9rem;
	line-height: 1.6;
}
.container {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
	position: relative;
}
.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.button__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding-bottom: 24px;
}
.button {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 44px;
	padding: 4px 20px;
	border-radius: 5px;
	border: none;
	background: var(--fiolet);
	color: var(--white);
	font-size: 18px;
	font-weight: bold;
	line-height: 1.1;
	text-decoration: none;
	cursor: pointer;
	transition: all .3s ease;
}
.button:hover {
	background: var(--red);
}




.alignleft {display: inline;float: left;margin: 5px 15px 5px 0;}
.alignright {display: inline;float: right;margin: 0 0 15px 15px;}
.aligncenter {clear: both;display: block;margin: 5px auto;}

.min-img {
	width: 32%;
}




.header {
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
	background: var(--light);
	box-shadow: 0 0 8px rgba(54, 24, 7, .2);
}

.logo {
	display: block;
	width: 160px;
	height: 42px;
}
.logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}


.header-nav {
	margin-left: auto;
	margin-right: 24px;
}
.header-nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
	list-style: none;
}
.header-nav .nav-item-parent {
	position: relative;
	padding-bottom: 20px;
	margin-bottom: -20px;
}
.header-nav .nav-item-parent::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 5px;
	height: 5px;
	border-left: 1px solid var(--blue);
	border-bottom: 1px solid var(--blue);
	transform: rotate(-45deg);
	margin-left: 4px;
	margin-top: -4px;
	transition: all .3s ease;
}
.header-nav ul a {
	display: block;
	color: var(--blue);
	font-size: 18px;
	text-decoration: none;
	transition: all .3s ease;
}
.header-nav .nav-item-parent a {
	display: inline-block;
}
.header-nav ul a:hover {
	color: #2e4f84;
	text-decoration: underline;
}
.header-nav ul.sub-menu {
	position: absolute;
	top: 20px;
	left: 0;
	display: block;
	width: 100%;
	padding: 8px;
	background: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, .1);
	opacity: 0;
	pointer-events: none;
	transition: all .3s ease;
}
.header-nav li.nav-item-parent:hover ul.sub-menu {
	top: 25px;
	opacity: 1;
	pointer-events: auto;
}

.header-nav__btn {
	display: none;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	border: none;
	background: transparent;
	outline: none;
	cursor: pointer;
}
.header-nav__btn span {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	height: 2px;
	border-radius: 3px;
	background: var(--dark);
	position: relative;
}
.header-nav__btn span::before,
.header-nav__btn span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 3px;
	background: var(--dark);
	transition: all 0.4s ease;
}
.header-nav__btn span::before {
	top: -7px;
}
.header-nav__btn span::after {
	bottom: -7px;
}
.nav-active .header-nav__btn span {
	background: transparent;
}
.nav-active .header-nav__btn span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
}
.nav-active .header-nav__btn span::after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
}



.hero {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	background: url('/images/fg-hero.webp') center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.hero__wrapper {
	background: var(--white);
	border-radius: 20px;
	padding: 1rem;
	box-shadow: 0 0 8px rgba(0, 0, 0, .05);
}
.hero__thumb {
	width: 20%;
}
.hero__thumb img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
	overflow: hidden;
	margin: 0 0 20px;
}
.hero__thumb .button {
	display: flex;
	width: 100%;
}

.hero__info {
	width: 78%;
}
.hero__info h1 {
	margin-bottom: 16px;
	font-size: 1.5rem;
	line-height: 1.2;
}
.hero__table table {
	width: 100%;
	border-collapse: collapse;
	border: none;
}
.hero__table table td {
	border: none;
	padding: 5px;
}
.hero__table .heading {
	font-size: 0.7rem;
}









.main {
	overflow: hidden;
}
.main p {
	margin-bottom: 15px;
	line-height: 1.6;
}
.main a {
	color: var(--light);
	text-decoration: underline;
}
.main a:hover {
	text-decoration: none;
}
.main ul,
.main ol {
	margin-bottom: 20px;
	padding-left: 20px;
}
.main img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto 25px;
	border-radius: 4px;
}
.alighnleft {
	float: left;
	margin: 0 20px 20px 0;
}
.alighnright {
	float: right;
	margin: 0 0 20px 20px;
}

.main h1 {
	margin-bottom: 30px;
	text-align: center;
}
.main h2,
.main h3,
.main h4,
.main h5,
.main h6 {
	margin: 12px 0 24px;
}
.main h2 {
	font-size: calc(1.6 * var(--fshead));
}
.main h3 {
	font-size: calc(1.2 * var(--fshead));
}
.main h4 {
	font-size: calc(1.1 * var(--fshead));
}
.main h5,
.main h6 {

}

.main table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}
.main table, .main th, .main td {
	border: 1px solid #ddd;
}
.main th, .main td {
	padding: 12px;
	text-align: left;
}
.main th {
	background-color: #f8f9fa;
}
.main blockquote {
	border-left: 2px solid #7e290a;
	padding-left: 16px;
	margin: 20px 0;
	font-style: italic;
	color: #333;
}


.block {
	padding-top: 2rem;
	padding-bottom: 2rem;
}




.fg-intro {

}




.toc {
	background: rgba(226, 53, 48, 0.04);
	padding: 20px;
	margin-bottom: 25px;
}
.toc__label {
	margin-bottom: 20px;
	color: #000;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.1;
}
.toc__header {
	padding-left: 12px;
}
.toc__header a {
	display: block;
	margin-bottom: 5px;
	font-size: 16px;
	line-height: 1.3;
	text-decoration: none;
}
.toc__header a:hover {
	text-decoration: underline;
}







.fg-interface {
	background: rgba(0, 250, 106, .2);
}



.table-simbolos img {
	max-width: 100px;
	margin: 0 !important;
}




.box__wrap {
	align-items: stretch;
	margin-bottom: 16px;
}
.box__info {
	width: 60%;
}
.box__info > *:last-child {
	margin-bottom: 0;
}
.box__thumb {
	width: 38%;
}
.box__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
}




.fg-estrategias {
	background: url('images/fg-estrategias.webp') center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.fg-estrategias__wrap {
	background: rgba(255, 255, 255, .9);
	padding: 4px 16px 8px;
	border-radius: 16px;
}




.fg-vantagens {
	background: rgba(0, 0, 0, .03);
	border-top: 1px solid rgba(0, 0, 0, .07);
	border-bottom: 1px solid rgba(0, 0, 0, .07);
	box-shadow: 0 0 12px rgba(0, 0, 0, .1);
}
.fg-vantagens__wrap {
	align-items: stretch;
}
.fg-vantagens__item {
	width: calc(50% - 10px);
}





.faq {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background: rgba(203, 31, 82, .2);
}
.faq h2 {
	margin-bottom: 20px;
}
.faq-item {
	padding: 20px;
	background: var(--white);
	border-radius: 10px;
	margin-bottom: 20px;
}
.faq h3 {
	margin-bottom: 8px;
}












.footer {
	background: var(--fiolet);
	padding: 20px;
	color: var(--white);
}

.footer-top {
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}
.footer-top .container {
	align-items: center;
}

.footer-menu ul {
	display: flex;
	list-style: none;
	gap: 25px;
}

.footer-menu a {
	text-decoration: none;
	color: var(--white);
	font-weight: bold;
}
.footer-menu a:hover {
	text-decoration: underline;
}

.footer-middle {
	max-width: 980px;
	margin: 0 auto;
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.footer__info {
	padding-bottom: 1rem;
	font-size: 13px;
}

.footer-warning {
	justify-content: center;
	align-items: center;
	gap: 2%;
}
.footer-warning__item {
	width: 22%;
	max-width: 120px;
}
.footer-warning__item a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.footer-warning__item img {
	display: block;
	max-width: 100%;
	height: auto;
}

.footer-bottom {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.copyright {
	font-size: 14px;
	opacity: .7;
	text-align: center;
}









@media (max-width: 880px) {

	.header-nav {
		position: absolute;
		top: 80%;
		right: 20px;
		background: var(--light);
		padding: 12px;
		opacity: 0;
		pointer-events: none;
		transition: all .3s ease;
	}
	.nav-active .header-nav {
		opacity: 1;
		pointer-events: auto;
	}
	.header-nav__btn {
		display: flex;
	}

	.content h1 {
		line-height: 1.2;
	}


	.play-btn {
		margin-left: 0;
	}

	.footer-top {
		flex-direction: column;
		gap: 20px;
	}

	.footer-menu ul {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.content table {
		display: block;
		overflow-x: auto;
	}
}



@media (max-width: 640px) {

	:root {
		--fshead: 16px;
	}


}



@media (max-width: 450px) {


}