/* ============================================================
   REDE SOCIAL CRISTÃ - PREMIUM CSS
   Design moderno e elegante
   ============================================================ */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ============================================================
   CSS VARIABLES
   ============================================================ */

:root {
	/* Light mode (default) */
	--bg-primary: #ffffff;
	--bg-secondary: #f8fafc;
	--bg-tertiary: #f1f5f9;
	--text-primary: #0f172a;
	--text-secondary: #475569;
	--text-tertiary: #94a3b8;
	--border-color: #e2e8f0;
	--primary: #3b82f6;
	--primary-light: #60a5fa;
	--primary-lighter: #dbeafe;
	--primary-dark: #2563eb;
	--accent: #8b5cf6;
	--accent-light: #a78bfa;
	--accent-lighter: #ede9fe;
	--accent-dark: #7c3aed;
	--success: #10b981;
	--warning: #f59e0b;
	--danger: #ef4444;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--radius-sm: 0.375rem;
	--radius-md: 0.5rem;
	--radius-lg: 0.75rem;
	--radius-xl: 1rem;
	--radius-full: 9999px;
	/* Alinhar largura do menu com margin-left do conteúdo (evita faixa vazia ao lado do menu) */
	--sidebar-width: 320px;
}

[data-theme="dark"] {
	/* Dark mode */
	--bg-primary: #0f172a;
	--bg-secondary: #1e293b;
	--bg-tertiary: #334155;
	--text-primary: #f8fafc;
	--text-secondary: #cbd5e1;
	--text-tertiary: #64748b;
	--border-color: #334155;
	--primary: #60a5fa;
	--primary-light: #93c5fd;
	--primary-lighter: #1e3a5f;
	--primary-dark: #3b82f6;
	--accent: #a78bfa;
	--accent-light: #c4b5fd;
	--accent-lighter: #312e81;
	--accent-dark: #8b5cf6;
	--success: #34d399;
	--warning: #fbbf24;
	--danger: #f87171;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
}

body {
	font-family: 'Plus Jakarta Sans', 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: #f0f2f5;
	color: var(--text-primary);
	line-height: 1.6;
	min-height: 100vh;
}

/* ============================================================
   MOBILE MENU TOGGLE
   ============================================================ */

.mobile-menu-toggle {
	display: none;
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 1001;
	background: white;
	border: 1px solid #e4e6eb;
	border-radius: 8px;
	padding: 0.75rem;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
	background: #f0f2f5;
}

.mobile-menu-toggle i {
	font-size: 1.25rem;
	color: #1c1e21;
}

.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
}

.overlay.active {
	display: block;
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: var(--sidebar-width);
	height: 100vh;
	background: #f0f2f5;
	border-right: 1px solid #d8dadf;
	display: flex;
	flex-direction: column;
	z-index: 1000;
	transition: transform 0.3s ease;
}

.sidebar-header {
	padding: 1rem 1rem 0.75rem;
	border-bottom: 1px solid #e4e6eb;
	background: #f0f2f5;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sidebar-header h1 {
	font-size: 1rem;
	font-weight: 700;
	color: #1c1e21;
	margin: 0;
	letter-spacing: -0.01em;
}

.dark-mode-toggle {
	background: #e4e6eb;
	border: 1px solid #d8dadf;
	border-radius: 9999px;
	padding: 0.45rem 0.55rem;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #1c1e21;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dark-mode-toggle:hover {
	background: #d8dadf;
}

.dark-mode-toggle i {
	font-size: 0.875rem;
}

.sidebar-nav {
	flex: 0 1 auto;
	min-height: 0;
	padding: 0.5rem 0.5rem;
	overflow-y: auto;
}

.sidebar-nav-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.625rem 0.875rem;
	border-radius: 8px;
	color: #1c1e21;
	text-decoration: none;
	margin-bottom: 0.125rem;
	transition: background 0.15s ease;
	font-weight: 500;
	font-size: 0.92rem;
}

.sidebar-nav-item::before {
	display: none;
}

.sidebar-nav-item:hover {
	background: #e4e6eb;
	color: #1c1e21;
}

.sidebar-nav-item.active {
	background: #e7f3ff;
	color: #1877f2;
	font-weight: 600;
}

.sidebar-nav-item i {
	font-size: 1rem;
	width: 1.1rem;
	text-align: center;
}

.sidebar-nav-item:hover i {
	transform: none;
}

.badge {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.625rem;
	border-radius: 9999px;
	box-shadow: var(--shadow-md);
	animation: pulse 2s infinite;
}

.badge-admin {
	background: var(--primary-lighter);
	color: var(--primary);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.625rem;
	border-radius: 9999px;
}

.badge-me {
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--accent);
	margin-left: 0.25rem;
}

.badge-type {
	background: var(--primary-lighter);
	color: var(--primary);
	font-size: 0.6875rem;
	font-weight: 600;
	padding: 0.125rem 0.5rem;
	border-radius: 9999px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.video-embed {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: var(--radius-lg);
}

.video-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.video-link {
	padding: 1rem;
}

.video-link-btn {
	color: var(--accent);
	text-decoration: none;
	font-weight: 500;
}

.video-link-btn:hover {
	text-decoration: underline;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.sidebar-footer {
	margin-top: auto;
	flex-shrink: 0;
	padding: 0.75rem 0.5rem 1rem;
	border-top: 1px solid #e4e6eb;
	background: #f0f2f5;
}

.user-info {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.625rem 0.75rem;
	background: transparent;
	border-radius: 8px;
	margin-bottom: 0.5rem;
}

.user-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	background: #d8dadf;
	border: none;
	box-shadow: none;
}

.user-details {
	flex: 1;
}

.user-name {
	font-weight: 600;
	color: #1c1e21;
	font-size: 0.875rem;
}

.user-notifications {
	font-size: 0.75rem;
	color: #65676b;
	font-weight: 500;
	margin-top: 0.125rem;
}

.sidebar-groups {
	margin-bottom: 0.5rem;
}

.groups-title {
	font-size: 0.7rem;
	font-weight: 700;
	color: #65676b;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.5rem;
	padding-left: 0.75rem;
}

.group-item {
	display: block;
	padding: 0.5rem 0.75rem;
	font-size: 0.8125rem;
	color: #1c1e21;
	text-decoration: none;
	background: transparent;
	border-radius: 8px;
	margin-bottom: 0.125rem;
	transition: background 0.15s ease;
	border: none;
}

.group-item:hover {
	background: #e4e6eb;
	color: #1c1e21;
}

.group-name {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 500;
}

.sidebar-logout {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.625rem 0.75rem;
	color: #1c1e21;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.15s ease;
	font-weight: 500;
	font-size: 0.875rem;
	border: none;
}

.sidebar-logout:hover {
	background: #ffebe9;
	color: #d93025;
}

/* ============================================================
   FEED (estrutura inspirada no Facebook)
   ============================================================ */

.main-feed {
	margin-left: var(--sidebar-width);
	min-height: 100vh;
	background: #f0f2f5;
	transition: margin-left 0.3s ease;
}

/* Três colunas: stream central + rail direita (pedidos + patrocinados) */
.fb-feed-page {
	width: 100%;
	padding: 1rem 1.5rem 1.5rem;
	box-sizing: border-box;
}

.fb-feed-layout {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: center;
	gap: 1.5rem;
	max-width: 1180px;
	margin: 0 auto;
}

.fb-feed-stream {
	flex: 1 1 680px;
	max-width: 680px;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.fb-feed-rail {
	flex: 0 0 320px;
	width: 320px;
	min-width: 300px;
	position: sticky;
	top: 1rem;
	align-self: flex-start;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
	.sidebar {
		width: 280px;
	}
	
	.main-feed {
		margin-left: 280px;
	}
	
	.fb-feed-stream {
		flex: 1 1 550px;
		max-width: 550px;
	}
	
	.fb-feed-rail {
		flex: 0 0 280px;
		width: 280px;
	}
	
	/* Feed header adjustments */
	.feed-header {
		padding: 1.25rem;
	}
	
	.feed-header h2 {
		font-size: 1.375rem;
	}
	
	/* Composer adjustments */
	.fb-composer-extras {
		grid-template-columns: repeat(2, 1fr);
	}
	
	/* Post card adjustments */
	.fb-post__header {
		padding: 1rem;
	}
	
	.fb-post__avatar-wrap .user-avatar {
		width: 44px;
		height: 44px;
	}
	
	/* Ad slot adjustments */
	.ad-slot {
		padding: 1rem;
	}
	
	.ad-slot img {
		width: 120px;
		height: 120px;
	}
}

@media (max-width: 1100px) {
	.fb-feed-layout {
		flex-direction: column;
		align-items: stretch;
	}
	.fb-feed-rail {
		position: static;
		width: 100%;
		max-width: 680px;
		margin: 0 auto;
	}
	.ad-slot img {
		width: 100px;
		height: 100px;
	}
}

/* Legado: manter .feed / .feed-content por compatibilidade */
.feed {
	padding: 0;
	max-width: none;
	margin: 0;
}

.feed-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.feed-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	padding: 0.75rem 0.9rem;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid #e4e6eb;
	margin-bottom: 0;
}

.feed-header h2 {
	font-size: 1.05rem;
	font-weight: 700;
	color: #1c1e21;
}

.feed-header p {
	font-size: 0.8125rem;
	color: #65676b;
	margin-top: 0.25rem;
}

.card {
	background: white;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-color);
	overflow: hidden;
	transition: all 0.3s ease;
}

