@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", sans-serif;
}

.banner {
	position: relative;
	width: 100%;
	height: 526px;
	overflow: hidden;
	background: #000;
}

.banner-video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
}

.banner-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
	height: 56.25vw;
	min-height: 100%;
	min-width: 177.77vh;
	border: none;
	pointer-events: none;
}

.banner-video-mobile {
	display: none;
}

.banner-video-desktop {
	display: block;
}

.banner-content {
	background-image: url("../img/left-banner.webp");
	background-size: contain;
	background-repeat: no-repeat;
	height: 100%;
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 64px;
}

.banner-text {
	max-width: 500px;
}

.banner-logo {
	display: block;
	margin-bottom: 12px;
}

.banner-title {
	font-size: 32px;
	color: #77154E;
	font-weight: 700;
	margin: 12px 0;
	line-height: 36px;
}

.banner-subtitle {
	font-size: 16px;
	color: #77154E;
	margin-bottom: 40px;
	line-height: 1.5;
}

.banner-buttons {
	display: flex;
	gap: 14px;
}

.btn {
	padding: 12px 24px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.2s;
	border: none;
	cursor: pointer;
}

.btn.primary {
	background: #B12D82;
	color: #FFF;
	border: 1px solid transparent;
}

.btn.primary:hover {
	border: 1px solid #E6AE3B;
	background: linear-gradient(81deg, #77154E 0%, #D9338C 100%);
}

.btn.secondary {
	border: 1px solid #E6AE3B;
	background: rgba(230, 174, 59, 0.04);
	color: #C28E25;
}

.btn.secondary:hover {
	border: 1px solid #F4DBAB;
	background: #E6AE3B;
	color: #FFF;
}

.privacy {
	background: #EFEFEF;
	padding: 16px 24px;
	width: 100%;
}

.privacy-text {
	color: #1E3971;
	font-size: 10px;
	font-weight: 400;
	line-height: normal;
}

.partners {
	background: #FFF;
	padding: 24px 84px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.partner-logo {
	width: 100px;
	height: 72px;
	object-fit: contain;
}

.featured {
	background: linear-gradient(71deg, #77154E 27.27%, #D9338C 99.62%);
	padding: 40px 0;
	position: relative;
}

.featured-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 84px;
}

.featured-header {
	text-align: center;
	margin-bottom: 40px;
}

.featured-title {
	font-size: 32px;
	font-weight: 700;
	color: #FFF;
	margin-bottom: 12px;
	line-height: 1.2;
}

.highlight-text {
	color: #FFC134;
}

.featured-subtitle {
	font-size: 16px;
	color: #FFF;
	line-height: 1.5;
	max-width: 800px;
	margin: 0 auto;
}

.brand-highlight {
	font-weight: 700;
}

.brand-on {
	color: #FFC134;
}

.featured-tabs {
	display: flex;
	justify-content: center;
	gap: 16px;
	width: fit-content;
	margin: 32px auto 0;
	border-radius: 100px;
	background: rgba(57, 5, 34, 0.13);
	padding: 10px 12px;
}

.tab-button {
	background: transparent;
	border: none;
	color: #FFF;
	padding: 12px 28px;
	border-radius: 30px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.435px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s;
}

.tab-button svg {
	color: #FFF;
}

.tab-button.active {
	border-radius: 30px;
	border: 1px solid #FFC134;
	background: linear-gradient(76deg, #77154E -39.24%, #D9338C 99.81%);
	box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}

.tab-button.active svg {
	color: #FFC134;
}

.carousel-wrapper {
	position: relative;
	margin-top: 48px;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

.carousel {
	display: flex;
	gap: 36px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	padding-top: 0;
	padding-right: 32px;
	padding-bottom: 0;
	padding-left: max(84px, calc((100vw - 1400px) / 2 + 84px));
	cursor: grab;
	user-select: none;
}

.carousel::-webkit-scrollbar {
	display: none;
}

.carousel.dragging {
	cursor: grabbing;
	scroll-behavior: auto;
}

.card {
	background: #FFF;
	border-radius: 16px;
	width: 278px;
	height: 372px;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.card-image {
	min-height: 164px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-content {
	display: flex;
	flex-direction: column;
	padding: 14px 16px 0;
	flex: 1;
}

.card-tags {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 8px;
}

.card-tags .tag {
	background: #EBEBEB;
	color: #47494A;
	border-radius: 4px;
	padding: 2px 8px;
	font-size: 12px;
	text-transform: uppercase;
	white-space: nowrap;
}

.card-tags .tag:first-child {
	background: rgba(249, 227, 236, 0.45);
	color: #AD4071;
}

.card-category,
.card-title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #77154E;
	margin-bottom: 8px;
}

.card-subtitle {
	color: #4A5565;
	font-size: 14px;
	line-height: normal;
	margin-bottom: 14px;
}

.card-description {
	overflow: hidden;
	color: #4A5565;
	font-size: 14px;
	line-height: normal;
	height: 52px;
}

.card-link {
	color: #77154E;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: gap 0.3s;
	padding: 20px 16px;
	margin-left: -16px;
	margin-right: -16px;
	border-top: 1px solid #E5E7E8;
	margin-top: auto;
}

.card-link:hover {
	gap: 12px;
}

.schedule-card {
	display: flex;
	flex-direction: column;
	min-width: 278px;
	height: 331px;
}

.schedule-card .card-description {
	height: auto;
	margin-bottom: 14px;
	margin-top: auto;
}

.schedule-date {
	background: linear-gradient(121deg, #FAFAFA 8.6%, #888 329.43%);
	height: 115px;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.date-day {
	font-size: 24px;
	font-weight: 700;
	color: #77154E;
	line-height: 1;
}

.date-month {
	font-size: 24px;
	font-weight: 700;
	color: #77154E;
	text-transform: uppercase;
}

.schedule-card .card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.schedule-card .card-link {
	margin-top: 0;
}

.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	z-index: 10;
	transition: opacity 200ms ease;
}

.carousel-arrow.left {
	left: 0;
}

.carousel-arrow.right {
	right: 0;
}

.journey {
	background: #F8F8F8;
	padding: 40px 0 0;
}

.journey-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 84px;
}

.journey-header {
	text-align: center;
	margin-bottom: 40px;
}

.journey-title {
	font-size: 32px;
	font-weight: 700;
	color: #4A0A46;
	margin-bottom: 12px;
}

.journey-subtitle {
	font-size: 16px;
	color: #3C4242;
	line-height: 1.5;
	margin: 0 auto;
}

.journey-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 48px;
}

.specialty-tab {
	background: none;
	border: none;
	color: #4A0A46;
	padding: 10px 20px 10px 10px;
	border-radius: 30px;
	font-size: 18px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s;
}

.specialty-tab:hover {
	border-color: #77154E;
	color: #77154E;
}

.specialty-tab.active {
	background: #B12D82;
	color: #FFF;
}

.specialty-number {
	background: #F9A109;
	color: #FFF;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.specialty-title {
	font-size: 24px;
	font-weight: 700;
	color: #77154E;
	text-align: center;
	margin-bottom: 32px;
}

.specialty-carousel-wrapper {
	position: relative;
}

.specialty-carousel {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	padding-top: 0;
	padding-right: 32px;
	padding-bottom: 40px;
	padding-left: max(84px, calc((100vw - 1400px) / 2 + 84px));
	cursor: grab;
	user-select: none;
}

.specialty-carousel .card {
	height: 394px;
}

.specialty-carousel::-webkit-scrollbar {
	display: none;
}

.specialty-carousel.dragging {
	cursor: grabbing;
	scroll-behavior: auto;
}

.video-section {
	background: linear-gradient(81deg, #77154E 0%, #D9338C 100%);
	padding: 40px 0 56px;
	color: #FFF;
}

.video-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 84px;
}

.video-header {
	text-align: center;
	margin-bottom: 24px;
}

.video-title {
	font-size: 32px;
	font-weight: 700;
	color: #FFF;
	margin-bottom: 12px;
	line-height: 40px;
}

.video-title span {
	color: #E6AE3B;
}

.video-subtitle {
	font-size: 16px;
	color: #FFF;
	line-height: 1.6;
	max-width: 900px;
	margin: 0 auto;
}

.highlight-immersive {
	font-weight: 700;
	color: #FFF;
}

.video-player {
	position: relative;
	margin: 0 auto;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	padding-bottom: 56.25%;
	height: 0;
}

.video-player #vimeo-player {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: transparent;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}

.play-button:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.video-player.playing .play-button {
	opacity: 0;
	pointer-events: none;
}

.benefits {
	background: #F8F8F8;
	padding: 40px 0;
}

.benefits-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 84px;
}

.benefits-header {
	text-align: center;
	margin-bottom: 24px;
}

.benefits-title {
	font-size: 32px;
	font-weight: 700;
	color: #4A0A46;
	margin-bottom: 16px;
}

.benefits-subtitle {
	font-size: 16px;
	color: #666;
	line-height: 1.5;
	max-width: 600px;
	margin: 0 auto;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(274px, 1fr));
	gap: 40px;
	margin-bottom: 24px;
}

.benefit-card {
	border-radius: 16px;
	background: #FFF;
	box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.20);
	overflow: hidden;
}

.benefit-card img {
	width: 100%;
}

.benefit-content {
	padding: 24px;
}

.benefit-title {
	font-size: 24px;
	font-weight: 700;
	color: #4A0A46;
	margin-bottom: 16px;
}

.benefit-description {
	font-size: 16px;
	color: #424647;
	line-height: 1.5;
}

.benefits-cta {
	text-align: center;
}

.cta-button {
	background: #FFC134;
	color: #77154E;
	padding: 16px 48px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 24px;
}

.cta-subtitle {
	font-size: 18px;
	color: #4A5565;
	line-height: 1.5;
}

.schedule-empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 40px;
	text-align: center;
	width: 100%;
	min-height: 300px;
}

