/*
Theme name: Planejadores
Description:
Author: Aleksandrlao
Author URI: https://alaoweb.top
*/


:root {
	--white: #fff;
	--black: #0A0A0A;
	--primary: #C69DE2;

	--font: 'Plus Jakarta Sans', Arial, sans-serif;
}



*, *::before, *::after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/*outline: 1px solid #c00;*/
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
html {
	font-size: 20px;
}
body {
	background: var(--black) url('i/bg.jpg') center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	color: var(--white);
	font: 0.8rem/1.5 'Prompt', Arial, sans-serif;
}
.wrapper,
body.nav-active {
	overflow: hidden;
	position: relative;
}
.wrapper {
	padding-top: 88px;
	padding-bottom: 80px;
}
.box {
	width: 100%;
	min-width: 320px;
	position: relative;
	margin-bottom: 7.5rem;
	z-index: 2;
}
.container {
	width: 100%;
	min-width: 320px;
	max-width: 1168px;
	padding-left: 1rem;
	padding-right: 1rem;
	margin: 0 auto;
	position: relative;
	border-top: 0 solid transparent;
}
.container::after {
	content: '';
	display: block;
	clear: both;
	width: 100%;
	height: 0;
}
.flx {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}


a {
	color: var(--primary);
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

input, 
textarea, 
select,
button {
	font-family: 'Prompt', Arial, sans-serif;
}
input.error {
	color: #f00 !important;
	border: 1px solid #f00 !important;
}
input.valid {
	border: 1px solid #339e36 !important;
}
input:focus {
	color: var(--black);
}
input::-webkit-input-placeholder {
	color: var(--black);
}
input::-moz-placeholder {
	color: var(--black);
}
input:-moz-placeholder {
	color: var(--black);
}
input:-ms-input-placeholder {
	color: var(--black);
}






.text {
	overflow: hidden;
}
.text p {
	margin-bottom: 1.2rem;
}
.text h2, 
.text h3, 
.text h4, 
.text h5 {
	margin-bottom: 1.2rem;
	color: #000;
	font-size: 1.5rem;
	line-height: 1.3rem;
}
.text h3 {
	font-size: 1.2rem;
}
.text h4, .text h5 {
	font-size: 1rem;
}
.text table {
	width: 100%;
	border-collapse: collapse;
}
.text table tr td {
	border: 1px solid var(--black);
	padding: 10px;
	margin-bottom: 1.2rem;
}
.text ul, .text ol {
	margin: 0 0 1rem 1.2rem;
}
.text li {
	margin-bottom: 8px;
}
.text img {
	display: block;
	max-width: 100%;
	height: auto;
}



.button-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.button {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 48px;
	border-radius: 10px;
	padding: 10px 25px;
	border: 1px solid transparent;
	background:
		linear-gradient(180deg, #7E61FF 0%, #FFBD7E 200%) padding-box,
		linear-gradient(180deg, #fff, rgba(255, 255, 255, 0) ) border-box;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: all .3s ease;
	cursor: pointer;
}
.button:hover {
	border-color: #fff;
}



.block {
	width: 100%;
	border-radius: 33px;
	padding: 60px;
	background: linear-gradient(226deg, rgba(255, 255, 255, 0.08) 0%, rgba(126, 97, 255, 0.09) 100%);
}
.block-ins {
	width: 100%;
	max-width: 620px;
	margin: 0 auto;
}
.head {
	width: 100%;
	margin-bottom: 1.1rem;
	font-family: var(--font);
	font-weight: 600;
	font-size: 24px;
	line-height: 1.7;
	color: #e3e1eb;
	text-align: center;
}
.desc {
	width: 100%;
	margin-bottom: 1.4rem;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.63);
	text-align: center;
}
.desc span {
	color: var(--primary);
}




.slick-list {
	overflow: hidden;
}
.slick-track {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
.slick-arrow {
	position: absolute;
	top: calc(50% - 24px);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 27px;
	height: 22px;
	background-color: transparent;
	border: none;
	outline: none;
	font-size: 0;
	cursor: pointer;
	z-index: 40;
}
.slick-arrow::before {
	content: '';
	display: block;
	width: 9px;
	height: 15px;
	background: #3A3A3B;
	-webkit-mask: url("i/bg-icon-arrow.svg") center no-repeat;
	mask: url("i/bg-icon-arrow.svg") center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: all .3s ease;
}
.slick-arrow:hover::before {
	background: #fff;
}
.slick-prev {
	left: 0;
}
.slick-next {
	right: 0;
}
.slick-next::before {
	transform: rotate(180deg);
}
.slick-dots {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	gap: 4px;
	list-style: none;
}
.slick-dots li button {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background: #1b1b1b;
	border: none;
	outline: none;
	font-size: 0;
	cursor: pointer;
	transition: all .3s ease;
}
.slick-dots li.slick-active button {
	width: 12px;
	height: 12px;
	background: #3a3a3b;
}





/* Hero ----------------------------------------------------------------------------- */
.hero__info {
	width: calc(51% - 20px);
}
.hero__head {
	margin-bottom: 3.2rem;
	font-family: var(--font);
	font-weight: 600;
	font-size: 46px;
	line-height: 1.4;
	color: #e3e1eb;
}
.hero__desc {
	width: 100%;
	max-width: 490px;
	position: relative;
	padding-left: 92px;
}
.hero__desc::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 41px;
	height: 1px;
	background: var(--white);
}
.hero__button {
	margin-top: 48px;
}
.hero__thumb {
	width: calc(49% - 24px);
}
.hero__thumb img {
	display: block;
	max-width: 100%;
	height: auto;
}










/* nao-resultado ----------------------------------------------------------------------------- */
.nao-resultado {
	margin-bottom: 3rem;
}
.nao-resultado__head {
	max-width: 460px;
	margin: 0 auto 1.1rem;
}
.nao-resultado__list {
	justify-content: flex-start;
	padding-top: 40px;
	padding-bottom: 24px;
}
.nao-resultado-card {
	width: 30%;
	min-height: 260px;
	margin: 0 1.5% 20px;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.35);
	background: rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 20px;
	transform: rotate(-6deg);
}
.nao-resultado-card:nth-child(2) {
	transform: rotate(7deg);
}
.nao-resultado-card__thumb {
	display: block;
	width: 100%;
	height: 152px;
	overflow: hidden;
	border-radius: 8px;
	margin-bottom: 20px;
}
.nao-resultado-card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.nao-resultado-card__title {
	width: 100%;
	max-width: 100px;
	margin: 0 auto;
	font-weight: 300;
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
	color: #e0e0e0;
}


.nao-resultado__bottom-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.63);
	text-align: center;
}




