:root {
	--bg-dark: #040810;
	--bg-card: #0e1626;
	--bg-card-hover: #142036;
	--surface-glass: rgba(14, 22, 38, 0.75);
	--accent-cyan: #00f5d4;
	--accent-blue: #0d99ff;
	--accent-gold: #ffc02d;
	--accent-amber: #e6a100;
	--accent-green: #2ed573;
	--accent-purple: #a855f7;
	--text-primary: #ffffff;
	--text-secondary: #cbd5e1;
	--text-muted: #94a3b8;
	--border-color: rgba(255, 255, 255, 0.08);
	--border-glow: rgba(0, 245, 212, 0.3);
	--border-gold-glow: rgba(255, 192, 45, 0.3);
	--font-heading: "Orbitron", sans-serif;
	--font-body: "Plus Jakarta Sans", "Inter", sans-serif;
	--shadow-main: 0 12px 36px rgba(0, 0, 0, 0.4);
	--shadow-neon: 0 0 20px rgba(0, 245, 212, 0.15);
	--radius-lg: 16px;
	--radius-md: 12px;
	--radius-sm: 8px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
	background-color: var(--bg-dark);
	background-image:
		radial-gradient(
			circle at 15% 15%,
			rgba(0, 245, 212, 0.05) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 85% 85%,
			rgba(13, 153, 255, 0.05) 0%,
			transparent 40%
		);
	color: var(--text-primary);
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.65;
	min-height: 100vh;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	letter-spacing: 0.5px;
	color: #ffffff;
}

a {
	color: var(--accent-cyan);
	text-decoration: none;
	transition: var(--transition);
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.app-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(4, 8, 16, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border-color);
	padding: 14px 0;
}

.header-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.brand-box {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
}

.brand-icon {
	width: 42px;
	height: 42px;
	background: linear-gradient(
		135deg,
		rgba(0, 245, 212, 0.2),
		rgba(13, 153, 255, 0.2)
	);
	border: 1px solid var(--border-glow);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	box-shadow: var(--shadow-neon);
}

.brand-title {
	font-size: 17px;
	font-weight: 800;
	background: linear-gradient(90deg, #ffffff 0%, var(--accent-cyan) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.2;
}

.brand-tag {
	font-size: 11px;
	color: var(--accent-gold);
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.btn-vip-gold {
	background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
	color: #000;
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 800;
	padding: 8px 16px;
	border-radius: 20px;
	border: none;
	cursor: pointer;
	box-shadow: 0 0 15px rgba(255, 192, 45, 0.3);
	transition: var(--transition);
	display: flex;
	align-items: center;
	gap: 6px;
}

.btn-vip-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 25px rgba(255, 192, 45, 0.5);
}

.btn-user-status {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 13px;
	padding: 8px 14px;
	border-radius: 20px;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	gap: 8px;
}

.btn-user-status:hover {
	border-color: var(--accent-cyan);
	color: #ffffff;
}

.status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--accent-green);
	box-shadow: 0 0 8px var(--accent-green);
}

/* Banner VIP Hero */
.hero-vip-banner {
	margin: 24px 0 32px 0;
	background: linear-gradient(
		135deg,
		rgba(14, 22, 38, 0.9),
		rgba(6, 13, 24, 0.95)
	);
	border: 1px solid var(--border-glow);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-main), var(--shadow-neon);
}

.hero-vip-banner::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 350px;
	height: 350px;
	background: radial-gradient(
		circle,
		rgba(0, 245, 212, 0.15) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(0, 245, 212, 0.1);
	border: 1px solid rgba(0, 245, 212, 0.3);
	color: var(--accent-cyan);
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 14px;
}

.hero-title {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 10px;
	line-height: 1.3;
}

.hero-subtitle {
	color: var(--text-secondary);
	font-size: 15px;
	max-width: 780px;
	margin-bottom: 24px;
}

/* Search and Navigation Bar */
.nav-search-bar {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 28px;
}

.search-box-wrap {
	position: relative;
	width: 100%;
}

