:root {
	--main-color: rgb(17, 17, 17);
	--secondary-color: #b71f1f;
	--gold-color: #d43737;
	--text-white: #fff;
	--main-color-transparent: #00000021;
	--color-content-background: rgba(62, 40, 40, 0.23921568627450981);
	--color-charcoal: #141416;
	--color-charcoal-dark: #0c0c0c;
	--primary-color: #3182ce;
	--warning-color: #b7791f;
	--red-glow: rgba(183, 31, 31, 0.55);
	--red-border: rgba(183, 31, 31, 0.55);
}

/* ===============================
   BASE / UTILIDADES
================================ */

.text-primary {
	color: var(--primary-color) !important;
}

.text-warning {
	color: var(--warning-color) !important;
}

.text-muted {
	color: rgba(255, 255, 255, 0.75) !important;
}

.text-glow {
	text-shadow:
		0 0 8px rgba(251, 70, 1, 0.75),
		0 0 18px rgba(183, 31, 31, 0.65);
}

.btn-primary {
	background-color: var(--primary-color) !important;
	border-color: var(--primary-color) !important;
	color: #fff !important;
}

.btn-warning,
.bg-warning {
	background-color: var(--warning-color) !important;
	border-color: var(--warning-color) !important;
	color: #fff !important;
}

.bg-dark,
.btn-dark {
	background-color: var(--main-color) !important;
}

.bg-danger,
.btn-danger {
	background-color: var(--secondary-color) !important;
}

.bg-opacity {
	background:
		linear-gradient(
			180deg,
			var(--color-content-background) 350px,
			transparent 800px
		);
}

.decorator {
	width: 100%;
	height: 1px;
	box-shadow: 0 3px 8px #000;
	background:
		radial-gradient(
			circle,
			var(--secondary-color) 0,
			transparent 98%
		);
}

.icon-shadow {
	filter:
		drop-shadow(
			0 0 4px rgba(0, 0, 0, 0.6)
		);
}

/* ===============================
   HERO / VÍDEO
================================ */

.home-hero {
	position: relative;
	padding-top: 48px;
}

.hero-video-wrapper {
	position: relative;
	width: 100%;
	max-width: 1280px;
	aspect-ratio: 16 / 9;
	margin: 0 auto 78px;
	border-radius: 12px;
	overflow: visible;
	border: 1px solid rgba(183, 31, 31, 0.75);
	box-shadow:
		0 18px 45px rgba(0, 0, 0, 0.55),
		0 0 28px rgba(183, 31, 31, 0.22);
	background:
		#050505 url("/img/logo.webp") center / contain no-repeat;
}

.hero-video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: 12px;
	border: none;
	background: transparent;
	opacity: 0;
	transition: opacity 0.32s ease;
}

.hero-video.is-ready,
.hero-video-noscript {
	opacity: 1;
}

.hero-video-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: 12px;
	background:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.04),
			rgba(0, 0, 0, 0.30)
		),
		radial-gradient(
			circle at center,
			transparent 45%,
			rgba(0, 0, 0, 0.35) 100%
		);
}

.hero-button-area {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -32px;
	display: flex;
	justify-content: center;
	z-index: 20;
	pointer-events: none;
}

.modern-play-button,
.play-now-button {
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 230px;
	min-height: 58px;
	padding: 0 34px;
	border-radius: 999px;
	background:
		linear-gradient(
			180deg,
			#d43737,
			#8f1515
		);
	color: #fff !important;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0.5px;
	text-decoration: none;
	border: 1px solid rgba(255, 110, 110, 0.75);
	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.45),
		0 0 22px rgba(183, 31, 31, 0.45);
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease,
		filter 0.22s ease;
}

.modern-play-button:hover,
.play-now-button:hover {
	transform: translateY(-3px) scale(1.03);
	filter: brightness(1.08);
	box-shadow:
		0 15px 30px rgba(0, 0, 0, 0.55),
		0 0 30px rgba(183, 31, 31, 0.55);
}

