/**
 * Vemax Company - Addon — Widget "Vemax Parts CTA".
 * Reproduz o bloco clicável da Vemax Parts do ContactSection.tsx.
 */

.vemax-parts {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	border-radius: 12px;
	background-color: rgba(255, 194, 0, 0.07);
	border: 2px solid rgba(255, 194, 0, 0.35);
	box-shadow: 0 0 20px rgba(255, 194, 0, 0.08);
	text-decoration: none;
	transition-property: background-color, border-color, box-shadow, color;
	transition-duration: 200ms;
	transition-timing-function: ease;
}

.vemax-parts:hover,
.vemax-parts:focus-visible {
	background-color: rgba(255, 194, 0, 0.13);
	border-color: rgba(255, 194, 0, 0.65);
	box-shadow: 0 0 28px rgba(255, 194, 0, 0.18);
}

/* ---------- Ícone ---------- */

.vemax-parts__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background-color: rgba(255, 194, 0, 0.15);
	border: 1px solid rgba(255, 194, 0, 0.3);
	color: #ffc200;
}

.vemax-parts__icon svg {
	width: 22px;
	height: 22px;
	display: block;
}

.vemax-parts__icon i {
	font-size: 22px;
	line-height: 1;
}

.vemax-parts__icon img {
	width: 22px;
	height: 22px;
	display: block;
}

/* ---------- Textos ---------- */

.vemax-parts__body {
	flex: 1 1 auto;
	min-width: 0;
}

.vemax-parts__title {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	color: #ffffff;
	transition-property: color;
	transition-duration: 200ms;
	transition-timing-function: ease;
}

.vemax-parts:hover .vemax-parts__title,
.vemax-parts:focus-visible .vemax-parts__title {
	color: #ffc200;
}

.vemax-parts__desc {
	display: block;
	margin-top: 2px;
	font-size: 12px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.5);
}

.vemax-parts__highlight {
	font-weight: 600;
	color: #ffc200;
}

/* ---------- Seta ---------- */

.vemax-parts__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: rgba(255, 194, 0, 0.5);
	transition-property: color, transform;
	transition-duration: 200ms;
	transition-timing-function: ease;
}

.vemax-parts:hover .vemax-parts__arrow,
.vemax-parts:focus-visible .vemax-parts__arrow {
	color: #ffc200;
	transform: translateX(4px);
}

.vemax-parts__arrow svg {
	width: 18px;
	height: 18px;
	display: block;
}

.vemax-parts__arrow i {
	font-size: 18px;
	line-height: 1;
}

/* ---------- Responsivo ---------- */

@media (prefers-reduced-motion: reduce) {
	.vemax-parts,
	.vemax-parts__title,
	.vemax-parts__arrow {
		transition: none;
	}

	.vemax-parts:hover .vemax-parts__arrow,
	.vemax-parts:focus-visible .vemax-parts__arrow {
		transform: none;
	}
}