.search-input {
	width: 100%;
	background: rgba(14, 22, 38, 0.8);
	border: 1px solid var(--border-color);
	border-radius: 14px;
	padding: 14px 20px 14px 48px;
	color: #ffffff;
	font-family: var(--font-body);
	font-size: 15px;
	outline: none;
	transition: var(--transition);
}

.search-input:focus {
	border-color: var(--accent-cyan);
	box-shadow: 0 0 20px rgba(0, 245, 212, 0.2);
}

.search-icon {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-muted);
	font-size: 18px;
}

/* Tabs & Category Filter Pills */
.tabs-header {
	display: flex;
	gap: 10px;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 12px;
	overflow-x: auto;
	scrollbar-width: none;
}

.tabs-header::-webkit-scrollbar {
	display: none;
}

.tab-btn {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	padding: 10px 18px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: var(--transition);
	display: flex;
	align-items: center;
	gap: 8px;
}

.tab-btn:hover {
	border-color: rgba(0, 245, 212, 0.4);
	color: #ffffff;
}

.tab-btn.active {
	background: linear-gradient(
		135deg,
		rgba(0, 245, 212, 0.15),
		rgba(13, 153, 255, 0.15)
	);
	border-color: var(--accent-cyan);
	color: var(--accent-cyan);
	box-shadow: 0 0 12px rgba(0, 245, 212, 0.2);
}

.category-pills {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 4px 0;
	scrollbar-width: none;
}

.category-pills::-webkit-scrollbar {
	display: none;
}

.pill-btn {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border-color);
	color: var(--text-muted);
	padding: 6px 14px;
	border-radius: 16px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: var(--transition);
}

.pill-btn:hover,
.pill-btn.active {
	background: rgba(255, 192, 45, 0.12);
	border-color: var(--accent-gold);
	color: var(--accent-gold);
}

/* Grids */
.grid-protocols {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 24px;
	margin-bottom: 40px;
}

.grid-peptides {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

/* Card Protocolo VIP */
.protocol-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.protocol-card:hover {
	transform: translateY(-4px);
	border-color: var(--accent-cyan);
	box-shadow: var(--shadow-main), var(--shadow-neon);
}

.protocol-header {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 16px;
}

.protocol-icon {
	font-size: 32px;
	background: rgba(255, 255, 255, 0.05);
	padding: 10px;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-color);
}

.protocol-title {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 4px;
}

.protocol-sub {
	font-size: 12px;
	color: var(--accent-gold);
	font-weight: 600;
}

.protocol-desc {
	color: var(--text-secondary);
	font-size: 13px;
	margin-bottom: 20px;
	line-height: 1.6;
}

.levels-preview {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
	background: rgba(4, 8, 16, 0.6);
	padding: 14px;
	border-radius: var(--radius-md);
	border: 1px solid rgba(255, 255, 255, 0.04);
}

.level-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
}

.level-badge {
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 6px;
}

.level-badge.n1 {
	color: var(--accent-gold);
}
.level-badge.n2 {
	color: var(--accent-cyan);
}
.level-badge.n3 {
	color: var(--accent-purple);
}

.level-name {
	color: var(--text-secondary);
	font-weight: 500;
}

.btn-open-protocol {
	width: 100%;
	background: linear-gradient(
		135deg,
		rgba(0, 245, 212, 0.15),
		rgba(13, 153, 255, 0.2)
	);
	border: 1px solid var(--accent-cyan);
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 700;
	padding: 12px;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
}

.btn-open-protocol:hover {
	background: var(--accent-cyan);
	color: #000;
	box-shadow: 0 0 20px rgba(0, 245, 212, 0.4);
}

/* Card Peptídeo */
.peptide-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 18px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: var(--transition);
}

.peptide-card:hover {
	transform: translateY(-4px);
	border-color: var(--accent-gold);
	box-shadow:
		var(--shadow-main),
		0 0 20px rgba(255, 192, 45, 0.15);
}

.peptide-thumb-wrap {
	width: 100%;
	height: 160px;
	background: rgba(4, 8, 16, 0.8);
	border-radius: var(--radius-md);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.peptide-thumb {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: var(--transition);
}

.peptide-card:hover .peptide-thumb {
	transform: scale(1.05);
}

.peptide-cat-tag {
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--accent-cyan);
	margin-bottom: 4px;
}