.card:hover {
	box-shadow: var(--shadow-xl);
	transform: translateY(-4px);
}

.composer-card {
	position: relative;
	background: white;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid #e4e6eb;
	margin-bottom: 0;
	overflow: hidden;
}

.composer-card::before {
	display: none;
}

.main-feed .btn-primary,
.main-feed .btn-secondary {
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.5rem 0.75rem;
	box-shadow: none;
	transform: none;
}

.main-feed .btn-primary {
	background: #1877f2;
	border: 1px solid #1877f2;
	color: #fff;
}

.main-feed .btn-primary:hover {
	background: #166fe5;
	border-color: #166fe5;
}

.main-feed .btn-secondary {
	background: #e4e6eb;
	border: 1px solid #e4e6eb;
	color: #050505;
}

.main-feed .btn-secondary:hover {
	background: #d8dadf;
	border-color: #d8dadf;
	color: #050505;
}

.composer-inner {
	padding: 1.5rem;
	padding-top: 2rem;
}

.composer-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.composer-label i {
	color: var(--accent);
}

.btn-primary {
	padding: 0.875rem 2rem;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	font-weight: 600;
	border-radius: var(--radius-lg);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-md);
	font-size: 1rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}

.btn-primary:active {
	transform: translateY(0);
}

.btn-secondary {
	padding: 0.875rem 2rem;
	background: white;
	color: var(--text-primary);
	font-weight: 600;
	border-radius: var(--radius-lg);
	border: 2px solid var(--border-color);
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-secondary:hover {
	background: var(--bg-tertiary);
	border-color: var(--primary);
	color: var(--primary);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.input-text {
	width: 100%;
	padding: 1rem 1.25rem;
	background: var(--bg-secondary);
	border: 2px solid var(--border-color);
	border-radius: var(--radius-lg);
	color: var(--text-primary);
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
}

.input-text:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
	background: white;
}

.input-text::placeholder {
	color: var(--text-tertiary);
}

.form-group {
	margin-bottom: 1rem;
}

.form-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.form-actions {
	display: flex;
	justify-content: flex-end;
}

/* ============================================================
   POST CARD
   ============================================================ */

.post-card {
	background: #fff;
	border-radius: 8px;
	padding: 0;
	margin-bottom: 0;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid #e4e6eb;
	transition: box-shadow 0.2s ease;
}

.post-card:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transform: none;
}

.fb-post__header {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem 0.75rem;
	padding: 0.75rem 1rem 0;
}

.fb-post__avatar-wrap .user-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.fb-post__head-text {
	flex: 1;
	min-width: 0;
}

.fb-post__title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.5rem;
}

.fb-post__author-block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	min-width: 0;
}

.fb-post__icon-btn {
	border: none;
	background: transparent;
	color: var(--text-tertiary);
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.fb-post__icon-btn:hover {
	background: var(--bg-tertiary);
	color: var(--text-primary);
}

.fb-post__meta {
	font-size: 0.8125rem;
	color: var(--text-tertiary);
	margin-top: 0.125rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.25rem;
}

.fb-post__meta-dot {
	color: var(--text-tertiary);
}

.fb-post__privacy {
	color: var(--text-tertiary);
}

.post-header {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
}

.post-author-name {
	font-weight: 600;
	color: #050505;
	font-size: 0.9375rem;
}

.post-meta {
	font-size: 0.875rem;
	color: var(--text-tertiary);
	margin-top: 0.25rem;
}

.post-content,
.fb-post__body {
	color: #050505;
	padding: 0.25rem 1rem 0.75rem;
	line-height: 1.45;
	font-size: 0.9375rem;
}

.fb-post__body p {
	margin-bottom: 0.5rem;
}

.post-media,
.fb-post__media {
	margin: 0;
	border-radius: 0;
	overflow: hidden;
	border-top: 1px solid #f0f2f5;
}

.post-media img,
.post-media video,
.fb-post__media img,
.fb-post__media video {
	width: 100%;
	max-height: min(70vh, 520px);
	object-fit: cover;
	display: block;
}

/* Barra de reações / comentários (estilo Facebook) */
.fb-post__stats {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.4rem 1rem;
	font-size: 0.8125rem;
	color: var(--text-tertiary);
	border-bottom: 1px solid #ced0d4;
}

.fb-post__stats-left {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.fb-post__heart {
	color: #e41e3f;
	font-size: 0.9rem;
}

.fb-post__stats-right {
	display: flex;
	gap: 0.5rem;
}

.fb-post__stat-link {
	background: none;
	border: none;
	color: var(--text-tertiary);
	font-size: 0.8125rem;
	cursor: pointer;
	padding: 0.25rem;
}

.fb-post__stat-link:hover {
	text-decoration: underline;
}

.fb-post__divider {
	height: 1px;
	background: transparent;
}

/* Curtir | Comentar | Compartilhar — três colunas */
.fb-post__actions {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	border-top: 1px solid #e4e6eb;
}

.fb-post__action {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.5rem 0.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #65676b;
	text-decoration: none;
	background: none;
	border: none;
	cursor: pointer;
	transition: background 0.15s ease;
	font-family: inherit;
}

.fb-post__action:hover {
	background: #f2f2f2;
}

.fb-post__action--active {
	color: var(--primary);
}

.fb-post__action i {
	font-size: 1.125rem;
}

.post-actions {
	display: none;
}

.post-action-btn {
	display: none;
}

.post-action-btn.active {
	color: var(--primary);
}

.post-action-btn--danger:hover {
	color: #dc2626;
}

/* ============================================================
   AD SLOT
   ============================================================ */

.ad-slot {
	background: #fff;
	border-radius: 8px;
	padding: 0.75rem;
	margin-bottom: 0;
	border: 1px solid #e4e6eb;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.ad-slot-header {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.ad-slot img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 6px;
}

.ad-slot-content {
	flex: 1;
}

.ad-slot-badge {
	display: inline-block;
	background: var(--primary-lighter);
	color: var(--primary);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.625rem;
	border-radius: 9999px;
	margin-bottom: 0.5rem;
}

.ad-slot-title {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #050505;
	margin-bottom: 0.35rem;
}

.ad-slot-description {
	font-size: 0.8125rem;
	color: #65676b;
	margin-bottom: 0.6rem;
}

/* ============================================================
   FRIEND REQUESTS
   ============================================================ */

.friend-requests {
	background: white;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--border-color);
	padding: 0;
	margin-left: 0;
	overflow: hidden;
}

.fb-rail-sponsored {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--border-color);
	padding: 0.75rem;
}

.fb-rail-sponsored__title {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--text-tertiary);
	margin-bottom: 0.75rem;
}

.fb-rail-sponsored__card {
	display: block;
	text-decoration: none;
	color: inherit;
	padding: 0.5rem;
	border-radius: 8px;
	transition: background 0.15s ease;
	margin-bottom: 0.5rem;
}

.fb-rail-sponsored__card:hover {
	background: var(--bg-secondary);
}

.fb-rail-sponsored__img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 6px;
	margin-bottom: 0.35rem;
}

.fb-rail-sponsored__host {
	display: block;
	font-size: 0.75rem;
	color: var(--text-tertiary);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.fb-rail-sponsored__text {
	display: block;
	font-size: 0.8125rem;
	color: var(--text-secondary);
	line-height: 1.35;
	margin-top: 0.125rem;
}

/* Compositor estilo Facebook */
.fb-composer-form {
	display: flex;
	flex-direction: column;
}

.fb-composer-top {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.75rem 1rem 0.5rem;
}

.fb-composer-input-shell {
	flex: 1;
	min-width: 0;
	background: #f0f2f5;
	border-radius: 20px;
	padding: 0.5rem 0.875rem;
}

.fb-composer-textarea {
	width: 100%;
	border: none;
	background: transparent;
	resize: none;
	font-family: inherit;
	font-size: 0.9375rem;
	line-height: 1.4;
	min-height: 2.5rem;
	color: var(--text-primary);
}

.fb-composer-textarea:focus {
	outline: none;
}

.fb-composer-extras {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	padding: 0 1rem 0.75rem;
	border-top: 1px solid #e4e6eb;
	padding-top: 0.75rem;
}

@media (max-width: 600px) {
	.fb-composer-extras {
		grid-template-columns: 1fr;
	}
}

.fb-composer-hint {
	font-size: 0.6875rem;
	color: var(--text-tertiary);
	margin-top: 0.25rem;
}

.fb-composer-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.5rem 1rem;
	border-top: 1px solid #e4e6eb;
	background: #fff;
}

