* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #ffffff, #eaebee);
	color: #333;
	margin: 0;
	padding-block: 20px 80px;
}

body.is-loading {
	overflow: hidden;
}

.container {
	max-width: 1600px;
	margin: 40px auto;
	padding: 0 20px;
	overflow-x: clip;
	width: 100%;
}

.main-title {
	text-align: center;
	margin-bottom: 30px;
	font-size: 24px;
	color: #606060;
}

.logo-container {
	display: flex;
	justify-content: center;
	margin-block: 0 40px;
}

.logo {
	width: 150px;
	height: auto;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.1);
}

.search-container {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.search-container input {
	width: 100%;
	max-width: 550px;
	padding: 12px 20px;
	border-radius: 8px;
	border: 2px solid #ccc;
	font-size: 16px;
	background-color: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: border-color 0.3s ease;
}

.search-input-control {
	position: relative;
	max-width: 550px;
	width: 100%;
}

.search-input-button {
	color: #69b86c;
	position: absolute;
	width: 20px;
	right: 16px;
	top: 50%;
	background: transparent;
	border: none;
	transform: translateY(-50%);
	cursor: pointer;
}

.search-container input:focus {
	border-color: #65b765;
}

.cards-container {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}

@media (min-width: 768px) {
	.cards-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.cards-container {
		grid-template-columns: repeat(4, 1fr);
	}
}

.card {
	background-color: #fff;
	border-radius: 15px;
	padding: 25px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	border: 1px solid #fff;
}

.card:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	border-color: #65b765;
}

.card h3 {
	font-size: 20px;
	color: #65b765;
	margin-bottom: 10px;
}

.card p {
	font-size: 14px;
	color: #555;
	margin: 6px 0;
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 70px 0;
	gap: 15px;
}

.pagination button {
	padding: 10px 20px;
	border: none;
	border-radius: 50px;
	background-color: #65b765;
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.pagination button:hover {
	background-color: #427742;
	transform: scale(1.05);
}

#page-info {
	font-weight: bold;
	font-size: 16px;
}

.loading {
	text-align: center;
	font-size: 18px;
	color: #65b765;
	font-weight: bold;
	position: fixed;
	left: 0;
	background: #ffffff75;
	backdrop-filter: blur(10px);
	width: 100%;
	height: 100vh;
	top: 0;
	display: flex;
	align-items: center;
	flex-direction: column;
	margin: 0;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	z-index: -2;
	transition: 0.4s;
}

.loading--is-active {
	opacity: 1;
	visibility: visible;
	z-index: 999;
}

.spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #65b765;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 10px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Outros estilos do CSS permanecem os mesmos... */

/* Novo título para mostrar a página atual e a quantidade exibida */
.page-info-text {
	text-align: center;
	margin-bottom: 20px;
	font-size: 16px;
	color: #606060;
	font-weight: normal;
	padding-block: 20px 40px;
}

/* Outros estilos permanecem... */

.filters {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 15px;
}

select {
	padding: 10px 15px;
	border-radius: 8px;
	border: 1px solid #ccc;
	font-size: 16px;
	width: 100%;
}

@media (min-width: 768px) {
	select {
		width: calc(100% / 3 - 20px);
	}
}

@media (min-width: 1024px) {
	select {
		width: calc(100% / 4 - 20px);
	}
}

@media (min-width: 1200px) {
	select {
		width: calc(100% / 5 - 20px);
	}
}

select:disabled {
	background-color: #f0f0f0;
	color: #ccc;
}

.copyright {
	text-align: center;
	display: block;
	font-size: 16px;
	padding-top: 50px;
	padding-inline: 20px;
}

.notfound {
	text-align: center;
	display: block;
	width: 100%;
	grid-column: 1 / -1;
	font-size: 16px;
	font-weight: 700;
}

#reset-filters-btn {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 1000;
	background-color: #65b765;
	color: #fff;
	border: none;
	border-radius: 90px;
	padding-inline: 30px;
	width: auto;
	height: 50px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s;
	opacity: 0;
	visibility: hidden;
	z-index: -2;
}

#reset-filters-btn.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 6;
}

#reset-filters-btn:hover {
	background-color: #65b765;
}

#search-form {
	width: 100%;
	display: flex;
	justify-content: center;
}

.search-form-area {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.button-back {
	padding: 10px 20px;
	border: none;
	border-radius: 50px;
	background-color: #606060;
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.3s ease, transform 0.3s ease;
	margin-inline: auto;
	display: flex;
	justify-content: center;
	width: 230px;
}
