.wfe-tools {
	padding-top: 60px;
	color: #ffffff;
}

.wfe-tools__header {
	text-align: center;
	margin-bottom: 48px;
	padding-left: 15px;
	padding-right: 15px;
}

.wfe-tools-first-row{
	margin-bottom: 16px;
}

.wfe-tools-first-row .wfe-tools__card{
	max-width: 524px;
	width: 100%;
}

.wfe-tools-second-row .wfe-tools__card{
	max-width: 344px;
	width: 100%;
}

.wfe-tools-second-row .wfe-tools__card-second-card{
	margin-right: 16px;
	margin-left: 16px;
}

.wfe-tools-second-row .col{
	padding-left: 5px;
}

.wfe-tools__card-first-card{
	margin-right: 16px;
}

.wfe-tools__title {
	font-size: 32px;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 16px 0;
	line-height: 1.2;
}

.wfe-tools__subtitle {
	font-size: 18px;
	color: #bfbfbf;
	margin: 0 0 32px 0;
	line-height: 1.6;
}

.wfe-tools__tabs {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.wfe-tools__tab {
	background: transparent;
	border: 1px solid #4b5563;
	border-radius: 24px;
	padding: 12px 24px;
	color: #9ca3af;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.wfe-tools__tab:hover {
	border-color: #6b7280;
	color: #ffffff;
}

.wfe-tools__tab--active {
background: #ffffff;
	border-color: #ffffff;
	color: #1f2937;
}

.wfe-tools__grid {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 20px;
}

.wfe-tools__card {
	border: 1px solid #272829;
	background-size: cover;
	background-position: center;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	min-height: 400px;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.wfe-tools__card--large {
	min-height: 395px;
}

.wfe-tools__card--medium {
	min-height: 350px;
}

.wfe-tools__card--sponsored {
	min-height: 400px;
}

/* Removi o gradient temporariamente para demonstração */

.wfe-tools__card-overlay {
	/*background: linear-gradient(
		to bottom,
		transparent 0%,
		transparent 40%,
		rgba(0,0,0,0.6) 55%,
		rgba(0,0,0,0.9) 80%,
		rgba(0,0,0,0.95) 100%
	);*/
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	position: absolute;
}

.wfe-tools__card-content {
	text-align: left;
}

.wfe-tools__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 3px 12px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 16px;
}

.wfe-tools__badge svg{
	width: 15px;
}

.wfe-tools__badge--favorite {
	background: #271f05;
	color: #ffc107;
	border: 1px solid #ffc107;
}

.lucide-heart{
	fill: #ffc107;
}

.wfe-tools__badge--popular {
	background: #092028;
	color: #61d0fa;
	border: 1px solid #61d0fa;
}

.wfe-tools__badge--sponsored {
	background-color: linear-gradient(96.58deg, rgba(80, 68, 93, 0.5) -12.44%, rgba(38, 34, 43, 0.80204) 6.81%, rgba(22, 20, 24, 0.918526) 25.69%, #0B0B0B 44.31%, #111111 67.55%, #1A1A1A 86.14%, #252525 106.46%);
	color: #9ca3af;
	border: 1px solid rgba(156, 163, 175, 0.3);
}

.wfe-tools__badge i {
	width: 12px;
	height: 12px;
}

.wfe-tools__sponsor-info {
	font-size: 0.75rem;
	color: #9ca3af;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.wfe-tools__card-title {
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 8px 0;
	line-height: 1.3;
}

.wfe-tools__card-description {
	font-size: 0.875rem;
	color: #d1d5db;
	margin: 0 0 20px 0;
	line-height: 1.5;
}

.wfe-tools__card-button {
	background: #ffffff;
	border: none;
	border-radius: 8px;
	padding: 8px 16px;
	color: #1f2937;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
}

.wfe-tools__card-button:hover {
	background: #f3f4f6;
}

@media (max-width: 940px) {
	.wfe-tools-first-row,
	.wfe-tools-second-row{
		max-width: 524px;
		margin: 0 auto;
		display: block !important;
	}

	.wfe-tools-first-row .wfe-tools__card,
	.wfe-tools-second-row .wfe-tools__card{
		max-width: 100%;
		margin-bottom: 15px;
	}

	.wfe-tools-second-row .wfe-tools__card-second-card{
		margin-left: 0;
	}
}

@media (max-width: 768px) {
	.wfe-tools {
		padding: 40px 0;
	}
	
	.wfe-tools__title {
		font-size: 30px;
	}
	
	.wfe-tools__subtitle {
		font-size: 1rem;
	}
	
	.wfe-tools__card {
		min-height: 350px;
	}
	
	.wfe-tools__card--large,
	.wfe-tools__card--medium {
		min-height: 350px;
	}
	
	.wfe-tools__preview-window {
		max-width: 250px;
	}
	
	.wfe-tools__phone {
		width: 120px;
		height: 200px;
		padding: 15px;
	}
	
	.wfe-tools__phone-content {
		padding: 15px;
	}
	
	.wfe-tools__crypto-badge {
		font-size: 0.65rem;
		padding: 3px 6px;
	}
	
	.wfe-tools__recovery-text {
		font-size: 0.65rem;
	}
}

@media (max-width: 480px) {
	.wfe-tools__title{
		font-size: 27px;
	}

	.wfe-tools__tabs {
		flex-direction: column;
		align-items: center;
	}
	
	.wfe-tools__tab {
		width: 100%;
		max-width: 300px;
	}
	
	.wfe-tools__card {
		min-height: 300px;
	}
	
	.wfe-tools__card-overlay {
		padding: 20px;
	}
	
	.wfe-tools__preview-window {
		padding: 16px;
		max-width: 200px;
	}
	
	.wfe-tools__card-title {
		font-size: 1.125rem;
	}
}