.fb-composer-toolbar-hint {
	font-size: 0.75rem;
	color: var(--text-tertiary);
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.fb-composer-submit {
	padding: 0.5rem 1.25rem !important;
	font-size: 0.875rem !important;
}

.friend-requests-header {
	font-size: 1rem;
	font-weight: 600;
	color: #65676b;
	margin-bottom: 0;
	padding: 0.75rem;
	border-bottom: 1px solid #e4e6eb;
}

.friend-request-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	border-radius: 8px;
	margin-bottom: 0.25rem;
	transition: background 0.15s ease;
}

.friend-request-item:hover {
	background: var(--bg-tertiary);
}

.friend-request-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.friend-request-info {
	flex: 1;
}

.friend-request-name {
	font-weight: 500;
	color: #050505;
	font-size: 0.875rem;
}

.friend-request-actions {
	display: flex;
	gap: 0.5rem;
}

/* ============================================================
   PAGINATION
   ============================================================ */

.feed-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 0 2rem;
}

.feed-pagination .page-current {
	min-width: 2.5rem;
	padding: 0.5rem 0.75rem;
	background: var(--primary);
	color: #fff;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.875rem;
	text-align: center;
}

.feed-pagination .page-link {
	padding: 0.5rem 0.75rem;
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	color: var(--text-primary);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.feed-pagination .page-link:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}

.pagination-link {
	padding: 0.5rem 1rem;
	background: white;
	border: 2px solid var(--border-color);
	border-radius: var(--radius-md);
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.pagination-link:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.pagination-current {
	padding: 0.5rem 1rem;
	background: var(--primary);
	color: white;
	border-radius: var(--radius-md);
	font-weight: 600;
}

/* ============================================================
   COMMENTS
   ============================================================ */

.comments-section {
	display: none;
	border-top: 1px solid #e4e6eb;
	background: #f0f2f5;
	padding: 0.75rem 1rem 1rem;
}

.comments-section.is-open {
	display: block !important;
}

.comment-item {
	display: flex;
	align-items: start;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.comment-item:last-child {
	margin-bottom: 0;
}

.no-comments {
	text-align: center;
	color: var(--text-tertiary);
	padding: 1rem;
	font-style: italic;
}

.comment-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
}

.comment-content {
	flex: 1;
	background: var(--bg-tertiary);
	border-radius: var(--radius-md);
	padding: 0.75rem;
}

.comment-content h4 {
	font-weight: 500;
	font-size: 0.875rem;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.comment-content p {
	font-size: 0.875rem;
	color: var(--text-secondary);
	margin-bottom: 0.25rem;
}

.comment-date {
	font-size: 0.75rem;
	color: var(--text-tertiary);
}

.comment-form {
	margin-top: 1rem;
}

.comment-input-group {
	display: flex;
	gap: 0.5rem;
}

.comment-input {
	flex: 1;
}

.btn-sm {
	padding: 0.375rem 0.75rem;
	font-size: 0.75rem;
}

/* ============================================================
   FRIEND REQUESTS
   ============================================================ */

.friend-requests-body {
	max-height: 420px;
	overflow-y: auto;
	padding: 0.5rem 0.5rem 0.75rem;
}

.post-avatar,
.comment-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
}

.no-requests {
	padding: 1.5rem 0.5rem;
	text-align: center;
	font-size: 0.875rem;
	color: var(--text-tertiary);
}

/* ============================================================
   MODAL
   ============================================================ */

.modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 50;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.modal.active {
	display: flex;
}

.modal-content {
	background: white;
	padding: 1.5rem;
	max-width: 28rem;
	width: 100%;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl);
}

.modal-content h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--text-primary);
	cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
	width: 1rem;
	height: 1rem;
	border-radius: var(--radius-sm);
}

.share-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.share-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem;
	background: var(--bg-secondary);
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: var(--text-primary);
	transition: all 0.2s ease;
}

.share-option:hover {
	background: var(--bg-tertiary);
	transform: translateY(-2px);
}

.share-option i {
	font-size: 2rem;
}

.share-option span {
	font-size: 0.875rem;
	font-weight: 500;
}

/* ============================================================
   CHAT PAGE
   ============================================================ */

.chat-page {
	margin-left: var(--sidebar-width);
	min-height: 100vh;
	background: #f0f2f5;
	transition: margin-left 0.3s ease;
}

/* Chat page responsive adjustments */
@media (max-width: 768px) {
	.chat-page {
		margin-left: 0;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.chat-page {
		margin-left: 280px;
	}
}

.chat-container {
	padding: 2rem 3rem;
}

.chat-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	height: calc(100vh - 4rem);
}

.chat-layout {
	display: flex;
	gap: 0;
	background: white;
	border-radius: 0;
	box-shadow: var(--shadow-xl);
	overflow: hidden;
	min-height: 600px;
	height: 100%;
}

.conversations-sidebar {
	width: 320px;
	padding: 0;
	border-right: 1px solid #e4e6eb;
	background: white;
	display: flex;
	flex-direction: column;
}

.conversations-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	padding: 1.5rem;
	border-bottom: 1px solid #e4e6eb;
}

.no-conversations {
	font-size: 0.875rem;
	color: var(--text-tertiary);
	text-align: center;
	padding: 2rem 0;
}

.conversations-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	overflow-y: auto;
	flex: 1;
}

.conversation-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1.5rem;
	background: white;
	text-decoration: none;
	transition: background 0.2s ease;
	border: none;
	cursor: pointer;
}

.conversation-item:hover {
	background: #f0f2f5;
}

.conversation-item.active {
	background: #e7f3ff;
}

.conversation-user {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
}

.conversation-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid #e4e6eb;
}

.conversation-info {
	flex: 1;
}

.conversation-info h5 {
	font-weight: 500;
	color: var(--text-primary);
	font-size: 0.95rem;
	margin: 0;
}

.unread-badge {
	display: inline-block;
	background: #0084ff;
	color: white;
	font-size: 0.6875rem;
	font-weight: 600;
	padding: 0.125rem 0.5rem;
	border-radius: 9999px;
}

.chat-main {
	flex: 1;
	display: flex;
	flex-direction: column;
	background: white;
}

.chat-header {
	padding: 1rem 1.5rem;
	border-bottom: 1px solid #e4e6eb;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	background: white;
}

.chat-header h4 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0;
	flex: 1;
	min-width: 0;
}

.chat-header-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.chat-call-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #e4e6eb;
	background: #f0f2f5;
	color: var(--text-primary);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.chat-call-btn:hover {
	background: #e4e6eb;
	border-color: #d0d3d8;
}

.chat-call-btn-video {
	color: #0084ff;
}

.chat-call-btn-video:hover {
	background: #e7f3ff;
	border-color: #b8d9ff;
}

/* Chamada WebRTC (overlay) */
.call-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.call-overlay.hidden {
	display: none;
}

.call-overlay-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 20, 25, 0.85);
	backdrop-filter: blur(4px);
}

.call-overlay-panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 560px;
	background: #1a1d21;
	border-radius: 16px;
	padding: 1.25rem;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.call-status {
	color: #fff;
	text-align: center;
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 1rem;
}

.call-videos {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: #000;
	aspect-ratio: 16 / 10;
	margin-bottom: 1rem;
}