.hero-title {
	font-weight: 900;
	letter-spacing: 0.4px;
	color: #fff;
	text-shadow:
		0 0 8px rgba(251, 70, 1, 0.85),
		0 0 18px rgba(183, 31, 31, 0.65);
}

.hero-description {
	max-width: 900px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.86);
	line-height: 1.65;
}

/* ===============================
   RANKINGS
================================ */

.ranking-section-modern {
	margin-top: 10px;
}

.ranking-card-modern {
	padding: 22px;
	border-radius: 18px;
	background:
		linear-gradient(
			180deg,
			rgba(24, 17, 17, 0.96),
			rgba(8, 8, 8, 0.96)
		);
	border: 1px solid rgba(183, 31, 31, 0.24);
	box-shadow:
		0 12px 32px rgba(0, 0, 0, 0.42),
		0 0 18px rgba(183, 31, 31, 0.09),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ranking-tab-content {
	min-width: 340px;
}

.ranking-card-modern .page-title {
	font-size: 24px;
	font-weight: 900;
	margin-bottom: 10px;
	text-shadow:
		0 0 12px rgba(251, 70, 1, 0.38);
}

.ranking-info {
	padding: 10px 0;
	border-bottom:
		1px solid rgba(183, 31, 31, 0.22);
}

.ranking-info .bi-gift-fill {
	color: #d43737;
	cursor: pointer;
	font-size: 20px;
	filter:
		drop-shadow(
			0 0 8px rgba(212, 55, 55, 0.45)
		);
	transition:
		transform 0.2s ease,
		filter 0.2s ease;
}

.ranking-info .bi-gift-fill:hover {
	transform: scale(1.14);
	filter:
		drop-shadow(
			0 0 12px rgba(212, 55, 55, 0.75)
		);
}

.ranking-content {
	margin-top: 14px;
}

.ranking-content-header {
	padding: 10px 14px;
	border-radius: 10px;
	background: rgba(183, 31, 31, 0.18);
	color: #ffb3b3;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ranking-content ul {
	list-style: none;
	padding: 0;
	margin: 8px 0 0;
}

.ranking-content li {
	align-items: center;
	padding: 10px 14px;
	margin-bottom: 6px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.035);
	border:
		1px solid rgba(255, 255, 255, 0.045);
	color: rgba(255, 255, 255, 0.88);
	transition:
		transform 0.2s ease,
		background 0.2s ease,
		border-color 0.2s ease;
}

.ranking-content li:hover {
	transform: translateX(3px);
	background: rgba(183, 31, 31, 0.12);
	border-color: rgba(183, 31, 31, 0.40);
}

.ranking-content li span:first-child {
	color: #ff9a9a;
	font-weight: 900;
}

.ranking-content li:nth-child(1) span:first-child {
	color: #ffd35a;
}

.ranking-content li:nth-child(2) span:first-child {
	color: #d8d8d8;
}

.ranking-content li:nth-child(3) span:first-child {
	color: #d08b45;
}

.ranking-empty span {
	color:
		rgba(255, 255, 255, 0.75) !important;
	font-weight: 600 !important;
}

.ranking-nav {
	padding: 10px;
	border-radius: 16px;
	background: rgba(0, 0, 0, 0.22);
	border:
		1px solid rgba(183, 31, 31, 0.18);
}

.ranking-nav .btn {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	margin-bottom: 8px;
	border:
		1px solid rgba(255, 255, 255, 0.08);
	box-shadow:
		0 6px 15px rgba(0, 0, 0, 0.3);
	transition:
		transform 0.2s ease,
		filter 0.2s ease,
		box-shadow 0.2s ease;
}

.ranking-nav .btn:hover,
.ranking-nav .btn.active {
	transform: translateY(-2px);
	filter: brightness(1.12);
	box-shadow:
		0 0 16px rgba(183, 31, 31, 0.35);
}

.ranking-btn-primary {
	border:
		1px solid rgba(183, 31, 31, 0.38);
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	border-radius: 999px;
	padding: 6px 14px;
	font-weight: 800;
	transition: all 0.2s ease;
}

