/**
 * Vemax Company - Addon
 * Estilos base dos widgets. Todos os valores visuais são sobrescritos
 * pelos controles do Elementor (defaults idênticos ao site original).
 */

.vemax-widget {
	width: 100%;
}

/* ---------- Cabeçalho ---------- */

.vemax-section__header {
	text-align: center;
	margin-bottom: 56px;
}

.vemax-section__eyebrow {
	display: block;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.7px;
	color: #ffc200;
	line-height: 1.4;
}

.vemax-section__title {
	margin: 16px 0 0;
	font-family: "Open Sans", sans-serif;
	font-weight: 800;
	font-size: 36px;
	line-height: 1.2;
	color: #ffffff;
}

/* ---------- Grade ---------- */

.vemax-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 24px;
	row-gap: 24px;
	align-items: stretch;
}

/* ---------- Card de diferencial ---------- */

.vemax-card {
	display: block;
	background-color: #0f1b2d;
	padding: 24px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition-property: background-color, border-color, box-shadow, color, transform;
	transition-duration: 300ms;
	transition-timing-function: ease;
	height: 100%;
}

.vemax-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background-color: rgba(255, 194, 0, 0.1);
	color: #ffc200;
	margin-bottom: 16px;
	transition-property: background-color, border-color, color;
	transition-duration: 300ms;
	transition-timing-function: ease;
}

.vemax-card:hover .vemax-card__icon {
	background-color: rgba(255, 194, 0, 0.2);
}

.vemax-card:hover {
	border-color: rgba(255, 194, 0, 0.3);
}

.vemax-card__icon svg {
	width: 24px;
	height: 24px;
	display: block;
}

.vemax-card__icon i {
	font-size: 24px;
	line-height: 1;
}

.vemax-card__icon img {
	width: 24px;
	height: 24px;
	display: block;
}

.vemax-card__title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	color: #ffffff;
}

.vemax-card__description {
	margin: 0;
	font-size: 14px;
	line-height: 1.625;
	color: rgba(255, 255, 255, 0.5);
}

/* ---------- Card de depoimento ---------- */

.vemax-testimonial {
	display: flex;
	flex-direction: column;
	height: 100%;
	background-color: #0f1b2d;
	padding: 24px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition-property: background-color, border-color, box-shadow, color;
	transition-duration: 300ms;
	transition-timing-function: ease;
}

.vemax-testimonial__mark {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 36px;
	line-height: 1;
	color: #ffc200;
	margin-bottom: 16px;
}

.vemax-testimonial__quote {
	margin: 0;
	flex: 1 1 auto;
	font-size: 14px;
	font-style: italic;
	line-height: 1.625;
	color: rgba(255, 255, 255, 0.7);
}

.vemax-testimonial__author {
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vemax-testimonial__name {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	color: #ffffff;
}

.vemax-testimonial__meta {
	margin: 2px 0 0;
	font-size: 12px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.4);
}

/* ---------- Breadcrumb ---------- */

.vemax-breadcrumb {
	margin: 0;
	padding: 0;
}

.vemax-breadcrumb__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	line-height: 20px;
}

.vemax-breadcrumb__list > li {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline-flex;
	align-items: center;
}

.vemax-breadcrumb__link {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition-property: color;
	transition-duration: 200ms;
	transition-timing-function: ease;
}

.vemax-breadcrumb__link:hover,
.vemax-breadcrumb__link:focus {
	color: #ffc200;
}

.vemax-breadcrumb__current {
	color: rgba(255, 255, 255, 0.8);
}

.vemax-breadcrumb__separator {
	color: rgba(255, 255, 255, 0.5);
	flex: 0 0 auto;
}

.vemax-breadcrumb__separator svg {
	width: 12px;
	height: 12px;
	display: block;
}

.vemax-breadcrumb__separator i {
	font-size: 12px;
	line-height: 1;
}

/* ---------- Responsivo (fallback sem controles do Elementor) ---------- */

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

	.vemax-section__title {
		font-size: 30px;
	}
}

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

	.vemax-section__title {
		font-size: 24px;
	}
}
