/* ============================================================
   BLOCO: Documentos Investidores
   ============================================================ */

/* Container geral da lista */
.is-style-rounded img{
    border-radius:40px;
}

.grano-documentos-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Cada item (linha) */
.grano-doc-item {
        display: flex;
    align-items: center;
    background: #EFE9E9;
    padding: 0 0 0 18px;
    border-radius: 0;
    border: 1px solid #ddd;
}

/* Nome do documento */
.grano-doc-title {
    flex: 1;
    font-weight: 700;
    font-size: 16px;
    color: #222;
}

/* Coluna da data */
.grano-doc-date {
    width: 160px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    border-left: 2px solid #222;
    margin-left: 14px;
    padding-left: 14px;
    color: #222;
    white-space: nowrap;
}

/* Texto "Sem arquivo" */
.grano-no-file {
    margin-left: 16px;
    color: #777;
    font-size: 15px;
}

/* Botão de download */
.grano-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin-left: 16px;
    background: #FF6A00;
    color: #fff !important;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s ease-in-out;
}

.grano-download-btn:hover {
    filter: brightness(1.1);
}

/* Ícone PDF opcional */
.pdf-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
}


/* ============================================================
   PAGINAÇÃO
   ============================================================ */

.grano-pagination {
    margin-top: 20px;
    text-align: center;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.grano-pagination ul {
    list-style: none;
    display: inline-flex;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.grano-pagination li {
    display: inline-block;
}

.grano-pagination a,
.grano-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 36px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid #E6E6E6;
    background: #fff;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s ease-in-out;
}

.grano-pagination a:hover {
    filter: brightness(1.04);
}

/* Página atual */
.grano-pagination .current {
    background: #FF6A00;
    color: #fff;
    border-color: #FF6A00;
}

/* "..." */
.grano-pagination .dots {
    padding: 0 6px;
    color: #777;
}


/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 780px) {

    .grano-doc-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 12px;
    }

    .grano-doc-date {
        width: 100%;
        border-left: none;
        border-top: 2px solid #222;
        margin-left: 0;
        padding-left: 0;
        padding-top: 10px;
        text-align: left;
    }

    .grano-download-btn {
        margin-left: 0;
    }

    .grano-pagination ul {
        flex-wrap: wrap;
    }
}
