    /* Navbar */
    :root {
        --site-accent: #7c5cff;
        --site-accent-soft: rgba(124, 92, 255, 0.10);

        --site-bg: #09090b;
        --site-surface: #111114;
        --site-surface-hover: #17171c;

        --site-text: #f4f4f5;
        --site-muted: #a1a1aa;

        --site-border: rgba(255, 255, 255, 0.08);
        --site-border-hover: rgba(124, 92, 255, 0.45);

        --site-icon-filter: brightness(0) invert(1);
    }
.site-navbar {
    min-height: 68px;
    background: rgba(11, 15, 20, 0.88);
    border-bottom: 1px solid var(--site-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;

    color: var(--site-text) !important;
    font-size: 1.05rem;
    font-weight: 650;
    letter-spacing: -.02em;
    text-decoration: none;
}

.site-brand:hover {
    color: var(--site-text) !important;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--site-accent);
    font-family: monospace;
    font-size: 1rem;
    font-weight: 700;
}

.site-nav-link {
    position: relative;

    padding: .55rem .85rem !important;

    color: var(--site-muted) !important;
    font-size: .9rem;
    font-weight: 500;

    border-radius: 8px;

    transition:
            color .2s ease,
            background-color .2s ease;
}

.site-nav-link:hover {
    color: var(--site-text) !important;
    background: rgba(255, 255, 255, .04);
}

.site-nav-link.active {
    color: var(--site-text) !important;
    background: rgba(88, 166, 255, .08);
}

.site-nav-link.active::after {
    content: "";

    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: .2rem;

    height: 2px;

    border-radius: 999px;
    background: var(--site-accent);
}

.site-navbar-toggler {
    padding: .4rem .55rem;

    border: 1px solid var(--site-border);
    border-radius: 8px;
}

.site-navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(88, 166, 255, .15);
}