.resultado-cabeca .block-ins {
	max-width: 520px;
}
.resultado-cabeca__info ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	list-style: none;
}
.resultado-cabeca__info ul li {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 60px;
	margin-top: 46px;
	border-radius: 10px;
	padding: 16px 24px;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.35);
	background: rgba(255, 255, 255, 0.08);
	font-weight: 300;
	font-size: 14px;
	line-height: 1.2;
	text-align: center;
	color: #e0e0e0;
}
.resultado-cabeca__info ul li:first-child {
	margin-top: 24px;
}










/* example ----------------------------------------------------------------------------- */
.price .container {
	gap: 60px 20px;
}
.price .container::after {
	display: none;
}
.price-box {
	width: calc(50% - 20px);
}
.price-box__head {
	width: 100%;
	max-width: 200px;
	margin: 0 auto 24px;
	font-family: var(--font);
	font-weight: 600;
	font-size: 28px;
	line-height: 1.7;
	text-align: center;
	color: #e3e1eb;
}
.price-box--3-2 .price-box__head {
	max-width: 100%;
}
.price-box__thumb {
	padding-left: 32px;
	padding-right: 32px;
	padding-bottom: 32px;
}
.price-box__thumb img {
	display: block;
	width: 100%;
	height: auto;
}
.price-box__slider {
	overflow: hidden;
	position: relative;
	padding-left: 36px;
	padding-right: 36px;
	padding-bottom: 24px;
	margin-bottom: 32px;
}
.price-box-slide {
	display: block;
	width: 100%;
	border-radius: 22px;
	border: 9px solid #3a3a3b;
	overflow: hidden;
}
.price-box-slide img {
	display: block;
	width: 100%;
	height: auto;
}

.price-box__price {
	margin-bottom: 24px;
	position: relative;
	font-family: var(--font);
	font-weight: 500;
	font-size: 22px;
	line-height: 1.5;
	text-align: center;
	color: #e3e1eb;
}
.price-box__old-price {
	display: inline-block;
	vertical-align: top;
	margin-top: -20px;
	margin-left: 8px;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.3;
	text-decoration: line-through;
	color: #c69de2;
}








/* tem-dentro ----------------------------------------------------------------------------- */
.tem-dentro__list {
	align-items: stretch;
	gap: 50px;
	padding-top: 16px;
}
.tem-dentro-item {
	width: calc(50% - 25px);
	padding: 32px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 32px;
}
.tem-dentro-item__title {
	margin-bottom: 16px;
	font-family: var(--font);
	font-weight: 600;
	font-size: 20px;
	line-height: 1.4;
	text-align: center;
	color: #e3e1eb;
}
.tem-dentro-item__desc {
	margin-bottom: 46px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.63);
	text-align: center;
}
.tem-dentro-item__desc span {
	color: rgba(255, 255, 255, 0.63);
}
.tem-dentro-item__thumb {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}
.tem-dentro-item__thumb img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 16px;
}











