/**
 * My Account Page Styles
 * Matches the design from minha conta.pdf
 */

/* ==========================================================================
   Layout Container
   ========================================================================== */

.nocorte-my-account {
	display: flex;
	min-height: 100vh;
	background: #F4F2EE;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* ==========================================================================
   Sidebar Navigation
   ========================================================================== */

.nocorte-account-sidebar {
	width: 240px;
	background: #FFFFFF;
	border-right: 1px solid #E5E5EA;
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	display: flex;
	flex-direction: column;
	z-index: 100;
	overflow-y: auto;
}

.nocorte-sidebar-logo {
	padding: 24px 20px;
	border-bottom: 1px solid #E5E5EA;
}

.nocorte-sidebar-logo a {
	display: block;
	transition: opacity 0.2s ease;
}

.nocorte-sidebar-logo a:hover {
	opacity: 0.8;
}

.nocorte-sidebar-logo img {
	max-width: 110px !important;
	width: 110px;
	height: auto;
	display: block;
}

.nocorte-sidebar-nav {
	flex: 1;
	padding: 16px 0;
	overflow-y: auto;
}

.nocorte-nav-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	margin: 4px 12px;
	color: #808080;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s ease;
	cursor: pointer;
	border-radius: 8px;
}

.nocorte-nav-item svg {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: #808080;
}

.nocorte-nav-item:hover {
	background: #3F4BFF;
	color: #FFFFFF !important;
}

.nocorte-nav-item:hover svg {
	color: #FFFFFF !important;
}

.nocorte-nav-item.active {
	background: #3F4BFF;
	color: #FFFFFF !important;
	font-weight: 600;
}

.nocorte-nav-item.active svg {
	color: #FFFFFF !important;
}

.nocorte-nav-item.nocorte-nav-logout {
	color: #EF4444 !important;
}

.nocorte-nav-item.nocorte-nav-logout svg {
	color: #EF4444 !important;
	stroke: #EF4444 !important;
}

.nocorte-nav-item.nocorte-nav-logout:hover {
	background: #FEE2E2 !important;
	color: #DC2626 !important;
}

.nocorte-nav-item.nocorte-nav-logout:hover svg {
	color: #DC2626 !important;
	stroke: #DC2626 !important;
}

/* Sidebar User Profile */
.nocorte-sidebar-user {
	padding: 20px;
	border-top: 1px solid #E5E5EA;
	display: flex;
	align-items: center;
	gap: 12px;
}

.nocorte-user-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.nocorte-user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nocorte-user-info {
	flex: 1;
	min-width: 0;
}

.nocorte-user-name {
	font-size: 14px;
	font-weight: 600;
	color: #1D1D1F;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.nocorte-user-email {
	font-size: 12px;
	color: #86868B;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ==========================================================================
   Main Content Area
   ========================================================================== */

.nocorte-account-content {
	flex: 1;
	margin-left: 240px;
	padding: 40px;
	min-height: 100vh;
}

/* Content Loader */
.nocorte-content-loader {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 400px;
}

.nocorte-loader-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #E5E5EA;
	border-top-color: #3F4BFF;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.nocorte-content-loader p {
	margin-top: 16px;
	color: #86868B;
	font-size: 14px;
}

/* ==========================================================================
   Overview Page (Visão Geral)
   ========================================================================== */

.nocorte-overview-header {
	margin-bottom: 32px;
}

.nocorte-overview-title {
	font-size: 32px;
	font-weight: 700;
	color: #1D1D1F;
	margin: 0 0 8px 0;
}

.nocorte-overview-title .user-name {
	color: #3F4BFF;
}

.nocorte-overview-subtitle {
	font-size: 18px;
	color: #1D1D1F;
	margin: 0;
}

/* Stats Grid */
.nocorte-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 48px;
}

.nocorte-stat-card {
	background: #FFFFFF;
	border: none;
	border-radius: 16px;
	padding: 24px;
	transition: box-shadow 0.2s ease;
}

.nocorte-stat-card:hover {
	box-shadow: none;
}

.nocorte-stat-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.nocorte-stat-label {
	font-size: 14px;
	color: #86868B;
	font-weight: 500;
}

.nocorte-stat-icon {
	width: 32px;
	height: 32px;
	color: #3F4BFF;
}

.nocorte-stat-value {
	font-size: 48px;
	font-weight: 700;
	color: #1D1D1F;
	margin-bottom: 8px;
}

/* Overview stat values - unique class for dashboard stats */
.nocorte-overview-value {
	font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: 36px;
	color: #1D1D1F;
	margin-bottom: 8px;
	leading-trim: both;
	text-edge: cap;
}

.nocorte-stat-unit {
	font-size: 14px;
	color: #86868B;
	font-weight: 500;
}

.nocorte-stat-progress {
	margin-top: 16px;
}

.nocorte-progress-bar {
	height: 8px;
	background: #E5E5EA;
	border-radius: 4px;
	overflow: hidden;
}

.nocorte-progress-fill {
	height: 100%;
	background: #1D1D1F;
	border-radius: 4px;
	transition: width 0.6s ease;
}

/* Credits Card Styles */
.nocorte-credits-breakdown {
	display: flex;
	flex-direction: row;
	gap: 12px;
	margin-top: 16px;
}

.nocorte-credit-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 16px 12px;
	background: #F9FAFB;
	border-radius: 12px;
	transition: all 0.2s ease;
}

.nocorte-credit-item:hover {
	background: #F3F4F6;
}

.nocorte-credit-value {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}

.nocorte-credit-number {
	font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	font-size: 28px;
	font-weight: 600;
	color: #1D1D1F;
	line-height: 1;
}

.nocorte-credit-unlimited {
	font-size: 32px;
	color: #34C759;
}

.nocorte-credit-label {
	font-size: 13px;
	font-weight: 500;
	color: #6B7280;
	text-align: center;
}

.nocorte-stat-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	background: #3F4BFF;
	color: #FFFFFF !important;
	text-decoration: none;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.nocorte-stat-link:hover {
	background: #2F3BEF;
	color: #FFFFFF !important;
	transform: scale(1.05);
}

.nocorte-stat-link--full {
	width: 100%;
	margin-top: 16px;
}

/* CTA Section */
.nocorte-cta-section {
	background: linear-gradient(139deg, #EFF6FF 0%, #FFF 119.17%);
	border-radius: 24px;
	padding: 48px;
	text-align: center;
	margin-bottom: 48px;
	position: relative;
	overflow: hidden;
}

.nocorte-cta-icon {
	width: 64px;
	height: 64px;
	background: #3F4BFF;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	position: relative;
}

.nocorte-cta-icon svg {
	width: 32px;
	height: 32px;
}

.nocorte-cta-title {
	font-size: 28px;
	font-weight: 700;
	color: #1D1D1F;
	margin: 0 0 12px 0;
	position: relative;
}

.nocorte-cta-description {
	font-size: 16px;
	color: #86868B;
	margin: 0 0 32px 0;
	position: relative;
}

.nocorte-cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
}

.nocorte-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 28px 48px;
	border-radius: 50px;
	font-size: 20px !important;
	font-family: "NewBlack Typeface", Sans-serif !important;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
}

.nocorte-button-primary {
	background: #3F4BFF;
	color: #FFFFFF !important;
	border: 2px solid #3F4BFF;
}

