* {
	font-family: "Darker Grotesque", sans-serif;
}

.gradient-overlay {
	position: absolute;
	/* top: 0; */
	left: 0;
	right: 0;
	bottom: 0;
	height: 25%;
	/* background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 1) 100%); */
	backdrop-filter: blur(0.5px);
	pointer-events: none;
	z-index: 1;
}

.gradient-overlay2 {
	position: absolute;
	/* top: 0; */
	left: 0;
	right: 0;
	bottom: 0;
	height: 50%;
	/* background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 1) 100%); */
	backdrop-filter: blur(0.6px);
	pointer-events: none;
	z-index: 2;
}

.select-plan-button {
	font-weight: 500;
	padding: 15px 30px;
	font-size: 1.2rem;
	line-height: 1;
	color: #fff;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	margin-bottom: 20px;
	border: 1px solid #484849;
}

.select-plan-button.active {
	box-shadow: 0 5px 15px rgba(255, 100, 6, 0.4);
	background-color: #ff6406;
	animation: color-change 1s ease-in-out infinite;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s
		ease;
}

.select-plan-button.active:hover {
	background-color: #d45305;
	box-shadow: 0 8px 20px rgba(255, 100, 6, 0.5);
	transform: scale(1.05);
}

.gradient-overlay3 {
	position: absolute;
	/* top: 0; */
	left: 0;
	right: 0;
	bottom: 0;
	height: 75%;
	/* background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 1) 100%); */
	backdrop-filter: blur(0.7px);
	pointer-events: none;
	z-index: 2;
}

.gradient-overlay4 {
	position: absolute;
	/* top: 0; */
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	/* background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 1) 100%); */
	backdrop-filter: blur(0.8px);
	pointer-events: none;
	z-index: 2;
}

.plan-list {
	position: relative;
	max-height: 100px;
	overflow: hidden;
}

.view-more-text {
	display: block;
	/* text-align: center; */
	padding: 10px 0.75rem;
	color: #7b7b7b;
	cursor: pointer;
	font-weight: bold;
	/* background: #f9f9f9; */
	/* border-top: 1px solid #ddd;*/
}

.view-more-text:hover {
	text-decoration: underline;
	color: #d8d8d8;
}

.target {
	background-color: rgb(226, 136, 0);
	color: rgb(255, 255, 255);
	font-weight: bold;
	padding: 5px 35px;
	position: absolute;
	top: 45px;
	left: 10px;
	transform: translate(-35%, 10%) rotate(-45deg);
	z-index: 1;
	clip-path: polygon(
		19% 0px,
		81% 0px,
		100% 100%,
		100% 50%,
		100% 100%,
		10% 100%,
		0px 100%,
		0px 100%
	);
	font-weight: 600;

	p {
		line-height: 1;
	}
}

@media (max-width: 1440px) {
	.target {
		left: 5px;
		top: 35px;

		p {
			font-size: 1.2rem;
		}
	}
}

@media (max-width: 768px) {
	.target {
		left: 0px;
		top: 55px;

		p {
			font-size: 2.2rem;
		}
	}
}

@media (max-width: 550px) {
	.target {
		left: 12px;
		top: 42px;

		p {
			font-size: 2rem;
		}
	}
}

.container-plano {
	margin: auto;
	text-align: center;
}

.div-text-plano {
	font-size: 2.7rem;
}

.plan-title-price {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
	margin: auto;
	/* Ajuste a altura conforme necessário */
}

.plan-title-price .plan-name {
}

.plan-title-price .plan {
}

.plan-title-price p {
	margin: 0;
	/* Remove o margin padrão dos parágrafos */
	line-height: 1;
	/* font-size: 3.5rem; */
	/* Ajuste o espaço entre linhas conforme necessário */
}

.installment12x {
	font-size: 3.5rem;
}

.installment10x {
	font-size: 1.8rem;
}

/* modal */

/* Estilo do Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	justify-content: center;
	align-items: center;
}

.modal-content {
	background: #2c2c2c;
	border-radius: 8px;
	max-width: 900px;
	max-height: 90%;
	width: 85%;
	position: relative;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.8);
	padding: 20px;
	overflow: hidden;
	animation: fadeIn 0.4s ease-out;
}

.modal-header {
	display: flex;
	justify-content: flex-end;
}

.close-btn {
	color: #fff;
	font-size: 60px;
	line-height: 0;
	font-weight: bold;
	cursor: pointer;
	border: none;
	background: none;
	padding: 0;
	transition: color 0.3s ease;
}

.close-btn:hover {
	color: #aaa;
}

.modal h2 {
	color: #f5f5f5;
	margin: 0;
	line-height: 1;
	font-size: 3rem;
	font-weight: bold;
	text-align: start;
	/* margin-bottom: 10px; */
}

.modal span {
	display: block;
	color: #bbb;
	font-size: 1rem;
	text-align: start;
	margin-bottom: 20px;
}