.call-remote-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.call-local-video {
	position: absolute;
	right: 12px;
	bottom: 12px;
	width: 28%;
	max-width: 160px;
	border-radius: 10px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	object-fit: cover;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.call-overlay.call-audio-only .call-remote-video {
	display: none;
}

.call-overlay.call-audio-only .call-videos {
	aspect-ratio: auto;
	min-height: 120px;
	background: linear-gradient(145deg, #2a3140, #1a1d21);
}

.call-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.call-actions.hidden {
	display: none;
}

.call-btn {
	min-width: 120px;
	padding: 0.75rem 1.25rem;
	border-radius: 9999px;
	font-weight: 600;
	font-size: 0.9375rem;
	border: none;
	cursor: pointer;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.call-btn:hover {
	opacity: 0.95;
}

.call-btn-accept {
	background: #31a24c;
	color: #fff;
}

.call-btn-reject {
	background: #e41e3f;
	color: #fff;
}

.call-btn-hangup {
	min-width: 56px;
	width: 56px;
	height: 56px;
	padding: 0;
	border-radius: 50%;
	background: #e41e3f;
	color: #fff;
	font-size: 1.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.messages-container {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem;
	background: #f0f2f5;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.message-wrapper {
	display: flex;
	align-items: flex-end;
	gap: 0.5rem;
	max-width: 70%;
}

.message-wrapper.sent {
	align-self: flex-end;
	flex-direction: row-reverse;
}

.message-wrapper.received {
	align-self: flex-start;
}

.message-bubble {
	max-width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 18px;
	position: relative;
	word-wrap: break-word;
}

.message-wrapper.sent .message-bubble {
	background: #0084ff;
	color: white;
	border-bottom-right-radius: 4px;
}

.message-wrapper.received .message-bubble {
	background: white;
	color: var(--text-primary);
	border-bottom-left-radius: 4px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.message-image {
	max-width: 100%;
	border-radius: 12px;
	margin-bottom: 0.5rem;
}

.message-audio {
	width: 100%;
	margin-bottom: 0.5rem;
}

.message-content {
	font-size: 0.9375rem;
	line-height: 1.4;
	margin-bottom: 0.25rem;
	word-wrap: break-word;
}

.message-time {
	font-size: 0.75rem;
	opacity: 0.7;
}

.message-actions {
	position: absolute;
	top: -30px;
	right: 0;
	display: none;
	gap: 0.5rem;
	background: white;
	padding: 0.25rem 0.5rem;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.message-wrapper:hover .message-actions {
	display: flex;
}

.message-action-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.25rem;
	color: #65676b;
	font-size: 0.875rem;
	transition: color 0.2s ease;
}

.message-action-btn:hover {
	color: #0084ff;
}

.chat-input-wrapper {
	padding: 1rem 1.5rem;
	border-top: 1px solid #e4e6eb;
	background: white;
}

.chat-input-group {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.chat-input {
	flex: 1;
	padding: 0.875rem 1rem;
	background: #f0f2f5;
	border: none;
	border-radius: 20px;
	color: var(--text-primary);
	font-size: 0.9375rem;
	transition: all 0.2s ease;
}

.chat-input:focus {
	outline: none;
	background: white;
	box-shadow: 0 0 0 2px #0084ff;
}

.voice-record-btn,
.voice-stop-btn,
.send-btn,
.attach-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.75rem;
	color: #65676b;
	font-size: 1.125rem;
	transition: all 0.2s ease;
	border-radius: 50%;
}

.voice-record-btn:hover,
.voice-stop-btn:hover,
.send-btn:hover,
.attach-btn:hover {
	background: #f0f2f5;
	color: #0084ff;
}

.send-btn {
	background: #0084ff;
	color: white;
}

.send-btn:hover {
	background: #0066cc;
	color: white;
}

.message-video {
	max-width: 100%;
	border-radius: 12px;
	margin-bottom: 0.5rem;
}

.hidden {
	display: none !important;
}

.chat-empty {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f2f5;
}

.chat-empty p {
	font-size: 1rem;
	color: var(--text-tertiary);
}

@media (max-width: 1024px) {
	.chat-page {
		margin-left: 0;
	}
	
	.chat-container {
		padding: 1rem;
	}
	
	.chat-layout {
		flex-direction: column;
	}
	
	.conversations-sidebar {
		width: 100%;
		max-height: 200px;
	}
}

/* ============================================================
   DATING MODULE - MÓDULO DE RELACIONAMENTO
   ============================================================ */

/* Dating Profile Cards */
.dating-profile-card {
	background: white;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-color);
	overflow: hidden;
	transition: all 0.3s ease;
}

.dating-profile-card:hover {
	box-shadow: var(--shadow-xl);
	transform: translateY(-4px);
}

.dating-profile-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: linear-gradient(135deg, var(--primary-lighter) 0%, white 100%);
}

.dating-profile-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid white;
	box-shadow: var(--shadow-md);
}

.dating-profile-info {
	flex: 1;
}

.dating-profile-name {
	font-weight: 600;
	font-size: 1rem;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.dating-profile-location {
	font-size: 0.875rem;
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.dating-profile-intent {
	display: inline-block;
	background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
	color: white;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	margin-top: 0.5rem;
}

.dating-profile-body {
	padding: 1rem;
}

.dating-profile-bio {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.5;
	margin-bottom: 1rem;
}

.dating-profile-denomination {
	font-size: 0.8125rem;
	color: var(--text-tertiary);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem;
	background: var(--bg-secondary);
	border-radius: var(--radius-md);
}

.dating-profile-actions {
	padding: 1rem;
	border-top: 1px solid var(--border-color);
	display: flex;
	gap: 0.75rem;
}

/* Dating Discovery Grid */
.dating-discovery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

@media (max-width: 768px) {
	.dating-discovery-grid {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
		gap: 1rem;
	}
}

/* Dating Filter Bar */
.dating-filter-bar {
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-color);
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.dating-filter-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.dating-filter-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.dating-filter-label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-primary);
}

.dating-filter-select {
	padding: 0.625rem 0.875rem;
	background: var(--bg-secondary);
	border: 2px solid var(--border-color);
	border-radius: var(--radius-md);
	color: var(--text-primary);
	font-size: 0.875rem;
	font-family: inherit;
	transition: all 0.3s ease;
	cursor: pointer;
}

.dating-filter-select:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
	background: white;
}

.dating-filter-input {
	padding: 0.625rem 0.875rem;
	background: var(--bg-secondary);
	border: 2px solid var(--border-color);
	border-radius: var(--radius-md);
	color: var(--text-primary);
	font-size: 0.875rem;
	font-family: inherit;
	transition: all 0.3s ease;
}

.dating-filter-input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
	background: white;
}

/* Dating Tabs */
.dating-tabs {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.dating-tab {
	padding: 0.625rem 1.25rem;
	background: white;
	border: 2px solid var(--border-color);
	border-radius: var(--radius-lg);
	color: var(--text-secondary);
	font-weight: 500;
	font-size: 0.875rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.dating-tab:hover {
	border-color: var(--primary);
	color: var(--primary);
	transform: translateY(-2px);
}

.dating-tab.active {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	border-color: var(--primary);
	color: white;
	box-shadow: var(--shadow-md);
}

.dating-tab .badge {
	background: white;
	color: var(--primary);
	animation: none;
}

.dating-tab.active .badge {
	background: rgba(255, 255, 255, 0.2);
	color: white;
}

/* Dating Request Item */
.dating-request-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	margin-bottom: 0.75rem;
	transition: all 0.3s ease;
}

.dating-request-item:hover {
	box-shadow: var(--shadow-md);
	transform: translateX(4px);
}

.dating-request-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--border-color);
}

.dating-request-info {
	flex: 1;
}

.dating-request-name {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.dating-request-intent {
	font-size: 0.8125rem;
	color: var(--text-secondary);
}

.dating-request-actions {
	display: flex;
	gap: 0.5rem;
}

.dating-request-actions .btn-primary,
.dating-request-actions .btn-secondary {
	padding: 0.5rem 1rem;
	font-size: 0.8125rem;
}

/* Dating Match Card */
.dating-match-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(245, 158, 11, 0.2);
	margin-bottom: 0.75rem;
	transition: all 0.3s ease;
}

.dating-match-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateX(4px);
	background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
}

.dating-match-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #fbbf24;
	box-shadow: var(--shadow-sm);
}

.dating-match-info {
	flex: 1;
}

.dating-match-name {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.dating-match-intent {
	font-size: 0.8125rem;
	color: var(--text-secondary);
}

.dating-match-icon {
	color: #fbbf24;
	font-size: 1.25rem;
}

/* Dating Form Styles */
.dating-form-section {
	background: white;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-color);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.dating-form-section h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--border-color);
}

.dating-form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
	margin-bottom: 1rem;
}

.dating-form-group {
	margin-bottom: 1.25rem;
}

.dating-form-group label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.dating-form-input {
	width: 100%;
	padding: 0.875rem 1rem;
	background: var(--bg-secondary);
	border: 2px solid var(--border-color);
	border-radius: var(--radius-lg);
	color: var(--text-primary);
	font-size: 0.95rem;
	font-family: inherit;
	transition: all 0.3s ease;
}

.dating-form-input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
	background: white;
}

.dating-form-textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	background: var(--bg-secondary);
	border: 2px solid var(--border-color);
	border-radius: var(--radius-lg);
	color: var(--text-primary);
	font-size: 0.95rem;
	font-family: inherit;
	resize: vertical;
	min-height: 120px;
	transition: all 0.3s ease;
	line-height: 1.5;
}

.dating-form-textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
	background: white;
}

.dating-form-select {
	width: 100%;
	padding: 0.875rem 1rem;
	background: var(--bg-secondary);
	border: 2px solid var(--border-color);
	border-radius: var(--radius-lg);
	color: var(--text-primary);
	font-size: 0.95rem;
	font-family: inherit;
	transition: all 0.3s ease;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1rem;
	padding-right: 2.5rem;
}

.dating-form-select:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
	background-color: white;
}

.dating-form-checkbox {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
}

.dating-form-checkbox input[type="checkbox"] {
	width: 1.25rem;
	height: 1.25rem;
	border-radius: var(--radius-sm);
	border: 2px solid var(--border-color);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dating-form-checkbox input[type="checkbox"]:checked {
	background: var(--primary);
	border-color: var(--primary);
}

.dating-form-checkbox label {
	font-size: 0.875rem;
	color: var(--text-primary);
	cursor: pointer;
}

.dating-form-actions {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 2px solid var(--border-color);
}

/* Dating Stats Cards */
.dating-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.dating-stat-card {
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-color);
	padding: 1.25rem;
	text-align: center;
	transition: all 0.3s ease;
}