.nocorte-button-primary:hover {
	transform: translateY(-2px);
	background: #2A3AE6;
	border-color: #2A3AE6;
	color: #FFFFFF !important;
}

.nocorte-button-secondary {
	background: transparent;
	color: #808080 !important;
	border: 2px solid #808080;
}

.nocorte-button-secondary:hover {
	background: #808080;
	color: #FFFFFF !important;
}

/* Section Headers */
.nocorte-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.nocorte-section-title {
	font-size: 20px;
	font-weight: 700;
	color: #1D1D1F;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.nocorte-section-title svg {
	width: 24px;
	height: 24px;
	color: #3F4BFF;
}

.nocorte-section-link {
	font-size: 14px;
	color: #3F4BFF;
	text-decoration: none;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: gap 0.2s ease;
}

.nocorte-section-link:hover {
	gap: 8px;
}

.nocorte-section-link svg {
	width: 16px;
	height: 16px;
}

/* Concursos Grid */
.nocorte-concursos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px;
	margin-bottom: 48px;
}

.nocorte-concurso-card {
	background: #FFFFFF;
	border: none;
	border-radius: 20px;
	padding: 24px;
	transition: all 0.2s ease;
	cursor: pointer;
	position: relative;
}

.nocorte-concurso-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

/* Header: Logo (left) + Status Badge (right) */
.nocorte-concurso-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 16px;
}

.nocorte-concurso-logo-wrapper {
	width: 64px;
	height: 64px;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #F5F5F7;
	flex-shrink: 0;
}

.nocorte-concurso-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Status Badge (top right) */
.nocorte-concurso-status-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: #F5F5F7;
	color: #86868B;
	font-size: 12px;
	font-weight: 600;
	border-radius: 16px;
}

.nocorte-concurso-status-badge.coletando {
	background: #F5F5F7;
	color: #86868B;
}

.nocorte-concurso-status-badge svg {
	width: 12px;
	height: 12px;
	stroke: currentColor;
}

/* Title */
.nocorte-concurso-title {
	font-size: 20px;
	font-weight: 700;
	color: #1D1D1F;
	margin: 0 0 8px 0;
	line-height: 1.2;
}

/* Subtitle/Meta */
.nocorte-concurso-subtitle {
	font-size: 14px;
	color: #86868B;
	margin-bottom: 16px;
}

/* Status Info Badge */
.nocorte-concurso-status-info {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 16px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 20px;
}

.nocorte-concurso-status-info.dentro {
	background: #EFFBF2;
	color: #34C759;
}

.nocorte-concurso-status-info.fora {
	background: #FDEBEB;
	color: #FF3B30;
}

.nocorte-concurso-status-info.simulado {
	background: #8B5CF6;
	color: #FFFFFF;
}

.nocorte-concurso-status-info svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	flex-shrink: 0;
}

/* Stats List */
.nocorte-concurso-stats-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.nocorte-stat-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.nocorte-stat-label {
	font-size: 14px;
	color: #86868B;
	line-height: 1;
	flex-shrink: 0;
}

.nocorte-stat-value {
	font-size: 14px;
	font-weight: 600;
	color: #1D1D1F;
	line-height: 1;
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	margin: 0;
	padding: 0;
}

.nocorte-stat-value svg {
	width: 16px;
	height: 16px;
	fill: #86868B;
}

/* Two Column Layout for bottom sections */
.nocorte-bottom-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 24px;
}

/* Notifications */
.nocorte-notifications-list {
	background: #FFFFFF;
	border: 1px solid #E5E5EA;
	border-radius: 16px;
	overflow: hidden;
}

.nocorte-notification-item {
	padding: 20px 24px;
	border-bottom: 1px solid #E5E5EA;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: background 0.2s ease;
}

.nocorte-notification-item:last-child {
	border-bottom: none;
}

.nocorte-notification-item:hover {
	background: #F5F5F7;
}

.nocorte-notification-icon {
	width: 8px;
	height: 8px;
	background: #3F4BFF;
	border-radius: 50%;
	flex-shrink: 0;
}

.nocorte-notification-content {
	flex: 1;
	min-width: 0;
}

.nocorte-notification-title {
	font-size: 14px;
	font-weight: 600;
	color: #1D1D1F;
	margin: 0 0 4px 0;
}

.nocorte-notification-time {
	font-size: 12px;
	color: #86868B;
}

/* Planos Card */
.nocorte-planos-card {
	background: linear-gradient(135deg, #1D1D1F 0%, #2D2D30 100%);
	border-radius: 16px;
	padding: 32px;
	color: #FFFFFF;
	position: relative;
	overflow: hidden;
}

.nocorte-planos-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(91, 127, 255, 0.15) 0%, transparent 70%);
}

.nocorte-planos-icon {
	width: 48px;
	height: 48px;
	background: rgba(91, 127, 255, 0.2);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	position: relative;
}

.nocorte-planos-icon svg {
	width: 24px;
	height: 24px;
	color: #3F4BFF;
}

.nocorte-planos-title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 16px 0;
	position: relative;
}

.nocorte-planos-features {
	list-style: none;
	padding: 0;
	margin: 0 0 24px 0;
	position: relative;
}

.nocorte-planos-features li {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 10px;
	padding-left: 24px;
	position: relative;
}

.nocorte-planos-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #10B981;
	font-weight: 700;
}

.nocorte-planos-button {
	width: 100%;
	background: #3F4BFF;
	color: #FFFFFF !important;
	padding: 14px;
	text-align: center;
	border-radius: 50px !important;
	font-family: "NewBlack Typeface", Sans-serif !important;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	display: block;
	transition: all 0.2s ease;
	position: relative;
}

.nocorte-planos-button:hover {
	background: #7C9AFF;
	color: #FFFFFF !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(91, 127, 255, 0.3);
}

.nocorte-planos-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background: #3F4BFF;
	color: #FFFFFF;
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

/* Especificidade extra para garantir aplicação dos estilos */
.nocorte-planos-card .nocorte-planos-button,
.nocorte-planos-card a.nocorte-planos-button {
	color: #FFFFFF !important;
	font-family: "NewBlack Typeface", Sans-serif !important;
	border-radius: 50px !important;
}

.nocorte-planos-card .nocorte-planos-button:hover,
.nocorte-planos-card a.nocorte-planos-button:hover {
	color: #FFFFFF !important;
}

/* ==========================================================================
   Login Required
   ========================================================================== */

.nocorte-login-required {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #F5F5F7;
	gap: 20px;
	text-align: center;
	padding: 40px 20px;
}

.nocorte-login-required h2 {
	font-size: 32px;
	font-weight: 700;
	color: #1D1D1F;
	margin: 0;
}

.nocorte-login-required p {
	font-size: 16px;
	color: #86868B;
	margin: 0;
	max-width: 500px;
}

.nocorte-login-required a {
	margin-top: 10px;
}

.nocorte-login-box {
	background: #FFFFFF;
	border: 1px solid #E5E5EA;
	border-radius: 20px;
	padding: 48px;
	text-align: center;
	max-width: 400px;
}

.nocorte-login-box svg {
	margin-bottom: 24px;
}

.nocorte-login-box h3 {
	font-size: 24px;
	font-weight: 700;
	color: #1D1D1F;
	margin: 0 0 12px 0;
}