.peptide-name {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.3;
}

.peptide-brief {
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.peptide-card-footer {
	display: flex;
	gap: 8px;
}

.btn-detail {
	flex: 1;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 12px;
	font-weight: 600;
	padding: 10px;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
}

.btn-detail:hover {
	border-color: var(--accent-cyan);
	color: #ffffff;
}

.btn-buy-direct {
	background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
	color: #000;
	font-size: 12px;
	font-weight: 800;
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	gap: 4px;
}

.btn-buy-direct:hover {
	box-shadow: 0 0 15px rgba(255, 192, 45, 0.4);
	transform: scale(1.02);
}

/* Calculadora Interativa */
.calculator-box {
	background: var(--bg-card);
	border: 1px solid var(--border-glow);
	border-radius: var(--radius-lg);
	padding: 32px;
	box-shadow: var(--shadow-main), var(--shadow-neon);
	margin-bottom: 40px;
}

.calc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

@media (max-width: 850px) {
	.calc-grid {
		grid-template-columns: 1fr;
	}
}

.calc-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-secondary);
}

.form-select,
.form-input {
	background: rgba(4, 8, 16, 0.8);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 12px 16px;
	color: #ffffff;
	font-family: var(--font-body);
	font-size: 14px;
	outline: none;
	transition: var(--transition);
}

.form-select:focus,
.form-input:focus {
	border-color: var(--accent-cyan);
	box-shadow: 0 0 15px rgba(0, 245, 212, 0.2);
}

.calc-result-panel {
	background: rgba(4, 8, 16, 0.9);
	border: 1px solid rgba(0, 245, 212, 0.25);
	border-radius: var(--radius-md);
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
}

.result-big-ui {
	font-family: var(--font-heading);
	font-size: 42px;
	font-weight: 900;
	color: var(--accent-cyan);
	text-shadow: 0 0 20px rgba(0, 245, 212, 0.5);
	margin: 12px 0;
}

.syringe-visualizer {
	margin: 20px 0;
	background: #080c14;
	border: 2px solid var(--border-color);
	border-radius: 20px;
	height: 36px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.syringe-fill {
	height: 100%;
	background: linear-gradient(
		90deg,
		rgba(0, 245, 212, 0.4),
		var(--accent-cyan)
	);
	width: 20%;
	transition: width 0.4s ease;
}

.syringe-ticks {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	padding: 0 8px;
	pointer-events: none;
}

.tick-mark {
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.15);
}

/* Modais */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition);
}

.modal-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.modal-content {
	background: var(--bg-card);
	border: 1px solid var(--border-glow);
	border-radius: var(--radius-lg);
	max-width: 800px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 32px;
	position: relative;
	box-shadow: var(--shadow-main), var(--shadow-neon);
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-color);
	color: var(--text-muted);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: var(--transition);
}

.modal-close:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
}

/* Modal Article Style */
.article-section {
	margin-bottom: 24px;
	background: rgba(4, 8, 16, 0.5);
	border: 1px solid var(--border-color);
	padding: 20px;
	border-radius: var(--radius-md);
}

.article-section-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--accent-cyan);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Coupon Box */
.coupon-box {
	background: linear-gradient(
		135deg,
		rgba(255, 192, 45, 0.1),
		rgba(230, 161, 0, 0.15)
	);
	border: 1px dashed var(--accent-gold);
	border-radius: var(--radius-md);
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.coupon-code {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 900;
	color: var(--accent-gold);
	letter-spacing: 2px;
}

.btn-copy-coupon {
	background: var(--accent-gold);
	color: #000;
	font-weight: 800;
	border: none;
	padding: 8px 16px;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: var(--transition);
}

.btn-copy-coupon:hover {
	box-shadow: 0 0 15px rgba(255, 192, 45, 0.5);
}

/* Responsive */
@media (max-width: 600px) {
	.hero-title {
		font-size: 20px;
	}
	.grid-protocols {
		grid-template-columns: 1fr;
	}
	.grid-peptides {
		grid-template-columns: 1fr;
	}
	.modal-content {
		padding: 20px;
	}
}

/* Toast Notification */
.toast {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: rgba(4, 8, 16, 0.95);
	border: 1px solid var(--border-glow);
	color: var(--text-primary);
	font-size: 13px;
	font-weight: 600;
	padding: 12px 20px;
	border-radius: 12px;
	z-index: 3000;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition);
	max-width: 90vw;
	text-align: center;
	box-shadow: var(--shadow-main);
}

