@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

body {
  font-family: var(--font-body);
}

h1, h2, h3,
.section-title,
.product-title {
  font-family: var(--font-heading);
  font-weight: 800;
}

:root {
	--bg2: #0b0f16;
	--glass: rgba(10, 14, 22, .55);
	--glass2: rgba(14, 18, 28, .62);
	--border: rgba(255, 255, 255, .08);
	--text: #e7eaf0;
	--muted: rgba(231, 234, 240, .70);
	--muted2: rgba(231, 234, 240, .55);
	--shadow: 0 20px 60px rgba(0, 0, 0, .55);
	--shadow2: 0 12px 40px rgba(0, 0, 0, .45);
	--radius: 14px;
	--radius2: 18px;
	--grad: linear-gradient(90deg, #8b5cf6, #22d3ee, #a78bfa);
	--grad2: linear-gradient(135deg, rgba(139, 92, 246, .25), rgba(34, 211, 238, .18));
	--btn: rgba(255, 255, 255, .08);
	--btnHover: rgba(255, 255, 255, .12);
	--focus: rgba(34, 211, 238, .35);
	--max: 1180px;
}

* {
	box-sizing: border-box
}

html,
body {
	height: 100%
}

body {
	margin: 0;
	font-family: var(--font-body), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: black;
	color: var(--text);
	overflow-x: hidden;
}

.nx-nav-wrap {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 50;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	background: black;
   border-image: linear-gradient(90deg, #00000000, orange, #00000000) 1;
	border-bottom-style: solid;
	border-width: 2px;
	box-shadow: 0 1px 12px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(255, 255, 255, 0.03);
}

.nx-nav {
	max-width: var(--max);
	margin: 0 auto;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 14px;
	justify-content: space-between;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--text);
}

.logo {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background:
		radial-gradient(circle at 30% 30%, rgba(34, 211, 238, .85), transparent 55%),
		radial-gradient(circle at 70% 60%, rgba(139, 92, 246, .85), transparent 55%),
		linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .02));
	border: 1px solid rgba(255, 255, 255, .12);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
	position: relative;
	overflow: hidden;
}

.logo:after {
	content: "";
	position: absolute;
	inset: -40%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
	transform: rotate(25deg) translateX(-30%);
	animation: shimmer 4.5s infinite;
	opacity: .8;
}

@keyframes shimmer {
	0% {
		transform: rotate(25deg) translateX(-55%)
	}

	55% {
		transform: rotate(25deg) translateX(55%)
	}

	100% {
		transform: rotate(25deg) translateX(55%)
	}
}

.brand span {
	font-weight: 700;
	letter-spacing: .2px;
}

.badge {
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 999px;
	border: 1px solid rgba(34, 211, 238, .25);
	color: rgba(34, 211, 238, .95);
	background: rgba(34, 211, 238, .08);
	margin-left: 6px;
}

.nx-nav_ left {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
}

.nx-nav-left {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
}

.nx-nav-links {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: 8px;
}

.nx-nav-item {
	position: relative;
}

.nx-nav-btn {
	border: 1px solid transparent;
	background: transparent;
	color: var(--muted);
	font-weight: 600;
	font-size: 14px;
	padding: 10px 10px;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: .15s ease;
	user-select: none;
}

.nx-nav-btn:hover {
	color: var(--text);
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .08);
}

.nx-nav-btn[aria-expanded="true"] {
	color: var(--text);
	background: rgba(255, 255, 255, .08);
	border-color: rgba(34, 211, 238, .18);
	box-shadow: 0 0 0 3px rgba(34, 211, 238, .10);
}

.chev {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin-top: 0;
	margin-left: auto;
	border-radius: 999px;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .12), rgba(255, 255, 255, .02) 62%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 8px 18px rgba(0, 0, 0, .20);
	opacity: .96;
	transition: transform .22s cubic-bezier(.16, 1, .3, 1), background .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.chev::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 6px;
	height: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translate(-50%, -60%) rotate(45deg);
	transform-origin: center;
	transition: transform .22s cubic-bezier(.16, 1, .3, 1);
}

.nx-nav-btn:hover .chev,
.nx-nav-btn:focus-visible .chev,
.nx-nav-btn[aria-expanded="true"] .chev {
	background: radial-gradient(circle at 30% 30%, rgba(163, 230, 53, .22), rgba(99, 102, 241, .10) 68%, rgba(255, 255, 255, .03));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 10px 22px rgba(0, 0, 0, .24), 0 0 0 1px rgba(163, 230, 53, .10);
}

.nx-nav-btn[aria-expanded="true"] .chev::before {
	transform: translate(-50%, -40%) rotate(225deg);
}

.nx-nav-right {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 240px;
	justify-content: flex-end;
}

