#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;
    }

}

.filtro-ordenar{
    display: flex;
    width: 50%;
    justify-content: flex-end;
    li{
        list-style: none;
        text-decoration: none;
        padding: 10px;
    }

    .ordenar-lista-ordenar{
        border: #969595 solid 1px;
        border-radius: 15px;

        a{
            text-decoration: none;
            color: inherit;
        }
    }
    .objeto-lista-ordenar{
        width: 100%;
        display: flex;
        gap: 15px;
        border-top: #969595 solid 1px;
    }

    /* ul li ul {
    background: orange;
    visibility: hidden;
    opacity: 0;
    min-width: 5rem;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 1rem;
    left: 0;
    display: none;
    } */
}


.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;
}

.tags-artigos{
    font-weight: 100;
    font-size: 15px;
    color: rgb(151, 149, 149);
}

.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(255, 255, 255);
    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: black;
    font-size: 16px;
    width: 190px;
}

.botao-leia-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, .botao-leia-artigo:hover{
    transform: scale(1.07);
}

.lado-dir-artigo{
    grid-area: 2 / 1 / 3 / 2;
    display: flex;
    gap: 10px;

    a{
        text-decoration: none;
        color: inherit;
    }
}


#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%;
}

.filtros-container {
    display: flex;
    width: 80%;
    max-width: 1024px;
    justify-content: space-between;
    align-items: center;
    font-family:'Century Gothic Paneuropean', sans-serif;

    img{
        width: 27px;
    }
}

.search-container{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

#searchInput{
    width: 25%;
    padding: 10px;
    border-radius: 25px;
    background-color: #06264400;
    border: 1px solid white;
    font-size: 16px;
    font-family:'Century Gothic Paneuropean', sans-serif;
    color: white;
    text-align: center;
}

.dropdown-btn {
    color: white;
    border: 1px solid white;
    background-color: rgba(39,81,121,0);
    font-weight: 500;
    font-size: 15px;
    padding: 0.625rem 1.25rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    outline: none;
    cursor: pointer;
    font-family:'Century Gothic Paneuropean', sans-serif;
  }
  .dropdown-btn:hover {
    background-color: rgba(39,81,121,.3);
  }
  .dropdown-btn:focus {
    box-shadow: 0 0 0 2px rgba(39,81,121,1);
  }
  
  .dropdown-icon {
    width: 0.625rem;
    height: 0.625rem;
    margin-inline-start: 0.75rem;
  }
  
  .dropdown-panel {
    position: absolute;
    z-index: 10;
    display: block;
    width: 12rem;
    background: #062644;
    color: white;
    border-radius: 15px;
  }
  .dropdown-panel ul {
    list-style: none;
    margin: 0;
    padding: 0.75rem;
    font-size: 15px;
    color: inherit;
  }
  .dropdown-panel ul > li + li {
    margin-top: 0.25rem;
  }
  
  .dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 15px;
    cursor: pointer;
  }
  .dropdown-item:hover {
    background-color: #275179;
  }
  
  .radio-input {
    width: 1rem;  
    height: 1rem;     
    accent-color: #2563EB; 
    background-color: #F3F4F6; 
    border: 1px solid #D1D5DB; 
    border-radius: 50%;
  }
  .radio-input:focus {
    outline: none;
  }

  .radio-label {
    display: block; 
    width: 100%;
    margin-inline-start: 0.5rem;
    font-size: 0.8rem; 
    font-weight: 500;
    color: inherit;
    border-radius: 0.125rem; 
  }

  .hidden {
    display: none !important;
  }