.nocorte-login-box p {
	font-size: 14px;
	color: #86868B;
	margin: 0 0 24px 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
	.nocorte-bottom-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.nocorte-account-sidebar {
		width: 200px;
	}

	.nocorte-account-content {
		margin-left: 200px;
		padding: 24px;
	}

	.nocorte-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.nocorte-concursos-grid {
		grid-template-columns: 1fr;
	}

	.nocorte-cta-section {
		padding: 32px 24px;
	}

	.nocorte-cta-buttons {
		flex-direction: column;
	}

	.nocorte-button {
		width: 100%;
		justify-content: center;
	}
}

/* Mobile Header */
.nocorte-mobile-header {
	display: none;
	width: 100%;
	height: 60px;
	background: #FFFFFF;
	border-bottom: 1px solid #E5E5EA;
	padding: 0 16px;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.nocorte-mobile-menu-btn {
	width: 40px;
	height: 40px;
	background: transparent !important;
	border: none !important;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	padding: 0 !important;
	border-radius: 8px;
	box-shadow: none !important;
	outline: none !important;
	text-decoration: none !important;
}

.nocorte-mobile-menu-btn:hover {
	background: #F5F5F5 !important;
	box-shadow: none !important;
	transform: none !important;
}

.nocorte-mobile-menu-btn:focus {
	background: #F5F5F5 !important;
	box-shadow: none !important;
	outline: none !important;
	transform: none !important;
}

.nocorte-mobile-menu-btn:active {
	background: #EBEBEB !important;
	box-shadow: none !important;
	transform: none !important;
}

.nocorte-mobile-menu-btn svg {
	color: #1D1D1F !important;
	width: 24px;
	height: 24px;
}

.nocorte-mobile-logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	height: 32px;
	display: flex;
	align-items: center;
}

.nocorte-mobile-logo img {
	height: 32px;
	width: auto;
}

/* Mobile Overlay */
.nocorte-mobile-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1001;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.nocorte-mobile-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

@media (max-width: 640px) {
	.nocorte-my-account {
		flex-direction: column;
		padding-top: 20px;
	}

	.nocorte-mobile-header {
		display: flex;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 1003;
	}

	.nocorte-mobile-overlay {
		display: block;
	}

	.nocorte-account-sidebar {
		position: fixed;
		left: -240px;
		top: 0;
		height: 100vh;
		z-index: 1002;
		transition: left 0.3s ease;
		box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
	}

	.nocorte-account-sidebar.open {
		left: 0;
	}

	.nocorte-sidebar-logo {
		display: none;
	}

	.nocorte-sidebar-nav {
		padding-top: 75px;
	}

	.nocorte-account-content {
		margin-left: 0;
		padding: 16px;
		width: 100%;
	}

	/* Overview Header */
	.nocorte-overview-header {
		margin-bottom: 20px;
	}

	.nocorte-overview-title {
		font-size: 24px;
		margin: 0 0 4px 0;
	}

	.nocorte-overview-subtitle {
		font-size: 14px;
	}

	/* Stats Grid - Ajustes para mobile */
	.nocorte-stats-grid {
		gap: 12px;
		margin-bottom: 32px;
	}

	.nocorte-stat-card {
		padding: 16px;
		border-radius: 12px;
	}

	.nocorte-stat-label {
		font-size: 9px !important;
		font-weight: 500 !important;
	}

	.nocorte-stat-icon {
		width: 20px !important;
		height: 20px !important;
	}

	.nocorte-overview-value {
		font-size: 28px !important;
		line-height: 34px !important;
		font-weight: 700 !important;
	}

	.nocorte-stat-value {
		font-size: 28px !important;
		font-weight: 700 !important;
	}

	.nocorte-stat-unit {
		font-size: 10px !important;
		font-weight: 400 !important;
	}

	.nocorte-credits-breakdown {
		flex-direction: row;
		gap: 8px;
		margin-top: 12px;
	}

	.nocorte-credit-item {
		padding: 10px 6px;
		flex: 1;
	}

	.nocorte-credit-number {
		font-size: 24px !important;
		font-weight: 700 !important;
	}

	.nocorte-credit-label {
		font-size: 9px !important;
		font-weight: 500 !important;
	}

	.nocorte-stat-link {
		padding: 10px 16px !important;
		font-size: 11px !important;
		margin-top: 12px !important;
		font-weight: 600 !important;
	}

	.nocorte-stat-link--full {
		width: 100% !important;
		margin-top: 12px !important;
	}

	.nocorte-stat-progress {
		margin-top: 12px;
	}

	.nocorte-progress-bar {
		height: 6px;
	}

	/* Concursos Grid - 2 colunas no mobile */
	.nocorte-concursos-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	/* Concurso Card - Ajustes mobile */
	.nocorte-concurso-card {
		padding: 16px;
		border-radius: 20px;
	}

	.nocorte-concurso-card:hover {
		transform: none;
	}

	.nocorte-concurso-logo-wrapper {
		width: 36px;
		height: 36px;
		border-radius: 6px;
	}

	.nocorte-concurso-header {
		margin-bottom: 2px;
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		gap: 4px;
	}

	.nocorte-concurso-status-badge {
		padding: 2px 5px;
		font-size: 8px;
		border-radius: 8px;
	}

	.nocorte-concurso-status-badge svg {
		width: 8px;
		height: 8px;
	}

	.nocorte-concurso-title {
		font-size: 14px !important;
		margin-bottom: 1px;
		line-height: 20px !important;
		font-weight: 700;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.nocorte-concurso-subtitle {
		font-size: 8px;
		margin-bottom: 12px;
		line-height: 1.2;
	}

	.nocorte-concurso-status-info {
		padding: 3px;
		font-size: 8px;
		margin-bottom: 6px;
		margin-top: 2px;
		gap: 3px;
		font-weight: 600;
		line-height: 8px;
		align-self: flex-end;
		width: fit-content;
		margin-left: auto;
	}

	.nocorte-concurso-status-info svg {
		width: 10px;
		height: 10px;
	}

	.nocorte-concurso-stats-list {
		gap: 2px;
	}

	.nocorte-concurso-stat-item {
		font-size: 11px;
		padding: 0;
	}

	.nocorte-concurso-stat-item svg {
		width: 14px;
		height: 14px;
	}

	.nocorte-stat-row {
		flex-direction: row !important;
		align-items: baseline !important;
		gap: 3px !important;
		flex-wrap: wrap;
	}

	.nocorte-stat-label {
		font-size: 9px !important;
		color: #86868B !important;
		font-weight: 400 !important;
		text-transform: none !important;
		line-height: 1.2 !important;
	}

	/* Valores específicos para mini cards de concursos */
	.nocorte-concurso-card .nocorte-stat-value {
		font-size: 8px !important;
		font-weight: 600 !important;
		color: #1D1D1F !important;
		line-height: 1.2 !important;
		margin-bottom: 3px !important;
	}

	.nocorte-stat-value svg {
		width: 8px !important;
		height: 8px !important;
	}

	/* Garantir hierarquia correta nos stats cards principais */
	.nocorte-stats-grid .nocorte-stat-card .nocorte-stat-label {
		font-size: 9px !important;
		font-weight: 500 !important;
	}

	.nocorte-stats-grid .nocorte-stat-card .nocorte-stat-value,
	.nocorte-stats-grid .nocorte-stat-card .nocorte-overview-value {
		font-size: 28px !important;
		font-weight: 700 !important;
	}

	.nocorte-stats-grid .nocorte-stat-card .nocorte-stat-unit {
		font-size: 10px !important;
		font-weight: 400 !important;
	}

	.nocorte-concurso-actions {
		margin-top: 6px;
		gap: 4px;
	}

	.nocorte-button-primary,
	.nocorte-button-secondary {
		padding: 6px 10px;
		font-size: 10px;
		border-radius: 8px;
		font-weight: 600;
	}

	.nocorte-button-primary svg,
	.nocorte-button-secondary svg {
		width: 12px;
		height: 12px;
	}
}

/* ==========================================================================
   Error Messages & Placeholders
   ========================================================================== */

.nocorte-error-message {
	text-align: center;
	padding: 60px 20px;
}

.nocorte-error-message svg {
	width: 64px;
	height: 64px;
	color: #EF4444;
	margin-bottom: 16px;
}

.nocorte-error-message h3 {
	font-size: 20px;
	font-weight: 700;
	color: #1D1D1F;
	margin: 0 0 8px 0;
}

.nocorte-error-message p {
	font-size: 14px;
	color: #86868B;
	margin: 0;
}

.nocorte-page-placeholder {
	text-align: center;
	padding: 80px 20px;
}

.nocorte-page-placeholder svg {
	width: 80px;
	height: 80px;
	color: #86868B;
	margin-bottom: 24px;
}

.nocorte-page-placeholder h3 {
	font-size: 24px;
	font-weight: 700;
	color: #1D1D1F;
	margin: 0 0 12px 0;
}

.nocorte-page-placeholder p {
	font-size: 16px;
	color: #86868B;
	margin: 0;
	line-height: 1.6;
}

/* ==========================================================================
   Concursos Page
   ========================================================================== */

/* Page Header */
.nocorte-page-header {
	margin-bottom: 32px;
}

.nocorte-page-header-breadcrumb {
	font-size: 28px;
	font-weight: 700;
	color: #1D1D1F;
}

.nocorte-breadcrumb-link {
	color: #1D1D1F;
	text-decoration: none;
}

/* Tabs Navigation */
.nocorte-tabs-nav {
	display: flex;
	gap: 8px;
	margin-bottom: 32px;
	padding: 8px;
	background: #FFFFFF;
	border-radius: 50px;
	overflow-x: auto;
}

.nocorte-tab-button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	background: transparent;
	border: none;
	border-radius: 50px;
	color: #86868B;
	font-size: 16px;
	font-family: "NewBlack Typeface", Sans-serif;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	flex: 1;
}

