/* ── VARIÁVEIS ──────────────────────────────────────────── */
:root {
	--bg:             #07090f;
	--bg2:            #0c1120;
	--surface:        #101828;
	--surface2:       #172038;
	--text:           #f0e4c8;
	--muted:          #7a82a0;
	--gold:           #ffc200;
	--gold-light:     #ffe080;
	--gold-dark:      #c98800;
	--gold-very-dark: #6e4800;
	--red:            #c81c0a;
	--red-light:      #e83820;
	--green:          #1aab5f;
	--border-gold:    rgba(255, 194, 0, 0.28);
	--glow-gold:      0 0 22px rgba(255, 194, 0, 0.35);
	--shadow:         0 16px 40px rgba(0, 0, 0, 0.55);
	--radius:         16px;
}

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

/* ── BODY ───────────────────────────────────────────────── */
body {
	font-family: "Manrope", sans-serif;
	background:
		radial-gradient(ellipse at 50% 0%, rgba(24, 48, 120, 0.45) 0%, transparent 65%),
		radial-gradient(ellipse at 8% 40%, rgba(200, 28, 10, 0.08) 0%, transparent 40%),
		radial-gradient(ellipse at 92% 30%, rgba(255, 194, 0, 0.05) 0%, transparent 35%),
		linear-gradient(180deg, #0a0d18 0%, #07090f 100%);
	color: var(--text);
	min-height: 100vh;
	line-height: 1.6;
}

/* ── TOPBAR ─────────────────────────────────────────────── */
.topbar {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(14px);
	background: rgba(7, 9, 15, 0.92);
	border-bottom: 1px solid var(--border-gold);
}

/* ── BRAND ──────────────────────────────────────────────── */
.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	color: var(--text);
}

.brand-logo {
	height: 80px;
	width: auto;
}

.brand-title {
	font-family: "Cinzel", serif;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--gold);
	letter-spacing: 1px;
	text-shadow: 0 0 14px rgba(255, 194, 0, 0.5);
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 6px;
	padding: 12px 24px;
	text-decoration: none;
	font-family: "Cinzel", serif;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: linear-gradient(135deg, #ffe060, #ffc200, #c98800);
	color: #1a0e00;
	box-shadow: var(--glow-gold);
	border: 1px solid rgba(255, 200, 0, 0.6);
}

.btn-primary:hover {
	filter: brightness(1.1);
	box-shadow: 0 0 30px rgba(255, 194, 0, 0.55);
}

.btn-outline {
	background: transparent;
	color: var(--gold);
	border: 1px solid var(--gold);
}

.btn-outline:hover {
	background: rgba(255, 194, 0, 0.08);
}

/* ── CHIP ───────────────────────────────────────────────── */
.chip {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 194, 0, 0.08);
	border: 1px solid rgba(255, 194, 0, 0.35);
	border-radius: 4px;
	padding: 6px 14px;
	font-family: "Cinzel", serif;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--gold);
	letter-spacing: 0.5px;
	margin-bottom: 16px;
	text-transform: uppercase;
}

/* ── DIVIDER ────────────────────────────────────────────── */
.divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
	margin: 0;
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
	padding: 32px 0 22px;
	border-top: 1px solid rgba(255, 194, 0, 0.1);
	color: var(--muted);
	font-size: 0.88rem;
	background: linear-gradient(180deg, rgba(10, 14, 24, 0.92), rgba(7, 9, 15, 0.95));
}

.footer-content {
	display: grid;
	grid-template-columns: minmax(210px, 1fr) minmax(320px, 2fr);
	gap: 22px 28px;
	align-items: start;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-logo {
	max-width: 180px;
	height: auto;
	filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.55));
}

.footer-title {
	font-family: "Cinzel", serif;
	font-weight: 700;
	color: var(--gold-light);
}

.footer-right {
	display: grid;
	gap: 10px;
}

.footer-content p {
	margin: 0;
	line-height: 1.55;
}

.footer-content .center {
	text-align: center;
}

footer strong {
	color: var(--gold);
	font-family: "Cinzel", serif;
}

footer a {
	color: var(--gold-light);
	text-decoration: none;
	font-weight: 700;
}

footer a:hover {
	text-decoration: underline;
}

/* ── FOOTER RESPONSIVE ──────────────────────────────────── */
@media (max-width: 700px) {
	.footer-content {
		grid-template-columns: 1fr;
	}

	.footer-content .center {
		text-align: left;
	}
}
