/* Minimalist Audio Player - Menu Style */
#audio-control-btn {
	cursor: pointer;
	transition: color 0.3s ease;
}

#audio-control-btn.playing #audio-icon {
	color: #bfa15f !important;
}

/* ===== Parallax Buy Section ===== */
.section-parallax {
	position: relative;
	height: 600px;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.section-parallax-bg {
	position: absolute;
	inset: -60px 0;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	z-index: 1;
}

.section-parallax-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 5, 0, 0.75) 50%, rgba(0, 0, 0, 0.85) 100%);
	z-index: 2;
}

.section-parallax .container {
	z-index: 3;
}

/* Disable parallax on mobile (performance + iOS fixed bg bug) */
@media (max-width: 991px) {
	.section-parallax {
		height: auto;
		padding: 80px 0;
	}
	.section-parallax-bg {
		position: absolute;
		inset: 0;
		background-attachment: scroll;
	}
}



/* Hero title image - mobile first */
#hero-title-img {
	width: 100%;
	max-width: 280px; /* Mobile default */
	height: auto;
}

@media (min-width: 576px) {
	#hero-title-img {
		max-width: 380px;
	}
}

@media (min-width: 768px) {
	#hero-title-img {
		max-width: 480px;
	}
}

@media (min-width: 992px) {
	#hero-title-img {
		max-width: 590px; /* Native image width on desktop */
	}
}

/* Make candle glow more evident */
.candle-glow {
	background: radial-gradient(circle at 50% 50%, rgba(255, 140, 20, 0.4) 0%, rgba(255, 75, 0, 0.12) 50%, rgba(0, 0, 0, 0) 80%) !important;
}

/* ===== O LIVRO — Redesign ===== */
.section-livro-redesign {
	background: linear-gradient(180deg, #0d0d0f 0%, #14141a 60%, #0d0d0f 100%);
	padding: 90px 0 80px;
	position: relative;
}

.section-livro-redesign::before {
	content: '';
	position: absolute;
	top: 0; left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(191, 161, 95, 0.5), transparent);
}

.section-livro-redesign::after {
	content: '';
	position: absolute;
	bottom: 0; left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(191, 161, 95, 0.3), transparent);
}

.section-label-top {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.25em;
	color: #bfa15f;
	text-transform: uppercase;
}

.book-title-label {
	font-family: 'Cinzel', serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0;
}

.book-quote {
	border-left: 3px solid #bfa15f;
	padding: 12px 20px;
	background: rgba(191, 161, 95, 0.06);
	border-radius: 0 6px 6px 0;
	margin: 0;
}

.book-quote span {
	font-family: 'Merriweather', serif;
	font-size: 1.2rem;
	font-weight: 400;
	font-style: italic;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
}

.book-description {
	font-size: 0.97rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.65);
}

.book-description em {
	color: rgba(255, 255, 255, 0.85);
	font-style: italic;
}

.book-description strong {
	color: #fff;
	font-weight: 700;
}

.book-cover-wrapper {
	position: relative;
	display: inline-block;
}

.book-cover-wrapper::after {
	content: '';
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 70%;
	height: 30px;
	background: radial-gradient(ellipse, rgba(191, 161, 95, 0.25) 0%, transparent 70%);
	filter: blur(8px);
}

/* ===== Footer Copyright — Slim & Clean ===== */
.footer-copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.footer-copyright p {
	font-size: 0.78rem;
	letter-spacing: 0.08em;
}

/* ===== Typography: Serif Fonts ===== */
h1, h2, h3, h4, h5, h6,
.font-weight-bold,
.text-9 {
	font-family: 'Cinzel', serif !important;
}

body, p, a, span, div,
.text-4, .book-description {
	font-family: 'Merriweather', serif;
	line-height: 1.8;
}

/* Increase descriptive text font size */
section p {
	font-size: 1.08rem;
}

section p.text-4 {
	font-size: 1.18rem !important;
}

#mainNav .nav-link {
	font-family: 'Cinzel', serif;
	letter-spacing: 0.05em;
	font-weight: 600;
}

/* ===== Neurodivergence Icon ===== */
.neuro-icon {
	background: linear-gradient(to right, #ff4b4b, #ff9b26, #fcd000, #4dd559, #3a97ff, #7f51ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

/* ===== Custom Colors ===== */
.text-gold {
	color: #bfa15f !important;
	transition: color 0.3s ease;
}

.text-gold:hover {
	color: #fff !important;
}

/* Custom Impressa (Printed) Button (Prata Envelhecida) */
.btn-impressa {
	border-color: #a8adbd !important;
	color: #a8adbd !important;
	background-color: transparent !important;
	transition: ease background-color 300ms, ease border-color 300ms, ease color 300ms;
}

.btn-impressa:hover {
	background-color: #a8adbd !important;
	border-color: #a8adbd !important;
	color: #14141a !important;
}

