/* Variables & Reset */
:root {
    --primary-color: #2fe10b;
    --secondary-color: #00b60f;
    --bg-dark: #03080f;
    --bg-darker: #050d17;
    --bg-card: #0c1423;
    --text-primary: #ffffff;
    --text-secondary: #c0c0c0;
    --border-color: rgba(11, 225, 64, 0.2);
    --max-width: 1400px;
    --sidebar-width: 300px;
    --content-padding: clamp(1rem, 5vw, 4rem);
    --border-radius: 12px;
    --transition: 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Karla', sans-serif;
}

html {
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout Base */
.documentation-layout {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    min-height: 100vh;
    position: relative;
}

.sidebar {
    background: var(--bg-darker);
    border-right: 1px solid var(--border-color);
    padding: 2rem;
    position: fixed;
    height: 100vh;
    width: var(--sidebar-width);
    overflow-y: auto;
    transition: transform var(--transition);
}

.main-content {
    grid-column: 2;
    padding: var(--content-padding);
    max-width: calc(var(--max-width) - var(--sidebar-width));
    margin: 0 auto;
    width: 100%;
}

/* Components */
.section {
    margin-bottom: clamp(3rem, 8vh, 5rem);
}

.section-header {
    margin-bottom: clamp(2rem, 5vh, 3rem);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}

.feature-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: clamp(1.5rem, 4vw, 2rem);
    transition: transform var(--transition);
}

/* Code Blocks */
.code-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.code-tab {
    padding: 0.5rem 1rem;
    white-space: nowrap;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
    flex: 0 0 auto;
}

.code-block {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.code-block pre {
    margin: 0;
    padding: 1rem;
    overflow-x: auto;
    font-size: clamp(12px, 0.9rem, 14px);
}

.code-block code {
    font-family: 'Fira Code', monospace;
    line-height: 1.5;
}

/* Tables */
.parameter-table-container {
    margin: 1.5rem 0;
}

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

/* Mobile Table Transformação */
@media (max-width: 768px) {

    .parameter-table,
    .parameter-table tbody,
    .parameter-table tr {
        display: block;
        width: 100%;
    }

    .parameter-table thead {
        display: none;
    }

    .parameter-table tr {
        margin-bottom: 1rem;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        padding: 1rem;
        background: var(--bg-card);
    }

    .parameter-table td {
        display: block;
        padding: 0.5rem 0;
        border: none;
    }

    .parameter-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-color);
        display: block;
        margin-bottom: 0.25rem;
    }
}