/* review ----------------------------------------------------------------------------- */
.review {

}
.review__slider {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	padding-top: 20px;
}
.review-item {
	width: 22%;
	min-height: 142px;
	padding: 12px;
	margin: 0 1.5% 46px;
	box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.5);
	background: rgba(255, 255, 255, 0.05);
	border-radius: 14px;
	transform: rotate(2deg);
}
.review-item:nth-child(odd) {
	transform: rotate(-3deg);
}
.review-item img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
}











/* para-voce ----------------------------------------------------------------------------- */
.para-voce .block-ins {
	max-width: 644px;
}






.faq .container {
	max-width: 684px;
}
.faq-item {
	margin-top: 46px;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.35);
	background: rgba(255, 255, 255, 0.08);
	border-radius: 10px;
}
.faq-item__head {
	padding: 22px 30px 22px 16px;
	position: relative;
	cursor: pointer;
}
.faq-item__head h3 {
	display: block;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.2;
	color: #e0e0e0;
}
.faq-item__head::after {
	content: '';
	position: absolute;
	top: 23px;
	right: 20px;
	display: block;
	width: 7px;
	height: 13px;
	background: #fff;
	-webkit-mask: url("i/bg-icon-arrow.svg") center no-repeat;
	mask: url("i/bg-icon-arrow.svg") center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: all .3s ease;
	transform: rotate(-90deg);
}
.faq-item__head:hover::after {
	background: var(--primary);
}
.faq-item.open .faq-item__head::after {
	transform: rotate(90deg);
}
.faq-item__body {
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}
.faq-item.open .faq-item__body {
	max-height: 8000px;
}
.faq-item__text {
	padding: 22px 16px;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.2;
	color: #e0e0e0;
}




.sale__desc {
	max-width: 780px;
	margin: 0 auto 46px;
}





.footer__nav {

}
.footer__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	list-style: none;
}
.footer__nav ul a {
	font-weight: 300;
	font-size: 12px;
	line-height: 1.4;
	text-decoration: underline;
	color: #e0e0e0;
}
.footer__nav ul a:hover {
	color: var(--primary);
	text-decoration: none;
}








.bg {
	position: absolute;
	border-radius: 100%;
	z-index: 1;
}
.bg svg {
	border-radius: 100%;
}
.bg--1 {
	top: -50%;
	right: -50%;
	width: 1364px;
	height: 1364px;
}
.bg--1 svg {
	display: block;
	margin-left: 10%;
	fill: radial-gradient(50% 50% at 50% 50%, rgb(126, 97, 255) 0%, rgb(126, 97, 255) 100%);
}

.bg--2 {
	top: 967px;
	left: -60%;
	width: 2213px;
	height: 2213px;
}
.bg--2 svg {
	fill: radial-gradient(50% 50% at 50% 50%, rgb(126, 97, 255) 0%, rgb(126, 97, 255) 100%);
}

.bg--3 {
	top: 1720px;
	right: -45%;
	width: 1871px;
	height: 1871px;
}
.bg--3 svg {
	display: block;
	margin-left: auto;
	fill: radial-gradient(50% 50% at 50% 50%, rgb(255, 189, 126) 0%, rgb(255, 189, 126) 100%);
}

.bg--4 {
	top: 4000px;
	left: -60%;
	width: 1451px;
	height: 1451px;
}
.bg--4 svg {
	display: block;
	margin-left: 50%;
	fill: radial-gradient(50% 50% at 50% 50%, rgb(255, 189, 126) 0%, rgb(255, 189, 126) 100%);
}

.bg--5 {
	top: 4030px;
	right: -55%;
	width: 2942px;
	height: 2942px;
}
.bg--5 svg {
	display: block;
	margin-left: auto;
	fill: radial-gradient(50% 50% at 50% 50%, rgb(126, 97, 255) 0%, rgb(126, 97, 255) 100%);
}








/* ==============================================================
   ========================  MEDIA  =============================
   ============================================================== */
@media screen and (max-width:1200px) {

	

}











@media screen and (max-width:1050px) {

	.block {
		border-radius: 30px;
		padding: 50px 40px;
	}


	.tem-dentro__list {
		gap: 40px;
	}
	.tem-dentro-item {
		width: calc(50% - 20px);
		padding: 24px;
		border-radius: 30px;
	}

}