.nocorte-tab-button:hover {
	background: #F5F5F7;
	color: #1D1D1F;
}

.nocorte-tab-button.active {
	background: #3F4BFF;
	color: #FFFFFF;
}

.nocorte-tab-button svg {
	display: none;
}

/* Tab Content */
.nocorte-tab-content {
	display: none;
}

.nocorte-tab-content.active {
	display: block;
}

/* Empty State */
.nocorte-empty-state {
	text-align: center;
	padding: 80px 20px;
	background: #FFFFFF;
	border: 1px solid #E5E5EA;
	border-radius: 16px;
}

.nocorte-empty-state svg {
	color: #86868B;
	margin-bottom: 24px;
}

.nocorte-empty-state h3 {
	font-size: 20px;
	font-weight: 700;
	color: #1D1D1F;
	margin: 0 0 8px 0;
}

.nocorte-empty-state p {
	font-size: 14px;
	color: #86868B;
	margin: 0 0 24px 0;
}

/* Table Container */
.nocorte-table-container {
	background: #FFFFFF;
	border: 1px solid #E5E5EA;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 24px;
}

.nocorte-table {
	width: 100%;
	border-collapse: collapse;
}

.nocorte-table thead {
	background: #F5F5F7;
}

.nocorte-table th {
	padding: 16px 20px;
	text-align: left;
	font-size: 13px;
	font-weight: 600;
	color: #86868B;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nocorte-table tbody tr {
	border-top: 1px solid #E5E5EA;
	transition: background 0.2s ease;
}

.nocorte-table tbody tr:hover {
	background: #F5F5F7;
}

.nocorte-table td {
	padding: 20px;
	font-size: 14px;
	color: #1D1D1F;
}

.nocorte-table-concurso {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.nocorte-table-concurso-name {
	font-weight: 600;
	color: #1D1D1F;
}

.nocorte-table-concurso-cargo {
	font-size: 13px;
	color: #86868B;
}

.nocorte-table-rank {
	color: #3F4BFF;
	font-weight: 600;
}

.nocorte-table-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: #F5F5F7;
	border: 1px solid #E5E5EA;
	border-radius: 8px;
	color: #1D1D1F;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.nocorte-table-action-btn:hover {
	background: #3F4BFF;
	border-color: #3F4BFF;
	color: #FFFFFF;
}

.nocorte-table-action-btn svg {
	flex-shrink: 0;
}

/* Performance Card */
.nocorte-performance-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 32px;
	background: linear-gradient(135deg, #F5F5F7 0%, #E5E5EA 100%);
	border-radius: 16px;
}

.nocorte-performance-content {
	flex: 1;
}

.nocorte-performance-title {
	font-size: 20px;
	font-weight: 700;
	color: #1D1D1F;
	margin: 0 0 8px 0;
}

.nocorte-performance-description {
	font-size: 14px;
	color: #86868B;
	margin: 0;
}

/* Responsive for Tables */
@media (max-width: 1024px) {
	.nocorte-table-container {
		overflow-x: auto;
	}

	.nocorte-table {
		min-width: 800px;
	}

	.nocorte-performance-card {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.nocorte-tabs-nav {
		gap: 8px;
	}

	.nocorte-tab-button {
		padding: 8px 16px;
		font-size: 12px;
	}
}

/* ============================================
   ESTATÍSTICAS PAGE
   ============================================ */

.nocorte-estatisticas-page {
	padding: 0;
}

/* Page Header */
.nocorte-page-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
}

.nocorte-page-title {
	font-size: 32px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
}

.nocorte-btn-export {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: #3F4BFF;
	color: #FFFFFF;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.nocorte-btn-export:hover {
	background: #4C6FE8;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(91, 127, 255, 0.3);
}

.nocorte-btn-export svg {
	width: 20px;
	height: 20px;
}