.pill {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, .05);
	color: var(--muted);
	font-size: 13px;
	cursor: pointer;
	transition: .15s ease;
}

.pill:hover {
	background: rgba(255, 255, 255, .08);
	color: var(--text);
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(34, 211, 238, .9);
	box-shadow: 0 0 0 4px rgba(34, 211, 238, .12);
}

.link {
	color: var(--muted);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	padding: 10px 10px;
	border-radius: 10px;
	transition: .15s ease;
	border: 1px solid transparent;
}

.link:hover {
	color: var(--text);
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .08);
}

.cta {
	text-decoration: none;
	color: #061018;
	font-weight: 800;
	font-size: 14px;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--grad);
	box-shadow: 0 16px 40px rgba(34, 211, 238, .08), 0 16px 40px rgba(139, 92, 246, .10);
	transition: transform .15s ease, filter .15s ease;
	white-space: nowrap;
}

.cta:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
}

.cta:active {
	transform: translateY(0px);
}

.menu {
	position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 820px;
    max-width: calc(100vw - 28px);
    background: linear-gradient(181deg, rgb(0 0 0), rgb(0 0 0));
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
    padding: 16px;
    display: none;
    transform-origin: top left;
    transform: translateY(6px) scale(.98);
    opacity: 0;
    transition: .16s ease;
    overflow: hidden;
    border-image: linear-gradient(90deg, #00000000, orange, #00000000) 1;
    border-bottom-style: solid;
    border-width: 2px;

}

.menu.open {
	display: block;
	opacity: 1;
	transform: translateY(0) scale(1);
}

.menu:before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(800px 300px at 10% 0%, rgba(34, 211, 238, .13), transparent 60%),
		radial-gradient(800px 300px at 90% 0%, rgba(139, 92, 246, .14), transparent 60%);
	pointer-events: none;
}

.menu-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 14px;
}

.menu-col {
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(255, 255, 255, .04);
	border-radius: 14px;
	padding: 14px;
	overflow: hidden;
}

.menu-title {
	font-weight: 800;
	font-size: 13px;
	letter-spacing: .2px;
	color: rgba(231, 234, 240, .90);
	margin: 0 0 10px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.menu-title small {
	font-weight: 700;
	font-size: 12px;
	color: rgba(34, 211, 238, .85);
	border: 1px solid rgba(34, 211, 238, .22);
	background: rgba(34, 211, 238, .08);
	padding: 4px 8px;
	border-radius: 999px;
}

.menu-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.menu-card {
	display: flex;
	gap: 10px;
	padding: 10px;
	border-radius: 12px;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(0, 0, 0, .12);
	transition: .15s ease;
	min-height: 66px;
}

.menu-card:hover {
	border-color: rgba(34, 211, 238, .22);
	background: rgba(255, 255, 255, .06);
	transform: translateY(-1px);
}

.ic {
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: var(--grad2);
	flex: 0 0 auto;
}

.menu-card b {
	display: block;
	color: var(--text);
	font-size: 13px;
	margin-bottom: 2px;
	letter-spacing: .1px;
}

.menu-card p {
	margin: 0;
	color: var(--muted2);
	font-size: 12px;
	line-height: 1.25;
}

.menu-side {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.side-hero {
	border-radius: 14px;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .10);
	background:
		radial-gradient(420px 200px at 20% 0%, rgba(34, 211, 238, .18), transparent 60%),
		radial-gradient(420px 200px at 90% 0%, rgba(139, 92, 246, .22), transparent 60%),
		rgba(255, 255, 255, .04);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
	overflow: hidden;
	position: relative;
}

.side-hero h4 {
	margin: 0 0 6px 0;
	font-size: 13px;
	letter-spacing: .2px;
}

.side-hero p {
	margin: 0 0 10px 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.35;
}

.side-hero a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--text);
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .12);
	padding: 9px 12px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 13px;
	transition: .15s ease;
}

.side-hero a:hover {
	background: rgba(255, 255, 255, .12);
}

.tiny {
	display: flex;
	gap: 10px;
}

.tiny a {
	flex: 1;
	text-decoration: none;
	color: var(--muted);
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	padding: 10px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 700;
	transition: .15s ease;
	text-align: center;
}

.tiny a:hover {
	background: rgba(255, 255, 255, .08);
	color: var(--text);
	border-color: rgba(34, 211, 238, .18);
}

.hamburger {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 0px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .05);
	cursor: pointer;
	transition: .15s ease;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-direction: column;
}

.hamburger:hover {
	background: rgba(255, 255, 255, .08);
}

.hamburger span {
	width: 18px;
	height: 2px;
	background: rgba(231, 234, 240, .85);
	border-radius: 99px;
	transition: .15s ease;
}