.dating-stat-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}

.dating-stat-number {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.25rem;
}

.dating-stat-label {
	font-size: 0.875rem;
	color: var(--text-secondary);
	font-weight: 500;
}

/* Empty State */
.dating-empty-state {
	text-align: center;
	padding: 3rem 2rem;
	background: white;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-color);
}

.dating-empty-icon {
	font-size: 4rem;
	color: var(--text-tertiary);
	margin-bottom: 1rem;
}

.dating-empty-text {
	font-size: 1rem;
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

/* Dating Status Badge */
.dating-status-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 0.875rem;
	border-radius: 9999px;
	font-size: 0.8125rem;
	font-weight: 600;
}

.dating-status-badge.pending {
	background: #fef3c7;
	color: #d97706;
}

.dating-status-badge.accepted {
	background: #d1fae5;
	color: #059669;
}

.dating-status-badge.rejected {
	background: #fee2e2;
	color: #dc2626;
}

.dating-status-badge.active {
	background: #dbeafe;
	color: #2563eb;
}

.dating-status-badge.inactive {
	background: var(--bg-tertiary);
	color: var(--text-secondary);
}

/* Responsive Dating */
@media (max-width: 768px) {
	.dating-filter-grid {
		grid-template-columns: 1fr;
	}
	
	.dating-form-row {
		grid-template-columns: 1fr;
	}
	
	.dating-profile-header {
		flex-direction: column;
		text-align: center;
	}
	
	.dating-profile-actions {
		flex-direction: column;
	}
	
	.dating-request-item {
		flex-direction: column;
		text-align: center;
	}
	
	.dating-request-actions {
		width: 100%;
		justify-content: center;
	}
}

/* ============================================================
   REGISTER PAGE
   ============================================================ */

.register-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
	padding: 2rem 1rem;
}

.register-container {
	width: 100%;
	max-width: 28rem;
}

.register-card {
	background: white;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl);
	padding: 2.5rem;
	border: 1px solid var(--border-color);
}

.register-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.register-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
	margin-bottom: 1rem;
	box-shadow: var(--shadow-lg);
}

.register-icon i {
	font-size: 1.5rem;
	color: white;
}

.register-header h1 {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.register-header p {
	font-size: 0.95rem;
	color: var(--text-secondary);
}

.register-footer {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-color);
	text-align: center;
}

.register-footer p {
	font-size: 0.875rem;
	color: var(--text-secondary);
}

.register-footer .link {
	color: var(--accent);
	text-decoration: none;
	font-weight: 500;
}

.register-footer .link:hover {
	text-decoration: underline;
}

.copyright {
	text-align: center;
	margin-top: 1.5rem;
	font-size: 0.875rem;
	color: var(--text-tertiary);
}

.input-icon-wrapper {
	position: relative;
}

.input-icon {
	position: absolute;
	left: 0.875rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-tertiary);
}

.input-icon-wrapper .input-text {
	padding-left: 2.75rem;
}

.btn-full {
	width: 100%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
	:root {
		--sidebar-width: 280px;
	}
	
	.feed {
		padding: 1.5rem 2rem;
	}
}

@media (max-width: 768px) {
	.sidebar {
		transform: translateX(-100%);
		transition: transform 0.3s ease;
	}
	
	.sidebar.open {
		transform: translateX(0);
	}
	
	.main-feed {
		margin-left: 0;
	}

	.fb-feed-page {
		padding: 0.75rem;
	}

	.fb-feed-layout {
		gap: 0.75rem;
	}
	
	.feed {
		padding: 1rem 1.5rem;
	}

	.feed-header {
		flex-wrap: wrap;
		gap: 0.5rem;
	}

	.fb-composer-toolbar {
		flex-wrap: wrap;
	}

	.fb-post__actions {
		grid-template-columns: 1fr;
	}

	.ad-slot-header {
		flex-direction: column;
	}

	.ad-slot img {
		width: 100%;
		height: auto;
		max-height: 220px;
	}
}

/* ============================================================
   COMUNIDADE PAGE
   ============================================================ */

.community-header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	padding: 2rem 1.5rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	color: white;
}

.community-header h1 {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
}

.community-header p {
	font-size: 0.9375rem;
	opacity: 0.9;
	margin: 0;
}

.community-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.stat-card {
	background: white;
	border-radius: 8px;
	padding: 1rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid #e4e6eb;
}

.stat-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--primary-light) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 1.25rem;
	flex-shrink: 0;
}

.stat-info {
	flex: 1;
}

.stat-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	display: block;
}

.stat-label {
	font-size: 0.8125rem;
	color: var(--text-secondary);
	display: block;
}

.community-search {
	margin-bottom: 1.5rem;
}

.search-box {
	position: relative;
}

.search-icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-tertiary);
	font-size: 0.875rem;
}

.search-input {
	width: 100%;
	padding: 0.875rem 1rem 0.875rem 2.75rem;
	border: 1px solid #e4e6eb;
	border-radius: 20px;
	font-size: 0.9375rem;
	background: white;
	color: var(--text-primary);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.search-input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1);
}

.search-input::placeholder {
	color: var(--text-tertiary);
}

.community-section {
	background: white;
	border-radius: 8px;
	padding: 1.25rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid #e4e6eb;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #e4e6eb;
}

.section-header h2 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0;
}

.section-link {
	font-size: 0.875rem;
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.15s ease;
}

.section-link:hover {
	color: var(--primary-dark);
}

.members-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 0.75rem;
}

.member-card {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem;
	background: #f0f2f5;
	border-radius: 8px;
	transition: background 0.15s ease;
}

.member-card:hover {
	background: #e4e6eb;
}

.member-avatar {
	flex-shrink: 0;
}

.member-avatar img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

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

.member-info h3 {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 0.25rem 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.member-info p {
	font-size: 0.8125rem;
	color: var(--text-secondary);
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.member-actions {
	display: flex;
	gap: 0.5rem;
	flex-shrink: 0;
}

.action-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.15s ease;
}

.action-btn.primary {
	background: var(--primary);
	color: white;
}

.action-btn.primary:hover {
	background: var(--primary-dark);
}

.action-btn.secondary {
	background: #e4e6eb;
	color: var(--text-primary);
}

.action-btn.secondary:hover {
	background: #d8dadf;
}

.action-btn.add-friend {
	background: var(--primary);
	color: white;
}

.action-btn.add-friend:hover {
	background: var(--primary-dark);
}

.friendship-status {
	font-size: 0.8125rem;
	color: var(--text-tertiary);
	font-weight: 500;
	display: flex;
	align-items: center;
}

.empty-state {
	text-align: center;
	padding: 2rem;
	color: var(--text-tertiary);
}

.empty-state i {
	font-size: 2.5rem;
	margin-bottom: 0.75rem;
	opacity: 0.5;
}

.empty-state p {
	font-size: 0.9375rem;
	margin: 0;
}

.groups-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 0.75rem;
}

.group-card {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem;
	background: #f0f2f5;
	border-radius: 8px;
	position: relative;
	transition: background 0.15s ease;
}

.group-card:hover {
	background: #e4e6eb;
}

.group-icon {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--accent-lighter) 0%, var(--accent-light) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-size: 1.25rem;
	flex-shrink: 0;
}

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

.group-info h3 {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 0.25rem 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.group-info p {
	font-size: 0.8125rem;
	color: var(--text-secondary);
	margin: 0;
}

.group-badge {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--accent);
	background: var(--accent-lighter);
	padding: 0.125rem 0.375rem;
	border-radius: 4px;
	margin-top: 0.25rem;
}

.group-link {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.15s ease;
	flex-shrink: 0;
}

.group-link:hover {
	background: var(--primary);
	color: white;
}

@media (max-width: 768px) {
	.community-stats {
		grid-template-columns: 1fr;
	}
	
	.members-grid,
	.groups-grid {
		grid-template-columns: 1fr;
	}
	
	.community-header {
		padding: 1.5rem 1rem;
	}
	
	.community-header h1 {
		font-size: 1.5rem;
	}
}

/* ============================================================
   PERFIL PAGE
   ============================================================ */

.profile-header {
	position: relative;
	background: white;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid #e4e6eb;
	overflow: hidden;
}

.profile-cover {
	height: 200px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.profile-avatar-wrapper {
	position: absolute;
	bottom: -50px;
	left: 2rem;
}

.profile-avatar {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	border: 4px solid white;
	object-fit: cover;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.profile-info {
	padding: 3rem 2rem 1.5rem;
	margin-left: 11rem;
}

.profile-info h1 {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0 0 0.5rem 0;
}

.profile-info p {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	margin: 0;
}

.profile-section {
	background: white;
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid #e4e6eb;
}

.section-title {
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #e4e6eb;
}

.section-title h2 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 0.5rem 0;
}

.section-title p {
	font-size: 0.875rem;
	color: var(--text-secondary);
	margin: 0;
}

.profile-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-primary);
}

