/* ============================================================
   PÁGINA DE PRIVACIDADE — page-privacidade.php
   ============================================================ */

.privacy-hero {
	padding: 10rem 0 5rem;
	background:
		radial-gradient(ellipse at 70% 30%, rgba(196, 169, 106, 0.05) 0%, transparent 55%),
		var(--bg);
	border-bottom: 1px solid var(--border);
}
.privacy-hero__eyebrow {
	margin-bottom: 1.25rem;
}
.privacy-hero__title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	color: var(--text);
	line-height: 1.2;
	margin-bottom: 1rem;
}
.privacy-hero__meta {
	font-size: 0.8rem;
	color: var(--text-muted);
	letter-spacing: 0.04em;
}
.privacy-body {
	padding: 5rem 0 7rem;
	background: var(--bg);
}
.privacy-layout {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 5rem;
	align-items: start;
}

/* Índice lateral */
.privacy-index {
	position: sticky;
	top: calc(var(--header-h) + 2rem);
}
.privacy-index__title {
	font-size: 0.65rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.25rem;
}
.privacy-index__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}
.privacy-index__link {
	display: block;
	font-size: 0.8rem;
	color: var(--text-muted);
	padding: 0.45rem 0;
	border-left: 1px solid var(--border);
	padding-left: 1rem;
	transition: color var(--transition), border-color var(--transition);
	line-height: 1.4;
}
.privacy-index__link:hover {
	color: var(--text);
	border-left-color: var(--gold-border);
}

/* Conteúdo */
.privacy-content {
	display: flex;
	flex-direction: column;
	gap: 3.5rem;
}
.privacy-section {
	scroll-margin-top: calc(var(--header-h) + 2rem);
}
.privacy-section__title {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	font-weight: 400;
	color: var(--text);
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--border);
}
.privacy-section p {
	font-size: 0.92rem;
	line-height: 1.85;
	color: var(--text-secondary);
	margin-bottom: 1rem;
}
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin: 1rem 0;
}
.privacy-section ul li {
	font-size: 0.92rem;
	line-height: 1.7;
	color: var(--text-secondary);
	padding-left: 1.25rem;
	position: relative;
}
.privacy-section ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 5px;
	height: 5px;
	border: 1px solid var(--gold-border);
	transform: rotate(45deg);
}
.privacy-section strong {
	color: var(--text);
	font-weight: 500;
}

/* Card de solicitação de remoção */
.removal-card {
	margin-top: 1.5rem;
	padding: 1.75rem 2rem;
	background: var(--bg-card);
	border: 1px solid var(--gold-border);
	border-radius: var(--radius-lg);
}
.removal-card__title {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.75rem;
}
.removal-card p {
	font-size: 0.88rem !important;
	margin-bottom: 1.25rem !important;
}
.removal-card .btn {
	font-size: 0.78rem;
}

/* Responsivo */
@media (max-width: 900px) {
	.privacy-layout {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.privacy-index {
		position: static;
		padding-bottom: 2rem;
		border-bottom: 1px solid var(--border);
	}
}
@media (max-width: 600px) {
	.privacy-hero { padding: 8rem 0 4rem; }
}