/* Header Actions */
.nocorte-header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.nocorte-date-filter {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nocorte-date-input {
	padding: 10px 16px;
	border: none !important;
	border-radius: 24px !important;
	font-size: 13px;
	color: #1a1a1a;
	background: #FFFFFF;
	font-family: inherit;
	transition: all 0.2s ease;
	min-width: 140px;
	cursor: pointer;
}

.nocorte-date-input:hover {
	background: #F5F5F5;
}

.nocorte-date-input:focus {
	outline: none;
	background: #F5F5F5;
	box-shadow: none;
}

.nocorte-date-input::-webkit-calendar-picker-indicator {
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 0.2s ease;
}

.nocorte-date-input::-webkit-calendar-picker-indicator:hover {
	opacity: 1;
}

.nocorte-btn-clear-filter {
	width: 36px;
	height: 36px;
	padding: 0;
	background: #F5F5F5;
	color: #6B7280;
	border: none;
	border-radius: 24px;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nocorte-btn-clear-filter:hover {
	background: #EBEBEB;
	color: #EF4444;
}

.nocorte-btn-clear-filter svg {
	width: 16px;
	height: 16px;
}

/* Stats Grid */
.nocorte-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 32px;
}

.nocorte-stat-card {
	background: #FFFFFF;
	border-radius: 24px;
	padding: 24px;
	transition: all 0.2s ease;
}

.nocorte-stat-card:hover {
	transform: translateY(-4px);
}

.nocorte-stat-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.nocorte-stat-icon {
	width: 32px;
	height: 32px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.nocorte-stat-card--primary .nocorte-stat-icon {
	background: rgba(91, 127, 255, 0.1);
	color: #3F4BFF;
}

.nocorte-stat-card--success .nocorte-stat-icon {
	background: rgba(34, 197, 94, 0.1);
	color: #22C55E;
}

.nocorte-stat-card--warning .nocorte-stat-icon {
	background: rgba(251, 146, 60, 0.1);
	color: #FB923C;
}

.nocorte-stat-card--info .nocorte-stat-icon {
	background: rgba(59, 130, 246, 0.1);
	color: #3B82F6;
}

.nocorte-stat-label {
	font-size: 13px;
	font-weight: 500;
	color: #6B7280;
}

.nocorte-stat-value {
	font-size: 14px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 8px;
}

.nocorte-stat-value-large {
	font-size: 24px;
	font-weight: 700;
	font-family: "NewBlack Typeface", Sans-serif;
	color: #1a1a1a;
	margin-bottom: 8px;
}

.nocorte-stat-change {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 500;
}

.nocorte-stat-change.positive {
	color: #22C55E;
}

.nocorte-stat-change.negative {
	color: #EF4444;
}

.nocorte-stat-change svg {
	width: 16px;
	height: 16px;
}

.nocorte-stat-subtitle {
	font-size: 14px;
	color: #6B7280;
}

/* Charts Section */
.nocorte-charts-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 32px;
}

.nocorte-chart-card {
	background: #FFFFFF;
	border-radius: 24px;
	padding: 24px;
}

.nocorte-chart-card--large {
	grid-column: 1 / -1;
}

.nocorte-chart-header {
	margin-bottom: 20px;
}

.nocorte-chart-title {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 4px 0;
}

.nocorte-chart-subtitle {
	font-size: 13px;
	color: #6B7280;
}

.nocorte-chart-container {
	position: relative;
	height: 300px;
}

.nocorte-chart-card--large .nocorte-chart-container {
	height: 350px;
}

/* Comparativo Section */
.nocorte-comparativo-section {
	background: #FFFFFF;
	border-radius: 24px;
	padding: 32px;
}

.nocorte-comparativo-title {
	font-size: 20px;
	font-weight: 700;
	color: #000;
	margin: 0 0 8px 0;
}

.nocorte-comparativo-subtitle {
	font-size: 14px;
	color: #6B7280;
	margin: 0 0 24px 0;
}

.nocorte-comparativo-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.nocorte-comparativo-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid #F3F4F6;
}

.nocorte-comparativo-item:last-child {
	border-bottom: none;
}

.nocorte-comparativo-info {
	flex: 1;
}

.nocorte-comparativo-name {
	font-size: 16px;
	font-weight: 700;
	color: #000;
	margin: 0 0 4px 0;
}

.nocorte-comparativo-date {
	font-size: 13px;
	color: #6B7280;
}

.nocorte-comparativo-stats {
	display: flex;
	gap: 48px;
	align-items: center;
}

.nocorte-comparativo-stat {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
}

.nocorte-comparativo-stat-label {
	font-size: 12px;
	color: #6B7280;
}

.nocorte-comparativo-stat-value {
	font-size: 16px;
	font-weight: 600;
	color: #3F4BFF;
}

.nocorte-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.nocorte-section-title {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
}

.nocorte-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
}

.nocorte-badge--premium {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	color: #1a1a1a;
}

.nocorte-badge svg {
	width: 14px;
	height: 14px;
}

/* Comparativo Table */
.nocorte-comparativo-table {
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: #E5E7EB;
	border-radius: 12px;
	overflow: hidden;
}

.nocorte-table-header {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 2fr;
	gap: 16px;
	background: #F9FAFB;
	padding: 16px 20px;
	font-size: 13px;
	font-weight: 600;
	color: #6B7280;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nocorte-table-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 2fr;
	gap: 16px;
	background: #FFFFFF;
	padding: 16px 20px;
	align-items: center;
	transition: background 0.2s ease;
}

.nocorte-table-row:hover {
	background: #F9FAFB;
}

.nocorte-table-col {
	display: flex;
	align-items: center;
	gap: 12px;
}

.nocorte-table-col--concurso {
	font-weight: 500;
	color: #1a1a1a;
}

.nocorte-table-rank {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #F3F4F6;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	color: #6B7280;
	flex-shrink: 0;
}

.nocorte-table-name {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.nocorte-table-col--participacoes,
.nocorte-table-col--questoes {
	color: #6B7280;
	font-weight: 500;
}

.nocorte-table-col--desempenho {
	display: flex;
	align-items: center;
	gap: 12px;
}

.nocorte-progress-bar {
	flex: 1;
	height: 8px;
	background: #E5E7EB;
	border-radius: 4px;
	overflow: hidden;
}

.nocorte-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #3F4BFF 0%, #3B82F6 100%);
	border-radius: 4px;
	transition: width 0.3s ease;
}

.nocorte-progress-label {
	min-width: 48px;
	text-align: right;
	font-weight: 600;
	color: #1a1a1a;
	font-size: 14px;
}

/* Empty State */
.nocorte-empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 64px 32px;
	text-align: center;
}

.nocorte-empty-state svg {
	margin-bottom: 20px;
	color: #D1D5DB;
}

.nocorte-empty-state p {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 8px 0;
}

.nocorte-empty-state span {
	font-size: 14px;
	color: #6B7280;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.nocorte-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.nocorte-charts-section {
		grid-template-columns: 1fr;
	}

	.nocorte-chart-card--large {
		grid-column: 1;
	}
}

@media (max-width: 768px) {
	.nocorte-page-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.nocorte-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.nocorte-table-header,
	.nocorte-table-row {
		grid-template-columns: 2fr 1fr 2fr;
		font-size: 12px;
	}

	.nocorte-table-col--participacoes {
		display: none;
	}

	.nocorte-section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}

/* ============================================
   SUPORTE PAGE
   ============================================ */

.nocorte-suporte-page {
	padding: 0;
}

.nocorte-suporte-page .nocorte-page-title {
	display: flex;
	align-items: center;
	gap: 12px;
}

.nocorte-suporte-page .nocorte-page-title svg {
	width: 24px;
	height: 24px;
	color: #3F4BFF;
}

/* Contact Cards */
.nocorte-contact-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.nocorte-contact-card {
	background: #FFFFFF;
	border-radius: 24px;
	padding: 32px 24px;
	text-align: center;
	box-shadow: none;
	transition: all 0.2s ease;
}

.nocorte-contact-card:hover {
	transform: translateY(-4px);
	box-shadow: none;
}

.nocorte-contact-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nocorte-contact-icon--email {
	background: #ECEDFF;
	color: #3F4BFF;
}

