:root {
	/* Cores principais (layout BR BICHO) */
	--primary: #00597a;
	--primary-dark: #003c57;
	--primary-soft: #006a8f;
	--bg-main: #003047;
	--bg-card: #003a55;
	--accent: #7dfc4f;
	--accent-dark: #46b52a;

	--text-light: #ffffff;
	--text-muted: #b5d0df;
}

/* Reset básico */
* { box-sizing: border-box; }
html, body { height: 100%; }

body {
	margin: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: #083249;
	color: var(--text-light);
}

/* ===== Topbar ===== */
.topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 56px;
	padding: 0 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(90deg, #024c6a, #00628a);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
	z-index: 20;
}

.topbar-left,
.topbar-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo-text {
	font-weight: 800;
	letter-spacing: 0.16em;
	font-size: 0.85rem;
	text-transform: uppercase;
	color: #e7f6ff;
	display:flex;
	align-items:center;
	gap:10px;
}
.logo-dot{
	width:10px;height:10px;border-radius:999px;
	background: var(--accent);
	box-shadow: 0 0 0 6px rgba(125,252,79,.15);
}

/* Botões */
.btn-accent {
	background: var(--accent) !important;
	border: 1px solid var(--accent-dark) !important;
	color: #00331f !important;
	font-weight: 700 !important;
}
.btn-accent:hover {
	background: var(--accent-dark) !important;
	color: #00150c !important;
}

.btn-outline-top {
	border: 1px solid rgba(255,255,255,.35) !important;
	color: #eaf7ff !important;
	background: transparent !important;
	font-weight: 700 !important;
}
.btn-outline-top:hover {
	background: rgba(255,255,255,.10) !important;
	color: #ffffff !important;
}

/* ===== Layout principal ===== */
.main-wrapper {
	min-height: calc(100vh - 50px);
	padding-top: 80px; /* espaço topbar */
	padding-bottom: 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* ===== Card padrão (Hero) ===== */
.card-hero {
	background: radial-gradient(circle at top left, #046a8f 0, #003b55 55%, #002639 100%);
	border-radius: 26px;
	padding: 36px 26px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(7, 214, 255, 0.12);
}

.card-hero-body {
	padding:0.8rem;
	margin: 0 auto;
}

.hero-title {
	font-weight: 900;
	font-size: clamp(1.6rem, 3.0vw, 2.2rem);
	text-transform: uppercase;
	line-height: 1.15;
	letter-spacing: .02em;
	margin: 0;
}
.hero-sub {
	color: var(--text-muted);
	font-size: 1.05rem;
	margin-top: 8px;
}

/* ===== Bootstrap “casado” com BR BICHO ===== */
.text-muted { color: var(--text-muted) !important; }

.form-control, .form-select {
	background: rgba(0, 34, 52, .65) !important;
	color: #eaf7ff !important;
	border: 1px solid rgba(4, 223, 255, 0.18) !important;
	border-radius: 14px !important;
}
.form-control::placeholder { color: rgba(181,208,223,.65) !important; }

.form-control:focus, .form-select:focus {
	border-color: rgba(125, 252, 79, 0.75) !important;
	box-shadow: 0 0 0 0.22rem rgba(125, 252, 79, 0.18) !important;
}

.input-group-text {
	background: rgba(0, 34, 52, .45) !important;
	border: 1px solid rgba(4, 223, 255, 0.12) !important;
	color: rgba(234,247,255,.70) !important;
	border-radius: 14px !important;
}

.btn {
	border-radius: 14px !important;
	font-weight: 800;
}

.btn-primary {
	background: linear-gradient(135deg, #a7ff7c, #7dfc4f) !important;
	border: 1px solid rgba(70,181,42,.9) !important;
	color: #00240f !important;
}
.btn-primary:hover {
	filter: brightness(1.05);
}

.btn-secondary-gold {
	border-radius: 999px !important;
	border: 2px solid rgba(125, 252, 79, 0.9) !important;
	background: #002434 !important;
	color: #eaf7ff !important;
	font-weight: 800 !important;
	letter-spacing: 0.06em;
	padding-inline: 1.6rem;
}
.btn-secondary-gold:hover { background: #023043 !important; color: #fff !important; }

/* ===== Tabela preta (table black) ===== */
.table{
	--bs-table-bg: rgba(0,0,0,.35);
	--bs-table-color: #eaf7ff;
	--bs-table-border-color: rgba(255,255,255,.10);
	--bs-table-striped-bg: rgba(0,0,0,.45);
	--bs-table-striped-color: #eaf7ff;
	--bs-table-hover-bg: rgba(255,255,255,.06);
	--bs-table-hover-color: #ffffff;
	background: rgba(0,0,0,.35) !important;
	border-radius: 16px;
	overflow: hidden;
}
.table thead th{
	background: rgba(0,0,0,.55) !important;
	color: rgba(234,247,255,.90) !important;
	border-bottom-color: rgba(255,255,255,.12) !important;
}
.table td, .table th{ border-top-color: rgba(255,255,255,.08) !important; }
.table a{ color: #a4f2ff; text-decoration: none; }
.table a:hover{ text-decoration: underline; }

/* ===== Footer ===== */
.footer {
	background: linear-gradient(90deg, #024c6a, #00628a);
	padding: 10px 16px 16px;
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-top: auto;
}

/* Ajustes mobile */
@media (max-width: 576px) {
	.card-hero { padding: 26px 18px; border-radius: 22px; }
	.hero-title { font-size: 1.5rem; }
}
