.documentos-programa {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
 
.documentos-container {
    width: 100%;
    max-width: 980px;
    margin: 0;
}
 
.documentos-container h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    color: #0755a5;
    line-height: 1.2;
}
 
.documentos-descricao {
    margin: 0 0 18px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}
 
.documentos-lista {
    width: 100%;
    background: #fff;
    border: 1px solid #dcdfe3;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
 
.documento-item {
    width: 100%;
    min-height: 55px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #1b1b1b;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}
 
.documento-item + .documento-item {
    border-top: 1px solid #e5e5e5;
}
 
.documento-item:hover {
    background-color: #f7f9fc;
}
 
.documento-conteudo {
    display: flex;
    align-items: center;
    gap: 16px;
}
 
.pdf-icon {
    width: 22px;
    height: 28px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border: 2px solid #e60000;
    border-radius: 2px;
    box-sizing: border-box;
    padding-bottom: 2px;
}
 
.pdf-icon::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #fff;
    border-left: 2px solid #e60000;
    border-bottom: 2px solid #e60000;
}
 
.pdf-icon span {
    position: relative;
    z-index: 2;
    font-size: 6px;
    line-height: 1;
    font-weight: 700;
    color: #e60000;
}
 
.documento-titulo {
    font-size: 13px;
    font-weight: 700;
    color: #171717;
}
 
.documento-seta {
    font-size: 29px;
    font-weight: 300;
    line-height: 1;
    color: #0056a6;
    transform: translateY(-1px);
}
 
@media (max-width: 600px) {
    .documentos-container h3 {
        font-size: 18px;
    }
 
    .documentos-descricao {
        font-size: 12px;
    }
 
    .documento-item {
        min-height: 58px;
        padding: 0 13px;
    }
 
    .documento-conteudo {
        gap: 13px;
    }
 
    .documento-titulo {
        font-size: 12px;
    }
}