/* === Simbólyca Typography — Local Fonts === */
@font-face {
    font-family: 'Rasfire';
    src: url('../../../assets/fonts/Rasfire-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Rasfire';
    src: url('../../../assets/fonts/Rasfire-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Rasfire';
    src: url('../../../assets/fonts/Rasfire-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Rasfire';
    src: url('../../../assets/fonts/Rasfire-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Rasfire';
    src: url('../../../assets/fonts/Rasfire-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../../assets/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../../assets/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../../assets/fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../../assets/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../../assets/fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

:root {
    --primary: #926ECC;
    /* Violet Original / Simbólyca Accent */
    --primary-soft: rgba(146, 110, 204, 0.1);
    --secondary: #F4F0FB;
    /* Violet 10% background */
    --accent: #B399DB;
    /* Violet 70% / Soft Hover */
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* === CUSTOM PREMIUM SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(146, 110, 204, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    border: 2px solid #F4F0FB;
}

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

/* Horizontal Scroll for LXP */
.horizontal-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0 2rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    scroll-snap-type: x mandatory;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.carousel-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid #E5E7EB;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
}

.lesson-small-card {
    scroll-snap-align: start;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--secondary);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Forçar Poppins em elementos de formulário para melhor legibilidade */
select,
input,
textarea,
button {
    font-family: 'Poppins', sans-serif !important;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4 {
    font-family: 'Rasfire', sans-serif;
    font-weight: 600;
}

/* Background Elegante */
.bg-simbolyca {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 10% 20%, rgba(179, 153, 219, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(146, 110, 204, 0.1) 0%, transparent 40%);
}

/* Auth Section */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3.5rem;
    border-radius: 32px;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow);
    text-align: center;
}

.auth-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.auth-logo span {
    color: var(--primary);
}

.auth-subtitle {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
}

/* === SISTEMA DE BOTÕES (SIMBÓLYCA LUXURY) === */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 20px rgba(146, 110, 204, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(146, 110, 204, 0.35);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(146, 110, 204, 0.05);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid rgba(146, 110, 204, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-dashed-add {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px dashed rgba(146, 110, 204, 0.4);
    border-radius: 12px;
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-dashed-add:hover {
    background: rgba(146, 110, 204, 0.08) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    transform: translateY(-1px);
}

/* Esconder setinha nativa do datalist nos inputs de texto */
input::-webkit-calendar-picker-indicator {
    display: none !important;
    -webkit-appearance: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

input[list]::-webkit-calendar-picker-indicator {
    display: none !important;
    -webkit-appearance: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Tags de Atalho para Trilhas */
.trilha-tag-group,
.trilha-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
    align-items: center;
}

.trilha-tag {
    background: #F8F5EE;
    border: 1px solid #E5E7EB;
    color: #4B5563;
    padding: 0.3rem 0.65rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
}

.trilha-tag:hover {
    background: rgba(146, 110, 204, 0.12);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.trilha-tag.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 2px 6px rgba(146, 110, 204, 0.3);
}

.subaula-entry, .material-entry {
    transition: all 0.2s ease;
}

.subaula-entry:hover, .material-entry:hover {
    border-color: rgba(146, 110, 204, 0.4);
}

.btn-danger-outline {
    background: rgba(239, 68, 68, 0.05);
    color: #EF4444;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-danger-outline:hover {
    background: #EF4444;
    color: #fff;
    border-color: #EF4444;
    transform: translateY(-2px);
}

.btn-muted-outline {
    background: rgba(156, 163, 175, 0.05);
    color: var(--text-muted);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid rgba(156, 163, 175, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-muted-outline:hover {
    background: var(--text-muted);
    color: #fff;
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, #926ECC 0%, #B399DB 50%, #6B4EB3 100%);
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(107, 78, 179, 0.4);
    transition: all 0.4s;
}

.btn-gold:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(107, 78, 179, 0.5);
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background: var(--primary);
    color: #fff;
}

/* Botões de Ação Menores (Listas) */
.btn-action-small {
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(146, 110, 204, 0.15);
    background: rgba(146, 110, 204, 0.05);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    backdrop-filter: blur(5px);
}

.btn-action-small:hover {
    background: var(--primary);
    color: #fff !important;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(146, 110, 204, 0.25);
}

/* Botões de Decisão (Curadoria) */
.btn-approve {
    background: rgba(49, 151, 149, 0.08);
    color: #319795;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid rgba(49, 151, 149, 0.15);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-approve:hover {
    background: #319795;
    color: white !important;
    border-color: #319795;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(49, 151, 149, 0.2);
}

.btn-reject {
    background: rgba(197, 48, 48, 0.08);
    color: #C53030;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid rgba(197, 48, 48, 0.15);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-reject:hover {
    background: #C53030;
    color: white !important;
    border-color: #C53030;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 48, 48, 0.2);
}

/* Chips de Filtro (Vitrine) */
.chip {
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    background: var(--white);
    border: 1px solid #eee;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(146, 110, 204, 0.05);
}

.chip.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(146, 110, 204, 0.2);
}

/* CTA WhatsApp (Vitrine) */
.btn-cta {
    background: #25D366;
    /* WhatsApp Green mas com toque premium se possível, via sombra */
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

/* Botão de Logout (Sidebar) */
.btn-logout {
    width: 100%;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(197, 48, 48, 0.05);
    color: #C53030;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    border: 1px solid rgba(197, 48, 48, 0.1);
}

.btn-logout:hover {
    background: #C53030;
    color: white;
    transform: translateX(5px);
}

/* === Botões Império Simbólyca (Ação de Painel) === */
.btn-imperio-action {
    border: 1.5px solid rgba(146, 110, 204, 0.4);
    background: #F8F4FF;
    color: #5B39A2;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-imperio-action:hover {
    background: #926ECC;
    color: white !important;
    border-color: #926ECC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(146, 110, 204, 0.2);
}

.btn-imperio-action.btn-success {
    border-color: rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.05);
    color: #065F46;
}

.btn-imperio-action.btn-success:hover {
    background: #10B981;
    color: white !important;
    border-color: #10B981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-imperio-action.btn-danger {
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.05);
    color: #B91C1C;
}

.btn-imperio-action.btn-danger:hover {
    background: #EF4444;
    color: white !important;
    border-color: #EF4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Reset de botões padrão */
button {
    font-family: inherit;
    outline: none;
}

/* Dashboard Layout */
.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.sidebar {
    background: var(--white);
    border-right: 1px solid #E5E7EB;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 10;
    overflow-y: auto;
}

.sidebar-back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.825rem;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
}

.sidebar-back-link:hover {
    color: var(--primary);
}

.sidebar-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin: 1.5rem 0 0.75rem 1rem;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.btn-sidebar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    color: #4B5563;
    /* Gray-600 */
    text-decoration: none !important;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 14px;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.btn-sidebar i {
    width: 24px;
    display: flex;
    justify-content: center;
    font-size: 1.25rem;
    color: #9CA3AF;
    /* Gray-400 */
    transition: all 0.25s ease;
}

.btn-sidebar:hover {
    background: #1F2937;
    color: var(--white);
}

.btn-sidebar:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

.btn-sidebar.active {
    background: #111827;
    /* Dark background */
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-sidebar.active i {
    color: var(--primary);
}

/* Auth Section Reset for Sidebar Link */
.sidebar a {
    text-decoration: none;
    color: inherit;
}

.sidebar-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #F3F4F6;
}

.btn-logout {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    width: 100%;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.btn-logout:hover {
    background: #FEF2F2;
    color: #EF4444;
}

.main-content {
    padding: 3rem 4rem;
    overflow-y: auto;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

/* Form Styles */
.form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.upload-area {
    border: 2px dashed #E5E7EB;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.upload-area:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
}

.upload-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Moderation Styles */
.moderation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

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

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.product-img {
    height: 240px;
    background: #F3F4F6;
    background-size: cover;
    background-position: center;
}

.product-details {
    padding: 1.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-pending {
    background: #FEF3C7;
    color: #92400E;
}

.badge-approved {
    background: #D1FAE5;
    color: #065F46;
}

.card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-approve {
    flex: 1;
    background: #10B981;
    color: white;
    border: none;
    padding: 0.6rem;
    border-radius: 8px;
    cursor: pointer;
}

.btn-reject {
    flex: 1;
    background: #EF4444;
    color: white;
    border: none;
    padding: 0.6rem;
    border-radius: 8px;
    cursor: pointer;
}

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

    .sidebar {
        display: none;
    }
}

/* Modal UI */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 40px;
    width: 90%;
    max-width: 440px;
    /* Reduzi para ficar mais compacto */
    max-height: 85vh;
    /* Limite de altura mais seguro */
    overflow-y: auto;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}


/* Container específico para centralizar o card no meio do modal */
.preview-container {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.preview-container .public-card-mockup {
    width: 100%;
    max-width: 360px;
    /* Card não precisa ser gigante no preview */
    margin: 0 auto;
}

/* Ajuste de Padding para Mobile */
@media (max-width: 600px) {
    .modal-content {
        padding: 2rem 1.5rem;
    }
}

.btn-close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #F3F4F6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Public Card Look (Pinterest/Clean-Shop Style) */
.public-card-mockup {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #F3F4F6;
    display: flex;
    flex-direction: column;
}

.public-card-mockup:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(146, 110, 204, 0.15);
    border-color: rgba(146, 110, 204, 0.3);
}

.card-hero {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Imagem Quadrada para Vitrine */
    background: #F9FAFB;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.brand-title-header {
    margin: 0.5rem 0 0.8rem 0;
}

.brand-name-title {
    font-family: 'Rasfire', serif;
    font-size: 1.35rem;
    color: #111;
    margin: 0 0 0.25rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
    min-height: 2.5em;
}

.brand-founder-tag {
    font-size: 0.72rem;
    color: #9CA3AF;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.brand-desc-clamped {
    color: #4B5563;
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4.2em;
    max-height: 4.2em;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 1.25rem;
    border-top: 1px solid #F3F4F6;
    margin-top: auto;
}

.category-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(146, 110, 204, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
}

.btn-cta {
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Public Showcase Specific Styles */
.public-header {
    padding: 6rem 0 4rem;
    position: relative;
    z-index: 10;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

.search-filter-bar {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-input-wrapper i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.25rem;
}

.search-input-wrapper input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    background: #F9FAFB;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--primary-soft);
}

.filter-chips {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.chip {
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    border: 1px solid #E5E7EB;
    background: var(--white);
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
}

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

.chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(146, 110, 204, 0.3);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    padding-bottom: 8rem;
}

.public-card-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.public-footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid #F3F4F6;
    background: var(--white);
}

.public-footer p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Floating Back Button */
.btn-back-hub-floating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    z-index: 100;
}

.btn-back-hub-floating:hover {
    transform: scale(1.05);
    background: var(--text-dark);
    color: var(--white);
}

@media (max-width: 768px) {
    .container-wide {
        padding: 0 1.5rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .search-filter-bar {
        padding: 1rem;
    }
}

/* === Trilhas do Clube (Premium LXP Experience) === */
.lxp-section {
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease forwards;
}

/* === Pills de Navegação (Print 04) === */
.pills-row {
    scrollbar-width: none;
}

.pills-row::-webkit-scrollbar {
    display: none;
}

.pill-nav {
    background: white;
    color: var(--text-muted);
    border: 1.5px solid #E5E7EB;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    font-family: inherit;
}

.pill-nav:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pill-nav.active {
    background: #4B4B4B;
    border-color: #4B4B4B;
    color: white;
}

/* === Portal Cards Grid (2 colunas - Print 04) === */
.portal-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.portal-content-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #F3F4F6;
}

.portal-content-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.portal-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.portal-card-lock {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
}

.portal-card-body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.portal-card-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.portal-card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 900px) {
    .portal-cards-grid {
        grid-template-columns: 1fr;
    }
}



.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.view-all {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    transition: transform 0.3s ease;
}

.view-all:hover {
    transform: translateX(5px);
}

/* Hero Banner */
.club-hero {
    width: 100%;
    height: 480px;
    border-radius: 40px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem;
    margin-bottom: 4rem;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    color: white;
}

.hero-badge {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(146, 110, 204, 0.4);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-hero-primary {
    background: var(--white);
    color: var(--text-dark);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
}

/* Horizontal Scroll Section */
.horizontal-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0 2rem 0;
    scrollbar-width: none;
    /* Firefox */
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.lesson-small-card {
    min-width: 320px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid #F3F4F6;
}

.lesson-small-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.lesson-small-card .thumb {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
}

.progress {
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.lesson-small-card .info {
    padding: 1.5rem;
}

.lesson-small-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.lesson-small-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Premium Grid & Cards */
.lessons-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 3rem;
}

.trail-premium-card {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid #F3F4F6;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.trail-premium-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-soft);
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.8s ease;
}

.trail-premium-card:hover .card-image {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trail-premium-card:hover .card-overlay {
    opacity: 1;
}

.category-tag {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-play-btn {
    align-self: center;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trail-premium-card:hover .card-play-btn {
    transform: scale(1);
}

.card-content-premium {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content-premium h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card-content-premium p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.card-footer-premium {
    margin-top: auto;
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.card-footer-premium span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-footer-premium i {
    color: var(--primary);
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .club-hero {
        height: 400px;
        padding: 3rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .club-hero {
        height: auto;
        flex-direction: column;
        padding: 2.5rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }

    .lessons-grid-premium {
        grid-template-columns: 1fr;
    }

    .lesson-small-card {
        min-width: 280px;
    }
}


/* === Admin Premium Forms === */
.admin-card-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.admin-form-label {
    display: block;
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-input-luxury {
    width: 100%;
    background: #F9FAFB;
    border: 1.5px solid #F3F4F6;
    border-radius: 16px;
    padding: 1.25rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.admin-input-luxury:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
    outline: none;
}

.admin-upload-luxury {
    border: 2px dashed #E5E7EB;
    border-radius: 24px;
    padding: 3rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-upload-luxury:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
}

.admin-upload-luxury i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
}

.admin-upload-luxury.drag-over {
    border-color: var(--primary);
    background: var(--primary-soft);
    transform: scale(1.02);
}

.upload-text {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.file-name {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.5rem;
    word-break: break-all;
}

/* Guidelines Editor */
#guidelines-editor::-webkit-scrollbar {
    width: 8px;
}

#guidelines-editor::-webkit-scrollbar-thumb {
    background: #E5E7EB;
    border-radius: 10px;
}

#guidelines-editor::-webkit-scrollbar-thumb:hover {
    background: var(--primary-soft);
}

.admin-submit-luxury:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* === Status Badges === */
.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
}

.status-pendente {
    background: #FEF2F2;
    color: #EF4444;
}

.status-aguardando {
    background: #FFFBEB;
    color: #D97706;
}

.status-aprovada {
    background: #F0FDF4;
    color: #22C55E;
}

/* === NOTIFICAÇÕES (TOAST) === */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.toast-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #ccc;
    min-width: 320px;
    animation: toast-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.toast-item.success {
    border-left-color: #22C55E;
}

.toast-item.error {
    border-left-color: #EF4444;
}

.toast-item.warning {
    border-left-color: #F59E0B;
}

.toast-item i {
    font-size: 1.5rem;
}

.toast-item.success i {
    color: #22C55E;
}

.toast-item.error i {
    color: #EF4444;
}

.toast-item.warning i {
    color: #F59E0B;
}

@keyframes toast-in {
    from {
        transform: translateX(100%) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

.toast-out {
    transform: translateX(100%) scale(0.9);
    opacity: 0;
}

/* === CUSTOM MODAL SYSTEM (SIMBÓLYCA) === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 32px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--glass-border);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.modal-title {
    font-family: 'Rasfire', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.modal-message {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

.modal-btn-confirm {
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
}

.modal-btn-confirm:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(146, 110, 204, 0.2);
}

.modal-btn-cancel {
    background: transparent;
    color: var(--text-muted);
    padding: 1rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.modal-btn-cancel:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-dark);
}

@media (min-width: 640px) {
    .modal-actions {
        flex-direction: row;
        justify-content: center;
    }

    .modal-actions button {
        flex: 1;
    }
}

@media (min-width: 640px) {
    .modal-actions {
        flex-direction: row;
        justify-content: center;
    }

    .modal-actions button {
        flex: 1;
    }
}

/* === PASSWORD TOGGLE SYSTEM === */
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper .form-input,
.password-wrapper .form-input-admin {
    padding-right: 3.5rem;
    /* Espaço para o ícone */
}

.password-toggle {
    position: absolute;
    right: 1rem;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.5rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    outline: none;
}

.password-toggle:hover {
    color: var(--primary);
}

.badge-tag {
    background: #F3F4F6;
    color: #4B5563;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid #E5E7EB;
    white-space: nowrap;
}

.btn-outline-neutral {
    background: transparent;
    color: #6B7280;
    border: 1px solid #E5E7EB;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-neutral:hover {
    background: #F3F4F6;
    color: #1F2937;
    border-color: #D1D5DB;
    transform: translateY(-2px);
}