.nocorte-contact-icon--chat {
	background: #ECEDFF;
	color: #3F4BFF;
}

.nocorte-contact-icon--phone {
	background: #ECEDFF;
	color: #3F4BFF;
}

.nocorte-contact-title {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 8px 0;
}

.nocorte-contact-subtitle {
	font-size: 14px;
	color: #6B7280;
	margin: 0 0 12px 0;
}

.nocorte-contact-link {
	display: inline-block;
	font-size: 14px;
	color: #3F4BFF;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.nocorte-contact-link:hover {
	color: #4C6FE8;
	text-decoration: underline;
}

.nocorte-contact-status {
	display: inline-block;
	padding: 6px 12px;
	background: #F3F4F6;
	color: #6B7280;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 500;
}

/* Contact Form */
.nocorte-contact-form-wrapper {
	background: #FFF;
	border-radius: 24px;
	padding: 32px;
	box-shadow: none;
	margin-bottom: 32px;
}

.nocorte-form-header {
	margin-bottom: 32px;
}

.nocorte-form-title {
	font-size: 24px;
	font-weight: 700;
	color: #000;
	margin: 0 0 8px 0;
}

.nocorte-form-subtitle {
	font-size: 14px;
	color: #6B7280;
	margin: 0;
}

.nocorte-support-form {
	width: 100%;
}

.nocorte-support-form .nocorte-form-label,
.nocorte-support-form label {
	color: #1a1a1a !important;
	font-weight: 600 !important;
	font-size: 14px !important;
}

.nocorte-support-form .nocorte-form-input,
.nocorte-support-form input[type="text"],
.nocorte-support-form input[type="email"],
.nocorte-support-form textarea {
	padding: 16px 20px !important;
	font-size: 14px !important;
	background: #F5F5F5 !important;
	border-radius: 50px !important;
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
}

.nocorte-support-form textarea {
	border-radius: 18px !important;
}

.nocorte-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.nocorte-form-group {
	margin-bottom: 20px;
}

.nocorte-form-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a !important;
	margin-bottom: 8px;
}

.nocorte-form-input,
.nocorte-form-textarea {
	width: 100%;
	padding: 16px 20px !important;
	font-size: 14px !important;
	color: #1a1a1a !important;
	background: #F5F5F5 !important;
	border: none !important;
	border-radius: 50px !important;
	transition: all 0.2s ease;
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
	box-shadow: none !important;
	line-height: 1.5 !important;
}

.nocorte-form-input:focus,
.nocorte-form-textarea:focus {
	outline: none !important;
	background: #EBEBEB !important;
	box-shadow: none !important;
	border: none !important;
}

.nocorte-form-input::placeholder,
.nocorte-form-textarea::placeholder {
	color: #9CA3AF !important;
	opacity: 1 !important;
}

.nocorte-form-textarea {
	resize: vertical;
	min-height: 120px;
	border-radius: 18px !important;
}

/* Ensure consistent styling for all input types, selects, and textareas across all tabs */
.nocorte-configuracoes-page input[type=date],
.nocorte-configuracoes-page input[type=email],
.nocorte-configuracoes-page input[type=number],
.nocorte-configuracoes-page input[type=password],
.nocorte-configuracoes-page input[type=search],
.nocorte-configuracoes-page input[type=tel],
.nocorte-configuracoes-page input[type=text],
.nocorte-configuracoes-page input[type=url],
.nocorte-configuracoes-page select {
	width: 100%;
	padding: 16px 20px !important;
	font-size: 14px;
	color: #1a1a1a;
	background: #F5F5F5 !important;
	border: none !important;
	border-radius: 50px !important;
	transition: all 0.2s ease;
	font-family: inherit;
	box-shadow: none !important;
}

.nocorte-configuracoes-page textarea {
	width: 100%;
	padding: 16px 20px !important;
	font-size: 14px;
	color: #1a1a1a;
	background: #F5F5F5 !important;
	border: none !important;
	border-radius: 18px !important;
	transition: all 0.2s ease;
	font-family: inherit;
	box-shadow: none !important;
	resize: vertical;
	min-height: 120px;
}

.nocorte-configuracoes-page input[type=date]:focus,
.nocorte-configuracoes-page input[type=email]:focus,
.nocorte-configuracoes-page input[type=number]:focus,
.nocorte-configuracoes-page input[type=password]:focus,
.nocorte-configuracoes-page input[type=search]:focus,
.nocorte-configuracoes-page input[type=tel]:focus,
.nocorte-configuracoes-page input[type=text]:focus,
.nocorte-configuracoes-page input[type=url]:focus,
.nocorte-configuracoes-page select:focus,
.nocorte-configuracoes-page textarea:focus {
	outline: none !important;
	background: #EBEBEB !important;
	box-shadow: none !important;
	border: none !important;
}

.nocorte-configuracoes-page input::placeholder,
.nocorte-configuracoes-page textarea::placeholder {
	color: #9CA3AF;
}

.nocorte-form-submit {
	width: 100%;
	padding: 16px 32px;
	background: #3F4BFF;
	color: #FFFFFF;
	border: none;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	font-family: "NewBlack Typeface", Sans-serif;
	cursor: pointer;
	transition: all 0.2s ease;
	margin-top: 12px;
}

.nocorte-form-submit:hover {
	background: #3440D9;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(63, 75, 255, 0.3);
}

.nocorte-form-submit:active {
	transform: translateY(0);
}

.nocorte-form-submit:disabled {
	background: #D1D5DB;
	cursor: not-allowed;
	transform: none;
}

.nocorte-form-message {
	margin-top: 20px;
	padding: 16px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
}