.ranking-btn-primary:hover,
.ranking-btn-primary.active {
	background:
		linear-gradient(
			180deg,
			#d43737,
			#8f1515
		);
	color: #fff;
	box-shadow:
		0 0 14px rgba(183, 31, 31, 0.35);
}

/* ===============================
   DESTAQUES DA LOJA
================================ */

.shop-highlight-section {
	position: relative;
	z-index: 20;
	overflow: visible !important;
	padding-bottom: 80px;
}

.shop-highlight-section-header {
	margin-bottom: 24px;
}

.shop-highlight-section-subtitle {
	max-width: 700px;
	margin: 0 auto 28px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
	line-height: 1.6;
	font-weight: 600;
}

.shop-container-limit {
	position: relative;
	width: 100%;
	max-width: 1260px !important;
	margin: 0 auto;
	padding:
		0 46px 70px !important;
	box-sizing: border-box;
	overflow: visible !important;
}

.shop-swiper {
	position: relative;
	width: 100%;
	overflow: hidden !important;
	padding:
		10px 0 80px !important;
	box-sizing: border-box;
}

.shop-swiper .swiper-wrapper {
	align-items: stretch !important;
	box-sizing: border-box;
}

.shop-swiper .swiper-slide {
	height: auto !important;
	display: flex !important;
	align-items: stretch !important;
	box-sizing: border-box;
}

/* ===============================
   CARD DO ITEM
================================ */

.shop-feature-card {
	position: relative;
	width: 100%;
	min-height: 500px !important;
	height: auto !important;
	display: flex;
	flex-direction: column;
	overflow: hidden !important;
	border-radius: 18px;
	background:
		linear-gradient(
			180deg,
			rgba(18, 18, 18, 0.94),
			rgba(5, 5, 5, 0.98)
		);
	border:
		1px solid rgba(183, 31, 31, 0.28);
	box-shadow:
		0 16px 34px rgba(0, 0, 0, 0.42),
		0 0 20px rgba(183, 31, 31, 0.10),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition:
		transform 0.22s ease,
		border-color 0.22s ease,
		box-shadow 0.22s ease;
}

.shop-feature-card::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(
			circle at top left,
			rgba(183, 31, 31, 0.18),
			transparent 42%
		),
		radial-gradient(
			circle at bottom right,
			rgba(49, 130, 206, 0.08),
			transparent 35%
		);
	z-index: 1;
}

.shop-feature-card > * {
	position: relative;
	z-index: 2;
}

