:root {
    --bg-color: #121f3a; /* Azul um pouco mais franco (mais claro e mais azulado que o original) */
    --card-bg: rgba(20, 26, 41, 0.7);
    --card-border: rgba(255, 255, 255, 0.05);
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --secondary: #1e293b;
    --secondary-hover: #334155;
    --danger: #ef4444;
    --danger-hover: #dc2626;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #10b981;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background Glow Effect */
.glow-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}

/* Header Glassmorphism Premium */
.header {
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(18, 31, 58, 0.4);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Linha Luminosa (Estilo Linear/Vercel) */
.header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.5), rgba(59, 130, 246, 0.8), rgba(14, 165, 233, 0.5), transparent);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

#site-logo {
    max-height: 72px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    mix-blend-mode: screen; /* Remove fundo preto */
}

#site-logo:hover {
    transform: scale(1.02);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4px;
}

.logo-text-group h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1;
    margin-bottom: 4px;
    /* Efeito Metálico */
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-text-group h1 span {
    background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.4));
}

.logo-text-group .logo-sub {
    font-family: var(--font-body);
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text-group .logo-sub::before,
.logo-text-group .logo-sub::after {
    content: '';
    height: 1px;
    width: 25px;
    background-color: #0ea5e9;
}

/* Botão Glass Premium */
.nav-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 8px 20px rgba(14, 165, 233, 0.25);
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 0 40px;
}

.title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
    padding: 0 16px;
}

.subtitle strong {
    color: #38bdf8;
    font-weight: 700;
}

.hero-cta-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(14,165,233,0.12));
    border: 1px solid rgba(56,189,248,0.35);
    color: #38bdf8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 16px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 20px 0 60px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.2);
}

.service-card.has-credit {
    border-color: rgba(16, 185, 129, 0.3);
}

.service-card.has-credit:hover {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.2);
}

.service-header-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: var(--primary);
}

.service-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.credit-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-details-toggle {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.2s;
    user-select: none;
}

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

.service-desc-container {
    flex-grow: 1;
}

.service-desc-container.hidden {
    display: none !important;
}

.service-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 24px;
    text-align: justify;
    hyphens: auto;
    hyphenate-limit-chars: 10 5 4;
    overflow-wrap: break-word;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.service-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-original {
    text-decoration: line-through;
    color: var(--danger);
    font-size: 13px;
    font-weight: 600;
    opacity: 0.95;
}

.price-promo-label {
    color: var(--text-muted);
    font-size: 11px;
    margin: 2px 0 0px;
}

