<style> /* ============================================
   CSS COMPARTILHADO - PORTAL FISICA.NET / ENEM
   (Design idêntico ao da UFRGS: 2 colunas, bolinhas coloridas e listras)
   ============================================ */

.enem-wrapper {
 max-width: 1000px;
 margin-left: auto;
 margin-right: auto;
 padding-left: 15px;
 padding-right: 15px;
 padding-top: 30px;
}
.enem-card {
	border-radius: 12px;
	background: #fff;
	padding: 20px;
	border: 6px solid transparent;
	border-image: linear-gradient(90deg, #4285F4, #DB4437, #F4B400, #0F9D58) 1;
	margin-bottom: 30px;
}
.enem-titulo {
	text-align: center;
	background: #4285F4;
	color: white;
	padding: 14px;
	border-radius: 6px;
	margin: 0;
	font-size: 1.5rem;
	font-family: 'Orbitron', sans-serif;
	letter-spacing: 0.05em;
}
.enem-lista {
	list-style: none;
	margin: 0;
	padding: 0;
	column-count: 2;
	column-gap: 40px;
	margin-top: 16px;
}
 @media(max-width:768px) {
.enem-wrapper {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 20px;
}
.enem-card {
	padding: 12px;
}
.enem-lista {
	column-count: 1;
}
}
.enem-item {
	break-inside: avoid;
	margin-bottom: 14px;
	font-size: 1.05rem;
}
.enem-ano-container {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
}
.enem-ano-container::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}
.enem-item:nth-child(4n+1) .enem-ano-container::before {
	background: #4285F4;
}
.enem-item:nth-child(4n+2) .enem-ano-container::before {
	background: #DB4437;
}
.enem-item:nth-child(4n+3) .enem-ano-container::before {
	background: #F4B400;
}
.enem-item:nth-child(4n+4) .enem-ano-container::before {
	background: #0F9D58;
}
/* Cores dos anos por tipo de página */
.enem-ano-link-provas {
	text-decoration: none;
	color: #188038; /* Quantum Green */
	font-weight: 600;
	font-size: 1.1rem;
}
.enem-ano-link-gabaritos {
	text-decoration: none;
	color: #C5221F; /* Quantum Red */
	font-weight: 600;
	font-size: 1.1rem;
}
.enem-ano-link-resolucoes {
	text-decoration: none;
	color: #F29900; /* Quantum Orange */
	font-weight: 600;
	font-size: 1.1rem;
}
.enem-sublista {
	list-style: none;
	margin: 0 0 0 18px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
}
.enem-subitem::after {
	content: "•";
	margin-left: 10px;
	color: #ccc;
}
.enem-subitem:last-child::after {
	content: "";
	margin-left: 0;
}
.enem-link {
	text-decoration: none;
	color: #333;
	font-weight: 400;
	font-size: 0.95rem;
	transition: color .25s, transform .25s;
	display: inline-block;
}
.enem-link:hover {
	color: #4285F4;
	transform: translateX(4px);
}
</style>
