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

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

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

@keyframes moveBackground {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

body {
	background-color: #ffffff;
	width: 100%;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	width: 100%;
}

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

.headline-urgencia {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: linear-gradient(90deg, #2d2445, #352b52, #3f3260, #4d3d78, #5a4888);
  background-size: 400% 100%;
  animation: moveBackground 4s ease infinite;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(29, 63, 102, 0.3);
}

.urgencia-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.urgencia-icon {
  font-size: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.urgencia-text {
  font-family: 'Sora', sans-serif;
  color: white;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.urgencia-text strong {
  font-weight: 700;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
  .urgencia-text {
    font-size: 13px;
  }
  .urgencia-icon {
    font-size: 1.2rem;
  }
}

.headlineNew {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  gap: 0.5rem;
  width: 100%;
  background: linear-gradient(90deg, #3c305d, #483b6e, #554680, #635292, #4a3c70);
  background-size: 700% 400%;
  animation: moveBackground 4s ease infinite;
  z-index: 999;
  color: white;
}


.headlineNew p {
  font-family: "Sora", sans-serif;
  color: white;
  text-align: center;
  font-size: 14px;
}

.boxHeader {
	display: flex;
	align-items: center;
	flex-direction: column;
	max-width: 600px;
	border-radius: 15px;
	margin: 0;
	padding: 0rem 1rem 0 1rem;
}

.buttonOne {
	display: flex;
	align-items: center;
	max-width: 500px;
	border-radius: 15px;
	padding: 0 1rem 0 1rem;
	justify-content: center;
	margin: 0rem 0rem 1rem 0rem;
}

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

.boxHeader h1 {
	color: #3c305d;
	text-transform: uppercase;
	text-align: center;
	font-size: 18pt;
	margin-top: 1.5rem;
	font-family: 'Cinzel', serif;
	font-weight: 700;
}

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

.boxHeader p {
	font-family: 'Sora', sans-serif;
	color: #333333;
	text-align: center;
	font-size: 14pt;
	padding: 0 1rem;
	margin-top: 1rem;
	line-height: 1.6;
}

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

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

button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1.2rem 3rem;
	border-radius: 10px;
	font-weight: 700;
	text-decoration: none;
	color: #ffffff;
	font-size: 1.3rem !important;
	line-height: 1.3rem;
	text-align: center;
	font-family: "Cinzel", serif;
	border: none;
	
	/* Gradiente verde saúde em movimento */
	background: linear-gradient(90deg, #2E7D32, #388E3C, #4CAF50, #388E3C, #2E7D32);
	background-size: 300% 300%;
	
	/* Sombra verde */
	box-shadow: 0px 0px 40px 5px rgba(76, 175, 80, 0.6);
	
	/* Animações */
	animation: moveBackground 3s ease infinite, zoomIn 1.2s ease-in-out infinite alternate;
	
	transition: all 0.3s ease;
}

button:hover {
	transform: scale(1.05);
	box-shadow: 0px 0px 50px 8px rgba(76, 175, 80, 0.8);
}

/* DESTAQUE DOCES E SOBREMESAS */
.destaque-doces {
	width: 100%;
	max-width: 1100px;
	margin: 3rem auto 2rem auto;
	padding: 0 1rem;
}

.destaque-doces-content {
	background: linear-gradient(135deg, rgba(60, 48, 93, 0.15), rgba(60, 48, 93, 0.10));
	border: 3px solid rgba(60, 48, 93, 0.4);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 0 8px 30px rgba(60, 48, 93, 0.3);
	animation: pulseGlowDoces 3s ease-in-out infinite;
}

@keyframes pulseGlowDoces {
	0%, 100% {
		box-shadow: 0 8px 30px rgba(60, 48, 93, 0.3);
	}
	50% {
		box-shadow: 0 8px 40px rgba(60, 48, 93, 0.5);
	}
}

.destaque-doces-title {
	font-family: 'Cinzel', serif;
	font-size: 20px;
	font-weight: 700;
	color: #3c305d;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.destaque-doces-subtitle {
	font-family: 'Sora', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #3c305d;
	margin-bottom: 2rem;
	line-height: 1.3;
}

/* CARDS DE DOCES COM FOTOS */
.doces-destaques {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 1.5rem;
}

.doce-card {
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid rgba(60, 48, 93, 0.3);
	border-radius: 15px;
	padding: 1.5rem;
	transition: all 0.3s ease;
}

.doce-card:hover {
	transform: translateY(-10px);
	border-color: rgba(60, 48, 93, 0.6);
	box-shadow: 0 10px 30px rgba(60, 48, 93, 0.4);
}

.doce-img-placeholder {
	position: relative;
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, rgba(60, 48, 93, 0.2), rgba(60, 48, 93, 0.1));
	border-radius: 10px;
	margin-bottom: 1rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.doce-foto {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.doce-tag {
	position: absolute;
	top: 10px;
	right: 10px;
	background: linear-gradient(135deg, #3c305d, #5a4a7d);
	color: white;
	padding: 0.4rem 0.8rem;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	font-family: 'Sora', sans-serif;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.doce-card h4 {
	font-family: 'Cinzel', serif;
	font-size: 18px;
	color: #3c305d;
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.doce-card p {
	font-family: 'Sora', sans-serif;
	font-size: 14px;
	color: #333333;
	line-height: 1.6;
}

/* GRID DE DOCES EXTRAS */
.doces-extras-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0.8rem;
	margin-bottom: 2rem;
}

.doce-extra {
	background: rgba(60, 48, 93, 0.1);
	border: 1px solid rgba(60, 48, 93, 0.3);
	border-radius: 10px;
	padding: 0.8rem 1rem;
	color: #3c305d;
	font-family: 'Sora', sans-serif;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.doce-extra:hover {
	background: rgba(60, 48, 93, 0.2);
	border-color: rgba(60, 48, 93, 0.5);
	transform: translateY(-3px);
}

.destaque-doces-description {
	font-family: 'Sora', sans-serif;
	font-size: 15px;
	color: #333333;
	line-height: 1.7;
	max-width: 700px;
	margin: 0 auto;
}

.destaque-doces-description strong {
	color: #3c305d;
	font-size: 17px;
}

/* Destaque especial no card de doces da seção de conteúdo */
.destaque-doces-card {
	border: 2px solid rgba(60, 48, 93, 0.5) !important;
	background: linear-gradient(135deg, rgba(60, 48, 93, 0.15), rgba(60, 48, 93, 0.10)) !important;
}

.destaque-doces-card:hover {
	border-color: rgba(60, 48, 93, 0.7) !important;
	box-shadow: 0 8px 30px rgba(60, 48, 93, 0.4) !important;
}

@media (max-width: 768px) {
	.destaque-doces-title {
		font-size: 18px;
	}
	
	.destaque-doces-subtitle {
		font-size: 20px;
	}
	
	.doces-destaques {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.doces-extras-grid {
		grid-template-columns: 1fr;
		gap: 0.6rem;
	}
	
	.destaque-doces-content {
		padding: 2rem 1.5rem;
	}
	
	.doce-img-placeholder {
		height: 180px;
	}
}

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

.headline {
	background: linear-gradient(135deg, #3c305d, #5a4a7d);
	max-width: 650px;
	text-transform: uppercase;
	text-align: center;
	color: #ffffff;
	font-family: 'Cinzel', sans-serif;
	font-weight: 600;
	font-size: 13pt;
	padding: 1.5rem;
	border-radius: 10px;
	margin-bottom: 2rem;
	margin-top: 2rem;
	margin-left: 1rem;
	margin-right: 1rem;
	border: 2px solid rgba(60, 48, 93, 0.4);
	box-shadow: 0 4px 15px rgba(60, 48, 93, 0.3);
}

.ruby {
	text-align: center;
	font-size: 28px;
	font-family: "Cinzel", serif;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #3c305d;
	text-shadow: none;
}

.conteudoContainer {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	background: #f9f9f9;
	padding: 1rem 0 2rem 0;
}

.conteudoContainer2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	background: #ffffff;
	padding: 2rem 0;
}

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

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

.conteudoContaint {
	width: 100%;
	display: flex;
	align-items: center;
	background: #ffffff;
	backdrop-filter: blur(10px);
	border-radius: 15px;
	margin-bottom: 1rem;
	padding: 2rem 1rem;
	gap: 1rem;
	border: 2px solid rgba(60, 48, 93, 0.2);
	box-shadow: 0 2px 10px rgba(60, 48, 93, 0.1);
	transition: all 0.3s ease;
}

.conteudoContaint:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(60, 48, 93, 0.2);
	border-color: rgba(60, 48, 93, 0.4);
}

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

.conteudo {
	color: #333333;
	font-family: 'Sora', sans-serif;
	font-weight: 500;
	font-size: 14pt;
	width: 80%;
	line-height: 1.5;
}

.conteudo p {
	text-shadow: none;
}

.conteudo strong {
	color: #3c305d;
	font-weight: 700;
}

h3 {
	color: #333333;
	text-align: center;
	font-family: 'Cinzel', sans-serif;
	font-weight: 600;
	font-size: 14pt;
	padding: 0 1rem;
	line-height: 1.6;
	max-width: 800px;
}

.red {
	color: #3c305d;
	font-weight: 700;
}

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

.audio img {
	width: 250px;
}

.audio h1 {
	text-align: center;
	padding: 0 1rem;
}

.audio p {
	font-family: 'Sora', sans-serif !important;
	color: #ffffff;
	text-align: center;
	font-size: 13pt;
	max-width: 700px;
	padding: 0 1rem;
}

.bonus {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #ffffff;
	padding: 0rem 1rem 1rem 1rem;
	margin-top: -3rem;
}

.bonus img {
	width: 90%;
	max-width: 400px;
}

.bonus h1 {
	font-size: 24px;
	font-family: "Cinzel", serif;
	font-weight: 700;
	text-align: center;
	padding: 0 1rem;
	background: linear-gradient(120deg, #3c305d, #5a4a7d, #7d6ba8, #5a4a7d, #3c305d);
	background-size: 300% 300%;
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	animation: shine 3s linear infinite;
	text-transform: uppercase;
}

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

.bonusContent {
	padding: 0 1rem 2rem 1rem;
	background-color: #e4e4e4;

	margin: 4rem -1rem 0 -1rem;
	border-radius: 25px;
	border: 2px solid rgba(60, 48, 93, 0.2);
}

.bonus2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #f9f9f9;
	margin-top: 12rem;
	border-radius: 15px;
	padding: 0 1rem 2rem 1rem;
}

.bonus2 h2 {
	text-align: center;
	font-size: 24px;
	font-family: "Cinzel", serif;
	font-weight: bold;
	margin: 1rem 0;
	color: #3c305d;
	padding: 0 1rem;
}

.bonus2 img {
	margin: -10rem auto 0 auto;
}

.bonusMockup {
	margin: -10rem auto 0 auto;
	filter: drop-shadow(0 0 20px rgba(60, 48, 93, 0.4))
	        drop-shadow(0 0 40px rgba(60, 48, 93, 0.2));
	transition: transform 0.3s ease-in-out;
}

.bonusMockup:hover {
	transform: scale(1.05);
}

.bonusDescricao {
	font-family: 'Sora', sans-serif !important;
	color: #333333;
	text-align: center;
	font-size: 13pt;
	max-width: 700px;
	padding: 1rem 1rem 0 1rem;
	line-height: 1.6;
}

@keyframes shine {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.oferta-limitada {
	font-family: 'Sora', serif;
	font-size: 16px;
	text-align: center;
	padding: 0.7rem 1.5rem;
	letter-spacing: 1px;
	border-radius: 50px;
	color: white;
	font-weight: 600;
	background: linear-gradient(120deg, #3c305d, #5a4a7d, #7d6ba8, #5a4a7d, #3c305d);
	background-size: 300% 300%;
	animation: bg-movendo 5s linear infinite;
	text-shadow: 0 0 4px rgb(0, 0, 0), 2px 2px 6px rgba(0, 0, 0, 0.5);
	max-width: 300px;
	margin: 25px auto 0 auto;
}

@keyframes bg-movendo {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.bonusText {
	margin-top: -2rem;
	font-family: 'Sora', sans-serif !important;
	color: #ffffff;
	text-align: center;
	font-size: 13pt;
	max-width: 700px;
}

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

.small {
	font-size: 22pt;
}

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

.sellBoxContainer {
	display: flex;
	justify-content: center;
	flex-direction: center;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #ffffff;
	padding: 1.5rem 1rem;
}

.sellBox2 {
	display: flex;
	align-items: center;
	flex-direction: column;
	max-width: 500px;
	margin: 0rem 0 2rem 0;
	padding: 0rem 0rem 2rem 0rem;
	background: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) padding-box,
	            linear-gradient(90deg, #3c305d, #5a4a7d, #7d6ba8, #5a4a7d, #3c305d);
	background-size: 300% 100%;
	border: 3px solid transparent;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(60, 48, 93, 0.3);
	animation: borderShine 4s linear infinite;
}

@keyframes borderShine {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.sellBox2 .headline2 {
	color: #3c305d;
	width: 100%;
	margin-top: 0;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 1rem 1rem 1rem 1rem;
	text-align: center;
	text-transform: uppercase;
	font-family: 'Cinzel', sans-serif;
	line-height: 1.4;
	font-size: 18px!important;
}

.sellBox2 .ebook {
	padding: 0.5rem 1rem 2rem 1rem;
	max-width: 400px;
}

.sellBox2 .precoantigo {
	font-family: 'Sora', sans-serif;
	color: #666666;
	font-size: 14pt;
	margin-bottom: 0.5rem;
}

.sellBox2 .desconto {
	font-family: 'Poppins', sans-serif;
	color: #666666;
	text-align: center;
	font-size: 16pt;
	text-decoration: line-through;
	text-decoration-thickness: 2px;
	font-weight: 600;
}

.sellBox2 .preco {
	font-family: 'Sora', sans-serif;
	text-align: center;
	font-size: 28pt;
	padding: 0 1rem;
	margin-top: -1rem;
	font-weight: 700;
	color: #4CAF50;
	margin-bottom: 1rem;
}

.sellBox2 .avista {
	color: #333333;
	font-weight: 400;
	font-size: 22pt;
}

.sellBox2 a {
	text-align: center;
	padding: 0 1rem;
}

.beneficios {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	border-top: 1px solid rgba(60, 48, 93, 0.3);
	width: 85%;
	padding: 1.5rem 0rem;
	text-align: left;
	gap: 0.7rem;
}

.beneficiosContent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.beneficios p {
	color: #333333;
	font-family: "Sora", sans-serif;
	font-size: 15px;
	line-height: 1.5;
}

.ebook {
	width: 100%;
	padding: 0 10px;
}

.garantia {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 2rem;
	padding: 1.5rem;
	background: linear-gradient(135deg, rgba(60, 48, 93, 0.1), rgba(60, 48, 93, 0.05));
	border-radius: 15px;
	border: 2px solid rgba(60, 48, 93, 0.3);
	max-width: 400px;
}

.garantia img {
	width: 100px;
	margin-bottom: 1rem;
}

.garantia p {
	color: #333333;
	text-align: center;
	font-family: 'Sora', sans-serif;
	font-size: 13pt;
	line-height: 1.6;
}

.garantia strong {
	color: #3c305d;
}

footer {
	padding-bottom: 3rem;
	background-color: #ffffff;
}

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

.faq-container {
	font-family: "Sora", sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: #ffffff;
	padding: 1rem 1rem 2rem 1rem;
}

.faq-container h1 {
	color: #3c305d;
	margin-bottom: 2.5rem;
	font-weight: 600;
	font-size: 26px;
}

.accordion {
	margin-bottom: 1rem;
	width: 100%;
	max-width: 900px;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 2px solid rgba(60, 48, 93, 0.4);
	background: rgba(60, 48, 93, 0.05);
}

.accordion-title {
	font-weight: 600;
	padding: 1.2rem 1rem;
	font-size: 1.05rem;
	cursor: pointer;
	color: #3c305d;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
}

.accordion-title:hover {
	background: rgba(60, 48, 93, 0.1);
}

.accordion-icon .chevron {
	display: inline-block;
	transition: transform 0.3s ease-in-out;
	color: #3c305d;
}

.accordion.active .accordion-icon .chevron {
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	padding: 0 1rem;
	transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
	color: #333333;
	font-size: 15px;
	line-height: 1.7;
}

.accordion.active .accordion-content {
	max-height: 500px;
	padding: 1rem;
}

.padding {
	padding: 0 1rem;
}

.provasocial {
	width: 100%;
	max-width: 1200px;
	margin: 2rem auto 0rem auto;
	padding: 0 1rem;
}

.swiper .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 390px;
	border-radius: 15px;
	overflow: hidden;
}

.swiper .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-pagination-bullet {
	background: rgb(60, 48, 93) !important;
	opacity: 0.5;
}

.swiper-pagination-bullet-active {
	background: #3c305d !important;
	opacity: 1;
}

.headerH1 {
	color: #3c305d !important;
	font-family: "Cinzel", sans-serif !important;
	margin: 0!important;
}

.security-badges {
	font-family: "Sora", sans-serif !important;
	border-radius: 12px;
	padding: 15px;
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 10px auto 0 auto;
	max-width: 400px;
}

.security-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	color: #3c305d;
}

.security-item i {
	font-size: 18px;
	color: #4CAF50;
}

.container {
	text-align: center;
	font-family: 'Sora', sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: auto;
	max-width: 400px;
	color: #666666;
	font-weight: 300;
	line-height: 1.6;
	padding: 2rem 1rem 0 1rem;
}

.bonus-valor {
  background: #FF0000;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: line-through;
margin: 1.5rem 0 1rem 0;
}

.bonus-hoje {
  background: #554678;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 1.5rem;
}

.bonus__head {
	margin-bottom: -3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 2rem;
	font-family: "Sora", sans-serif;
}

.bonus__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 10px;
}

.bonus__divider .line {
	width: 120px;
	height: 2px;
	background: rgba(60, 48, 93, 0.5);
	border-radius: 2px;
}

.bonus__divider .gift {
	font-size: 1.5rem;
	line-height: 1;
}

.bonus__title {
	font-weight: 700;
	font-size: 1.8rem;
	margin: 0 0 8px;
	color: #3c305d;
}

.bonus__subtitle {
	font-family: "Sora", sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	margin: 0 0 10px;
	color: #3c305d;
}

.bonus__lead {
	max-width: 65ch;
	margin: 2.5rem 0 2rem 0;
	color: #333333;
	font-size: 1.05rem;
	line-height: 1.7;
	text-align: center;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
	.boxHeader h1 {
		font-size: 16pt;
	}
	
	.boxHeader p {
		font-size: 12pt;
	}
	
	button {
		font-size: 1rem;
		padding: 1rem 2rem;
	}
	
	.headline {
		font-size: 11pt;
	}
	
	.ruby {
		font-size: 24px;
	}
	
	.conteudo {
		font-size: 12pt;
	}
	
	.emoji {
		font-size: 28pt;
	}
	
	h3 {
		font-size: 13pt;
	}
	
	.sellBox2 .headline2 {
		font-size: 16px;
	}
	
	.sellBox2 .preco {
		font-size: 24pt;
	}
}