.toast.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.toast.error {
	border-color: #ff4757;
}

/* Locked / Error State */
.locked-state {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 20px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
}

/* Calculator Warning */
.calc-warning {
	display: none;
	color: #ff4757;
	font-size: 13px;
	font-weight: 600;
	margin-top: 10px;
	background: rgba(255, 71, 87, 0.1);
	border: 1px solid rgba(255, 71, 87, 0.3);
	padding: 10px 14px;
	border-radius: var(--radius-sm);
}

/* Footer */
.app-footer {
	padding: 24px 20px;
	text-align: center;
	color: var(--text-muted);
	font-size: 12px;
	line-height: 1.6;
	border-top: 1px solid var(--border-color);
	margin-top: 20px;
}

/* ============================================================
   SPA — NAVEGAÇÃO, HOME DE OBJETIVOS E PÁGINA DE ARTIGO
   ============================================================ */

/* Header nav */
.app-nav {
	display: flex;
	gap: 4px;
	align-items: center;
	flex-wrap: wrap;
}

.nav-link {
	color: var(--text-secondary);
	font-size: 13px;
	font-weight: 600;
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	border: 1px solid transparent;
	white-space: nowrap;
}

.nav-link:hover {
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
	color: var(--accent-cyan);
	border-color: rgba(0, 245, 212, 0.25);
	background: rgba(0, 245, 212, 0.08);
}

/* Views */
.view {
	display: block;
}

/* Grade de objetivos (home) */
.grid-objetivos {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.objetivo-card {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 22px;
	text-decoration: none;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.objetivo-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--accent-cyan),
		var(--accent-blue),
		var(--accent-purple)
	);
	opacity: 0.6;
}

.objetivo-card:hover {
	border-color: var(--border-glow);
	background: var(--bg-card-hover);
	transform: translateY(-3px);
	box-shadow: var(--shadow-main), var(--shadow-neon);
}

.objetivo-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.objetivo-icon {
	font-size: 42px;
	line-height: 1;
	filter: drop-shadow(0 0 12px rgba(0, 245, 212, 0.25));
}

.objetivo-badges {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
}

.badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
	letter-spacing: 0.3px;
}

.badge-cat {
	background: rgba(0, 245, 212, 0.1);
	color: var(--accent-cyan);
	border: 1px solid rgba(0, 245, 212, 0.3);
	text-transform: uppercase;
}

.badge-year {
	background: rgba(255, 192, 45, 0.1);
	color: var(--accent-gold);
	border: 1px solid rgba(255, 192, 45, 0.3);
}

.badge-steps {
	background: rgba(168, 85, 247, 0.12);
	color: var(--accent-purple);
	border: 1px solid rgba(168, 85, 247, 0.35);
}

.objetivo-title {
	font-size: 18px;
	font-weight: 800;
	color: #ffffff;
	font-family: var(--font-heading);
	letter-spacing: 0.3px;
	margin-bottom: 6px;
}

.objetivo-sub {
	font-size: 13px;
	font-weight: 600;
	color: var(--accent-gold);
	margin-bottom: 10px;
}

.objetivo-resumo {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 14px;
}

.objetivo-footer {
	border-top: 1px solid var(--border-color);
	padding-top: 12px;
}

.objetivo-cta {
	font-size: 12px;
	font-weight: 700;
	color: var(--accent-cyan);
}

/* ============================================================
   PÁGINA DO ARTIGO (entrega premium)
   ============================================================ */

.article-page {
	margin-bottom: 40px;
}

.article-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}

.article-back {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-secondary);
	padding: 8px 14px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.03);
}

.article-back:hover {
	color: var(--accent-cyan);
	border-color: var(--border-glow);
}

.btn-print {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 13px;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: var(--transition);
}