.shop-feature-card:hover {
	transform: translateY(-4px);
	border-color: rgba(212, 55, 55, 0.42);
	box-shadow:
		0 20px 42px rgba(0, 0, 0, 0.52),
		0 0 28px rgba(183, 31, 31, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ===============================
   RIBBONS / TAGS
================================ */

.shop-feature-badges,
.shop-feature-main-badge,
.shop-feature-badge,
.shop-feature-promo-pill {
	display: none !important;
}

.shop-feature-ribbons {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	width: 120px;
	height: 120px;
	pointer-events: none;
	overflow: visible;
}

.shop-feature-ribbon {
	position: absolute;
	top: 20px;
	left: -36px;
	width: 150px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	transform: rotate(-45deg);
	color: #fff;
	font-size: 11px;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.35px;
	text-shadow:
		0 2px 4px rgba(0, 0, 0, 0.55);
	box-shadow:
		0 8px 18px rgba(0, 0, 0, 0.38),
		inset 0 1px 0 rgba(255, 255, 255, 0.22);
	overflow: hidden;
	animation:
		shopRibbonEntrance 0.45s ease both;
	isolation: isolate;
}

.shop-feature-ribbon i {
	position: relative;
	z-index: 2;
	font-size: 11px;
	filter:
		drop-shadow(
			0 1px 2px rgba(0, 0, 0, 0.45)
		);
}

.shop-feature-ribbon::before {
	content: "";
	position: absolute;
	top: -45%;
	left: -70%;
	z-index: 1;
	width: 42px;
	height: 190%;
	border: 0;
	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(255, 255, 255, 0.12),
			rgba(255, 255, 255, 0.65),
			rgba(255, 255, 255, 0.12),
			transparent
		);
	transform: rotate(18deg);
	filter: blur(0.2px);
	animation:
		shopLightSweep 3.2s ease-in-out infinite;
}

.shop-feature-ribbon::after {
	content: "";
	position: absolute;
	bottom: -7px;
	right: 0;
	z-index: 1;
	border-style: solid;
	border-width: 7px 0 0 7px;
	filter: brightness(0.72);
}

.shop-feature-ribbon.new {
	background:
		linear-gradient(
			180deg,
			#4da3ff,
			#1764b2
		) !important;
	color: #fff !important;
}

.shop-feature-ribbon.new::after {
	border-color:
		#0d477d transparent transparent transparent !important;
}

.shop-feature-ribbon.bigsale {
	background:
		linear-gradient(
			180deg,
			#31d463,
			#118531
		) !important;
	color: #fff !important;
	box-shadow:
		0 8px 18px rgba(0, 0, 0, 0.38),
		0 0 16px rgba(49, 212, 99, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

.shop-feature-ribbon.bigsale::after {
	border-color:
		#0b6425 transparent transparent transparent !important;
}

.shop-feature-ribbon.promo {
	background:
		linear-gradient(
			180deg,
			#ff3030,
			#b40000
		) !important;
	color: #fff !important;
	box-shadow:
		0 8px 18px rgba(0, 0, 0, 0.38),
		0 0 16px rgba(255, 0, 0, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

.shop-feature-ribbon.promo::after {
	border-color:
		#7a0000 transparent transparent transparent !important;
}

/* ===============================
   ÁREA DO ÍCONE
================================ */

.shop-feature-icon-area {
	min-height: 162px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	padding:
		54px 18px 20px !important;
	background:
		radial-gradient(
			circle at center,
			rgba(183, 31, 31, 0.20),
			transparent 60%
		),
		linear-gradient(
			180deg,
			rgba(183, 31, 31, 0.12),
			rgba(0, 0, 0, 0.20)
		);
	border-bottom:
		1px solid rgba(255, 255, 255, 0.065);
}

.shop-feature-icon-box {
	width: 118px !important;
	height: 118px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 24px;
	background: rgba(0, 0, 0, 0.30);
	border:
		1px solid rgba(183, 31, 31, 0.32);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		0 12px 24px rgba(0, 0, 0, 0.36),
		0 0 22px rgba(183, 31, 31, 0.15);
}

.shop-feature-icon {
	max-width: 96px !important;
	max-height: 96px !important;
	object-fit: contain;
	filter:
		drop-shadow(
			0 8px 8px rgba(0, 0, 0, 0.72)
		)
		drop-shadow(
			0 0 14px rgba(183, 31, 31, 0.26)
		);
	transform: scale(1.24) !important;
	transition:
		transform 0.22s ease,
		filter 0.22s ease;
}

.shop-feature-card:hover .shop-feature-icon {
	transform: scale(1.38) !important;
	filter:
		drop-shadow(
			0 10px 10px rgba(0, 0, 0, 0.78)
		)
		drop-shadow(
			0 0 18px rgba(183, 31, 31, 0.34)
		);
}

/* ===============================
   CONTEÚDO
================================ */

.shop-feature-content {
	display: flex !important;
	flex-direction: column !important;
	flex: 1;
	min-height: 330px !important;
	padding: 18px !important;
	min-width: 0;
}

.shop-feature-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 12px;
}

.shop-feature-header h3 {
	margin: 0;
	color: #fff;
	font-size: 18px;
	line-height: 1.18;
	font-weight: 950;
	text-shadow:
		0 0 10px rgba(183, 31, 31, 0.18),
		0 3px 6px rgba(0, 0, 0, 0.65);
}

.shop-feature-amount {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 28px;
	padding: 5px 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.045);
	border:
		1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.76);
	font-size: 11px;
	font-weight: 950;
	white-space: nowrap;
}

.shop-feature-description {
	min-height: 112px !important;
	max-height: none !important;
	margin-bottom: 14px !important;
	overflow: visible !important;
}

.shop-feature-description p {
	display: block !important;
	margin: 0 0 7px !important;
	color:
		rgba(255, 255, 255, 0.78) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
	font-weight: 700 !important;
}

.shop-feature-description small {
	display: block !important;
	color:
		rgba(255, 255, 255, 0.58) !important;
	font-size: 12px !important;
	line-height: 1.45 !important;
	font-weight: 650 !important;
}

/* ===============================
   PREÇOS
================================ */

.shop-feature-prices {
	display: flex;
	flex-direction: column;
	gap: 9px !important;
	margin-top: auto !important;
	padding-top: 10px !important;
}

.shop-feature-promo-info {
	position: relative;
	width: fit-content;
	max-width: 100%;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 28px;
	margin-bottom: 4px;
	padding: 6px 11px;
	border-radius: 999px;
	background:
		linear-gradient(
			180deg,
			rgba(255, 48, 48, 0.95),
			rgba(145, 0, 0, 0.95)
		);
	border:
		1px solid rgba(255, 255, 255, 0.16);
	color: #fff;
	font-size: 11px;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.25px;
	cursor: help;
	overflow: hidden;
	box-shadow:
		0 7px 14px rgba(0, 0, 0, 0.34),
		0 0 14px rgba(255, 0, 0, 0.22);
}

.shop-feature-promo-info::after {
	content: "";
	position: absolute;
	top: -45%;
	left: -70%;
	width: 36px;
	height: 190%;
	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(255, 255, 255, 0.10),
			rgba(255, 255, 255, 0.58),
			rgba(255, 255, 255, 0.10),
			transparent
		);
	transform: rotate(18deg);
	animation:
		shopLightSweep 2.8s ease-in-out infinite;
}

.shop-feature-promo-info i,
.shop-feature-promo-info span {
	position: relative;
	z-index: 2;
}

.shop-feature-promo-info i {
	font-size: 12px;
	filter:
		drop-shadow(
			0 0 5px rgba(255, 255, 255, 0.22)
		);
}

.shop-feature-price-row {
	min-height: 56px !important;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.035);
	border:
		1px solid rgba(255, 255, 255, 0.075);
}

