@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

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

/* Estilos dos Modais */
.modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.8);
}

.modal-content {
	background-color: #fefefe;
	margin: 10% auto;
	padding: 30px;
	border: 1px solid #888;
	width: 90%;
	max-width: 400px;
	border-radius: 10px;
	text-align: center;
	position: relative;
}

.modal-content h2 {
	font-family: 'Poppins', sans-serif;
	color: #333;
	margin-bottom: 15px;
}

.modal-content p {
	font-family: 'Poppins', sans-serif;
	color: #666;
	margin-bottom: 20px;
}

.modal-content input[type="email"] {
	width: 100%;
	padding: 12px;
	font-size: 16px;
	border: 2px solid #ddd;
	border-radius: 5px;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 20px;
}

.modal-content button {
	width: 100%;
	padding: 12px;
	font-size: 16px;
	background-color: #ff0000;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	box-shadow: none;
}

.btnCopiarPix{
	box-shadow: none !important;
}

.modal-content button:hover {
	background-color: #cc0000;
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	position: absolute;
	right: 15px;
	top: 10px;
}

.close:hover,
.close:focus {
	color: #000;
}

/* Modal PIX */
.modal-pix {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.9);
}

.modal-pix-content {
	background-color: #fefefe;
	margin: 2% auto;
	padding: 30px;
	width: 90%;
	max-width: 500px;
	border-radius: 10px;
	max-height: 90vh;
	overflow-y: auto;
}

.pix-header {
	text-align: center;
	margin-bottom: 20px;
}

.pix-header h2 {
	font-family: 'Poppins', sans-serif;
	color: #333;
	margin-bottom: 10px;
}

.valor-pix {
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #ff0000;
}

.timer-container {
	margin-top: 15px;
}

.timer-label {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	color: #666;
	margin-bottom: 5px;
}

.timer {
	font-family: 'Poppins', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #ff0000;
}

.pix-loading-inicial {
	text-align: center;
	padding: 50px 0;
}

.pix-loading-inicial p {
	font-family: 'Poppins', sans-serif;
	color: #666;
	font-size: 18px;
}

.pix-copia-cola {
	margin-bottom: 20px;
}

.pix-copia-cola p {
	font-family: 'Poppins', sans-serif;
	color: #666;
	margin-bottom: 10px;
	text-align: center;
}

.copia-cola-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.copia-cola-container textarea {
	width: 100%;
	min-height: 120px;
	padding: 15px;
	border: 2px solid #00A859;
	border-radius: 8px;
	font-family: monospace;
	font-size: 14px;
	resize: none;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: #f9f9f9;
}

.copia-cola-container textarea:hover {
	background-color: #e8f5e9;
	border-color: #008547;
}

.copia-cola-container textarea:focus {
	outline: none;
	border-color: #008547;
	background-color: #e8f5e9;
}

.copia-cola-container button {
	padding: 15px 20px;
	background-color: #00A859;
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}

.copia-cola-container button:hover {
	background-color: #008547;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 168, 89, 0.3);
}

