.tela-dossies {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    z-index: 10001;
    overflow-y: auto;
    padding: 60px 40px;
    display: none;
}
.tela-dossies-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #1a1a1a;
}
.tela-dossies-header h2 {
    font-size: 1.8rem;
    color: #00ffcc;
    letter-spacing: 4px;
}
.btn-fechar-dossies {
    background: transparent;
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
    padding: 10px 20px;
    cursor: pointer;
    font-family: monospace;
    transition: 0.3s;
}
.btn-fechar-dossies:hover {
    background: #ff4d4d;
    color: #000;
}
.dossies-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}