.overlay {
	position: fixed;
	inset: 0;
	background: rgb(0 0 0 / 85%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(6px);
	opacity: 0;
	pointer-events: none;
	transition: .18s ease;
	z-index: 60;
}

.overlay.open {
	opacity: 1;
	pointer-events: auto;
}

.drawer {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: min(420px, 92vw);
	border-left: 1px solid rgba(255, 255, 255, .10);
	box-shadow: var(--shadow);
	transform: translateX(110%);
	transition: .2s ease;
	z-index: 70;
	display: flex;
	flex-direction: column;
}

.drawer.open {
	transform: translateX(0);
}

.drawer-top {
	padding: 14px 14px 10px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.drawer-top .brand {
	min-width: 0;
}

.close {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .06);
	cursor: pointer;
	transition: .15s ease;
	color: var(--text);
	font-weight: 900;
	font-size: 16px;
}

.close:hover {
	background: rgb(255 255 255);
}

.drawer-body {
	padding-top: 0px;
	padding-right: 14px;
	padding-bottom: 18px;
	padding-left: 14px;
	overflow: auto;
}

.m-section {
	margin: 10px 0 12px;
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(255, 255, 255, .04);
	border-radius: 14px;
	overflow: hidden;
}

.m-head {
	width: 100%;
	padding: 12px 12px;
	border: 0;
	background: transparent;
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-weight: 800;
	font-size: 13px;
}

.m-head span {
	color: var(--muted);
	font-weight: 700;
	font-size: 12px;
}

.m-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height .2s ease;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.m-panel.open {
	max-height: 560px;
}

.m-links {
	display: flex;
	flex-direction: column;
	padding: 10px;
	gap: 8px;
}

.m-links a {
	display: flex;
	gap: 10px;
	text-decoration: none;
	color: var(--text);
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(0, 0, 0, .10);
	padding: 10px;
	border-radius: 12px;
	transition: .15s ease;
}

.m-links a:hover {
	background: rgba(255, 255, 255, .06);
	border-color: rgba(34, 211, 238, .18);
}

.m-links a b {
	font-size: 13px;
}

.m-links a small {
	color: var(--muted2);
	display: block;
	margin-top: 2px;
}

.drawer-cta {
	margin-top: 12px;
	display: flex;
	gap: 10px;
}

.drawer-cta a {
	flex: 1;
	text-align: center;
	text-decoration: none;
	font-weight: 900;
	padding: 12px 12px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .06);
	color: var(--text);
	transition: .15s ease;
}

.drawer-cta a:hover {
	background: rgba(255, 255, 255, .10);
}

.drawer-cta a.primary {
	border: 0;
	background: var(--grad);
	color: #061018;
}

@media (max-width: 1024px) {
	.nx-nav-links {
		display: none;
	}

	.nx-nav-right .pill,
	.nx-nav-right .link {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.nx-nav-right {
		min-width: auto;
	}

	.brand {
		min-width: auto;
	}
}

.vc-user-icon {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;
}

.vc-user-icon i {
	font-size: 20px;
	line-height: 1;
}

:root {
  --ctx-header-h: 72px;
  --ctx-page-gap: 48px;
  --ctx-max-width: 980px;
  --ctx-black: #000;
  --ctx-surface: rgba(17, 17, 19, .94);
  --ctx-line: rgba(255, 255, 255, .10);
  --ctx-line-strong: rgba(255, 183, 3, .26);
  --ctx-title: #fff;
  --ctx-text: rgba(255, 255, 255, .86);
  --ctx-muted: rgba(255, 255, 255, .58);
  --ctx-muted-2: rgba(255, 255, 255, .42);
  --ctx-orange: #ff7a18;
  --ctx-yellow: #ffb703;
  --ctx-shadow-dark: 0 22px 60px rgba(0, 0, 0, .52);
}

html,
body,
#wrapper {
  background: var(--ctx-black) !important;
  color: var(--ctx-text) !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

body {
  min-height: 100vh !important;
}

.ctx-page-wrap,
.ctx-page-wrap *,
.ctx-page-wrap *::before,
.ctx-page-wrap *::after {
  box-sizing: border-box;
}

.ctx-page-wrap {
  padding-top: calc(var(--ctx-header-h) + var(--ctx-page-gap));
  padding-bottom: 28px;
  background: #000;
  overflow-x: clip;
}

.ctx-container {
  width: 100%;
  max-width: var(--ctx-max-width);
  margin: 0 auto;
  padding-inline: 20px;
}

.ctx-layout {
  display: block;
  width: 100%;
  min-width: 0;
}

.ctx-card {
  position: relative;
  overflow: hidden;
  color: var(--ctx-text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .028)),
    var(--ctx-surface);
  border-radius: 22px;
  box-shadow: var(--ctx-shadow-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ctx-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 183, 3, .10), transparent 36%),
    linear-gradient(315deg, rgba(255, 122, 24, .10), transparent 38%);
  opacity: .72;
}

