/* GM Video Creator — Banner de Case (vídeo + wordmark) */

.gmvc.gmvc-case-banner {
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: center;
	width: 100%;
	min-height: 78vh;
	overflow: hidden;
	isolation: isolate;
	background: var(--gmvc-bg);
}

/* --------------------------------------------------------------------------
   Mídia de fundo
   -------------------------------------------------------------------------- */

.gmvc .gmvc-case-banner__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.gmvc .gmvc-case-banner__media video,
.gmvc .gmvc-case-banner__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gmvc .gmvc-case-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(5, 5, 5, 0.2) 0%,
		rgba(5, 5, 5, 0.45) 55%,
		rgba(5, 5, 5, 0.8) 100%
	);
	pointer-events: none;
}

/* --------------------------------------------------------------------------
   Conteúdo
   -------------------------------------------------------------------------- */

.gmvc .gmvc-case-banner__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 28px;
	width: 100%;
	text-align: center;
}

/* --------------------------------------------------------------------------
   Marca d'água tipográfica
   -------------------------------------------------------------------------- */

.gmvc .gmvc-case-banner__wordmark {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.06em 0.12em;
	pointer-events: none;
	user-select: none;
}

.gmvc .gmvc-case-banner__wordmark--top {
	align-items: flex-start;
}

.gmvc .gmvc-case-banner__wordmark--center {
	align-items: center;
}

.gmvc .gmvc-case-banner__wordmark--bottom {
	align-items: flex-end;
}

.gmvc .gmvc-case-banner__wordmark--row {
	flex-direction: row;
}

.gmvc .gmvc-case-banner__wordmark--column {
	flex-direction: column;
	flex-wrap: nowrap;
}

.gmvc .gmvc-case-banner__word {
	display: block;
	color: var(--gmvc-text);
	font-family: var(--gmvc-font-display);
	font-size: clamp(56px, 15vw, 220px);
	font-weight: 700;
	letter-spacing: -0.05em;
	line-height: 0.86;
	text-transform: none;
	-webkit-text-stroke: 0 transparent;
}

.gmvc .gmvc-case-banner__word--solid {
	color: var(--gmvc-text);
	-webkit-text-fill-color: currentColor;
}

.gmvc .gmvc-case-banner__word--outline {
	color: transparent;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 2px rgba(255, 255, 255, 0.72);
}

.gmvc .gmvc-case-banner__word--mix {
	color: var(--gmvc-text);
	-webkit-text-fill-color: currentColor;
	mix-blend-mode: difference;
}

/* --------------------------------------------------------------------------
   Cabeçalho e ações
   -------------------------------------------------------------------------- */

.gmvc .gmvc-case-banner__head {
	position: relative;
	z-index: 2;
	width: 100%;
}

.gmvc .gmvc-case-banner__head .gmvc-head {
	margin-bottom: 0;
	gap: 16px;
}

.gmvc.gmvc-case-banner .gmvc-title {
	font-size: clamp(26px, 3.4vw, 46px);
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1.02;
	text-shadow: 0 10px 40px rgba(5, 5, 5, 0.45);
}

.gmvc.gmvc-case-banner .gmvc-subtitle {
	max-width: 56ch;
	color: rgba(255, 255, 255, 0.74);
}

.gmvc .gmvc-case-banner__actions {
	position: relative;
	z-index: 2;
	justify-content: center;
}

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

@media (max-width: 1024px) {
	.gmvc .gmvc-case-banner__word {
		font-size: clamp(48px, 17vw, 160px);
	}

	.gmvc .gmvc-case-banner__inner {
		gap: 22px;
	}
}

@media (max-width: 767px) {
	.gmvc.gmvc-case-banner {
		min-height: 62vh;
	}

	.gmvc .gmvc-case-banner__wordmark {
		gap: 0.04em 0.1em;
	}

	.gmvc .gmvc-case-banner__word {
		font-size: clamp(38px, 19vw, 108px);
		line-height: 0.9;
	}

	.gmvc .gmvc-case-banner__word--outline {
		-webkit-text-stroke-width: 1.5px;
	}

	.gmvc .gmvc-case-banner__actions {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.gmvc .gmvc-case-banner__actions .gmvc-btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gmvc .gmvc-case-banner__word {
		transition: none !important;
	}
}