.form-input {
	padding: 0.75rem 1rem;
	border: 1px solid #e4e6eb;
	border-radius: 6px;
	font-size: 0.9375rem;
	background: white;
	color: var(--text-primary);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1);
}

.form-input::placeholder {
	color: var(--text-tertiary);
}

.file-upload {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.file-input {
	padding: 0.5rem 0;
	border: none;
	background: transparent;
	font-size: 0.9375rem;
}

.file-hint {
	font-size: 0.8125rem;
	color: var(--text-tertiary);
}

.form-actions {
	display: flex;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.btn {
	padding: 0.625rem 1.25rem;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.15s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
}

.btn-primary {
	background: var(--primary);
	color: white;
}

.btn-primary:hover {
	background: var(--primary-dark);
}

.btn-secondary {
	background: #e4e6eb;
	color: var(--text-primary);
}

.btn-secondary:hover {
	background: #d8dadf;
}

.btn-danger {
	background: #dc2626;
	color: white;
}

.btn-danger:hover {
	background: #b91c1c;
}

.danger-zone {
	border: 1px solid #fecaca;
	background: #fef2f2;
}

.danger-zone .section-title h2 {
	color: #dc2626;
}

.data-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.data-action-form {
	display: inline;
}

@media (max-width: 768px) {
	.profile-avatar {
		width: 100px;
		height: 100px;
	}
	
	.profile-avatar-wrapper {
		bottom: -35px;
		left: 1rem;
	}
	
	.profile-info {
		padding: 2rem 1rem 1rem;
		margin-left: 0;
		text-align: center;
	}
	
	.profile-info h1 {
		font-size: 1.5rem;
	}
	
	.profile-cover {
		height: 150px;
	}
	
	.data-actions {
		flex-direction: column;
	}
	
	.data-action-form {
		width: 100%;
	}
	
	.btn {
		width: 100%;
		justify-content: center;
	}
}

/* ============================================================
   MARKETPLACE MODULE
   ============================================================ */

/* Marketplace Detail Styles */
.marketplace-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 1.5rem;
}

.detail-gallery {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.main-image-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--bg-secondary);
}

.main-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
}

.thumbnail-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.5rem;
}

.thumbnail {
	width: 100%;
	height: 80px;
	object-fit: cover;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: opacity 0.2s ease;
	border: 2px solid transparent;
}

.thumbnail:hover {
	opacity: 0.8;
}

.thumbnail.active {
	border-color: var(--primary);
}

.detail-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.detail-badges {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.detail-badges .badge {
	font-size: 0.75rem;
}

.detail-badges .badge.category {
	background: var(--primary-lighter);
	color: var(--primary);
}

.detail-badges .badge.condition {
	background: var(--accent-lighter);
	color: var(--accent);
}

.detail-content h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
}

.detail-price {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--primary);
	margin: 0;
}

.detail-seller {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	background: var(--bg-secondary);
	border-radius: var(--radius-lg);
}

.detail-seller img,
.seller-avatar-placeholder {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.seller-avatar-placeholder {
	background: var(--bg-tertiary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-tertiary);
}

.seller-info {
	flex: 1;
}

.seller-name {
	font-weight: 600;
	color: var(--text-primary);
	font-size: 0.95rem;
}

.seller-label {
	font-size: 0.8125rem;
	color: var(--text-tertiary);
}

.detail-description h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 0.75rem 0;
}

.detail-description p {
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0;
}

.detail-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.order-form {
	padding: 1.5rem;
	background: var(--bg-secondary);
	border-radius: var(--radius-lg);
	margin-top: 1rem;
}

.order-form h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 1rem 0;
}

.form-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #e4e6eb;
	border-radius: 6px;
	font-size: 0.9375rem;
	background: white;
	color: var(--text-primary);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	resize: vertical;
	font-family: inherit;
}

.form-textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1);
}

.report-section {
	margin-top: 1rem;
}

.report-toggle {
	background: none;
	border: none;
	color: var(--text-tertiary);
	font-size: 0.875rem;
	cursor: pointer;
	text-decoration: underline;
	padding: 0;
}

.report-form {
	padding: 1rem;
	background: var(--bg-secondary);
	border-radius: var(--radius-lg);
	margin-top: 0.75rem;
}

.report-form .form-group {
	margin-bottom: 0.75rem;
}

.report-form .form-group:last-child {
	margin-bottom: 0;
}

.empty-state {
	text-align: center;
	padding: 3rem 2rem;
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-color);
}

.empty-state i {
	font-size: 3rem;
	color: var(--text-tertiary);
	margin-bottom: 1rem;
}

.empty-state p {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.marketplace-favorites {
	padding: 0;
}

.marketplace-favorites h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 1.5rem 0;
}

.card-badges {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	flex-wrap: wrap;
}

.card-badges .badge {
	font-size: 0.6875rem;
	padding: 0.25rem 0.5rem;
}

.card-badges .badge.category {
	background: var(--primary-lighter);
	color: var(--primary);
}

.card-badges .badge.condition {
	background: var(--accent-lighter);
	color: var(--accent);
}

.card-body h4 {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 0.5rem 0;
}

.card-price {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.75rem;
}

.card-seller {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.card-seller img,
.seller-avatar-placeholder {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
}

.card-seller span {
	font-size: 0.875rem;
	color: var(--text-secondary);
}

.form-hint {
	font-size: 0.75rem;
	color: var(--text-tertiary);
	margin-top: 0.25rem;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	margin-bottom: 1rem;
}

.marketplace-form-section {
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-color);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.marketplace-form-section h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 1.5rem 0;
}

.marketplace-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.marketplace-header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	padding: 1.5rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.header-content h1 {
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
	margin: 0 0 0.25rem 0;
}

.header-content p {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.header-actions {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.marketplace-tab {
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border-radius: 6px;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.15s ease;
}

.marketplace-tab:hover {
	background: rgba(255, 255, 255, 0.3);
}

.marketplace-tab.active {
	background: white;
	color: var(--primary);
}

.marketplace-btn-create {
	padding: 0.5rem 1rem;
	background: white;
	color: var(--primary);
	border-radius: 6px;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.15s ease;
}

.marketplace-btn-create:hover {
	background: #f0f2f5;
}

.marketplace-filters {
	background: white;
	border-radius: 8px;
	padding: 1.25rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid #e4e6eb;
}

.marketplace-filters h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 1rem 0;
}

.filter-form {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.filter-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.filter-group label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-primary);
}

.form-select {
	padding: 0.625rem 0.875rem;
	border: 1px solid #e4e6eb;
	border-radius: 6px;
	font-size: 0.875rem;
	background: white;
	color: var(--text-primary);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	cursor: pointer;
}

.form-select:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1);
}

.form-input {
	padding: 0.625rem 0.875rem;
	border: 1px solid #e4e6eb;
	border-radius: 6px;
	font-size: 0.875rem;
	background: white;
	color: var(--text-primary);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1);
}

.search-group {
	display: flex;
	gap: 0.5rem;
	align-items: flex-end;
}

.search-group .form-input {
	flex: 1;
}

.full-width {
	width: 100%;
}

.marketplace-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1rem;
}

.marketplace-card {
	background: white;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid #e4e6eb;
	overflow: hidden;
	transition: box-shadow 0.15s ease;
}

.marketplace-card:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.card-image {
	width: 100%;
	height: 200px;
	background: #f0f2f5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-tertiary);
}

.image-placeholder i {
	font-size: 2rem;
}

.image-placeholder.large {
	height: 400px;
}

.image-placeholder.large i {
	font-size: 4rem;
}

.card-body {
	padding: 1rem;
}

.card-badges {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	flex-wrap: wrap;
}

.badge {
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 500;
}

.badge.category {
	background: #dbeafe;
	color: #1e40af;
}

.badge.condition {
	background: #d1fae5;
	color: #065f46;
}

