.convenios-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Seção de Filtros e Busca */
.convenios-filter-section {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 35px;
	background: #ffffff;
	padding: 24px;
	border-radius: 20px;
	border: 1px solid #e5e5ea;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.convenios-search-wrapper {
	position: relative;
	width: 100%;
}

.convenios-search-wrapper .search-icon {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: #86868b;
	font-size: 16px;
}

#convenio-search {
	width: 100%;
	height: 48px;
	padding: 10px 20px 10px 48px;
	border-radius: 12px;
	border: 1px solid #d2d2d7;
	font-size: 15px;
	color: #1d1d1f;
	background-color: #f5f5f7;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-sizing: border-box;
}

#convenio-search:focus {
	border-color: #154794;
	background-color: #ffffff;
	box-shadow: 0 0 0 4px rgba(21, 71, 148, 0.15);
	outline: none;
}

/* Filtros de Status */
.convenios-status-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.filter-btn {
	background: #f5f5f7;
	color: #1d1d1f;
	border: 1px solid #e5e5ea;
	padding: 10px 18px;
	border-radius: 30px;
	font-size: 13.5px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	outline: none;
}

.filter-btn:hover {
	background: #e8e8ed;
}

.filter-btn.active {
	background: #154794;
	color: #ffffff;
	border-color: #154794;
	box-shadow: 0 4px 12px rgba(21, 71, 148, 0.2);
}

/* Lista de Cards Vertical e Centralizada */
.convenios-grid {
	display: flex;
	flex-direction: column;
	gap: 25px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

/* Card */
.convenio-card {
	background: #ffffff;
	border-radius: 20px;
	border: 1px solid #e5e5ea;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
	width: 100%;
	box-sizing: border-box;
}

.convenio-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.convenio-card-header {
	margin-bottom: 18px;
}

.convenio-meta {
	margin-bottom: 12px;
}

.convenio-status-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	padding: 5px 12px;
	border-radius: 20px;
}

.status-executado {
	background: rgba(91, 200, 44, 0.1);
	color: #036838;
}

.status-andamento {
	background: rgba(25, 72, 153, 0.1);
	color: #154794;
}

.status-adequacao {
	background: rgba(255, 149, 0, 0.1);
	color: #c97d00;
}

.status-estudos {
	background: rgba(142, 142, 147, 0.1);
	color: #636366;
}

.convenio-title {
	font-size: 18px;
	font-weight: 700;
	color: #1d1d1f;
	margin: 0;
	line-height: 1.4;
	font-family: 'Outfit', sans-serif;
}

.convenio-card-body {
	flex-grow: 1;
	margin-bottom: 20px;
}

.convenio-field {
	margin-bottom: 15px;
}

.convenio-field:last-child {
	margin-bottom: 0;
}

.convenio-field h4 {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #86868b;
	margin: 0 0 6px 0;
	font-weight: 600;
}

.convenio-field-content {
	font-size: 13.5px;
	line-height: 1.55;
	color: #48484a;
}

.convenio-field-content p {
	margin: 0 0 8px 0;
}

.convenio-field-content p:last-child {
	margin: 0;
}

/* Rodapé do Card: Valor e Ação */
.convenio-card-footer {
	border-top: 1px solid #eef1f6;
	padding-top: 16px;
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.convenio-valor-box {
	display: flex;
	flex-direction: column;
}

.valor-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #86868b;
	font-weight: 600;
	margin-bottom: 4px;
}

.valor-amount {
	font-size: 20px;
	font-weight: 700;
	color: #154794;
	font-family: 'Outfit', sans-serif;
	line-height: 1.2;
}

.convenio-action-btn {
	background: #154794;
	color: #ffffff !important;
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s ease;
	box-shadow: 0 4px 10px rgba(21, 71, 148, 0.12);
	white-space: nowrap;
}

.convenio-action-btn:hover {
	background: #0f356e;
	transform: translateY(-1px);
	box-shadow: 0 6px 15px rgba(21, 71, 148, 0.22);
}

.convenio-action-btn i {
	font-size: 11px;
}

.convenio-empty-message {
	grid-column: 1 / -1;
	background: #f5f5f7;
	color: #86868b;
	border: 1px dashed #d2d2d7;
	border-radius: 12px;
	padding: 40px;
	text-align: center;
	font-size: 15px;
}

/* Paginação de Convênios */
.convenios-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 40px;
	width: 100%;
}

.convenios-pagination .page-link {
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #154794;
	background: #ffffff;
	border: 1px solid #d2d2d7;
	text-decoration: none !important;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}

.convenios-pagination .page-link.num {
	width: 40px;
	height: 40px;
	padding: 0;
	justify-content: center;
}

.convenios-pagination .page-link:hover:not(.disabled):not(.active) {
	background: #f5f5f7;
	border-color: #86868b;
}

.convenios-pagination .page-link.active {
	background: #5bc82c; /* Verde cana sólido */
	color: #ffffff !important;
	border-color: #5bc82c;
	box-shadow: 0 4px 10px rgba(91, 200, 44, 0.2);
	cursor: default;
}

.convenios-pagination .page-link.disabled {
	color: #86868b;
	background: #f5f5f7;
	border-color: #e5e5ea;
	cursor: not-allowed;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
	.convenios-grid {
		grid-template-columns: 1fr;
	}

	.convenios-filter-section {
		padding: 16px;
	}

	#convenio-search {
		font-size: 14px;
	}

	.filter-btn {
		font-size: 12.5px;
		padding: 8px 14px;
	}
}