.btn-print:hover {
	color: var(--text-primary);
	border-color: var(--accent-gold);
}

.article-hero {
	background: linear-gradient(
		160deg,
		rgba(0, 245, 212, 0.08),
		rgba(13, 153, 255, 0.06) 50%,
		transparent
	);
	border: 1px solid var(--border-glow);
	border-radius: var(--radius-lg);
	padding: 36px 32px;
	margin-bottom: 24px;
	box-shadow: var(--shadow-main), var(--shadow-neon);
}

.article-hero-icon {
	font-size: 56px;
	margin-bottom: 12px;
}

.article-hero-title {
	font-size: 26px;
	font-weight: 900;
	margin-bottom: 6px;
	letter-spacing: 0.5px;
}

.article-hero-sub {
	font-size: 15px;
	color: var(--accent-gold);
	font-weight: 600;
	margin-bottom: 14px;
}

.article-badges {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.article-meta {
	background: rgba(255, 192, 45, 0.08);
	border: 1px dashed var(--border-gold-glow);
	border-radius: var(--radius-md);
	padding: 14px 16px;
	font-size: 14px;
	color: var(--text-primary);
	font-weight: 600;
	line-height: 1.6;
}

.article-section {
	margin-bottom: 24px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	padding: 24px;
	border-radius: var(--radius-lg);
}

.article-text {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.75;
}

.pre-line {
	white-space: pre-line;
}

.article-fontes {
	font-size: 12px;
	color: var(--text-muted);
	line-height: 1.7;
}

/* Visão geral */
.visao-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}

.visao-card {
	background: rgba(4, 8, 16, 0.5);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 18px;
}

.visao-card-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--accent-cyan);
	margin-bottom: 8px;
}

/* Stack de peptídeos */
.stack-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 16px;
}

.product-card {
	background: rgba(4, 8, 16, 0.6);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: var(--transition);
}

.product-card:hover {
	border-color: var(--border-gold-glow);
}

.product-card-img {
	width: 100%;
	height: 120px;
	object-fit: contain;
	background: rgba(4, 8, 16, 0.8);
	padding: 10px;
	border-bottom: 1px solid var(--border-color);
}

.product-card-body {
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.product-card-name {
	font-size: 14px;
	font-weight: 800;
	color: #ffffff;
}

.product-card-role {
	font-size: 12px;
	color: var(--accent-cyan);
	line-height: 1.5;
}

.product-card-dose {
	font-size: 12px;
	color: var(--text-muted);
	line-height: 1.5;
}

.product-card .btn-buy-direct {
	margin-top: auto;
	justify-content: center;
}

/* Timeline de 12 meses */
.step-progress {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
	flex-wrap: wrap;
}

.step-progress-bar-wrap {
	flex: 1;
	min-width: 160px;
	height: 8px;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 999px;
	overflow: hidden;
}

.step-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
	border-radius: 999px;
	transition: width 0.4s ease;
}

.step-progress-text {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-secondary);
}

.timeline {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.timeline::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 11px;
	width: 2px;
	background: linear-gradient(
		180deg,
		var(--accent-cyan),
		var(--accent-blue),
		var(--accent-purple)
	);
	opacity: 0.35;
}

.timeline-phase {
	position: relative;
	padding-left: 40px;
	padding-bottom: 28px;
}

.phase-marker {
	position: absolute;
	left: 4px;
	top: 4px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--accent-cyan);
	box-shadow: 0 0 12px rgba(0, 245, 212, 0.6);
	z-index: 1;
}

.phase-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
	flex-wrap: wrap;
}