.modal ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	/* max-height: calc(100vh - 160px); */
	max-height: 60vh;
	overflow-y: auto;
	background: #444;
	color: #fff;
	border-radius: 8px;
}

.modal li {
	padding: 15px;
	border-bottom: 1px solid #555;
	transition: background 0.3s ease;
}

.modal li:last-child {
	border-bottom: none;
}

.modal li:hover {
	background: #555;
}

/* Scroll personalizado */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-thumb {
	background-color: #888;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #555;
}

/* Responsividade */
@media (max-width: 768px) {
	.modal-content {
		max-width: 95%;
		margin: 10px;
		padding: 15px;
	}
}

@media (max-width: 480px) {
	.modal-content {
		width: 100%;
	}
}

/* Animação de abertura */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.card-best-plan {
	box-shadow: 0px 1px 15px 1px rgb(166 166 166 / 20%);
}

.card-plan {
	height: 100%;
	margin: auto;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.card-best-plan-text {
	font-size: 2.5rem;
	font-weight: bold;
	/* background: linear-gradient(135deg, #5a7295, #c7c7c7, #6f6f6f, #FF9E05, #718096); */
	background: linear-gradient(
		135deg,
		#ff0606,
		/* Tom metálico mais escuro */
		#fec52b,
		/* Tom metálico mais claro */
		#ff6406,
		/* Prata metálico */
		#fec52b,
		/* Laranja metálico */
		#ff6406
		/* Laranja mais vibrante */
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 400% 400%;
	animation: gradient 10s ease infinite;
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.countdown-container {
	flex-direction: column;
	justify-content: center;
	display: flex;
	text-align: center;
	padding: 20px 10px;
	border-radius: 10px;
	/* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
	margin: 0 auto;
	color: #fff;
}

.countdown-container h2 {
	font-size: 1.5rem;
	font-weight: bold;
	color: #ff6406;
	margin-bottom: 15px;
	text-align: center;
}

.progress-bar {
	background: linear-gradient(90deg, #333, #c7c7c7, #ffffff);
	border-radius: 5px;
	overflow: hidden;
	height: 10px;
	width: 80%;
	margin: auto;
	margin-bottom: 20px;
}

.progress-fill {
	background: linear-gradient(90deg, #ff6406, #fec52b);
	height: 100%;
	width: 0%;
	transition: width 0.5s ease;
}

.div-timer-countdown {
	justify-content: center;
	display: flex;
}

.countdown {
	gap: 5px;
	display: flex;
	justify-content: center;
	width: 80%;
}

.time-block {
	/* flex: 1; */
	display: flex;
	margin: auto;
	justify-content: center;
	background-color: #333;
	color: #fff;
	padding: 0;
	border-radius: 5px;
	/* max-width: 65px; */
	/* width: 65px; */
	height: 65px;
	max-height: 65px;
	flex: 1;
	text-align: center;
	box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.6), inset 0 -4px 8px
		rgba(92, 91, 91, 0.1);
}

.time-block-text {
	display: flex;
	margin: auto;
	gap: 5px;
}

.time-number {
	line-height: 1.5;
	font-size: 1.5rem;
	font-weight: bold;
	color: #ff5c03;
	display: block;
}

.time-label {
	line-height: 1.5;
	font-size: 1.5rem;
	font-weight: bold;
	color: #ddd;
}

.faq-section {
	padding: 40px 20px;
	/* background-color: #f7f7f7; */
	color: #333;
	max-width: 800px;
	margin: 0 auto;
}

.faq-section h2 {
	font-family: sans-serif;
	text-align: center;
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 30px;
	color: #000000;
}

.faq {
	border-top: 1px solid #ddd;
}

.faq-item {
	border-bottom: 1px solid #ddd;
	margin-bottom: 10px;
}

.faq-question {
	font-weight: 500;
	border-radius: 8px;
	width: 100%;
	background-color: transparent;
	border: none;
	text-align: left;
	padding: 15px;
	font-size: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}

/* .faq-question:hover {
  background-color: #ff6606e6;
  color: #fff;
} */

.faq-icon {
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.faq-answer {
	display: none;
	padding: 0 15px 15px;
	font-size: 1rem;
	color: #555;
}

.faq-answer p {
	font-size: 1.3rem;
	margin: 10px 0;
}

.faq-answer.show {
	display: block;
	animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* VSL */
/* Estilos Gerais */
body {
	margin: 0;
	font-family: "Arial", sans-serif;
	background-color: #111111;
	color: #ffffff;
	overflow-x: hidden;
}

/* Seção VSL */
.vsl-section {
	padding: 60px 15px;
	background: linear-gradient(0deg, #1e1e1e, #000000);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	animation: vsl-fade-in 1s ease-in-out;
}

/* Container para Alinhar os Elementos */
.vsl-container {
	max-width: 1200px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 30px;
	margin: 0 auto;
	animation: vsl-slide-up 1s ease-in-out;
	flex-direction: column-reverse;
}

/* Estilos para o Texto e CTA */
.vsl-copy {
	flex: 1;
	padding: 20px;
	color: #ffffff;
	text-align: center;
	animation: vsl-text-fade-in 2s ease-in-out;
	order: 2;
}

.vsl-copy .vsl-title {
	font-family: sans-serif;
	line-height: 1.2;
	font-size: 2.8rem;
	font-weight: bold;
	/* background: linear-gradient(135deg, #5a7295, #c7c7c7, #6f6f6f, #FF9E05, #718096); */
	background: linear-gradient(
		135deg,
		#ff0606,
		/* Tom metálico mais escuro */
		#fec52b,
		/* Tom metálico mais claro */
		#ff6406,
		/* Prata metálico */
		#fec52b,
		/* Laranja metálico */
		#ff6406
		/* Laranja mais vibrante */
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 400% 400%;
	animation: gradient 10s ease infinite;
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.vsl-copy .vsl-description {
	font-size: 1.2rem;
	color: #7e7e7e;
	margin-bottom: 30px;
	margin-top: 30px;
	line-height: 1.6;
}

.vsl-cta-button {
	font-weight: 500;
	padding: 15px 30px;
	font-size: 1.2rem;
	line-height: 1;
	background-color: #ff6406;
	color: #fff;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s
		ease;
	margin-bottom: 20px;
	box-shadow: 0 5px 15px rgba(255, 100, 6, 0.4);
}

.vsl-cta-button:hover {
	background-color: #d45305;
	box-shadow: 0 8px 20px rgba(255, 100, 6, 0.5);
	transform: scale(1.05);
}

.vsl-testimonials {
	font-size: 1rem;
	color: #fec52b;
	margin-top: 15px;
	font-style: italic;
}

/* Estilos para o Vídeo */
.vsl-video {
	display: flex;
	justify-content: center;
	max-height: 360px;
	height: 360px;
	margin: auto;
	flex: 1;
	position: relative;
	width: 100%;
	/* max-width: 800px; */
	padding-top: 360px;
	/* overflow: hidden; */
	cursor: pointer;
	animation: vsl-video-fade-in 1s ease-in-out;
	order: 1;
}

.vsl-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 12px;
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s ease;
}

.vsl-video:hover iframe {
	transform: scale(1.02);
}

.vsl-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.vsl-video.paused .vsl-video-overlay {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px) saturate(180%);
	-webkit-backdrop-filter: blur(15px) saturate(180%);
	opacity: 1;
	transition: backdrop-filter 0.5s ease, background 0.5s ease, opacity 0.3s ease;
}

.vsl-video.paused .vsl-play-icon {
	animation: vsl-pulse 1.5s infinite;
}

/* Efeito de Vidro quando o iframe não está inicializado */
.vsl-video-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	color: #ffffff;
	text-align: center;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.vsl-video-placeholder.hidden {
	opacity: 0;
	pointer-events: none;
}

/* Animação para o Efeito de Vidro */
@keyframes vsl-glass-effect {
	0% {
		backdrop-filter: blur(0) saturate(100%);
		-webkit-backdrop-filter: blur(0) saturate(100%);
		background: rgba(255, 255, 255, 0);
		opacity: 0;
	}

	100% {
		backdrop-filter: blur(15px) saturate(180%);
		-webkit-backdrop-filter: blur(15px) saturate(180%);
		background: rgba(255, 255, 255, 0.1);
		opacity: 1;
	}
}

.vsl-play-icon {
	font-size: 3rem;
	color: #ff6406;
	animation: vsl-pulse 1.5s infinite;
}

/* Animações */
@keyframes vsl-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes vsl-slide-up {
	from {
		transform: translateY(20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes vsl-text-fade-in {
	from {
		transform: translateY(20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes vsl-video-fade-in {
	from {
		transform: scale(0.9);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes vsl-pulse {
	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.2);
	}
}

/* Estilos Responsivos */
@media (max-width: 950px) {
	.vsl-copy .vsl-title {
		line-height: 1.1;
		font-size: 3.5rem;
	}

	.vsl-description {
		max-width: 80%;
		margin: 30px auto;
	}
}

@media (max-width: 768px) {
	.vsl-section {
		padding: 0px 15px;
	}

	.vsl-title,
	.vsl-description {
		display: none;
	}

	.vsl-testimonials {
		width: 80%;
		margin: auto;
	}

	.vsl-copy {
		order: 1;
	}

	.vsl-video {
		order: 2;
	}
}

@media (max-width: 500px) {
	.vsl-copy .vsl-title {
		line-height: 1.1;
		font-size: 2.5rem;
	}

	.vsl-description {
		max-width: 100%;
	}

	/* 
  .vsl-description {
    max-width: 80%;
    margin: 30px auto;
  } */
}

@media (min-width: 950px) {
	.vsl-container {
		flex-direction: row;
		text-align: left;
	}

	.vsl-copy {
		order: 1;
		text-align: left;
	}

	.vsl-video {
		order: 2;
	}
}
