.hero {
	position: relative;
	display: flex;
	min-height: 100svh;
	align-items: flex-end;
	overflow: hidden;
	background: var(--color-dark);
	color: var(--color-white);
}

.hero__media,
.hero__overlay {
	position: absolute;
	inset: 0;
}

.hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(70%) contrast(1.1) brightness(0.7);
}

.hero__overlay {
	background:
		linear-gradient(
			180deg,
			rgba(8, 8, 8, 0.82) 0,
			rgba(8, 8, 8, 0.58) 5rem,
			rgba(8, 8, 8, 0) 12rem
		),
		linear-gradient(
			0deg,
			rgba(0, 0, 0, 0.88) 0,
			rgba(0, 0, 0, 0.32) 38%,
			rgba(0, 0, 0, 0) 68%
		);
}

.hero__content {
	position: relative;
	z-index: 2;
	padding-top: 10rem;
	padding-bottom: clamp(3rem, 7vh, 6rem);
}

.hero__eyebrow {
	margin-bottom: 1.5rem;
}

.hero__title {
	width: 100%;
	max-width: none;
	margin-left: -0.07em;
	color: var(--color-white);
	text-transform: uppercase;
}

.hero__title span {
	display: block;
}

.hero__title span:last-child {
	margin-left: 0;
	color: rgba(255, 255, 255, 0.08);
	-webkit-text-stroke: clamp(1.5px, 0.15vw, 2.5px) var(--color-white);
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.hero__footer {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: end;
	gap: var(--grid-gap);
	margin-top: clamp(2rem, 6vh, 5rem);
}

.hero__description {
	grid-column: 1 / span 5;
	width: 100%;
	max-width: 42rem;
	font-size: clamp(1rem, 1.15vw, 1.2rem);
	line-height: 1.45;
}

.hero__actions {
	display: flex;
	grid-column: 8 / -1;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 15px;
}


/* Tablet e mobile */
@media (max-width: 959px) {
	.hero__footer {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
	}

	.hero__description,
	.hero__actions {
		width: 100%;
		margin-bottom: 10px;
	}

	.hero__actions {
		justify-content: flex-start;
	}

	
}

/* Solo mobile */
@media (max-width: 767px) {
	.hero {
		min-height: 100svh;
	}

	.hero__content {
		padding-top: 8rem;
		padding-bottom: clamp(4rem, 10vh, 6rem);
	}

	.hero__actions {
	gap: 1rem;
	}

	.hero__title {
		font-size: clamp(2.8rem, 14vw, 5.5rem);
	}

	.hero__title span:last-child {
		margin-top: 0.25rem;
		-webkit-text-stroke-width: 1.5px;
	}

	.hero__actions {
		flex-direction: column;
	}

	.hero__actions .button {
		width: 100%;
	}

	.hero__media {
	background:
		linear-gradient(
			0deg,
			rgba(0, 0, 0, 0.82),
			rgba(0, 0, 0, 0.18)
		),
		url("../../images/courses/schedule/mma-striking-mobile.webp")
		center / cover no-repeat;
	}

	.hero__video {
		display: none;
	}
}

/* Desktop */
@media (min-width: 960px) {
	.hero__title span:last-child {
		white-space: nowrap;
	}
}

.hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.hero__eyebrow::before {
	width: 0.65rem;
	height: 0.65rem;
	background: var(--color-accent);
	border-radius: 0.15rem;
	content: "";
}

.hero__footer {
	padding-top: 1.5rem;
}

.hero__description {
	line-height: 1.4;
}

.hero__video-control {
	position: absolute;
	z-index: 3;
	right: var(--page-gutter);
	bottom: 1.25rem;
	display: inline-flex;
	min-width: 7.5rem;
	min-height: 2.75rem;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 0.65rem;
	background: rgba(10, 10, 10, 0.48);
	color: var(--color-white);
	font-family: inherit;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.hero__video-control[hidden] {
	display: none;
}

.hero__video-control:focus-visible {
	outline: 3px solid var(--color-white);
	outline-offset: 3px;
	box-shadow: 0 0 0 6px var(--color-dark);
}

@media (hover: hover) and (pointer: fine) {
	.hero__video-control:hover {
		border-color: var(--color-white);
		background: var(--color-white);
		color: var(--color-dark);
	}
}

@media (max-width: 767px) {
	.hero__video-control {
		display: none;
	}
}