@media screen and (max-width:900px) {

	.wrapper {
		padding-top: 64px;
		padding-bottom: 56px;
	}
	.box {
		margin-bottom: 5rem;
	}


	.hero__head {
		margin-bottom: 3rem;
		font-size: 40px;
	}
	.hero__desc {
		max-width: 440px;
		padding-left: 56px;
	}
	.hero__button {
		margin-top: 32px;
	}


	.resultado-cabeca__info ul li {
		margin-top: 20px;
		padding: 16px 20px;
	}
	.resultado-cabeca__info ul li:first-child {
		margin-top: 12px;
	}


	.price-box {
		width: calc(50% - 10px);
	}
	.price-box__head {
		margin: 0 auto 16px;
		font-size: 20px;
		line-height: 1.5;
	}
	.price-box__price {
		margin-bottom: 20px;
		font-size: 16px;
	}
	.price-box__old-price {
		margin-top: -18px;
		font-size: 16px;
	}


	.tem-dentro-item__desc {
		margin-bottom: 24px;
		font-size: 15px;
	}


	.review__slider {
		display: block;
		padding: 0 20px 20px;
		position: relative;
	}
	.review__slider .slick-track {
		align-items: stretch;
		padding: 10px 0;
	}
	.review__slider .slick-arrow {
		top: calc(50% - 11px);
	}
	.review-item {
		width: 32%;
		margin: 0 0.5% 8px;
	}


	.faq-item {
		margin-top: 24px;
	}

}












@media screen and (max-width:750px) {

	.hero__info {
		width: 100%;
		padding-bottom: 32px;
	}
	.hero__head {
		margin-bottom: 2rem;
		font-size: 32px;
		text-align: center;
	}
	.hero__desc {
		max-width: 440px;
		padding-left: 0;
		margin: 0 auto;
		text-align: center;
	}
	.hero__desc::before {
		display: none;
	}
	.hero__button {
		display: flex;
		width: 220px;
		margin: 30px auto 0;
	}
	.hero__thumb {
		width: 100%;
		max-width: 440px;
		margin: 0 auto;
	}


	.nao-resultado__list {
		padding-top: 20px;
		padding-bottom: 16px;
	}
	.nao-resultado-card {
		width: 32%;
		min-height: 200px;
		margin: 0 0.5% 16px;
		padding: 16px;
		transform: rotate(-2deg);
	}
	.nao-resultado-card__thumb {
		height: 120px;
		margin-bottom: 16px;
	}


	.price-box {
		width: 100%;
	}


	.tem-dentro-item {
		width: 100%;
	}


	.review-item {
		min-height: 120px;
		border-radius: 12px;
	}


}












@media screen and (max-width:600px) {

	.box {
		margin-bottom: 4rem;
	}


	.head {
		margin-bottom: 1rem;
		font-size: 20px;
		line-height: 1.6;
	}
	.block {
		border-radius: 24px;
		padding: 40px 30px;
	}


	.nao-resultado__list {
		width: 102%;
		margin-left: -1%;
	}
	.nao-resultado-card {
		min-height: 160px;
		margin: 0 0.5% 12px;
		padding: 12px;
		transform: rotate(-1deg);
	}
	.nao-resultado-card__thumb {
		height: 88px;
		margin-bottom: 12px;
	}
	.nao-resultado-card__title {
		font-size: 10px;
	}


}












@media screen and (max-width:450px) {

	.wrapper {
		padding-top: 48px;
		padding-bottom: 40px;
	}


	.desc {
		margin-bottom: 1.2rem;
		font-size: 12px;
		line-height: 1.5;
	}
	.block {
		border-radius: 24px;
		padding: 32px 16px;
	}
	.slick-prev {
		left: -8px;
	}
	.slick-next {
		right: -8px;
	}


	.hero__head {
		margin-bottom: 1rem;
		font-size: 26px;
	}
	.hero__desc {
		font-size: 12px;
		color: rgba(255, 255, 255, 0.63);
	}


	.nao-resultado__list {
		width: 108%;
		margin-left: -4%;
	}
	.nao-resultado-card {
		padding: 8px;
	}
	.nao-resultado-card:nth-child(2) {
		transform: rotate(4deg);
	}
	.nao-resultado-card__thumb {
		height: 80px;
		margin-bottom: 10px;
	}

	.nao-resultado__bottom-text {
		font-size: 12px;
	}


	.resultado-cabeca__info ul li {
		min-height: 48px;
		font-size: 12px;
	}


	.price-box__head {
		font-size: 16px;
	}
	.price-box__slider {
		padding-left: 24px;
		padding-right: 24px;
		padding-bottom: 24px;
		margin-bottom: 24px;
	}
	.price-box__thumb {
		padding-left: 0;
		padding-right: 0;
	}
	.price-box__price {
		font-size: 14px;
	}


	.tem-dentro-item {
		padding: 20px 16px;
	}
	.tem-dentro-item__title {
		font-size: 14px;
	}


	.review__slider {
		padding: 0 8px 20px;
	}
	.review-item {
		min-height: 80px;
	}



}












/* END ============================================================= */