.ctx-card > * {
  position: relative;
  z-index: 1;
}

.ctx-page-head-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, .48), transparent 30%),
    linear-gradient(135deg, var(--ctx-yellow), var(--ctx-orange) 55%, #ff4d00);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(255, 122, 24, .32);
}

.ctx-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  min-width: 0;
}

.ctx-card {
  padding: 24px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.ctx-card:hover {
  transform: translateY(-2px);
  border-color: var(--ctx-line-strong);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .62);
}

.ctx-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: var(--ctx-title);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .03em;
}

.ctx-page-head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.ctx-page-head-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-size: 18px;
}

.ctx-page-head-text {
  min-width: 0;
}

.ctx-page-head h1 {
  margin: 0;
  color: var(--ctx-title);
  font-family: var(--font-heading), 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  line-height: 1.2;
}

.ctx-page-head p {
  margin: 5px 0 0;
  color: var(--ctx-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.ctx-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.ctx-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.ctx-field label {
  margin: 0;
  color: var(--ctx-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ctx-field input {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .055) !important;
  border: 1px solid rgba(255, 255, 255, .13) !important;
  color: var(--ctx-title) !important;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  outline: none;
  box-shadow: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.ctx-field input::placeholder {
  color: rgba(255, 255, 255, .38);
}

.ctx-field input:focus {
  background: rgba(255, 255, 255, .08) !important;
  border-color: rgba(255, 183, 3, .65) !important;
  box-shadow: 0 0 0 4px rgba(255, 183, 3, .12);
}

.ctx-submit,
.ctx-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ctx-yellow), var(--ctx-orange));
  color: #111 !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: none;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.ctx-submit:hover,
.ctx-btn-whatsapp:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.ctx-submit:focus-visible,
.ctx-btn-whatsapp:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 183, 3, .25);
}

.ctx-status-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.ctx-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
}

.ctx-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: .9;
}

.ctx-status.unpaid {
  background: rgba(245, 158, 11, .15);
  color: #fbbf24 !important;
}

.ctx-status.process {
  background: rgba(56, 189, 248, .15);
  color: #7dd3fc !important;
}

.ctx-status.success {
  background: rgba(34, 197, 94, .15);
  color: #86efac !important;
}

.ctx-status.failed {
  background: rgba(239, 68, 68, .15);
  color: #fca5a5 !important;
}

.ctx-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ctx-detail-item {
  min-width: 0;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .085);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045);
}

.ctx-detail-item span {
  display: block;
  margin-bottom: 5px;
  color: var(--ctx-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ctx-detail-item strong {
  display: block;
  color: var(--ctx-title);
  font-size: 13.5px;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.ctx-note-panel {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .085);
}

.ctx-note {
  margin: 0;
  color: var(--ctx-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.ctx-note strong {
  color: var(--ctx-title);
  font-weight: 900;
}

.ctx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.ctx-btn-whatsapp {
  min-height: 40px;
}

.ctx-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 170px;
  padding: 36px 20px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .035);
  color: var(--ctx-muted);
  text-align: center;
}

.ctx-empty i {
  color: rgba(255, 183, 3, .8);
  font-size: 28px;
}

.ctx-empty span {
  color: var(--ctx-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.ctx-empty strong {
  color: var(--ctx-title);
}

.back-to-top {
  background: linear-gradient(135deg, var(--ctx-yellow), var(--ctx-orange)) !important;
  color: #111 !important;
}

@media (max-width: 991px) {
  :root {
    --ctx-page-gap: 34px;
  }

  .ctx-container {
    padding-inline: 14px;
  }
}

@media (max-width: 768px) {
  .ctx-card {
    padding: 18px;
  }

  .ctx-form,
  .ctx-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ctx-submit {
    width: 100%;
  }
}

@media (max-width: 576px) {
  :root {
    --ctx-header-h: 66px;
    --ctx-page-gap: 34px;
  }

  .ctx-page-wrap {
    padding-bottom: 24px;
  }

  .ctx-container {
    padding-inline: 10px;
  }

  .ctx-card {
    border-radius: 18px;
  }

  .ctx-card {
    padding: 16px;
  }

  .ctx-page-head {
    align-items: flex-start;
  }

  .ctx-page-head-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .ctx-page-head h1 {
    font-size: 17px;
  }

  .ctx-form {
    padding: 0;
  }

  .ctx-detail-item {
    border-radius: 14px;
    padding: 13px;
  }

  .ctx-actions,
  .ctx-btn-whatsapp {
    width: 100%;
  }
}