.schedule-empty-state svg {
	color: #FFF;
	opacity: 0.3;
	margin-bottom: 24px;
}

.empty-message {
	color: #FFF;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}

.empty-submessage {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.5;
	max-width: 400px;
}

@media (max-width: 1180px) {
	.partners {
		padding: 24px;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.banner {
		height: 380px;
	}

	.banner-video-mobile {
		display: block;
	}

	.banner-video-desktop {
		display: none;
	}

	.banner-content {
		background-image: url("../img/left-banner-mobile.webp");
		padding: 24px 24px 16px;
		background-size: contain;
		background-position: left bottom;
		justify-content: flex-end;
	}

	.banner-text {
		max-width: 245px;
	}

	.btn {
		font-size: 11px;
		padding: 8px 16px;
	}

	.banner-logo {
		width: 120px;
		margin-bottom: 8px;
	}

	.banner-title {
		font-size: 22px;
		line-height: 25px;
	}

	.banner-subtitle {
		font-size: 11px;
		margin-bottom: 16px;
	}

	.banner-buttons {
		gap: 10px;
	}

	.featured,
	.journey,
	.video-section,
	.benefits {
		padding: 32px 0;
	}

	.featured-container,
	.journey-container,
	.video-container,
	.benefits-container {
		padding: 0 16px;
	}

	.featured-title,
	.journey-title,
	.video-title,
	.benefits-title {
		font-size: 24px;
		text-align: left;
		margin-bottom: 20px;
	}

	.featured-subtitle,
	.journey-subtitle,
	.specialty-title,
	.video-subtitle,
	.benefits-subtitle {
		text-align: left;
	}

	.specialty-title {
		padding-left: 16px;
	}

	.journey {
		padding-bottom: 0 !important;
	}

	.carousel-wrapper {
		margin-top: 24px;
	}

	.carousel-arrow {
		display: none;
	}

	.carousel {
		gap: 16px;
	}

	.specialty-tab {
		font-size: 14px;
		padding: 8px 16px 8px 8px;
	}

	.play-button img {
		width: 72px;
	}

	.benefits-grid {
		margin-bottom: 24px;
		grid-template-columns: 1fr;
	}

	.specialty-carousel,
	.carousel {
		padding-left: 16px;
	}

	.schedule-empty-state {
		padding: 40px 20px;
		min-height: 250px;
	}

	.schedule-empty-state svg {
		width: 40px;
		height: 40px;
	}

	.empty-message {
		font-size: 16px;
	}

	.empty-submessage {
		font-size: 13px;
	}
}