.card-body h4 {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 0.5rem 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card-price {
	font-size: 1.125rem;
	font-weight: 700;
	color: #d97706;
	margin-bottom: 0.75rem;
}

.card-seller {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.card-seller img {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	object-fit: cover;
}

.seller-avatar-placeholder {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #e4e6eb;
}

.card-seller span {
	font-size: 0.8125rem;
	color: var(--text-secondary);
}

.pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

.page-link {
	padding: 0.5rem 1rem;
	background: white;
	border: 1px solid #e4e6eb;
	border-radius: 6px;
	text-decoration: none;
	font-size: 0.875rem;
	color: var(--text-primary);
	transition: all 0.15s ease;
}

.page-link:hover {
	background: #f0f2f5;
}

.page-link.active {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
}

.marketplace-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	background: white;
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid #e4e6eb;
}

.detail-gallery {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.main-image-wrapper {
	border-radius: 8px;
	overflow: hidden;
}

.main-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.thumbnail-grid {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.thumbnail {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 6px;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.thumbnail:hover {
	opacity: 0.8;
}

.detail-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.detail-badges {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.detail-content h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
}

.detail-price {
	font-size: 2rem;
	font-weight: 700;
	color: #d97706;
}

.detail-seller {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	background: #f0f2f5;
	border-radius: 8px;
}

.detail-seller img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.seller-info {
	display: flex;
	flex-direction: column;
}

.seller-name {
	font-weight: 600;
	color: var(--text-primary);
}

.seller-label {
	font-size: 0.8125rem;
	color: var(--text-secondary);
}

.detail-description h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 0.5rem 0;
}

.detail-description p {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.5;
	margin: 0;
	white-space: pre-wrap;
}

.detail-actions {
	display: flex;
	gap: 0.75rem;
}

.order-form {
	padding: 1rem;
	background: #f0f2f5;
	border-radius: 8px;
	margin-top: 1rem;
}

.order-form h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 1rem 0;
}

.form-textarea {
	padding: 0.625rem 0.875rem;
	border: 1px solid #e4e6eb;
	border-radius: 6px;
	font-size: 0.875rem;
	background: white;
	color: var(--text-primary);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	resize: vertical;
	font-family: inherit;
	line-height: 1.5;
}

.form-textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1);
}

.report-section {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #e4e6eb;
}

.report-toggle {
	background: none;
	border: none;
	color: #dc2626;
	font-size: 0.875rem;
	cursor: pointer;
	padding: 0;
}

.report-toggle:hover {
	text-decoration: underline;
}

.report-form {
	padding: 1rem;
	background: #fef2f2;
	border-radius: 8px;
	margin-top: 0.75rem;
}

.report-form .form-group {
	margin-bottom: 0.75rem;
}

.btn.danger {
	background: #dc2626;
	color: white;
}

.btn.danger:hover {
	background: #b91c1c;
}

.marketplace-form-section {
	background: white;
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid #e4e6eb;
}

.marketplace-form-section h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 1.5rem 0;
}

.marketplace-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.form-hint {
	font-size: 0.8125rem;
	color: var(--text-tertiary);
	margin-top: 0.25rem;
}

.form-actions {
	display: flex;
	gap: 0.75rem;
	padding-top: 1rem;
	border-top: 1px solid #e4e6eb;
}

.marketplace-favorites {
	background: white;
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid #e4e6eb;
}

.marketplace-favorites h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 1.5rem 0;
}

.hidden {
	display: none;
}

@media (max-width: 768px) {
	.marketplace-header {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.marketplace-detail {
		grid-template-columns: 1fr;
	}
	
	.filter-form {
		grid-template-columns: 1fr;
	}
	
	.search-group {
		flex-direction: column;
		align-items: stretch;
	}
	
	.marketplace-grid {
		grid-template-columns: 1fr;
	}
	
	.form-row {
		grid-template-columns: 1fr;
	}
	
	.form-actions {
		flex-direction: column;
	}
	
	.form-actions .btn {
		width: 100%;
	}
}

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

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.card, .post-card, .composer-card {
	animation: fadeIn 0.5s ease-out;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
	background: var(--text-tertiary);
	border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--text-secondary);
}

/* ============================================================
   NOTIFICATION SYSTEM
   ============================================================ */

.notification {
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 1rem 1.5rem;
	background: var(--bg-primary);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	z-index: 9999;
	animation: slideIn 0.3s ease;
	max-width: 350px;
}

.notification.success {
	border-left: 4px solid var(--success);
}

.notification.error {
	border-left: 4px solid var(--danger);
}

.notification.warning {
	border-left: 4px solid var(--warning);
}

@keyframes slideIn {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

/* ============================================================
   RESPONSIVE MOBILE (max-width: 768px)
   ============================================================ */

@media (max-width: 768px) {
	/* Mobile Menu Toggle */
	.mobile-menu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	/* Sidebar - Off-canvas em mobile */
	.sidebar {
		transform: translateX(-100%);
		width: 280px;
	}
	
	.sidebar.active {
		transform: translateX(0);
	}
	
	/* Main Feed - Remove margin when sidebar is hidden */
	.main-feed {
		margin-left: 0;
		padding-top: 4rem;
	}
	
	.main-feed.sidebar-open {
		margin-left: 0;
	}
	
	/* Feed Page */
	.fb-feed-page {
		padding: 0.75rem 1rem 1rem;
	}
	
	.fb-feed-layout {
		gap: 1rem;
	}
	
	.fb-feed-stream {
		flex: 1 1 100%;
		max-width: 100%;
	}
	
	.fb-feed-rail {
		display: none;
	}
	
	/* Feed Header */
	.feed-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
		padding: 1rem;
	}
	
	.feed-header h2 {
		font-size: 1.125rem;
	}
	
	.feed-header .btn-secondary {
		width: 100%;
		justify-content: center;
	}
	
	/* Composer */
	.fb-composer-top {
		padding: 0.75rem;
	}
	
	.fb-composer-avatar {
		width: 36px;
		height: 36px;
	}
	
	.fb-composer-extras {
		padding: 0 0.75rem 0.75rem;
		grid-template-columns: 1fr;
	}
	
	.fb-composer-toolbar {
		padding: 0.75rem;
		flex-direction: column;
		gap: 0.75rem;
	}
	
	.fb-composer-toolbar-hint {
		font-size: 0.6875rem;
	}
	
	.fb-composer-submit {
		width: 100%;
	}
	
	/* Post Card */
	.fb-post__header {
		padding: 0.75rem 0.75rem 0;
	}
	
	.fb-post__avatar-wrap .user-avatar {
		width: 36px;
		height: 36px;
	}
	
	.fb-post__author-block {
		font-size: 0.875rem;
	}
	
	.post-content,
	.fb-post__body {
		padding: 0.25rem 0.75rem 0.75rem;
		font-size: 0.9rem;
	}
	
	.fb-post__actions {
		font-size: 0.8125rem;
	}
	
	.fb-post__action i {
		font-size: 1rem;
	}
	
	/* Ad Slot */
	.ad-slot {
		padding: 0.75rem;
	}
	
	.ad-slot img {
		width: 80px;
		height: 80px;
	}
	
	.ad-slot-title {
		font-size: 0.875rem;
	}
	
	.ad-slot-description {
		font-size: 0.75rem;
	}
	
	/* Comments */
	.comments-section {
		padding: 0.75rem;
	}
	
	.comment-item {
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.comment-avatar {
		width: 28px;
		height: 28px;
	}
	
	.comment-content {
		padding: 0.625rem;
	}
	
	.comment-input-group {
		flex-direction: column;
	}
	
	.comment-input {
		width: 100%;
	}
	
	/* Modal */
	.modal {
		padding: 0.75rem;
	}
	
	.modal-content {
		max-width: 100%;
		padding: 1.25rem;
	}
	
	.share-options {
		grid-template-columns: 1fr;
	}
	
	/* Chat */
	.chat-page {
		margin-left: 0;
		padding-top: 4rem;
	}
	
	.chat-container {
		padding: 0.75rem;
	}
	
	.chat-layout {
		flex-direction: column;
		height: calc(100vh - 4rem);
	}
	
	.conversations-sidebar {
		width: 100%;
		max-height: 200px;
		border-right: none;
		border-bottom: 1px solid #e4e6eb;
	}
	
	.conversations-title {
		padding: 0.75rem;
		font-size: 1rem;
	}
	
	.conversation-item {
		padding: 0.625rem 0.75rem;
	}
	
	.conversation-avatar {
		width: 40px;
		height: 40px;
	}
	
	.chat-header {
		padding: 0.75rem;
	}
	
	.chat-header h4 {
		font-size: 1rem;
	}
	
	.chat-call-btn {
		width: 36px;
		height: 36px;
	}
	
	.messages-container {
		padding: 0.75rem;
	}
	
	.message-wrapper {
		max-width: 85%;
	}
	
	.chat-input-wrapper {
		padding: 0.75rem;
	}
	
	.chat-input {
		font-size: 0.9rem;
	}
	
	/* Call Overlay */
	.call-overlay-panel {
		padding: 1rem;
		max-width: 100%;
		margin: 0.5rem;
	}
	
	.call-videos {
		aspect-ratio: 16 / 9;
	}
	
	.call-local-video {
		max-width: 120px;
	}
	
	.call-btn {
		min-width: 100px;
		padding: 0.625rem 1rem;
		font-size: 0.875rem;
	}
	
	/* Dating Module */
	.dating-tabs {
		overflow-x: auto;
		white-space: nowrap;
		padding-bottom: 0.5rem;
		-webkit-overflow-scrolling: touch;
	}
	
	.dating-tabs::-webkit-scrollbar {
		height: 4px;
	}
	
	.dating-tab {
		flex-shrink: 0;
		padding: 0.5rem 1rem;
		font-size: 0.8125rem;
	}
	
	.dating-filter-grid {
		grid-template-columns: 1fr;
	}
	
	.dating-discovery-grid {
		grid-template-columns: 1fr;
	}
	
	.dating-profile-header {
		flex-direction: column;
		text-align: center;
		padding: 1rem;
	}
	
	.dating-profile-avatar {
		width: 80px;
		height: 80px;
	}
	
	.dating-profile-actions {
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.dating-profile-actions .btn-primary,
	.dating-profile-actions .btn-secondary {
		width: 100%;
		justify-content: center;
	}
	
	.dating-request-item {
		flex-direction: column;
		text-align: center;
		padding: 0.75rem;
	}
	
	.dating-request-avatar {
		width: 48px;
		height: 48px;
	}
	
	.dating-request-actions {
		width: 100%;
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.dating-request-actions .btn-primary,
	.dating-request-actions .btn-secondary {
		width: 100%;
		justify-content: center;
	}
	
	.dating-form-row {
		grid-template-columns: 1fr;
	}
	
	.dating-form-actions {
		flex-direction: column;
	}
	
	.dating-form-actions .btn-primary,
	.dating-form-actions .btn-secondary {
		width: 100%;
	}
	
	/* Marketplace */
	.marketplace-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
		padding: 1rem;
	}
	
	.header-content h1 {
		font-size: 1.25rem;
	}
	
	.header-actions {
		width: 100%;
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.marketplace-tab,
	.marketplace-btn-create {
		width: 100%;
		justify-content: center;
	}
	
	.marketplace-filters {
		padding: 0.75rem;
	}
	
	.filter-form {
		grid-template-columns: 1fr;
	}
	
	.search-group {
		flex-direction: column;
		align-items: stretch;
	}
	
	.marketplace-grid {
		grid-template-columns: 1fr;
	}
	
	.card-image {
		height: 180px;
	}
	
	.marketplace-detail {
		grid-template-columns: 1fr;
	}
	
	.detail-gallery {
		margin-bottom: 1rem;
	}
	
	.main-image-wrapper {
		margin-bottom: 0.5rem;
	}
	
	.thumbnail-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 0.5rem;
	}
	
	.thumbnail {
		height: 60px;
	}
	
	/* Profile */
	.profile-header {
		margin-bottom: 1rem;
	}
	
	.profile-cover {
		height: 120px;
	}
	
	.profile-avatar-wrapper {
		bottom: -40px;
		left: 50%;
		transform: translateX(-50%);
	}
	
	.profile-avatar {
		width: 80px;
		height: 80px;
	}
	
	.profile-info {
		padding: 2.5rem 1rem 1rem;
		margin-left: 0;
		text-align: center;
	}
	
	.profile-info h1 {
		font-size: 1.25rem;
	}
	
	.profile-section {
		padding: 1rem;
		margin-bottom: 1rem;
	}
	
	.section-title h2 {
		font-size: 1.125rem;
	}
	
	.form-input {
		font-size: 0.9rem;
	}
	
	.form-actions {
		flex-direction: column;
	}
	
	.form-actions .btn {
		width: 100%;
		justify-content: center;
	}
	
	/* Community */
	.community-header {
		padding: 1rem;
	}
	
	.community-header h1 {
		font-size: 1.25rem;
	}
	
	.community-stats {
		grid-template-columns: 1fr;
	}
	
	.members-grid,
	.groups-grid {
		grid-template-columns: 1fr;
	}
	
	/* Pagination */
	.feed-pagination,
	.pagination {
		flex-wrap: wrap;
		gap: 0.375rem;
	}
	
	.feed-pagination .page-current,
	.feed-pagination .page-link,
	.pagination-link,
	.pagination-current {
		padding: 0.375rem 0.625rem;
		font-size: 0.8125rem;
	}
	
	/* Notification */
	.notification {
		top: 0.5rem;
		right: 0.5rem;
		left: 0.5rem;
		max-width: none;
		padding: 0.75rem 1rem;
	}
}

/* ============================================================
   ADMIN MODULE
   ============================================================ */

/* Admin dashboard grid adjustments */
.admin-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.admin-stat-card {
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-color);
	padding: 1.5rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-stat-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.admin-stat-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.25rem;
}

.admin-stat-label {
	font-size: 0.875rem;
	color: var(--text-secondary);
	font-weight: 500;
}

.admin-table-container {
	overflow-x: auto;
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-color);
}

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