/* API Method */
.api-method {
    background: var(--bg-darker);
    border-radius: var(--border-radius);
    padding: clamp(1rem, 3vw, 2rem);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.endpoint-url {
    background: var(--bg-card);
    padding: 1rem;
    border-radius: 6px;
    font-family: monospace;
    font-size: clamp(12px, 0.9rem, 14px);
    word-break: break-all;
    margin: 1rem 0;
}

/* Responsividade */
@media (max-width: 1200px) {
    :root {
        --sidebar-width: 280px;
    }
}

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

    .sidebar {
        transform: translateX(-100%);
        z-index: 1000;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        grid-column: 1;
        max-width: 100%;
    }

    .menu-toggle {
        display: block;
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1001;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .section-header {
        text-align: left;
    }

    .code-block {
        border-radius: 0;
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .code-block pre {
        padding: 1rem;
        font-size: 12px;
        overflow-x: auto;
        white-space: pre-wrap;
        word-wrap: break-word;
    }

    .method-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Utilitários */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

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

/* Scrollbars */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-darker);
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Response Examples */
.response-example {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.response-example h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.response-example .code-block {
    display: block !important;
    /* Força a exibição do bloco de resposta */
}

/* Ajuste para blocos de código JSON */
.response-example .code-block pre {
    background: var(--bg-card);
    border-radius: var(--border-radius);
}

.response-example .code-block code {
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .response-example {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .response-example .code-block pre {
        font-size: 12px;
    }
}

/* Print Styles */
@media print {

    .sidebar,
    .menu-toggle,
    .code-tabs {
        display: none;
    }

    .main-content {
        margin: 0;
        padding: 2rem;
    }

    .code-block {
        break-inside: avoid;
    }
}

:root {
    --primary-color: #0be128;
    --secondary-color: #00b609;
    --bg-dark: #03080f;
    --bg-darker: #050d17;
    --bg-card: #0c1423;
    --text-primary: #ffffff;
    --text-secondary: #c0c0c0;
    --border-color: rgba(11, 225, 40, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Karla', sans-serif;
}

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Layout */
.documentation-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 300px;
    background: var(--bg-darker);
    padding: 2rem;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    border-right: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.sidebar-logo {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo img {
    max-width: 180px;
}

/* Navigation */
.nav-menu {
    list-style: none;
}

.nav-item {
    margin-bottom: 0.75rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.submenu {
    list-style: none;
    margin-left: 1rem;
    margin-top: 0.5rem;
    border-left: 1px solid var(--border-color);
}

.submenu .nav-link {
    font-size: 0.9rem;
    padding: 0.3rem 1rem;
}

/* Main Content */
.main-content {
    margin-left: 300px;
    padding: 2rem 4rem;
    flex: 1;
}

/* Sections */
.section {
    margin-bottom: 5rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 800px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(11, 107, 225, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(11, 107, 225, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

/* API Method */
.api-method {
    background: var(--bg-darker);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.method-badge {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Code Sections */
.code-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.code-tab {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.code-tab:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
}

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

.code-block {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    display: none;
}

.code-block.active {
    display: block;
}

.code-header {
    background: #0d1729;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-language {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
}

.copy-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(11, 225, 29, 0.5);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.copy-button:hover {
    background: rgba(11, 107, 225, 0.1);
}

/* Tables */
.parameter-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.parameter-table th,
.parameter-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.parameter-table th {
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(11, 107, 225, 0.05);
}

.required-badge {
    background: #ff4757;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

/* Error Grid */
.error-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.error-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.error-code {
    font-size: 2rem;
    color: #ff4757;
    margin-bottom: 0.5rem;
}

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

@media (max-width: 999px) {
    .sidebar {
        transform: translateX(-100%);
        z-index: 1000;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        padding: 2rem;
    }

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .method-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .code-tabs {
        flex-wrap: wrap;
    }

    .parameter-table {
        display: block;
        overflow-x: auto;
    }
}

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

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

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

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

/* Adicione estas classes ao seu CSS existente */

/* Media Queries */
@media (max-width: 1200px) {
    .main-content {
        margin-left: 280px;
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .documentation-layout {
        position: relative;
    }

    .sidebar {
        position: fixed;
        left: -300px;
        width: 300px;
        transition: left 0.3s ease;
        z-index: 1000;
        background: var(--bg-darker);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }

    .sidebar.active {
        left: 0;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 1.5rem;
    }

    .menu-toggle {
        display: block;
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1001;
        background: var(--bg-darker);
        border: 1px solid var(--border-color);
        border-radius: 4px;
        padding: 0.5rem;
        cursor: pointer;
    }

    .section-title {
        font-size: 2rem;
    }

    .api-method {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .code-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .code-tab {
        flex: 1 1 calc(50% - 0.5rem);
        text-align: center;
    }

    .parameter-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .method-header {
        flex-direction: column;
        gap: 1rem;
    }

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

    .section-header {
        padding: 0 1rem;
    }

    .endpoint-url {
        overflow-x: auto;
        white-space: nowrap;
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }

    .code-block {
        margin: 1rem -1rem;
        border-radius: 0;
    }

    .code-header {
        padding: 0.75rem;
    }

    pre {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .copy-button {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .method-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
}

/* Ajustes de Overlay para Menu Mobile */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* Ajustes para Scroll em Código Longo */
.code-block pre {
    max-height: 400px;
    overflow-y: auto;
}

/* Ajustes para Tabelas Responsivas */
.parameter-table-wrapper {
    overflow-x: auto;
    margin: 1rem -1rem;
    padding: 0 1rem;
}

.parameter-table {
    min-width: 600px;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

/* Ajustes de Layout para Sidebar */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    body.menu-open {
        overflow: hidden;
    }

    .sidebar {
        height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Ajustes para Elementos Interativos */
.code-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
}

.code-tab {
    white-space: nowrap;
}

/* Melhorias de Acessibilidade */
@media (hover: none) {

    .copy-button:active,
    .code-tab:active,
    .nav-link:active {
        opacity: 0.7;
    }
}

/* Ajustes de Fontes Responsivas */
/* Ajustes para evitar scroll horizontal */
@media (max-width: 768px) {

    /* Ajustes gerais de container */
    .main-content {
        padding: 1rem;
        overflow-x: hidden;
        width: 100%;
    }

    /* Ajuste para blocos de código */
    .code-block {
        max-width: 100vw;
        position: relative;
    }

    .code-block pre {
        padding: 1rem;
        font-size: 0.85rem;
        overflow-x: auto;
        white-space: pre-wrap;
        word-wrap: break-word;
    }

    /* Ajuste do texto dentro dos blocos de código */
    .code-block code {
        white-space: pre-wrap !important;
        word-wrap: break-word !important;
        font-size: 12px;
    }

    /* Ajuste para tabelas */
    .parameter-table-wrapper {
        margin: 0;
        padding: 0;
    }

    .parameter-table {
        display: block;
        width: 100%;
        min-width: unset;
    }

    /* Reorganizar células da tabela para visualização vertical */
    .parameter-table thead {
        display: none;
        /* Oculta o cabeçalho em mobile */
    }

    .parameter-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 1rem;
    }

    .parameter-table td {
        display: block;
        padding: 0.5rem 0;
        border: none;
        text-align: left;
    }

    .parameter-table td:before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
    }

    /* Ajuste para URL do endpoint */
    .endpoint-url {
        font-size: 0.85rem;
        padding: 0.75rem;
        word-break: break-all;
        white-space: normal;
    }

    /* Ajuste para badges e rótulos */
    .method-badge,
    .required-badge,
    .optional-badge {
        display: inline-block;
        margin: 0.25rem 0;
    }

    /* Ajuste para grids */
    .features-grid,
    .error-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    /* Ajuste para cards */
    .feature-card,
    .error-card {
        width: 100%;
        margin: 0;
    }

    /* Ajuste para cabeçalhos de seção */
    .section-header {
        padding: 0;
    }

    .section-title {
        font-size: 1.5rem;
        word-wrap: break-word;
    }

    /* Ajuste para as abas de código */
    .code-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    .code-tab {
        flex: 0 0 auto;
        margin-right: 0.5rem;
    }

    /* Ajuste para JSON formatado */
    pre {
        max-width: 100%;
    }
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 375px) {
    .code-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .copy-button {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
}

/* Ajustes para o modal de exemplos */
.modal-content {
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 5vh auto;
}

/* Garantir que inputs e selects não ultrapassem a largura */
input,
select,
textarea {
    max-width: 100%;
    box-sizing: border-box;
}

/* Ajuste para imagens responsivas */
img {
    max-width: 100%;
    height: auto;
}

/* Ajuste para links longos */
a {
    word-wrap: break-word;
}

/* Melhorar legibilidade de código em dispositivos móveis */
.language-json,
.language-javascript,
.language-python,
.language-php {
    font-size: 12px !important;
    line-height: 1.4 !important;
}

/* Ajuste para botões de cópia em mobile */
.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    flex-wrap: wrap;
}

/* Ajuste para alertas em mobile */
.alert {
    margin: 1rem 0;
    padding: 0.75rem;
    font-size: 0.9rem;
}

/* Melhorar visualização de URLs longas */
.endpoint-url {
    background: var(--bg-card);
    padding: 0.75rem;
    margin: 0.5rem 0;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85rem;
    word-break: break-all;
}

/* Ajuste para tabelas de parâmetros */
@media (max-width: 768px) {
    .parameter-table tr {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem;
        background: var(--bg-card);
        border-radius: 8px;
        margin-bottom: 1rem;
    }

    .parameter-table td[data-label]:before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-color);
        display: block;
        margin-bottom: 0.25rem;
    }
}

/* Melhorias de Performance */
.sidebar,
.main-content {
    will-change: transform;
    backface-visibility: hidden;
}

/* Ajustes de Animações para Dispositivos com Preferência Reduzida de Movimento */
@media (prefers-reduced-motion: reduce) {

    .sidebar,
    .feature-card,
    .nav-link,
    .code-tab {
        transition: none;
    }
}