/**
 * Vemax — Diferenciais widget styles.
 * Every rule is scoped under .vemax-dif-widget so nothing leaks into the
 * rest of the page. Colors/sizes here are the same defaults used by the
 * matching Elementor controls (see class-widget-diferenciais.php); the
 * controls override these via {{WRAPPER}}-scoped inline CSS.
 */

.vemax-dif-widget {
	font-family: "Open Sans", system-ui, -apple-system, sans-serif;
}

.vemax-dif-widget * {
	box-sizing: border-box;
}

/* ---------- Header ---------- */

.vemax-dif-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.vemax-dif-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #FFD301;
	margin-bottom: 0.75rem;
}

.vemax-dif-heading {
	color: #1C325A;
	font-weight: 800;
	font-size: 1.875rem;
	line-height: 1.2;
	margin: 0 0 1rem;
}

.vemax-dif-subheading {
	color: #6B7280;
	font-size: 1rem;
	line-height: 1.625;
	max-width: 36rem;
	margin: 0 auto;
}

/* ---------- Grid ---------- */

.vemax-dif-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

/* ---------- Card ---------- */

.vemax-dif-card {
	background-color: #FFFFFF;
	border: 1px solid #F3F4F6;
	border-radius: 16px;
	padding: 2rem;
	transition-property: box-shadow, transform;
	transition-duration: 300ms;
	transition-timing-function: ease;
}

.vemax-dif-card-head {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	margin-bottom: 1.25rem;
}

.vemax-dif-card-body {
	min-width: 0;
}

/* ---------- Icon badge ---------- */

.vemax-dif-icon-box {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background-color: #1C325A;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vemax-dif-icon-box svg {
	width: 26px;
	height: 26px;
	color: #FFD301;
	display: block;
}

/* ---------- Title / description ---------- */

.vemax-dif-title {
	color: #1C325A;
	font-weight: 800;
	font-size: 1.25rem;
	line-height: 1.2;
	margin: 0 0 0.5rem;
}

.vemax-dif-desc {
	color: #6B7280;
	font-size: 0.875rem;
	line-height: 1.625;
	margin: 0;
}

/* ---------- Points list ---------- */

.vemax-dif-divider {
	border-top: 1px solid #F3F4F6;
	padding-top: 1.25rem;
}

.vemax-dif-points {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
	margin: 0;
	padding: 0;
}

.vemax-dif-point {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: #4B5563;
	line-height: 1.4;
}

.vemax-dif-point-icon {
	flex-shrink: 0;
	color: #1C325A;
	margin-top: 0.125rem;
	line-height: 0;
}

.vemax-dif-point-icon svg {
	width: 15px;
	height: 15px;
	display: block;
}

/* ---------- Responsive (fallback; Elementor responsive controls override columns via inline CSS) ---------- */

@media (max-width: 1024px) {
	.vemax-dif-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.vemax-dif-points {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
