#artigos{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 150px 0;
    flex-direction: column;

    h1{
        all: unset;
        font-size: 70px;
        font-family: 'Technor', sans-serif;
        text-align: center;
        margin: 0;
    }

}

.nome-escritor-artigo, .data-publicação-artigo{
    font-size: 12px;  
}

.lado-esq-artigo{
    display: flex;
    flex-direction: column;
    gap: 5px;
    grid-area: 1 / 1 / 2 / 2;
}

.data-publicação-artigo{
    color: #969595;
}

.titulo-artigo{
    font-size: 25px;
    font-weight: bold;
}

.descrição-artigo{
    color: #aaaaaa; 
}

.cada-artigo{
    display: grid;
    gap: 10px;
    width: 80%;
    max-width: 1024px;
    padding: 20px;
    border: #062644 2px solid;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(3,25,46,0.14002097420999648) 35%, rgba(39,81,121,0.46775206664697133) 100%);
}

.botao-baixe-artigo{
    padding: 15px 35px;
    background-color: rgb(006, 145, 192);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Technor', sans-serif;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: none;
    color: #fff;
    font-size: 16px;
    width: 190px;
}

.botao-baixe-artigo:hover{
    transform: scale(1.07);
}

.lado-dir-artigo{
    grid-area: 2 / 1 / 3 / 2;
}


#modal {
    position: relative;
    /* Resto do seu código CSS */
}

#nomeCompleto , #email , #checkbox-artigo{
    border: none;
}

#close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
}

#modalEmail{
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: none;
}

.modal-aberta #conteudo {
    filter: blur(2px);
}

#modal{
    /* background-color: rgb(0, 0, 0);  */
    background-color: rgb(18 33 49); 
    /* background-color: #fff; */
    color: rgb(255, 255, 255);
    padding: 20px;
    width: auto;
    border-radius: 5px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.8);
    position: fixed;
    z-index: 1000;
    filter: none;
    border: 2px solid rgb(1, 21, 42);
}

.checkbox-artigo{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.checkbox-artigo p{
    font-size: 13px;
}

.checkbox-artigo input{
    border: none;
    cursor: pointer;
}

.dados-artigo{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dados-artigo input{
    border: 1px solid #0b001a ;
    border-radius: 10px;
    height: 30px;
    width: 60%;
}

#div-enviar-artigo{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#button-enviar-artigo{
    padding: 10px 15px;
    background-color: rgb(006, 145, 192);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Technor', sans-serif;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: none;
    color: #fff;
    width: 100%;
}

#button-enviar-artigo:hover{
    transform: scale(1.07);
}

.preview-conteudos{
    width: 150px;
    grid-area: 1 / 2 / 3 / 3;
}

.preview-conteudos img{
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.preview-conteudos{
    order: 1;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.preview-conteudos img{
    height: 100%;
}