.phase-head-text {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.phase-name {
	font-size: 17px;
	font-weight: 800;
	color: #ffffff;
	font-family: var(--font-heading);
}

.phase-duration {
	font-size: 12px;
	font-weight: 700;
	color: var(--accent-gold);
	background: rgba(255, 192, 45, 0.1);
	border: 1px solid rgba(255, 192, 45, 0.3);
	padding: 3px 10px;
	border-radius: 999px;
}

.phase-objetivo {
	font-size: 13px;
	color: var(--text-secondary);
	margin-bottom: 12px;
	line-height: 1.65;
}

.phase-peptides {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 12px;
}

.phase-peptide {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 12px;
	align-items: center;
	background: rgba(0, 245, 212, 0.05);
	border: 1px solid rgba(0, 245, 212, 0.15);
	border-radius: var(--radius-sm);
	padding: 8px 12px;
	font-size: 12px;
}

.phase-peptide-name {
	font-weight: 700;
	color: var(--accent-cyan);
}

.phase-peptide-dose,
.phase-peptide-when,
.phase-peptide-role {
	color: var(--text-secondary);
}

.phase-exames {
	font-size: 12px;
	color: #ff7a90;
	background: rgba(255, 71, 87, 0.07);
	border-left: 3px solid #ff4757;
	padding: 8px 12px;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	margin-bottom: 14px;
	line-height: 1.6;
}

.phase-steps {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Passos narrados */
.step-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 16px;
	transition: var(--transition);
}

.step-card.done {
	opacity: 0.55;
	border-color: rgba(46, 213, 115, 0.4);
}

.step-card.done .step-title {
	text-decoration: line-through;
	color: var(--text-muted);
}

.step-head {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
}

.step-number {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
	color: #000;
	font-size: 13px;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-title {
	font-size: 14px;
	font-weight: 800;
	color: #ffffff;
	flex: 1;
	padding-top: 3px;
}

.step-check {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid var(--border-color);
	background: rgba(255, 255, 255, 0.03);
	color: transparent;
	font-size: 15px;
	font-weight: 900;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-check:hover {
	border-color: var(--accent-green);
}

.step-card.done .step-check {
	background: var(--accent-green);
	border-color: var(--accent-green);
	color: #000;
}

.step-block {
	margin-bottom: 10px;
}

.step-block:last-child {
	margin-bottom: 0;
}

.step-label {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: var(--accent-cyan);
	margin-bottom: 4px;
}

.step-feel {
	background: rgba(168, 85, 247, 0.07);
	border: 1px solid rgba(168, 85, 247, 0.25);
	border-left: 3px solid var(--accent-purple);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	padding: 10px 12px;
}

.step-feel .step-label {
	color: var(--accent-purple);
}

.step-dica {
	font-size: 12px;
	color: var(--accent-gold);
	margin-top: 8px;
}

/* CTA e RUO */
.article-cta {
	text-align: center;
	padding: 8px 0 24px;
}

.article-ruo {
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 12px;
}

/* Skeleton */
.skeleton-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px;
}

.skeleton-card {
	height: 200px;
	border-radius: var(--radius-lg);
	background: linear-gradient(
		100deg,
		var(--bg-card) 40%,
		rgba(255, 255, 255, 0.04) 50%,
		var(--bg-card) 60%
	);
	background-size: 200% 100%;
	animation: skeleton-shimmer 1.4s infinite;
}

@keyframes skeleton-shimmer {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

/* Responsivo */
@media (max-width: 900px) {
	.app-nav {
		order: 3;
		width: 100%;
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 4px;
	}
	.article-hero {
		padding: 24px 18px;
	}
	.article-hero-title {
		font-size: 20px;
	}
}

@media (max-width: 600px) {
	.grid-objetivos {
		grid-template-columns: 1fr;
	}
	.stack-grid {
		grid-template-columns: 1fr;
	}
	.article-section {
		padding: 16px;
	}
}

/* Impressão: apenas o artigo */
@media print {
	body {
		background: #ffffff;
		color: #111;
	}
	.app-header,
	.app-footer,
	.article-toolbar,
	.article-cta,
	.article-back,
	.btn-print,
	.step-check,
	.nav-search-bar,
	.modal-overlay {
		display: none !important;
	}
	.article-page {
		margin: 0;
	}
	.article-hero,
	.article-section {
		background: #ffffff;
		border: 1px solid #ddd;
		box-shadow: none;
		color: #111;
	}
	.article-hero-title,
	.phase-name,
	.step-title,
	.product-card-name {
		color: #111;
	}
	.article-text,
	.phase-objetivo {
		color: #222;
	}
	.step-card.done {
		opacity: 1;
	}
	.step-feel {
		border-color: #999;
	}
}