.service-price {
    font-weight: 800;
    font-size: 28px;
    color: var(--accent);
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.price-badge-label {
    color: var(--text-muted);
    font-size: 10px;
    margin-top: 1px;
}

.btn-primary, .btn-secondary, .btn-danger {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: var(--font-body);
}

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

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

.btn-primary.btn-credit {
    background: var(--accent);
}

.btn-primary.btn-credit:hover {
    background: #059669;
}

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

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

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

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

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.modal-content {
    background: var(--bg-color);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: white;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 4px;
}

.modal-desc {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.modal-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 24px;
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    transition: border-color 0.2s;
    font-family: var(--font-body);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.error-msg {
    color: var(--danger);
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Payment Area */
.payment-area {
    text-align: center;
    margin-bottom: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--card-border);
}

.pix-qrcode {
    background: white;
    padding: 16px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 16px;
}

.pix-qrcode img {
    display: block;
    width: 200px;
    height: 200px;
}

.pix-copy-paste {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.pix-copy-paste input {
    flex-grow: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    color: var(--text-muted);
    font-family: monospace;
    font-size: 12px;
}

.btn-copy {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-copy:hover {
    background: var(--secondary-hover);
}

.payment-status {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid var(--text-muted);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

@media (max-width: 600px) {
    .title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .subtitle {
        font-size: 14px;
        padding: 0 12px;
        line-height: 1.65;
    }

    .hero-cta-tag {
        font-size: 12px;
        padding: 5px 14px;
    }
    
    .hero {
        padding: 40px 0 20px;
    }

    .result-header, .history-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .error-card {
        padding: 20px;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
    
    .nav-btn {
        padding: 6px 10px;
        font-size: 13px;
        gap: 4px;
    }
    
    .logo {
        gap: 8px;
    }

    #site-logo {
        max-height: 40px;
    }

    .logo-text-group h1 {
        font-size: 20px;
        margin-bottom: 2px;
    }

    .logo-text-group .logo-sub {
        font-size: 8px;
        letter-spacing: 1px;
        gap: 4px;
        white-space: nowrap; /* Impede a quebra de linha */
    }

    .logo-text-group .logo-sub::before,
    .logo-text-group .logo-sub::after {
        width: 12px;
    }

    /* === CARDS DE RESULTADO - MOBILE === */

    /* Container principal dos resultados */
    .result-content {
        padding: 16px;
        border-radius: 12px;
    }

    /* Grid dos dados: 1 coluna no celular */
    .data-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Cada campo de dado fica mais compacto */
    .data-item {
        padding: 12px 14px;
    }

    /* Label menor */
    .data-label {
        font-size: 11px;
    }

    /* Valor com fonte menor no celular */
    .data-value {
        font-size: 14px;
    }

    /* Título de seção (ex: DADOS BÁSICOS DO VEÍCULO) */
    .data-section-title {
        font-size: 15px;
        margin-top: 20px;
    }

    /* Botões de ação (PDF, Copiar) */
    .result-actions button,
    .history-actions button {
        font-size: 12px;
        padding: 8px 12px;
    }

    /* Título da consulta */
    .result-header h2,
    .history-header h2 {
        font-size: 18px;
    }
}

/* Result Section & History */
.result-header, .history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--card-border);
}

.result-actions, .history-actions {
    display: flex;
    gap: 12px;
}

.result-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.data-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    page-break-inside: avoid;
    break-inside: avoid;
}

.data-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.data-value {
    font-weight: 600;
    font-size: 16px;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: pre-wrap;
}

.data-section-title {
    grid-column: 1 / -1;
    font-family: var(--font-heading);
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 0px;
    padding-bottom: 8px;
    color: var(--primary);
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    page-break-inside: avoid;
    break-inside: avoid;
    display: flex;
    align-items: center;
    gap: 8px;
}

.data-section-title::before {
    content: '▶';
    font-size: 12px;
    color: var(--accent);
}

/* History List */
.history-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.history-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-info h4 {
    font-family: var(--font-heading);
    margin-bottom: 4px;
}

.history-info p {
    color: var(--text-muted);
    font-size: 14px;
}

.history-item-actions {
    display: flex;
    gap: 8px;
}

/* Legal Section */
.legal-section {
    grid-column: 1 / -1;
    margin-top: 40px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.02);
}
.legal-block {
    margin-top: 24px;
}
.legal-block:first-of-type {
    margin-top: 16px;
}
.legal-title {
    color: var(--accent);
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.legal-text {
    font-size: 12px;
    line-height: 1.6;
    color: #a1a1aa;
    text-transform: uppercase;
    margin: 0;
}

/* PDF Styles Override */
.pdf-container {
    background: white;
    color: black;
    padding: 15px; /* Reduzido de 40px */
}
.pdf-container .data-grid {
    gap: 4px 12px; /* Reduzido espaçamento entre colunas e linhas */
}
.pdf-container .data-item {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 6px 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}
.pdf-container .data-label {
    color: #334155;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 0;
    min-width: 120px;
}
.pdf-container .data-label::after {
    content: ":";
}
.pdf-container .data-value {
    color: #0f172a;
    font-size: 11px;
    font-weight: 400;
    word-break: break-word;
    flex: 1;
}
.pdf-container img {
    max-width: 100px !important;
    max-height: 100px !important;
    border-radius: 4px !important;
    border: 1px solid #e2e8f0 !important;
    display: block;
    margin-top: 4px;
}
.pdf-container .data-section-title {
    color: white;
    background-color: #004b87;
    padding: 4px 8px; /* Reduzido */
    margin-top: 16px; /* Reduzido de 24px */
    margin-bottom: 8px; /* Reduzido de 16px */
    font-size: 12px; /* Reduzido */
    border: none;
    font-weight: bold;
}
.pdf-container .data-section-title span {
    display: none; /* Esconde a setinha verde */
}
.pdf-container .legal-section {
    background: transparent;
    border-color: #e2e8f0;
    margin-top: 24px; /* Reduzido de 40px */
}
.pdf-container .legal-text {
    color: #64748b;
    font-size: 9px;
    line-height: 1.3;
}
.pdf-container .legal-title {
    color: #004b87;
    font-size: 12px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-icon {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

@keyframes float-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}

/* =========================================
   Responsive Navigation (Categories)
========================================= */

/* Desktop Navigation (Header) */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.nav-link {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}

.nav-link:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none; /* hidden on desktop */
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    margin-left: auto;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile Sidebar (Drawer) */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -280px; /* hidden by default */
    width: 280px;
    height: 100vh;
    background: var(--bg-color);
    z-index: 1000;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-sidebar.open {
    left: 0;
}

.sidebar-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-header h3 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 18px;
}

.close-sidebar-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    flex: 1;
    overflow-y: auto;
}

.sidebar-link {
    background: transparent;
    border: none;
    color: var(--text-main);
    text-align: left;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-family: var(--font-body);
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.02);
}

.sidebar-link.active {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
    border-left-color: var(--primary);
}

.sidebar-link.suporte-link {
    color: #10b981;
    text-decoration: none;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}
