/* ===== VITRINE DE PRODUTOS (premium) ===== */

/* ---- HERO ---- */
.vit-hero {
	position: relative;
	overflow: hidden;
	border-radius: 28px;
	padding: 56px 48px;
	margin-bottom: 28px;
	color: #fff;
	background:
		radial-gradient(1100px 380px at 12% -10%, rgba(59, 130, 246, 0.40), transparent 60%),
		radial-gradient(900px 480px at 105% 120%, rgba(147, 51, 234, 0.32), transparent 60%),
		linear-gradient(135deg, #07142f 0%, #0b1f4d 55%, #13235e 100%);
	box-shadow: 0 30px 60px rgba(7, 20, 47, 0.35);
}
.vit-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 22px 22px;
	opacity: 0.5;
	pointer-events: none;
}
.vit-eyebrow {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #bcd0ff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	padding: 7px 14px;
	border-radius: 999px;
	margin-bottom: 20px;
}
.vit-eyebrow i { color: #fcd34d; }
.vit-hero-title {
	position: relative;
	font-size: 46px;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.5px;
	margin: 0 0 18px;
	max-width: 840px;
}
.vit-hero-title span {
	background: linear-gradient(90deg, #60a5fa, #a78bfa);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.vit-hero-sub {
	position: relative;
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.82);
	max-width: 700px;
	margin: 0 0 26px;
}
.vit-hero-tags {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.vit-hero-tags span {
	font-size: 13px;
	font-weight: 600;
	color: #e7eeff;
	background: rgba(255, 255, 255, 0.10);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	padding: 8px 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.vit-hero-tags i { color: #7dd3fc; }

/* ---- GRID ---- */
.vit-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 28px;
}

/* ---- CARD ---- */
.vit-card {
	--accent: #2563eb;
	--accent2: #3b82f6;
	--accent-soft: #eff6ff;
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 24px;
	border: 1px solid #eef1f6;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
	text-decoration: none;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vit-card-media {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: var(--accent-soft);
	overflow: hidden;
}
.vit-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}
.vit-card:hover .vit-card-media img { transform: scale(1.04); }

.vit-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 30px;
}
.vit-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.vit-card::after {
	content: "";
	position: absolute;
	top: -40%;
	right: -30%;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--accent2), transparent 65%);
	opacity: 0.10;
	transition: opacity 0.25s ease;
	pointer-events: none;
}
.vit-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 50px rgba(15, 23, 42, 0.14);
}
.vit-card:hover::after { opacity: 0.20; }

.vit-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
}
.vit-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
	flex-shrink: 0;
}
.vit-icon i {
	font-size: 24px;
	color: #fff;
}
.vit-tag {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--accent);
	background: var(--accent-soft);
	padding: 6px 12px;
	border-radius: 999px;
	white-space: nowrap;
}
.vit-card-title {
	font-size: 22px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 10px;
}
.vit-card-desc {
	font-size: 14.5px;
	color: #5b6472;
	line-height: 1.65;
	margin: 0 0 18px;
}
.vit-features {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
}
.vit-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	color: #374151;
	padding: 6px 0;
}
.vit-features i {
	color: var(--accent);
	font-size: 11px;
	background: var(--accent-soft);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.vit-card-foot {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-top: 18px;
	border-top: 1px solid #f1f3f7;
}
.vit-price {
	font-size: 14px;
	font-weight: 800;
	color: #0f172a;
}
.vit-price small {
	display: block;
	font-size: 11px;
	color: #9aa3b2;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
.vit-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 800;
	color: #fff;
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	padding: 11px 18px;
	border-radius: 12px;
	box-shadow: 0 8px 16px rgba(15, 23, 42, 0.18);
	transition: gap 0.2s ease;
	white-space: nowrap;
}
.vit-card:hover .vit-cta { gap: 13px; }

/* ---- VARIANTES DE COR ---- */
.vit-card--blue   { --accent: #2563eb; --accent2: #3b82f6; --accent-soft: #eff6ff; }
.vit-card--violet { --accent: #7c3aed; --accent2: #9333ea; --accent-soft: #f5f0ff; }
.vit-card--pink   { --accent: #db2777; --accent2: #ec4899; --accent-soft: #fdf2f8; }
.vit-card--gold   { --accent: #b45309; --accent2: #d97706; --accent-soft: #fff7ed; }

/* ---- FAIXA DE FECHAMENTO ---- */
.vit-band {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	padding: 38px 44px;
	margin-bottom: 0;
	color: #fff;
	background:
		radial-gradient(700px 300px at 100% -20%, rgba(59, 130, 246, 0.35), transparent 60%),
		linear-gradient(135deg, #07142f, #1e3a8a);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.vit-band-title {
	font-size: 24px;
	font-weight: 800;
	margin: 0 0 6px;
}
.vit-band-sub {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.80);
	margin: 0;
}
.vit-band-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 800;
	color: #07142f;
	background: #fff;
	padding: 14px 26px;
	border-radius: 14px;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease;
	white-space: nowrap;
}
.vit-band-btn:hover {
	transform: translateY(-2px);
	color: #07142f;
}

/* ---- RESPONSIVO ---- */
@media (max-width: 900px) {
	.vit-grid { grid-template-columns: 1fr; }
	.vit-hero { padding: 40px 26px; }
	.vit-hero-title { font-size: 34px; }
	.vit-hero-sub { font-size: 16px; }
	.vit-band { padding: 30px 26px; }
}
