/* ============ IMPORTS ============ */
@import url(../css/colors.css);
@import url(../css/scrollbar.css);
@import url(../css/general.css);

/* ============ ESTILO GERAL ============ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body,
textarea {
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

img {
	width: 100%;
}

.container {
	overflow: hidden;
	margin-bottom: 20px;
}

/* ============ ESTILO DA LISTA DE EQUIPAMENTOS ============ */
#content-wrap {
	background: radial-gradient(farthest-side at top, #262626, transparent),
		radial-gradient(ellipse at bottom, #000000, transparent);
}

.title-container {
	margin-top: 180px;
	margin-bottom: 60px;
	width: 100vw;
	align-items: center;
	justify-content: center;
}

.title-container h1 {
	position: relative;
	color: white;
	font-family: Barlow;
	font-style: italic;
	font-size: 4vw;
	text-transform: uppercase;
	font-weight: 900;
	cursor: default;
	z-index: 1;
	text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.5);
	text-align: center;
}

.container {
	margin: 0 16px;
}

.c-grid-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.c-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 26px;
	grid-row-gap: 40px;
	justify-content: center;
	align-items: center;
	margin: 0 8vw 60px 8vw;
	overflow-wrap: break-word;
}

.c-unit {
	display: flex;
	transition: 0.6s ease-in-out;
}

.c-unit h1 {
	text-transform: uppercase;
	font-family: Poppins;
	color: white;
	font-size: 23px;
	font-weight: 800;
	line-height: normal;
	transition: 0.2s ease-in-out;
	display: flex;
	word-wrap: break-word;
	word-break: normal;
}

.c-unit img {
	width: 160px;
	height: 160px;
	border-radius: 8px;
	outline: none;
	border: none;
	transition: 0.6s;
	border: 2px solid var(--light-gray);
	box-shadow: 0px 5px 27px -6px rgba(0, 0, 0, 0.85);
}

.c-info {
	display: flex;
	flex-direction: column;
	align-items: start;
	margin-left: 14px;
	overflow-wrap: break-word;
}

.c-info .underline {
	content: "";
	display: block;
	height: 4px;
	width: 36px;
	max-width: 70%;
	background-color: var(--light-blue);
	transition: 0.3s ease-in-out;
}

.c-info p {
	margin-top: 8px;
	color: var(--light-gray);
	font-family: Lato;
	font-size: 14px;
}

.c-image {
	display: flex;
	position: relative;
}

.c-amount {
	position: absolute;
	top: -8px;
	right: -8px;
	font-family: "Archivo Black";
	color: white;
	font-size: 18px;
	background-image: linear-gradient(
		-45deg,
		var(--blue-gradient-left),
		var(--blue-gradient-right)
	);
	padding: 4px 10px;
	border-radius: 8px;
}

@media only screen and (max-width: 1400px) {
	.title-container h1 {
		font-size: 4vw;
	}
	.c-grid {
		grid-template-columns: repeat(2, 1fr);
		margin: 0 22px 35px 22px;
	}
	.c-unit img {
		width: 130px;
		height: 130px;
	}
	.c-info p {
		margin-top: 6px;
		font-size: 12px;
	}
}

@media only screen and (max-width: 992px) {
	.title-container {
		margin-top: 120px;
		margin-bottom: 28px;
	}
	.title-container h1 {
		font-size: 24px;
	}
	.container {
		margin: 0 16px;
	}
	.c-grid {
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 16px;
		margin: 0;
		margin-bottom: 35px;
	}
	.c-unit img {
		width: 80px;
		height: 80px;
	}
	.c-unit h1 {
		font-size: 16px;
	}
	.c-info .underline {
		height: 3px;
		width: 20px;
	}
	.c-amount {
		top: -8px;
		right: -8px;
		font-size: 14px;
		padding: 3px 8px;
		border-radius: 5px;
	}
}