.mensagem-copiado {
	text-align: center;
	margin-top: 15px;
	padding: 10px;
	background-color: #e8f5e9;
	color: #2e7d32;
	border-radius: 5px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.pix-instrucoes {
	background-color: #f5f5f5;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.pix-instrucoes h3 {
	font-family: 'Poppins', sans-serif;
	color: #333;
	margin-bottom: 10px;
}

.pix-instrucoes ol {
	margin-left: 20px;
	font-family: 'Poppins', sans-serif;
	color: #666;
}

.pix-instrucoes li {
	margin-bottom: 5px;
}

.pix-loading {
	text-align: center;
}

.spinner {
	border: 3px solid #f3f3f3;
	border-top: 3px solid #00A859;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 2s linear infinite;
	margin: 0 auto 10px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.pix-loading p {
	font-family: 'Poppins', sans-serif;
	color: #666;
}

@keyframes zoomIn {
	from {
	  transform: scale(1);
	}
	to {
	  transform: scale(1.03);
	}
  }
  

body {
	background-color: #000000;
}

.oferta {
	background-color: #ff0000;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 1000;
}

.oferta p {
	color: #ffffff;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 13pt;
	font-weight: 600;
	padding: 5px 0;
}

header {
	display: flex;
	justify-content: center;
	flex-direction: center;
	background-image: url(/images/background-woman.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 10rem 1rem 0 1rem;
}


.boxHeader {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 400px;
	background-color: #00000070;
	backdrop-filter: blur(5px);
	border-radius: 15px;
	margin: 1rem 0 1rem 0;
	padding: 0 1rem 0 1rem;
}

.boxHeader .logo {
	width: 90%;
	margin-top: 1rem;
}

.boxHeader h1 {
	color: #ffffff;
	text-transform: uppercase;
	text-align: center;
	font-size: 16pt;
	margin-top: 1rem;
}

.boxHeader span {
	color: #FF0000;
	font-weight: 900;
}

.boxHeader p {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #ffffff;
	text-align: center;
	font-size: 13pt;
	padding: 0 2rem;
	margin-top: 1rem;
}

.boxHeader button {
	margin-top: 2rem;
	cursor: pointer;
}

.imgPgto {
	margin-top: 1rem;
	max-width: 120px;
}

button {
	font-size: 15pt;
	font-family: 'Poppins', sans-serif;
	background-color: #0d9f48;
	text-transform: uppercase;
	padding: 1.1rem 1.7rem;
	color: white;
	font-weight: 700;
	border: none;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 71px 7px rgba(75,191,115,0.75);
	-moz-box-shadow: 0px 0px 71px 7px rgba(75,191,115,0.75);
	box-shadow: 0px 0px 71px 7px rgba(75,191,115,0.75);
	animation-name: zoomIn;
	animation-duration: 0.7s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}


.mainContainer {
	padding: 0 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.headline {
	background-color: #292926;
	max-width: 400px;
	text-transform: uppercase;
	text-align: center;
	color: #FF0000;
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	font-size: 12pt;
	padding: 1rem;
	border-radius: 5px;
	margin-bottom: 2rem;
	margin-top: 1rem;
}

h1 {
	color: #ffffff;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.conteudoContainer {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	background-image: url(/images/background-red.png);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.conteudoContainer2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	background-image: url(/images/background-red2.png);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.conteudoContainer3 {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.conteudoWidth {
	max-width: 768px;
	padding: 0 1rem;
}

.conteudoContaint {
	width: 100%;
	display: flex;
	background-color: #00000070;
	backdrop-filter: blur(15px);
	border-radius: 15px;
	margin-bottom: 1rem;
	padding: 2rem 1rem 2rem 1rem;
	gap: 1rem;
}

.emoji {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30pt;
	width: 20%;
}

.conteudo {
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 13pt;
	width: 70%;
}

.conteudo p {
	text-shadow: 0px 0px 12px #000000;
}

h3 {
	color: #ffffff;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 13pt;
}

.red {
	color: #FF0000;
}

.depoimentos {
	display: flex;
	margin: auto;
	max-width: 1000px;
	overflow-x: auto;
	margin: 1.7rem 0;
	gap: 20px;
}

.depoimentos img {
	width: 80%;
	height: 100%;
	padding: 1rem;
	border: 2px solid #ffffff;
	
}

.depoimentos img:first-child {
	margin-left: 1.5rem;
}

.audio {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
}

.audio img {
	width: 250px;
} 

.audio h1 {
	text-align: center;
	color: white;
	font-size: 23px;
	padding: 0 1rem;
}

.audio p {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #ffffff;
	text-align: center;
	font-size: 13pt;
	max-width: 700px;
	padding:  0 1rem;
}

@media (max-width: 768px) {
	.slider::-webkit-scrollbar {
	  width: 0;
	}
  }

  .small {
	font-size: 18pt;
  }

  .cta {
	color: #0d9f48;
	font-family: Georgia, 'Times New Roman', Times, serif;
	text-align: center;
  }

  .sellBox {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 400px;
	background-color: #292926;
	border-radius: 15px;
	margin: 3rem 0 3rem 0;
	padding: 0rem 1rem 2rem 1rem;
}

.sellBox h1 {
	color: #ffffff;
	text-transform: uppercase;
	text-align: center;
	font-size: 16pt;
	margin-top: 1rem;
}

.sellBox span {
	color: #ffffff;
	font-weight: 400;

}

.sellBox .desconto {
	font-family: 'Poppins', sans-serif;
	color: #7A7A7A;
	text-align: center;
	font-size: 17pt;
	padding: 0 2rem 0 2rem;
	margin-top: 1rem;
	text-decoration: line-through;
}

.sellBox .preco {
	font-family: 'Poppins', sans-serif;
	color: #0d9f48;
	text-align: center;
	font-size: 20pt;
	padding: 0 2rem;
	font-weight: 700;
	margin-top: 1rem;
}

.sellBox button {
	margin-top: 2rem;
	cursor: pointer;
}

.sellBoxContainer {
	display: flex;
	justify-content: center;
	flex-direction: center;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0rem 1rem 0 1rem;

}

.tecnicas {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	flex-wrap: wrap;
}

.tecnica {
	display: flex;
	align-items: center;
	flex-direction: column;
	background-color: #292926;
	border-radius: 15px;
	padding: 1.5rem;
	height: 250px;
}

.tecnica h3 {
	font-size: 25px;
	text-decoration: underline;
	margin-bottom: 1rem;
}

.tecnica .icon {
	font-size: 40px;
}

.tecnicaDescription {
	color: white;
	font-size: 17px;
	max-width: 250px;
	text-align: center;
}

.titleTecnicas {
	text-align: center;
	font-size: 25px;
	padding: 0 1rem;
	margin-bottom: 1rem;
}

.ebook {
	width: 70%;
}

.logoSell {
	width: 70%;
	border-bottom: 1px solid #7a7a7a50;
	padding-bottom: 1.5rem;
}

.tag {
	width: 80%;
}

.perguntas p {
	color: #FF0000;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
}

.perguntas h1 {
	color: #ffffff;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 22pt;
}

.faq-container {
	max-width: 1000px;
	margin: auto;
  }
  
  .faq {
	padding: 1rem;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
  }
  
  details {
	background-color: #DDDDDD;
	width: 100%;
	border: 1px solid #000000;
	cursor: pointer;
  }
  
  summary {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #000000;
	padding: 0.7rem;
  }
  
  summary::marker,
  summary::-webkit-details-marker {
	color: #ff5000;
  }
  
  .reposta {
	font-family: 'Poppins', sans-serif;
	text-align: left;
	color: #000000;
	padding: 0.7rem;
	cursor: text;
	max-width: 100%;
  }
  
  footer {
	padding-bottom: 3rem;
  }

  a {
	width: 100%;
	color: #ffffff;
	text-decoration: none;
  }