.shop-feature-price-row.cash {
	border-color: rgba(49, 130, 206, 0.24);
}

.shop-feature-price-row.dracoin {
	border-color: rgba(183, 119, 31, 0.28);
}

.shop-feature-price-info {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
}

.shop-feature-price-info .coin-icon {
	width: 25px;
	height: 25px;
	object-fit: contain;
	filter:
		drop-shadow(
			0 3px 4px rgba(0, 0, 0, 0.65)
		);
}

.shop-feature-price-info span {
	display: block;
	color: rgba(255, 255, 255, 0.52);
	font-size: 10px;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.28px;
}

.shop-feature-price-info strong {
	display: flex;
	align-items: center;
	gap: 7px !important;
	flex-wrap: wrap;
	color: #fff;
	font-size: 13px !important;
	font-weight: 950;
	line-height: 1.15;
}

.shop-feature-price-info del {
	margin-right: 3px !important;
	color: rgba(255, 255, 255, 0.38);
	font-size: 11px;
	font-weight: 850;
}

.shop-feature-discount-percent {
	position: relative;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 20px;
	padding: 4px 7px;
	border-radius: 999px;
	background:
		linear-gradient(
			180deg,
			#ff3030,
			#b40000
		);
	border:
		1px solid rgba(255, 255, 255, 0.14);
	color: #fff !important;
	font-size: 10px !important;
	font-weight: 950 !important;
	line-height: 1 !important;
	text-transform: uppercase;
	cursor: help;
	overflow: hidden;
	box-shadow:
		0 5px 10px rgba(0, 0, 0, 0.30),
		0 0 10px rgba(255, 0, 0, 0.20);
}

