/* OPTION 1: Light Background (Recommended) */
#por-que-horvert-light {
	background-color: #f8f9fa;
	padding: 80px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

#por-que-horvert-light h2 {
	text-align: center;
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 60px;
	position: relative;
}

#por-que-horvert-light h2::after {
	content: '';
	width: 80px;
	height: 4px;
	background-color: #D12300;
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.feature-category {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-category:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-category h3 {
	color: #D12300;
	font-size: 1.4rem;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.feature-icon {
	margin-right: 12px;
	font-size: 1.5rem;
}

.feature-category ul {
	list-style: none;
}

.feature-category li {
	color: #555;
	margin-bottom: 12px;
	padding-left: 25px;
	position: relative;
	line-height: 1.5;
}

/* .feature-category li::before { */
/* 	content: '✓'; */
/* 	color: #D12300; */
/* 	font-weight: bold; */
/* 	position: absolute; */
/* 	left: 0; */
/* 	top: 0; */
/* } */

/* OPTION 2: Dark Background */
#por-que-horvert-dark {
	background-color: #2c3e50;
	color: white;
	padding: 80px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

#por-que-horvert-dark h2 {
	text-align: center;
	font-size: 2.5rem;
	color: white;
	margin-bottom: 60px;
	position: relative;
}

#por-que-horvert-dark h2::after {
	content: '';
	width: 80px;
	height: 4px;
	background-color: #D12300;
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}

#por-que-horvert-dark .feature-category {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

#por-que-horvert-dark .feature-category:hover {
	background: rgba(255, 255, 255, 0.08);
}

#por-que-horvert-dark .feature-category h3 {
	color: #D12300;
}

#por-que-horvert-dark .feature-category li {
	color: #ecf0f1;
}

#por-que-horvert-dark .feature-category li::before {
	color: #D12300;
}

/* Demo separator */
.demo-separator {
	height: 50px;
	background: #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: #666;
}


@media (width >=1020px) {



	.features-grid {
		grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	}
}