.admin-table th,
.admin-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid var(--border-color);
}

.admin-table th {
	background: var(--bg-secondary);
	font-weight: 600;
	color: var(--text-primary);
}

.admin-table tr:hover {
	background: var(--bg-secondary);
}

.admin-table tr:last-child td {
	border-bottom: none;
}

.admin-action-btn {
	padding: 0.375rem 0.75rem;
	border-radius: var(--radius-sm);
	font-size: 0.8125rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
}

.admin-action-btn.primary {
	background: var(--primary);
	color: white;
}

.admin-action-btn.primary:hover {
	background: var(--primary-dark);
}

.admin-action-btn.secondary {
	background: var(--bg-secondary);
	color: var(--text-primary);
}

.admin-action-btn.secondary:hover {
	background: var(--bg-tertiary);
}

.admin-action-btn.danger {
	background: #fee2e2;
	color: #dc2626;
}

.admin-action-btn.danger:hover {
	background: #fecaca;
}

/* Responsive Admin Module */
@media (max-width: 768px) {
	.admin-dashboard-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.admin-stat-card {
		padding: 1rem;
	}
	
	.admin-stat-value {
		font-size: 1.5rem;
	}
	
	.admin-table-container {
		margin: 0 -1rem;
		border-radius: 0;
		border-left: none;
		border-right: none;
	}
	
	.admin-table th,
	.admin-table td {
		padding: 0.75rem 0.5rem;
		font-size: 0.875rem;
	}
	
	.admin-table th:nth-child(n+4),
	.admin-table td:nth-child(n+4) {
		display: none;
	}
	
	.admin-action-btn {
		padding: 0.25rem 0.5rem;
		font-size: 0.75rem;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.admin-dashboard-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.admin-table th:nth-child(n+5),
	.admin-table td:nth-child(n+5) {
		display: none;
	}
}

/* ============================================================
   ADS MODULE (Anúncios)
   ============================================================ */

.step-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.step-indicator.active {
	background: var(--primary);
	color: white;
}

.step-indicator.completed {
	background: #10b981;
	color: white;
}

.step-indicator.inactive {
	background: #e4e6eb;
	color: #65676b;
}

.step-content {
	display: none;
}

.step-content.active {
	display: block;
}

.objetivo-card {
	padding: 1rem;
	border: 2px solid #e4e6eb;
	border-radius: var(--radius-lg);
	cursor: pointer;
	transition: all 0.2s ease;
}

.objetivo-card:hover {
	border-color: var(--primary);
}

.objetivo-card.selected {
	border-color: var(--primary);
	background: #e7f3ff;
}

.interest-tag {
	padding: 0.5rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.interest-tag.selected {
	background: var(--primary);
	color: white;
}

.interest-tag:not(.selected) {
	background: #e4e6eb;
	color: #1c1e21;
}

.interest-tag:not(.selected):hover {
	background: #d8dadf;
}

.preview-card {
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	overflow: hidden;
}

/* Responsive Ads Module */
@media (max-width: 768px) {
	.step-indicator {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}
	
	.objetivo-card {
		padding: 0.75rem;
	}
	
	.objetivo-card .text-3xl {
		font-size: 1.5rem;
	}
	
	.interest-tag {
		padding: 0.375rem 0.625rem;
		font-size: 0.8125rem;
	}
	
	.preview-card {
		order: -1;
		margin-bottom: 1rem;
	}
	
	.grid.grid-cols-1.lg\:grid-cols-2 {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.objetivo-card .text-3xl {
		font-size: 1.75rem;
	}
}

/* ============================================================
   RESPONSIVE TABLET (769px - 1024px)
   ============================================================ */

@media (min-width: 769px) and (max-width: 1024px) {
	/* Feed */
	.fb-feed-page {
		padding: 1rem 1.25rem 1.5rem;
	}
	
	.fb-feed-stream {
		flex: 1 1 600px;
		max-width: 600px;
	}
	
	.fb-feed-rail {
		flex: 0 0 280px;
		width: 280px;
	}
	
	/* Dating */
	.dating-discovery-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}
	
	/* Marketplace */
	.marketplace-grid {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	}
	
	/* Chat */
	.conversations-sidebar {
		width: 280px;
	}
	
	/* Profile */
	.profile-avatar {
		width: 120px;
		height: 120px;
	}
	
	.profile-avatar-wrapper {
		bottom: -60px;
		left: 1.5rem;
	}
	
	.profile-info {
		margin-left: 9rem;
		padding: 2rem 1.5rem 1.5rem;
	}
}

.notification.error {
	border-left: 4px solid var(--danger);
}

.notification.warning {
	border-left: 4px solid var(--warning);
}

@keyframes slideIn {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideOut {
	from {
		transform: translateX(0);
		opacity: 1;
	}
	to {
		transform: translateX(100%);
		opacity: 0;
	}
}