.shop-feature-discount-percent::after {
	content: "";
	position: absolute;
	top: -55%;
	left: -80%;
	width: 24px;
	height: 220%;
	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(255, 255, 255, 0.12),
			rgba(255, 255, 255, 0.60),
			rgba(255, 255, 255, 0.12),
			transparent
		);
	transform: rotate(20deg);
	animation:
		shopLightSweep 2.4s ease-in-out infinite;
}

.shop-feature-buy-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 7px 11px;
	border-radius: 999px;
	color: #fff !important;
	text-decoration: none;
	font-size: 11px;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.25px;
	white-space: nowrap;
	transition:
		transform 0.2s ease,
		filter 0.2s ease,
		box-shadow 0.2s ease;
}

.shop-feature-buy-btn.cash {
	background:
		linear-gradient(
			180deg,
			rgba(49, 130, 206, 0.95),
			rgba(25, 78, 130, 0.98)
		);
	border:
		1px solid rgba(255, 255, 255, 0.12);
	box-shadow:
		0 0 12px rgba(49, 130, 206, 0.16);
}

.shop-feature-buy-btn.dracoin {
	background:
		linear-gradient(
			180deg,
			rgba(183, 119, 31, 0.95),
			rgba(108, 65, 18, 0.98)
		);
	border:
		1px solid rgba(255, 255, 255, 0.12);
	box-shadow:
		0 0 12px rgba(183, 119, 31, 0.16);
}

.shop-feature-buy-btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.08);
}

.shop-feature-unavailable {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 42px;
	border-radius: 13px;
	background: rgba(212, 55, 55, 0.10);
	border:
		1px solid rgba(212, 55, 55, 0.26);
	color: #ff8b8b;
	font-size: 12px;
	font-weight: 950;
}

.shop-feature-empty {
	min-height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
	text-align: center;
	border-radius: 18px;
	background: rgba(0, 0, 0, 0.25);
	border:
		1px solid rgba(255, 255, 255, 0.075);
	color: rgba(255, 255, 255, 0.75);
}

.shop-feature-empty i {
	margin-bottom: 12px;
	color: #d43737;
	font-size: 42px;
	filter:
		drop-shadow(
			0 0 10px rgba(183, 31, 31, 0.42)
		);
}

.shop-feature-empty h3 {
	margin: 0 0 6px;
	color: #fff;
	font-size: 20px;
	font-weight: 950;
}

.shop-feature-empty p {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
}

/* ===============================
   SWIPER
================================ */

.shop-swiper .swiper-pagination {
	bottom: 25px !important;
}

.shop-swiper .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.42);
	opacity: 1;
}

.shop-swiper .swiper-pagination-bullet-active {
	background: #d43737;
	box-shadow:
		0 0 10px rgba(183, 31, 31, 0.55);
}

.shop-swiper .swiper-button-prev,
.shop-swiper .swiper-button-next {
	top: 50% !important;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: rgba(183, 31, 31, 0.88);
	border:
		1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	box-shadow:
		0 8px 18px rgba(0, 0, 0, 0.36),
		0 0 16px rgba(183, 31, 31, 0.22);
	z-index: 30;
	transform:
		translateY(-50%) !important;
}

.shop-swiper .swiper-button-prev {
	left: 6px;
}

.shop-swiper .swiper-button-next {
	right: 6px;
}

.shop-swiper .swiper-button-prev::after,
.shop-swiper .swiper-button-next::after {
	font-size: 16px;
	font-weight: 950;
}

/* ===============================
   NOTÍCIAS
================================ */

