/* ═══════════════════════════════════════════════════════════
   404.css
   Estilos da página 404 (página não encontrada):
   header.
════════════════════════════════════════════════════════════ */

.hero {
	min-height: 100vh;
	background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 55%, #1A1A1A 100%);
	display: flex;
	position: relative;
	overflow: hidden;
	padding: 100px 40px 60px;
}

.hero-bg-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

.hero-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 760px;
}

.hero-title {
	font-size: 62px;
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 22px;
	letter-spacing: -1px;
}

.hero-title .gold-line {
	display: block;
	background: linear-gradient(90deg, var(--gold), #E8C988, var(--gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.btn-hero-primary {
	background: var(--gold);
	color: #fff;
	border: none;
	border-radius: var(--radius);
	padding: 14px 30px;
	font-size: 15px;
	font-weight: 600;
	font-family: 'Inter', sans-serif;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.btn-hero-primary:hover {
	background: var(--gold-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(201,169,110,0.35);
	color: #fff;
}

/* ── ECRÃ CLIENTE ── */
#screen-client {
  flex-direction: column;
  background: var(--bg);
}

/* ── HEADER PÚBLICO ── */
.client-header {
  background: var(--accent);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

/* Linha dourada no fundo do header */
.client-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}

/* Overrides do brand dentro do header público */
.client-header .brand-name    { color: #fff; }
.client-header .brand-icon    { background: var(--gold); }
.client-header .brand-tagline { color: rgba(255, 255, 255, 0.5); }

@media (min-width: 768px) {
  #planiologo {
    width: 15% !important;
  }
}