.nocorte-form-message--success {
	background: rgba(34, 197, 94, 0.1);
	color: #16A34A;
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.nocorte-form-message--error {
	background: rgba(239, 68, 68, 0.1);
	color: #DC2626;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Help CTA */
.nocorte-help-cta {
	background: #FFFFFF;
	border-radius: 16px;
	padding: 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: none;
}

.nocorte-help-content {
	flex: 1;
}

.nocorte-help-title {
	font-size: 20px;
	font-weight: 700;
	color: #000;
	margin: 0 0 8px 0;
}

.nocorte-help-text {
	font-size: 14px;
	color: #86868B;
	margin: 0;
}

.nocorte-help-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: #FFFFFF;
	color: #3F4BFF;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.nocorte-help-link:hover {
	transform: translateX(4px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nocorte-help-link svg {
	width: 20px;
	height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.nocorte-contact-cards {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.nocorte-form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.nocorte-help-cta {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.nocorte-contact-form-wrapper {
		padding: 24px;
	}

	.nocorte-help-cta {
		padding: 24px;
	}
}

/* ============================================
   CONFIGURAÇÕES PAGE
   ============================================ */

.nocorte-configuracoes-page {
	padding: 0;
}

/* Config Tabs */
.nocorte-config-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 32px;
	padding: 8px;
	background: #FFFFFF;
	border-radius: 50px;
	overflow-x: auto;
}

.nocorte-config-tab {
	padding: 16px 32px;
	background: transparent;
	border: none;
	border-radius: 50px;
	color: #86868B;
	font-size: 16px;
	font-family: "NewBlack Typeface", Sans-serif;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	flex: 1;
}

.nocorte-config-tab:hover {
	background: #F5F5F7;
	color: #1D1D1F;
}

.nocorte-config-tab.active {
	background: #3F4BFF;
	color: #FFFFFF;
}

.nocorte-config-tab-content {
	display: none;
}

.nocorte-config-tab-content.active {
	display: block;
}

/* Config Card */
.nocorte-config-card {
	background: #FFFFFF;
	border-radius: 16px;
	padding: 32px;
}

.nocorte-config-header {
	margin-bottom: 32px;
}

.nocorte-config-title {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 8px 0;
}

.nocorte-config-subtitle {
	font-size: 14px;
	color: #6B7280;
	margin: 0;
}

/* Avatar Upload */
.nocorte-avatar-upload {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid #E5E7EB;
}

.nocorte-avatar-preview {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	background: #F3F4F6;
	flex-shrink: 0;
}

.nocorte-avatar-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nocorte-avatar-info {
	flex: 1;
}

.nocorte-btn-secondary {
	padding: 10px 20px;
	background: #F3F4F6;
	color: #1a1a1a;
	border: 2px solid #E5E7EB;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	outline: none;
}

.nocorte-btn-secondary:hover {
	background: #E5E7EB;
	border-color: #D1D5DB;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nocorte-btn-secondary:focus {
	border-color: #3B82F6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.nocorte-btn-secondary:active {
	transform: translateY(0);
	box-shadow: none;
	background: #D1D5DB;
}

.nocorte-btn-secondary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.nocorte-avatar-hint {
	font-size: 13px;
	color: #6B7280;
	margin: 8px 0 0 0;
}

/* Form Hint */
.nocorte-form-hint {
	font-size: 13px;
	color: #6B7280;
	margin: 8px 0 0 0;
}

/* Input with Status (for apelido validation) */
.nocorte-input-with-status {
	position: relative;
	display: flex;
	align-items: center;
}

.nocorte-input-with-status .nocorte-form-input {
	padding-right: 40px;
}

.nocorte-input-status {
	position: absolute;
	right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	pointer-events: none;
}

.nocorte-input-status.loading {
	color: #6B7280;
}

.nocorte-input-status.success {
	color: #10B981;
}

.nocorte-input-status.success svg {
	animation: checkmark-appear 0.3s ease-out;
}

.nocorte-input-status.error {
	color: #EF4444;
}

.nocorte-input-status.error svg {
	animation: shake 0.4s ease-out;
}

/* Input border colors based on status */
.nocorte-input-with-status:has(.nocorte-input-status.success) .nocorte-form-input {
	border-color: #10B981;
}

.nocorte-input-with-status:has(.nocorte-input-status.error) .nocorte-form-input {
	border-color: #EF4444;
}

/* Spinner small */
.nocorte-spinner-small {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid #E5E7EB;
	border-top-color: #3F4BFF;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

@keyframes checkmark-appear {
	0% { transform: scale(0); opacity: 0; }
	50% { transform: scale(1.2); }
	100% { transform: scale(1); opacity: 1; }
}

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	20%, 60% { transform: translateX(-3px); }
	40%, 80% { transform: translateX(3px); }
}

/* Payments Table */
.nocorte-payments-table {
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: #E5E7EB;
	border-radius: 12px;
	overflow: hidden;
}

.nocorte-payments-header {
	display: grid;
	grid-template-columns: 120px 2fr 120px 120px;
	gap: 16px;
	background: #F9FAFB;
	padding: 16px 20px;
	font-size: 13px;
	font-weight: 600;
	color: #6B7280;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nocorte-payment-row {
	display: grid;
	grid-template-columns: 120px 2fr 120px 120px;
	gap: 16px;
	background: #FFFFFF;
	padding: 16px 20px;
	align-items: center;
	transition: background 0.2s ease;
}

.nocorte-payment-row:hover {
	background: #F9FAFB;
}

.nocorte-payment-col {
	font-size: 14px;
}

.nocorte-payment-col--data {
	color: #6B7280;
	font-weight: 500;
}

.nocorte-payment-col--desc {
	color: #1a1a1a;
	font-weight: 500;
}

.nocorte-payment-col--valor {
	color: #1a1a1a;
	font-weight: 600;
	text-align: right;
}

.nocorte-payment-col--status {
	text-align: right;
}

/* Status Badges */
.nocorte-status-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	text-transform: capitalize;
}

.nocorte-status-badge--completed,
.nocorte-status-badge--processing,
.nocorte-status-badge--active {
	background: rgba(34, 197, 94, 0.1);
	color: #16A34A;
}

.nocorte-status-badge--pending,
.nocorte-status-badge--on-hold {
	background: rgba(251, 146, 60, 0.1);
	color: #EA580C;
}

.nocorte-status-badge--cancelled,
.nocorte-status-badge--failed,
.nocorte-status-badge--expired {
	background: rgba(239, 68, 68, 0.1);
	color: #DC2626;
}

.nocorte-status-badge--refunded {
	background: rgba(107, 114, 128, 0.1);
	color: #4B5563;
}

/* Subscriptions List */
.nocorte-subscriptions-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.nocorte-subscription-card {
	background: #F9FAFB;
	border-radius: 12px;
	padding: 24px;
	border: 2px solid #E5E7EB;
	transition: all 0.2s ease;
}

.nocorte-subscription-card:hover {
	border-color: #3F4BFF;
	box-shadow: 0 4px 12px rgba(91, 127, 255, 0.1);
}

.nocorte-subscription-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #E5E7EB;
}

.nocorte-subscription-title {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
}

.nocorte-subscription-body {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.nocorte-subscription-items {
	font-size: 14px;
	color: #6B7280;
}

.nocorte-subscription-items p {
	margin: 0 0 8px 0;
}

.nocorte-subscription-meta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.nocorte-subscription-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.nocorte-subscription-label {
	font-size: 12px;
	color: #6B7280;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nocorte-subscription-value {
	font-size: 14px;
	color: #1a1a1a;
	font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.nocorte-config-tabs {
		overflow-x: scroll;
		scrollbar-width: none;
	}

	.nocorte-config-tabs::-webkit-scrollbar {
		display: none;
	}

	.nocorte-payments-header,
	.nocorte-payment-row {
		grid-template-columns: 100px 1fr 100px 100px;
		font-size: 13px;
	}

	.nocorte-subscription-meta {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.nocorte-config-tab {
		padding: 8px 16px;
		font-size: 12px;
	}
}

@media (max-width: 768px) {
	.nocorte-config-card {
		padding: 24px;
	}

	.nocorte-avatar-upload {
		flex-direction: column;
		text-align: center;
	}

	.nocorte-payments-header {
		display: none;
	}

	.nocorte-payment-row {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 16px;
	}

	.nocorte-payment-col {
		display: flex;
		justify-content: space-between;
	}

	.nocorte-payment-col::before {
		content: attr(data-label);
		font-weight: 600;
		color: #6B7280;
		font-size: 12px;
		text-transform: uppercase;
	}

	.nocorte-payment-col--data::before {
		content: "Data: ";
	}

	.nocorte-payment-col--desc::before {
		content: "Descrição: ";
	}

	.nocorte-payment-col--valor::before {
		content: "Valor: ";
	}

	.nocorte-payment-col--status::before {
		content: "Status: ";
	}

	.nocorte-subscription-card {
		padding: 16px;
	}
}

/* ============================================
   NOTIFICAÇÕES PAGE
   ============================================ */

.nocorte-notificacoes-page {
	padding: 0;
}

.nocorte-notifications-card {
	background: #FFFFFF;
	border-radius: 16px;
	padding: 32px;
}

.nocorte-notifications-header {
	margin-bottom: 32px;
}

.nocorte-notifications-title {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 8px 0;
}

.nocorte-notifications-subtitle {
	font-size: 14px;
	color: #6B7280;
	margin: 0;
}

/* Notifications List */
.nocorte-notifications-list {
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: #E5E7EB;
	border-radius: 12px;
	overflow: hidden;
}

.nocorte-notification-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px;
	background: #FFFFFF;
	transition: background 0.2s ease;
}

.nocorte-notification-item:hover {
	background: #F9FAFB;
}

.nocorte-notification-content {
	flex: 1;
	margin-right: 24px;
}

.nocorte-notification-name {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 4px 0;
}

.nocorte-notification-desc {
	font-size: 14px;
	color: #6B7280;
	margin: 0;
}

/* Toggle Switch */
.nocorte-toggle {
	position: relative;
	display: inline-block;
	width: 52px;
	height: 28px;
	flex-shrink: 0;
}

.nocorte-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}

.nocorte-toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #D1D5DB;
	transition: 0.3s;
	border-radius: 28px;
}

.nocorte-toggle-slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: 0.3s;
	border-radius: 50%;
}