.latest-news-section {
	position: relative;
	z-index: 10;
	margin-top: 10px;
	padding-bottom: 20px;
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.news-card {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 16px 18px;
	border-radius: 16px;
	text-decoration: none;
	background:
		linear-gradient(
			180deg,
			rgba(24, 17, 17, 0.96),
			rgba(8, 8, 8, 0.96)
		);
	border:
		1px solid rgba(183, 31, 31, 0.22);
	box-shadow:
		0 10px 26px rgba(0, 0, 0, 0.32);
	transition:
		transform 0.22s ease,
		border-color 0.22s ease,
		box-shadow 0.22s ease;
}

.news-card:hover {
	transform: translateY(-3px);
	border-color: rgba(183, 31, 31, 0.52);
	box-shadow:
		0 14px 30px rgba(0, 0, 0, 0.45),
		0 0 16px rgba(183, 31, 31, 0.16);
}

.news-date {
	width: 76px;
	min-width: 76px;
	min-height: 76px;
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(
			180deg,
			#d43737,
			#8f1515
		);
	border:
		1px solid rgba(255, 110, 110, 0.65);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.news-day {
	color: #fff;
	font-size: 28px;
	font-weight: 900;
	line-height: 1;
}

.news-month {
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.news-info {
	flex: 1;
	text-align: left;
	min-width: 0;
}

.news-info h3 {
	margin: 0 0 5px;
	color: #fff;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.25;
}

.news-info span {
	color: #ff8b8b;
	font-size: 14px;
	font-weight: 700;
}

.news-arrow {
	color: #d43737;
	font-size: 22px;
	opacity: 0.75;
	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}

.news-card:hover .news-arrow {
	transform: translateX(4px);
	opacity: 1;
}

.news-more-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 24px;
	border-radius: 999px;
	background: rgba(183, 31, 31, 0.12);
	border:
		1px solid rgba(183, 31, 31, 0.40);
	color: #fff;
	font-weight: 800;
	text-decoration: none;
	transition: all 0.22s ease;
}

.news-more-button:hover {
	color: #fff;
	background:
		linear-gradient(
			180deg,
			#d43737,
			#8f1515
		);
	box-shadow:
		0 0 18px rgba(183, 31, 31, 0.30);
	transform: translateY(-2px);
}

/* ===============================
   ANIMAÇÕES
================================ */

@keyframes shopRibbonEntrance {
	from {
		opacity: 0;
		transform:
			rotate(-45deg)
			translateY(-10px);
	}

	to {
		opacity: 1;
		transform:
			rotate(-45deg)
			translateY(0);
	}
}

@keyframes shopLightSweep {
	0% {
		left: -80%;
		opacity: 0;
	}

	18% {
		opacity: 0;
	}

	38% {
		opacity: 1;
	}

	62% {
		opacity: 1;
	}

	82% {
		opacity: 0;
	}

	100% {
		left: 130%;
		opacity: 0;
	}
}

/* ===============================
   RESPONSIVO
================================ */

@media (max-width: 992px) {
	.hero-video-wrapper {
		max-width: 96%;
	}

	.ranking-card-modern {
		width: 100%;
	}

	.ranking-container {
		width: 100%;
	}

	.ranking-tab-content {
		min-width: 0;
		width: 100%;
	}

	.shop-swiper {
		padding-left: 26px;
		padding-right: 26px;
	}
}

@media (max-width: 991px) {
	.shop-feature-card {
		min-height: 480px !important;
	}

	.shop-feature-content {
		min-height: 310px !important;
	}

	.shop-container-limit {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}

	.shop-feature-icon-box {
		width: 106px !important;
		height: 106px !important;
	}

	.shop-feature-icon {
		max-width: 86px !important;
		max-height: 86px !important;
	}
}

@media (max-width: 576px) {
	.home-hero {
		padding-top: 30px;
	}

	.hero-video-wrapper {
		max-width: 100%;
		margin-bottom: 70px;
		border-radius: 10px;
	}

	.hero-video,
	.hero-video-overlay {
		border-radius: 10px;
	}

	.modern-play-button,
	.play-now-button {
		min-width: 190px;
		min-height: 50px;
		font-size: 15px;
	}

	.hero-title {
		font-size: 28px;
	}

	.hero-description {
		font-size: 15px !important;
		padding: 0 10px;
	}

	.ranking-card-modern {
		padding: 16px;
	}

	.ranking-container.d-flex.flex-row-reverse {
		flex-direction: column !important;
	}

	.ranking-nav {
		flex-direction: row !important;
		width: 100%;
		justify-content: center !important;
	}

	.ranking-nav .btn {
		margin-bottom: 0;
	}

	.shop-container-limit {
		padding-left: 12px !important;
		padding-right: 12px !important;
		padding-bottom: 60px !important;
	}

	.shop-swiper {
		padding-bottom: 70px !important;
	}

	.shop-feature-card {
		min-height: auto !important;
	}

	.shop-feature-content {
		min-height: auto !important;
	}

	.shop-feature-description {
		min-height: auto !important;
		max-height: none !important;
	}

	.shop-feature-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.shop-feature-price-row {
		flex-direction: column;
		align-items: stretch;
	}

	.shop-feature-buy-btn {
		width: 100%;
	}

	.shop-swiper .swiper-button-prev,
	.shop-swiper .swiper-button-next {
		display: none;
	}

	.shop-feature-ribbons {
		width: 105px;
		height: 105px;
	}

	.shop-feature-ribbon {
		top: 18px;
		left: -40px;
		width: 145px;
		height: 31px;
		font-size: 10px;
	}

	.news-card {
		padding: 13px;
		gap: 12px;
	}

	.news-date {
		width: 62px;
		min-width: 62px;
		min-height: 62px;
	}

	.news-day {
		font-size: 23px;
	}

	.news-month {
		font-size: 10px;
	}

	.news-info h3 {
		font-size: 16px;
	}

	.news-arrow {
		display: none;
	}
}

/* ===============================
   OTIMIZAÇÃO DE CARREGAMENTO
================================ */

/*
 * Antes do Swiper carregar, os cards ficam em grade.
 * Isso evita a tela vazia e não bloqueia a Home.
 */
.shop-swiper:not(.swiper-initialized) {
	overflow: visible !important;
}

.shop-swiper:not(.swiper-initialized) .swiper-wrapper {
	display: grid;
	grid-template-columns:
		repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
	transform: none !important;
}

.shop-swiper:not(.swiper-initialized) .swiper-slide {
	width: auto !important;
	height: auto !important;
	display: flex !important;
	margin: 0 !important;
}

.shop-swiper:not(.swiper-initialized) .swiper-slide:nth-child(n + 4) {
	display: none !important;
}

.shop-swiper:not(.swiper-initialized) .swiper-pagination,
.shop-swiper:not(.swiper-initialized) .swiper-button-prev,
.shop-swiper:not(.swiper-initialized) .swiper-button-next {
	display: none !important;
}

/*
 * As seções abaixo da primeira dobra só são renderizadas
 * quando estiverem próximas da área visível.
 */
.shop-highlight-section,
.latest-news-section {
	content-visibility: auto;
	contain-intrinsic-size: 900px;
}

.shop-feature-card,
.news-card,
.ranking-card-modern {
	contain: layout paint style;
}

/*
 * As animações de luz ficam pausadas.
 * Elas só iniciam quando o usuário passa o mouse no card.
 */
.shop-feature-ribbon::before,
.shop-feature-promo-info::after,
.shop-feature-discount-percent::after {
	animation-play-state: paused;
}

.shop-feature-card:hover .shop-feature-ribbon::before,
.shop-feature-card:hover .shop-feature-promo-info::after,
.shop-feature-card:hover .shop-feature-discount-percent::after {
	animation-play-state: running;
}

@media (max-width: 991px) {
	.shop-swiper:not(.swiper-initialized) .swiper-wrapper {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.shop-swiper:not(.swiper-initialized) .swiper-slide:nth-child(n + 3) {
		display: none !important;
	}
}

@media (max-width: 576px) {
	.shop-swiper:not(.swiper-initialized) .swiper-wrapper {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.shop-swiper:not(.swiper-initialized) .swiper-slide:nth-child(n + 2) {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-video,
	.shop-feature-card,
	.shop-feature-icon,
	.shop-feature-ribbon,
	.shop-feature-promo-info::after,
	.shop-feature-discount-percent::after,
	.news-card,
	.news-arrow,
	.modern-play-button,
	.play-now-button {
		animation: none !important;
		transition: none !important;
	}
}