/* SCRIPT CHAT GPT GERADO PELA LENI 2026-02-24 */

:root {
	--bg: #ffffff;
	--text: #1a1a1a;
	--muted: #dfdfdf;
	--border: #e6e6e6;
	--card: #fafafa;
	--focus: #0b5fff;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
	background-color: #000;
}

* {
  box-sizing: border-box;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	background-image: url(../images/img-home.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
  opacity: 0.4;
  z-index: -1;
}

.container {
  position: relative; 
	height: 100vh;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 15px 0;
}

.content {
  position: relative; 
  z-index: 1;
}


.wrap {
	max-width: 980px;
	margin: 0 auto;
	padding: 28px 16px 48px
}

.lead {
	margin: 0 0 16px;
	color: var(--muted);
	max-width: 80ch
}

.search {
	width: 100%;
	padding: 12px 12px;
	border: 1px solid var(--border);
	border-radius: 12px;
	font-size: 14px;
}

.note {
	margin: 10px 0 18px;
	color: var(--muted);
	font-size: 13px
}

.accordion {
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	background: #fff
}

details {
	border-top: 1px solid var(--border)
}

details:first-child {
	border-top: 0
}

summary {
	list-style: none;
	cursor: pointer;
	padding: 14px 14px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-weight: 700
}

summary::-webkit-details-marker {
	display: none
}

summary:focus {
	outline: 2px solid var(--focus);
	outline-offset: 2px;
	border-radius: 10px
}

.chev {
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
	transform: rotate(0deg);
	transition: transform .15s ease
}

details[open] .chev {
	transform: rotate(180deg)
}

.content {
	padding: 0 14px 14px;
	background: var(--card);
	border-top: 1px solid var(--border)
}

.grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	padding-top: 12px
}

@media (min-width:720px) {
	.grid {
		grid-template-columns: 1fr 1fr
	}
}

.card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 12px
}

.title {
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 800
}

.meta {
	margin: 0;
	font-size: 14px;
	color: var(--muted)
}

.meta a {
	color: var(--text);
	text-decoration: underline;
	text-underline-offset: 2px
}

.pill {
	display: inline-block;
	margin-top: 10px;
	font-size: 12px;
	color: var(--muted);
	border: 1px solid var(--border);
	padding: 4px 8px;
	border-radius: 999px;
	background: #fff
}

.hidden {
	display: none !important
}

/* FIM DO SCRIPT CHAT GPT GERADO PELA LENI 2026-02-24 */