/* ==========================================================================
   1. VISUAL GERAL E CORES PROOFIXEL
   ========================================================================== */
[data-md-color-scheme="slate"] {
  --md-default-bg-color: #040a28 !important; 
  --md-default-fg-color: #E3E3E8 !important; 
  --md-primary-fg-color: #020617; 
  --md-accent-fg-color:  #00E5FF; 
  --md-header-bg-color:  #8E5FF7; 
}

/* ==========================================================================
   2. CORREÇÃO DOS CARDS
   ========================================================================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background-color: #16161C !important; 
    border: 1px solid #2D2D3A !important;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card h3 { color: #ffffff !important; margin-top: 0; font-weight: 700; font-size: 1.3em; }
.card p { color: #c0c0c8 !important; line-height: 1.6; }
.card small { display: block; margin-top: 1.5rem; color: #00E5FF !important; font-weight: bold; font-family: monospace; }
.card:hover { transform: translateY(-5px); border-color: #6C32F5 !important; box-shadow: 0 10px 30px -10px rgba(108, 50, 245, 0.3); }

/* ==========================================================================
   3. TIPOGRAFIA & LISTAS DA HOME
   ========================================================================== */
.md-typeset h1 { font-weight: 800; color: #fff; }
.md-typeset a { color: #8E5FF7; font-weight: 600; }
.md-typeset a:hover { color: #00E5FF; }
.md-typeset h3 { margin-top: 1.5em; font-weight: 700; }
.md-typeset h3 a { text-decoration: none; color: #8E5FF7 !important; transition: color 0.2s; }
.md-typeset h3 a:hover { color: #00E5FF !important; }
.md-typeset blockquote { border-left: 2px solid #333; color: #a0a0b0; padding-left: 1rem; }

/* ==========================================================================
   4. RODAPÉ 
   ========================================================================== */

/* Pinta o fundo de Roxo Proofixel */
footer, .md-footer, .md-footer__inner, .md-footer-meta {
    background-color: #020617!important;
    color: white !important;
}

/* Define tamanho ZERO para tudo na linha de copyright */
/* Isso faz o texto "Made with..." sumir porque ele fica com 0px de altura */
.md-copyright {
    font-size: 0 !important; 
    visibility: hidden; /* Garante que suma */
    padding: 20px 0;
    width: 100%;
    text-align: center;
}

/* A RESGATE: Restaura o tamanho SÓ do seu texto específico */
.meu-copyright {
    font-size: 0.85rem !important; /* Traz de volta o tamanho normal */
    visibility: visible !important; /* Torna visível */
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
}

/* Estilo do link Proofixel */
.meu-copyright a {
    color: #fff !important;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.85rem !important; /* Garante tamanho do link */
}