@media (max-width: 991.98px) {

    .site-navbar .navbar-collapse {
        padding: .75rem 0;
    }

    .site-nav-link {
        padding: .7rem .85rem !important;
    }

    .site-nav-link.active::after {
        display: none;
    }
}
    /* =========================================================
       ERROR PAGE
       ========================================================= */

    .error-container {
        min-height: 65vh;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 70px 0;
    }

    .error-content {
        width: 100%;
        max-width: 650px;

        text-align: center;
    }

    .error-code {
        margin-bottom: 20px;

        color: #f85149;

        font-family: monospace;
        font-size: clamp(4rem, 15vw, 8rem);
        font-weight: 700;

        line-height: .9;
        letter-spacing: -0.08em;

        opacity: .9;
    }

    .error-icon {
        width: 52px;
        height: 52px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        margin-bottom: 25px;

        border: 1px solid rgba(248, 81, 73, .25);
        border-radius: 12px;

        background: rgba(248, 81, 73, .08);
    }

    .error-icon svg {
        width: 25px;
        height: 25px;

        fill: #f85149;
    }

    .error-title {
        margin-bottom: 12px;

        color: #f0f6fc;

        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 700;

        letter-spacing: -0.04em;
    }

    .error-subtitle {
        margin-bottom: 18px;

        color: #f85149;

        font-family: monospace;
        font-size: .95rem;
    }

    .error-description {
        max-width: 520px;

        margin: 0 auto 32px;

        color: #8b949e;

        font-size: 1rem;
        line-height: 1.7;
    }

    .error-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 11px 20px;

        border: 1px solid #242c36;
        border-radius: 8px;

        background: #11161d;

        color: #f0f6fc;

        font-size: .9rem;
        font-weight: 600;

        text-decoration: none;

        transition:
                background-color .15s ease,
                border-color .15s ease,
                transform .15s ease;
    }

    .error-button:hover {
        transform: translateY(-2px);

        border-color: rgba(88, 166, 255, .5);

        background: #151c24;

        color: #f0f6fc;
    }


    /* =========================================================
       MOBILE
       ========================================================= */

    @media (max-width: 575px) {

        .error-container {
            min-height: 60vh;
            padding: 50px 20px;
        }

        .error-code {
            font-size: 5rem;
        }

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

    }

    /* =========================================================
   FILES
   ========================================================= */

    .files-page {
        background: transparent;
    }

    .files-header {
        max-width: 750px;
    }

    .section-label {
        display: inline-block;

        margin-bottom: 10px;

        color: #58a6ff;

        font-family: monospace;
        font-size: .75rem;
        font-weight: 700;

        letter-spacing: .12em;
    }

    .files-title {
        margin: 0 0 10px;

        color: #f0f6fc;

        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 700;

        letter-spacing: -0.04em;
    }

    .files-description {
        margin: 0;

        color: #8b949e;

        font-size: 1rem;
        line-height: 1.6;
    }


    /* =========================================================
       NAVIGATION
       ========================================================= */

    .files-navigation {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;

        padding: 12px 14px;

        border: 1px solid #242c36;
        border-radius: 10px;

        background: #11161d;
    }

    .files-path {
        min-width: 0;

        display: flex;
        align-items: center;
        gap: 10px;

        color: #8b949e;

        font-family: monospace;
        font-size: .85rem;
    }

    .files-path-icon {
        width: 30px;
        height: 30px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        border-radius: 7px;

        background: rgba(88, 166, 255, .08);
    }

    .files-path-icon svg {
        width: 16px;
        height: 16px;

        fill: #58a6ff;
    }

    .files-navigation-buttons {
        display: flex;
        gap: 8px;

        flex-shrink: 0;
    }


    /* =========================================================
       FILE LIST
       ========================================================= */

    .files-list {
        display: flex;
        flex-direction: column;

        overflow: hidden;

        border: 1px solid #242c36;
        border-radius: 10px;

        background: #11161d;
    }

    .file-item {
        min-height: 72px;

        display: flex;
        align-items: center;

        gap: 15px;

        padding: 12px 16px;

        border-bottom: 1px solid #242c36;

        transition:
                background-color .15s ease,
                border-color .15s ease;
    }

    .file-item:last-child {
        border-bottom: 0;
    }

    .file-item:hover {
        background: #151c24;
    }

    .file-icon {
        width: 40px;
        height: 40px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        border-radius: 8px;

        background: rgba(88, 166, 255, .08);
    }

    .file-icon svg {
        width: 20px;
        height: 20px;

        fill: #58a6ff;
    }

    .file-info {
        min-width: 0;

        flex: 1;
    }

    .file-name {
        overflow: hidden;

        color: #f0f6fc;

        font-size: .95rem;
        font-weight: 600;

        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .file-type {
        margin-top: 3px;

        color: #8b949e;

        font-size: .78rem;
    }

    .file-actions {
        display: flex;
        gap: 8px;

        flex-shrink: 0;
    }


    /* =========================================================
       EMPTY
       ========================================================= */

    .files-empty {
        padding: 70px 20px;

        text-align: center;

        border: 1px solid #242c36;
        border-radius: 10px;

        background: #11161d;
    }

    .files-empty-icon {
        width: 56px;
        height: 56px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        margin-bottom: 20px;

        border-radius: 12px;

        background: rgba(88, 166, 255, .08);
    }

    .files-empty-icon svg {
        width: 28px;
        height: 28px;

        fill: #58a6ff;
    }

    .files-empty h2 {
        margin-bottom: 8px;

        color: #f0f6fc;
    }

    .files-empty p {
        margin: 0;

        color: #8b949e;
    }


    /* =========================================================
       MOBILE
       ========================================================= */

    @media (max-width: 575px) {

        .files-page .container {
            padding-top: 35px !important;
            padding-bottom: 35px !important;
        }

        .files-navigation {
            align-items: stretch;
            flex-direction: column;
        }

        .files-navigation-buttons {
            width: 100%;
        }

        .files-navigation-buttons .btn {
            flex: 1;
        }

        .file-item {
            align-items: flex-start;

            padding: 14px;
        }

        .file-info {
            padding-top: 2px;
        }

        .file-actions {
            flex-direction: column;
        }

        .file-actions .btn {
            white-space: nowrap;
        }

    }

    /* =========================================================
   ARQUIVOS
   ========================================================= */

    .page-header {
        padding: 5rem 0 3rem;
    }

    .page-eyebrow {
        display: inline-block;
        margin-bottom: 0.75rem;

        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.14em;

        color: var(--site-accent);
    }

    .page-header h1 {
        margin: 0;

        font-size: clamp(2rem, 5vw, 3.25rem);
        font-weight: 800;
        letter-spacing: -0.03em;

        color: var(--site-text);
    }

    .page-header p {
        max-width: 650px;
        margin: 1rem 0 0;

        font-size: 1.05rem;
        line-height: 1.7;

        color: var(--site-muted);
    }


    /* Navegação das pastas */

    .file-navigation {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;

        padding: 0.85rem 1rem;

        background: var(--site-surface);
        border: 1px solid var(--site-border);
        border-radius: 10px;

        font-size: 0.9rem;
    }

    .file-breadcrumb {
        color: var(--site-muted);
        text-decoration: none;

        transition: color 0.2s ease;
    }

    .file-breadcrumb:hover,
    .file-breadcrumb.active {
        color: var(--site-accent);
    }

    .file-breadcrumb-separator {
        color: var(--site-muted);
        opacity: 0.5;
    }

    .file-current-path {
        color: var(--site-text);
        word-break: break-word;
    }


    /* Grid */

    .file-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }


    /* Card */

    .file-item {
        display: flex;
        flex-direction: column;

        min-width: 0;

        padding: 1.25rem;

        background: var(--site-surface);
        border: 1px solid var(--site-border);
        border-radius: 14px;

        transition:
                transform 0.2s ease,
                border-color 0.2s ease,
                background-color 0.2s ease;
    }

    .file-item:hover {
        transform: translateY(-3px);

        border-color: var(--site-border-hover);
        background: var(--site-surface-hover);
    }


    /* Ícone */

    .file-icon {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 52px;
        height: 52px;

        margin-bottom: 1rem;

        background: var(--site-accent-soft);
        border-radius: 12px;
    }

    .file-icon img {
        filter: var(--site-icon-filter);
    }


    /* Informações */

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

    .file-info h2 {
        margin: 0 0 0.4rem;

        overflow: hidden;

        font-size: 1rem;
        font-weight: 700;

        color: var(--site-text);

        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .file-info span {
        font-size: 0.8rem;
        color: var(--site-muted);
    }


    /* Botões */

    .file-actions {
        display: flex;
        gap: 0.5rem;

        margin-top: 1.25rem;
    }

    .file-actions .btn {
        flex: 1;
    }


    /* Estado vazio */

    .empty-state {
        max-width: 500px;

        margin: 3rem auto;
        padding: 4rem 2rem;

        text-align: center;

        background: var(--site-surface);
        border: 1px solid var(--site-border);
        border-radius: 16px;
    }

    .empty-state-icon {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 72px;
        height: 72px;

        margin: 0 auto 1.5rem;

        background: var(--site-accent-soft);
        border-radius: 16px;
    }

    .empty-state-icon img {
        filter: var(--site-icon-filter);
    }

    .empty-state h2 {
        margin-bottom: 0.5rem;

        font-size: 1.25rem;
        font-weight: 700;

        color: var(--site-text);
    }

    .empty-state p {
        margin: 0;

        color: var(--site-muted);
    }


    /* Responsividade */

    @media (max-width: 991.98px) {

        .file-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

    }


    @media (max-width: 575.98px) {

        .page-header {
            padding: 3rem 0 2rem;
        }

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

        .file-item {
            padding: 1rem;
        }

        .file-actions {
            flex-direction: column;
        }

        .file-actions .btn {
            width: 100%;
        }

    }
    /* =========================================================
   LINKS
   ========================================================= */

    .links-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
        max-width: 900px;
        margin: 0 auto;
    }

    .site-panel {
        background: var(--site-surface);
        border: 1px solid var(--site-border);
        border-radius: 16px;
        overflow: hidden;
    }

    .site-panel-header {
        display: flex;
        align-items: center;
        gap: 1rem;

        padding: 1.5rem;

        border-bottom: 1px solid var(--site-border);
    }

    .site-panel-icon {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 48px;
        height: 48px;

        flex-shrink: 0;

        background: var(--site-accent-soft);
        border-radius: 12px;
    }

    .site-panel-icon img,
    .contact-icon img {
        filter: var(--site-icon-filter);
    }

    .site-panel-header h2 {
        margin: 0 0 0.25rem;

        font-size: 1.1rem;
        font-weight: 700;

        color: var(--site-text);
    }

    .site-panel-header p {
        margin: 0;

        font-size: 0.85rem;

        color: var(--site-muted);
    }


    /* Contatos */

    .contact-list {
        display: flex;
        flex-direction: column;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;

        padding: 1.15rem 1.5rem;

        color: inherit;
        text-decoration: none;

        border-bottom: 1px solid var(--site-border);

        transition:
                background-color 0.2s ease,
                padding-left 0.2s ease;
    }

    .contact-item:last-child {
        border-bottom: 0;
    }

    .contact-item:hover {
        background: var(--site-surface-hover);
        padding-left: 1.75rem;
    }

    .contact-icon {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;

        flex-shrink: 0;

        background: var(--site-accent-soft);
        border-radius: 10px;
    }

    .contact-content {
        display: flex;
        flex-direction: column;

        min-width: 0;
        flex: 1;
    }

    .contact-label {
        margin-bottom: 0.15rem;

        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;

        color: var(--site-muted);
    }

    .contact-value {
        overflow: hidden;

        font-size: 0.95rem;

        color: var(--site-text);

        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .contact-item:hover .contact-value {
        color: var(--site-accent);
    }

    .contact-arrow {
        flex-shrink: 0;

        font-size: 1.1rem;

        color: var(--site-muted);

        transition:
                color 0.2s ease,
                transform 0.2s ease;
    }

    .contact-item:hover .contact-arrow {
        color: var(--site-accent);
        transform: translateX(3px);
    }


    /* PGP */

    .pgp-container {
        padding: 1rem;
    }

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

        margin-bottom: 0.75rem;
        padding: 0 0.25rem;

        font-family: monospace;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.08em;

        color: var(--site-muted);
    }

    .pgp-status {
        color: #4ade80;
    }

    .pgp-key {
        max-height: 500px;

        margin: 0;
        padding: 1.25rem;

        overflow: auto;

        background: #08080a;
        border: 1px solid var(--site-border);
        border-radius: 10px;

        font-family:
                "JetBrains Mono",
                "Fira Code",
                "Cascadia Code",
                monospace;

        font-size: 0.78rem;
        line-height: 1.65;

        color: #d4d4d8;

        scrollbar-width: thin;
    }

    .pgp-key code {
        color: inherit;
    }


    /* Mobile */

    @media (max-width: 575.98px) {

        .site-panel-header {
            padding: 1.25rem;
        }

        .contact-item {
            padding: 1rem 1.25rem;
        }

        .contact-item:hover {
            padding-left: 1.25rem;
        }

        .contact-value {
            font-size: 0.85rem;
        }

        .pgp-container {
            padding: 0.75rem;
        }

        .pgp-key {
            padding: 1rem;

            font-size: 0.7rem;
        }

        .pgp-header {
            font-size: 0.6rem;
        }

    }
    /* =========================================================
    BLOG
    ========================================================= */

    .blog-page {
        width: 100%;
    }


    /* =========================================================
       CABEÇALHO
       ========================================================= */

    .blog-header {
        max-width: 900px;
    }


    /* =========================================================
       LISTA
       ========================================================= */

    .blog-list {
        display: flex;
        flex-direction: column;

        gap: 1rem;

        max-width: 900px;
        margin: 0 auto;
    }


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

    .blog-card {
        display: flex;
        flex-direction: column;

        overflow: hidden;

        background: var(--site-surface);

        border: 1px solid var(--site-border);
        border-radius: 16px;

        transition:
                transform .2s ease,
                border-color .2s ease,
                background-color .2s ease,
                box-shadow .2s ease;
    }

    .blog-card:hover {
        transform: translateY(-3px);

        background: var(--site-surface-hover);

        border-color: var(--site-border-hover);

        box-shadow:
                0 10px 30px rgba(0, 0, 0, .22),
                0 0 20px rgba(88, 166, 255, .05);
    }


    /* =========================================================
       IMAGEM DE CAPA
       ========================================================= */

    .blog-cover-link {
        display: block;

        color: inherit;
        text-decoration: none;
    }


    .post-cover-wrapper {
        width: 100%;
        height: 300px;

        display: flex;
        align-items: center;
        justify-content: center;

        overflow: hidden;

        background: #080b10;

        border-bottom: 1px solid var(--site-border);
    }


    .post-cover {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        transition:
                transform .45s ease,
                opacity .25s ease;
    }


    .blog-card:hover .post-cover {
        transform: scale(1.025);
    }


    /* =========================================================
       CONTEÚDO DO CARD
       ========================================================= */

    .blog-card-body {
        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 1.5rem;

        padding: 1.25rem 1.5rem;
    }


    .blog-card-content {
        min-width: 0;

        display: flex;
        align-items: center;

        gap: 1rem;
    }


    /* =========================================================
       ÍCONE
       ========================================================= */

    .blog-card-icon {
        width: 46px;
        height: 46px;

        display: flex;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        background: var(--site-accent-soft);

        border: 1px solid rgba(88, 166, 255, .14);

        border-radius: 11px;

        transition:
                background-color .2s ease,
                border-color .2s ease,
                transform .2s ease;
    }


    .blog-card-icon img {
        width: 22px;
        height: 22px;

        filter: var(--site-icon-filter);
    }


    .blog-card:hover .blog-card-icon {
        background: rgba(88, 166, 255, .14);

        border-color: rgba(88, 166, 255, .30);

        transform: translateY(-1px);
    }


    /* =========================================================
       INFORMAÇÕES
       ========================================================= */

    .blog-card-info {
        min-width: 0;
    }


    .blog-card-info h2 {
        margin: 0 0 .25rem;

        overflow: hidden;

        font-size: 1.05rem;
        font-weight: 700;

        line-height: 1.35;

        text-overflow: ellipsis;
    }


    .blog-card-info h2 a {
        color: var(--site-text);

        text-decoration: none;

        transition: color .2s ease;
    }


    .blog-card:hover .blog-card-info h2 a {
        color: var(--site-accent);
    }


    .blog-card-info span {
        color: var(--site-muted);

        font-size: .8rem;
    }


    /* =========================================================
       BOTÃO LER
       ========================================================= */

    .blog-read-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        gap: .5rem;

        flex-shrink: 0;

        padding: .55rem 1rem;

        color: var(--site-text);

        background: transparent;

        border: 1px solid var(--site-border);

        border-radius: 999px;

        font-size: .85rem;
        font-weight: 600;

        text-decoration: none;

        transition:
                color .2s ease,
                background-color .2s ease,
                border-color .2s ease,
                transform .2s ease,
                box-shadow .2s ease;
    }


    .blog-read-button span {
        color: var(--site-muted);

        transition:
                color .2s ease,
                transform .2s ease;
    }


    .blog-read-button:hover {
        color: var(--site-text);

        background: var(--site-accent-soft);

        border-color: var(--site-border-hover);

        transform: translateY(-1px);

        box-shadow: 0 4px 14px rgba(88, 166, 255, .08);
    }


    .blog-read-button:hover span {
        color: var(--site-accent);

        transform: translateX(3px);
    }


    /* =========================================================
       ESTADO VAZIO
       ========================================================= */

    .blog-empty {
        max-width: 500px;

        margin: 2rem auto 0;
        padding: 4rem 2rem;

        text-align: center;

        background: var(--site-surface);

        border: 1px solid var(--site-border);
        border-radius: 16px;
    }


    .blog-empty-icon {
        width: 64px;
        height: 64px;

        display: flex;
        align-items: center;
        justify-content: center;

        margin: 0 auto 1.5rem;

        background: var(--site-accent-soft);

        border: 1px solid rgba(88, 166, 255, .14);

        border-radius: 14px;
    }


    .blog-empty-icon img {
        filter: var(--site-icon-filter);
    }


    .blog-empty h2 {
        margin: 0 0 .5rem;

        color: var(--site-text);

        font-size: 1.25rem;
        font-weight: 700;
    }


    .blog-empty p {
        margin: 0;

        color: var(--site-muted);
    }


    /* =========================================================
       PAGINAÇÃO
       ========================================================= */

    .blog-pagination {
        display: flex;
        align-items: center;
        justify-content: center;

        gap: .75rem;

        max-width: 900px;

        margin: 2rem auto 0;
    }


    .blog-pagination-button {
        display: inline-flex;
        align-items: center;

        gap: .45rem;

        padding: .55rem 1rem;

        color: var(--site-text);

        background: var(--site-surface);

        border: 1px solid var(--site-border);
        border-radius: 999px;

        font-size: .85rem;
        font-weight: 600;

        text-decoration: none;

        transition:
                color .2s ease,
                background-color .2s ease,
                border-color .2s ease,
                transform .2s ease;
    }


    .blog-pagination-button:hover {
        color: var(--site-accent);

        background: var(--site-surface-hover);

        border-color: var(--site-border-hover);

        transform: translateY(-1px);
    }


    .blog-pagination-current {
        color: var(--site-muted);

        font-size: .85rem;
    }


    .blog-pagination-current strong {
        color: var(--site-text);
    }


    /* =========================================================
       RESPONSIVIDADE
       ========================================================= */

    @media (max-width: 767.98px) {

        .post-cover-wrapper {
            height: 240px;
        }

        .blog-card-body {
            align-items: flex-start;
            flex-direction: column;

            gap: 1rem;

            padding: 1.25rem;
        }

        .blog-read-button {
            width: 100%;
        }

    }


    @media (max-width: 575.98px) {

        .post-cover-wrapper {
            height: 210px;
        }

        .blog-card:hover {
            transform: translateY(-2px);
        }

        .blog-card-content {
            width: 100%;
        }

        .blog-card-info h2 {
            font-size: 1rem;
        }

        .blog-pagination {
            gap: .5rem;
        }

        .blog-pagination-button {
            padding: .5rem .8rem;
        }

    }