.nocorte-toggle input:checked + .nocorte-toggle-slider {
	background-color: #3F4BFF;
}

.nocorte-toggle input:checked + .nocorte-toggle-slider:before {
	transform: translateX(24px);
}

.nocorte-toggle input:focus + .nocorte-toggle-slider {
	box-shadow: 0 0 0 3px rgba(63, 75, 255, 0.1);
}

/* Notification Message */
.nocorte-notification-message {
	margin-top: 24px;
	padding: 16px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}

.nocorte-notification-message--success {
	background: rgba(34, 197, 94, 0.1);
	color: #16A34A;
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.nocorte-notification-message--error {
	background: rgba(239, 68, 68, 0.1);
	color: #DC2626;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
	.nocorte-notifications-card {
		padding: 20px 16px;
	}

	.nocorte-notifications-header {
		margin-bottom: 20px;
	}

	.nocorte-notifications-title {
		font-size: 18px;
	}

	.nocorte-notifications-subtitle {
		font-size: 13px;
	}

	.nocorte-notification-item {
		padding: 16px;
		flex-direction: row;
		align-items: flex-start;
		gap: 12px;
	}

	.nocorte-notification-content {
		margin-right: 12px;
		flex: 1;
		min-width: 0;
	}

	.nocorte-notification-name {
		font-size: 14px;
		margin-bottom: 2px;
	}

	.nocorte-notification-desc {
		font-size: 10px;
		line-height: 1.4;
	}

	.nocorte-toggle {
		flex-shrink: 0;
		margin-top: 2px;
	}
}

/* ============================================
   ORDER DETAILS VIEW
   ============================================ */

.nocorte-order-detail-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 32px;
}

.nocorte-back-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: transparent;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	color: #1a1a1a;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

.nocorte-back-button:hover {
	background: #F9FAFB;
	border-color: #D1D5DB;
}

.nocorte-back-button svg {
	width: 16px;
	height: 16px;
}

.nocorte-order-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
	gap: 16px;
}

.nocorte-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #E5E7EB;
	border-top-color: #3F4BFF;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.nocorte-order-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 32px;
}

.nocorte-order-info-card {
	background: #F9FAFB;
	border-radius: 16px;
	padding: 24px;
}

.nocorte-order-info-card h5 {
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 16px 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nocorte-order-info-card p {
	font-size: 14px;
	color: #6B7280;
	margin: 8px 0;
}

.nocorte-order-date {
	margin-top: 12px;
}

.nocorte-order-items {
	margin-bottom: 32px;
}

.nocorte-order-items h5 {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 20px 0;
}

.nocorte-order-items-table {
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	overflow: hidden;
}

.nocorte-order-items-header {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 16px;
	background: #F9FAFB;
	padding: 16px 20px;
	font-size: 12px;
	font-weight: 600;
	color: #6B7280;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nocorte-order-item-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 16px;
	padding: 20px;
	border-top: 1px solid #E5E7EB;
	align-items: center;
}

.nocorte-order-item-row:first-child {
	border-top: none;
}

.nocorte-order-item-col--produto {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.nocorte-item-sku {
	font-size: 12px;
	color: #9CA3AF;
}

.nocorte-order-item-col--qty,
.nocorte-order-item-col--price,
.nocorte-order-item-col--total {
	text-align: right;
	font-size: 14px;
	color: #1a1a1a;
}

.nocorte-order-totals {
	background: #F9FAFB;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 32px;
	max-width: 400px;
	margin-left: auto;
}

.nocorte-order-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	font-size: 14px;
	color: #6B7280;
}

.nocorte-order-total-row:not(:last-child) {
	border-bottom: 1px solid #E5E7EB;
}

.nocorte-order-total-row--final {
	padding-top: 16px;
	font-size: 16px;
	color: #1a1a1a;
}

.nocorte-order-notes {
	background: #FFFBEB;
	border: 1px solid #FCD34D;
	border-radius: 12px;
	padding: 24px;
}

.nocorte-order-notes h5 {
	font-size: 16px;
	font-weight: 700;
	color: #92400E;
	margin: 0 0 16px 0;
}

.nocorte-order-note {
	padding: 16px 0;
	border-bottom: 1px solid #FDE68A;
}

.nocorte-order-note:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.nocorte-note-date {
	font-size: 12px;
	color: #92400E;
	margin: 0 0 8px 0;
	font-weight: 600;
}

.nocorte-note-content {
	font-size: 14px;
	color: #78350F;
	margin: 0;
}

@media (max-width: 768px) {
	.nocorte-order-items-header,
	.nocorte-order-item-row {
		grid-template-columns: 2fr 1fr 1fr;
	}

	.nocorte-order-item-col--price {
		display: none;
	}

	.nocorte-order-info-grid {
		grid-template-columns: 1fr;
	}

	.nocorte-order-totals {
		max-width: 100%;
	}
}

/* ============================================
   SUBSCRIPTION DETAILS VIEW
   ============================================ */

.nocorte-subscription-detail-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 32px;
}

.nocorte-back-button-sub {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: transparent;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	color: #1a1a1a;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

.nocorte-back-button-sub:hover {
	background: #F9FAFB;
	border-color: #D1D5DB;
}

.nocorte-back-button-sub svg {
	width: 16px;
	height: 16px;
}

.nocorte-subscription-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
	gap: 16px;
}

/* Related Orders Section */
.nocorte-related-orders {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nocorte-related-order {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 16px;
	padding: 16px;
	background: #F9FAFB;
	border-radius: 8px;
	align-items: center;
	font-size: 14px;
}

.nocorte-order-link {
	font-weight: 600;
	color: #3F4BFF;
}

@media (max-width: 768px) {
	.nocorte-related-order {
		grid-template-columns: 1fr 1fr;
		row-gap: 8px;
	}

	.nocorte-order-link {
		grid-column: 1 / -1;
	}
}
